diff --git a/CHANGES.rst b/CHANGES.rst index 26b29459..8d91f126 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,12 @@ Unreleased - :meth:`.user_selectable` to get available subreddit link flairs. - Automatic RateLimit handling will support errors with millisecond resolution. +**Deprecated** + +- Ability to use :class:`.CommentForest` as an asynchronous iterator. +- :meth:`.CommentForest.list` no longer needs to be awaited. +- :attr:`.Submission.comments` no longer needs to be awaited and is now a property. + **Fixed** - Fixed return value type of methods returning a listing in :class:`.Subreddit` and its diff --git a/asyncpraw/models/comment_forest.py b/asyncpraw/models/comment_forest.py index f9cd40ed..179162f9 100644 --- a/asyncpraw/models/comment_forest.py +++ b/asyncpraw/models/comment_forest.py @@ -1,6 +1,8 @@ """Provide CommentForest for Submission comments.""" +import inspect from heapq import heappop, heappush -from typing import TYPE_CHECKING, AsyncIterator, List, Optional, Union +from typing import TYPE_CHECKING, Any, AsyncIterator, Coroutine, List, Optional, Union +from warnings import warn from ..exceptions import DuplicateReplaceException from .reddit.more import MoreComments @@ -41,19 +43,21 @@ def __getitem__(self, index: int): .. code-block:: python - comments = await submission.comments() - first_comment = comments[0] + first_comment = submission.comments[0] Alternatively, the presence of this method enables one to iterate over all top level comments, like so: .. code-block:: python - comments = await submission.comments() - for comment in comments: + for comment in submission.comments: print(comment.body) """ + if not (self._comments is not None or self._submission._fetched): + raise TypeError( + "Submission must be fetched before comments are accessible. Call `.load()` to fetch." + ) return self._comments[index] async def __aiter__(self) -> AsyncIterator["asyncpraw.models.Comment"]: @@ -63,14 +67,32 @@ async def __aiter__(self) -> AsyncIterator["asyncpraw.models.Comment"]: .. code-block:: python - comments = await submission.comments() + comments = submission.comments async for comment in comments: print(comment.body) """ - for comment in self._comments: + warn( + "Using CommentForest as an asynchronous iterator has been deprecated and" + " will be removed in a future version.", + category=DeprecationWarning, + stacklevel=3, + ) + for comment in self: yield comment + async def __call__(self): # noqa: D102 + warn( + "`Submission.comments` is now a property and no longer needs to be awaited. This" + " will raise an error in a future version of Async PRAW.", + category=DeprecationWarning, + stacklevel=3, + ) + if not self._submission._fetched: + await self._submission._fetch() + self._comments = self._submission.comments._comments + return self + def __init__( self, submission: "asyncpraw.models.Submission", @@ -78,7 +100,7 @@ def __init__( ): """Initialize a CommentForest instance. - :param submission: An instance of :class:`~.Subreddit` that is the parent of the + :param submission: An instance of :class:`.Submission` that is the parent of the comments. :param comments: Initialize the Forest with a list of comments (default: None). @@ -88,10 +110,7 @@ def __init__( def __len__(self) -> int: """Return the number of top-level comments in the forest.""" - if self._comments: - return len(self._comments) - else: - return 0 + return len(self._comments or []) def _insert_comment(self, comment): if comment.name in self._submission._comments_by_id: @@ -112,9 +131,16 @@ def _update(self, comments): for comment in comments: comment.submission = self._submission - async def list( + def list( self, - ) -> List[Union["asyncpraw.models.Comment", "asyncpraw.models.MoreComments"]]: + ) -> Union[ + List[Union["asyncpraw.models.Comment", "asyncpraw.models.MoreComments"]], + Coroutine[ + Any, + Any, + List[Union["asyncpraw.models.Comment", "asyncpraw.models.MoreComments"]], + ], + ]: """Return a flattened list of all Comments. This list may contain :class:`.MoreComments` instances if :meth:`.replace_more` @@ -127,7 +153,28 @@ async def list( comment = queue.pop(0) comments.append(comment) if not isinstance(comment, MoreComments): - queue.extend([reply async for reply in comment.replies]) + queue.extend(comment.replies) + # check if this got called with await + # I'm so sorry this really gross + if any( + [ + "await" in context + for context in inspect.getframeinfo( + inspect.currentframe().f_back + ).code_context + ] + ): + + async def async_func(): + warn( + "`CommentForest.list()` no longer needs to be awaited and this" + " will raise an error in a future version of Async PRAW.", + category=DeprecationWarning, + stacklevel=3, + ) + return comments + + return async_func() return comments async def replace_more( @@ -154,15 +201,15 @@ async def replace_more( .. code-block:: python submission = await reddit.submission("3hahrw", fetch=False) - comments = await submission.comments() - await comments.replace_more() + await submission.comments.replace_more() Alternatively, to replace :class:`.MoreComments` instances within the replies of a single comment try: .. code-block:: python - comment = await reddit.comment("d8r4im1") + comment = await reddit.comment("d8r4im1", fetch=False) + await comment.refresh() await comment.replies.replace_more() .. note:: @@ -175,8 +222,7 @@ async def replace_more( while True: try: - comments = await submission.comments() - await comments.replace_more() + await submission.comments.replace_more() break except PossibleExceptions: print("Handling replace_more exception") diff --git a/asyncpraw/models/reddit/comment.py b/asyncpraw/models/reddit/comment.py index 1f81e5ee..d8a1d9c6 100644 --- a/asyncpraw/models/reddit/comment.py +++ b/asyncpraw/models/reddit/comment.py @@ -13,6 +13,7 @@ UserContentMixin, ) from .redditor import Redditor +from .submission import Submission from .subreddit import Subreddit if TYPE_CHECKING: # pragma: no cover @@ -136,23 +137,21 @@ def replies(self) -> CommentForest: @property def submission(self) -> "asyncpraw.models.Submission": - """Return the Submission object this comment belongs to.""" - if not self._submission and self._fetched: # Comment not from submission - from .. import Submission + """Return the Submission object this comment belongs to. + :raises: :py:class:`AttributeError` if the comment is not fetched. + + """ + if not self._submission: # Comment not from submission self._submission = Submission( self._reddit, id=self._extract_submission_id() ) - return self._submission - elif self._submission: - return self._submission - else: - return None + return self._submission @submission.setter def submission(self, submission: "asyncpraw.models.Submission"): """Update the Submission associated with the Comment.""" - submission._comments_by_id[self.name] = self + submission._comments_by_id[self.fullname] = self self._submission = submission # pylint: disable=not-an-iterable for reply in self.replies: @@ -280,9 +279,6 @@ async def parent( if not self._fetched: await self._fetch() - if not self.submission._fetched: - await self.submission._fetch() - if self.parent_id == self.submission.fullname: return self.submission @@ -298,6 +294,9 @@ async def parent( async def refresh(self): """Refresh the comment's attributes. + If using :meth:`.Reddit.comment` with ``fetch=False``, this method must be + called in order to obtain the comment's replies. + Example usage: .. code-block:: python @@ -309,7 +308,7 @@ async def refresh(self): if "context" in self.__dict__: # Using hasattr triggers a fetch comment_path = self.context.split("?", 1)[0] else: - if not self.submission: + if self._submission is None: await self._fetch() path = API_PATH["submission"].format(id=self.submission.id) comment_path = f"{path}_/{self.id}" @@ -320,8 +319,7 @@ async def refresh(self): params["limit"] = self.reply_limit if "reply_sort" in self.__dict__: params["sort"] = self.reply_sort - response = await self._reddit.get(comment_path, params=params) - comment_list = response[1].children + comment_list = (await self._reddit.get(comment_path, params=params))[1].children if not comment_list: raise ClientException(self.MISSING_COMMENT_MESSAGE) diff --git a/asyncpraw/models/reddit/more.py b/asyncpraw/models/reddit/more.py index 3343f0d3..a2bbbf9d 100644 --- a/asyncpraw/models/reddit/more.py +++ b/asyncpraw/models/reddit/more.py @@ -44,7 +44,7 @@ async def _continue_comments(self, update): parent = await self._load_comment(self.parent_id.split("_", 1)[1]) self._comments = parent.replies if update: - async for comment in self._comments: + for comment in self._comments: comment.submission = self.submission return self._comments diff --git a/asyncpraw/models/reddit/submission.py b/asyncpraw/models/reddit/submission.py index 739a6157..68e8e7a7 100644 --- a/asyncpraw/models/reddit/submission.py +++ b/asyncpraw/models/reddit/submission.py @@ -495,48 +495,6 @@ def _kind(self) -> str: """Return the class's kind.""" return self._reddit.config.kinds["submission"] - async def comments(self) -> CommentForest: - """Provide an instance of :class:`.CommentForest`. - - This attribute can be used, for example, to obtain a flat list of comments, with - any :class:`.MoreComments` removed: - - .. code-block:: python - - comments = await submission.comments() - await comments.replace_more(limit=0) - comment_list = await comments.list() - for comment in comment_list: - # do stuff with comment - ... - - Sort order and comment limit can be set with the ``comment_sort`` and - ``comment_limit`` attributes before comments are fetched, including any call to - :meth:`.replace_more`: - - .. code-block:: python - - submission.comment_sort = "new" - comments = await submission.comments() - comment_list = await comments.list() - for comment in comment_list: - # do stuff with comment - ... - - .. note:: - - The appropriate values for ``comment_sort`` include ``confidence``, - ``controversial``, ``new``, ``old``, ``q&a``, and ``top`` - - See :ref:`extracting_comments` for more on working with a - :class:`.CommentForest`. - - """ - # This assumes _comments is set so that _fetch is called when it's not. - if "_comments" not in self.__dict__: - await self._fetch() - return self._comments - @cachedproperty def flair(self) -> SubmissionFlair: """Provide an instance of :class:`.SubmissionFlair`. @@ -591,7 +549,7 @@ def __init__( :param reddit: An instance of :class:`~.Reddit`. :param id: A reddit base36 submission ID, e.g., ``2gmzqe``. - :param url: A URL supported by :meth:`~asyncpraw.models.Submission.id_from_url`. + :param url: A URL supported by :meth:`~.id_from_url`. Either ``id`` or ``url`` can be provided, but not both. @@ -611,6 +569,40 @@ def __init__( super().__init__(reddit, _data=_data) self._comments_by_id = {} + self.comments = CommentForest(self) + """Provide an instance of :class:`.CommentForest`. + + This attribute can be used, for example, to obtain a flat list of comments, with + any :class:`.MoreComments` removed: + + .. code-block:: python + + await submission.comments.replace_more(limit=0) + comments = submission.comments.list() + + :raises: :py:class:`TypeError` if the submission is not fetched. + + Sort order and comment limit must be set with the ``comment_sort`` and + ``comment_limit`` attributes before the submission and its comments are fetched, + including any call to :meth:`.replace_more`. The ``fetch`` argument will need to + set when initializing the :class:`.Submission` instance: + + .. code-block:: python + + submission = await reddit.submission("8dmv8z", fetch=False) + submission.comment_sort = "new" + await submission.load() + comments = submission.comments.list() + + .. note:: + + The appropriate values for ``comment_sort`` include ``confidence``, + ``controversial``, ``new``, ``old``, ``q&a``, and ``top`` + + See :ref:`extracting_comments` for more on working with a + :class:`.CommentForest`. + + """ def __setattr__(self, attribute: str, value: Any): """Objectify author, subreddit, and poll data attributes.""" @@ -662,12 +654,11 @@ async def _fetch(self): submission = type(self)(self._reddit, _data=submission_data) delattr(submission, "comment_limit") delattr(submission, "comment_sort") - submission._comments = CommentForest(self) + submission.comments = CommentForest(self) self.__dict__.update(submission.__dict__) - self._comments._update(comment_listing.children) - self._fetched = True + self.comments._update(comment_listing.children) async def mark_visited(self): """Mark submission as visited. @@ -720,7 +711,7 @@ async def unhide( .. code-block:: python - submission = await reddit.submission(id="5or86n") + submission = await reddit.submission(id="5or86n", fetch=False) await submission.unhide() .. seealso:: diff --git a/tests/integration/cassettes/TestComment.test_parent__comment.json b/tests/integration/cassettes/TestComment.test_parent__comment.json index 25e3fa90..1408e104 100644 --- a/tests/integration/cassettes/TestComment.test_parent__comment.json +++ b/tests/integration/cassettes/TestComment.test_parent__comment.json @@ -19,7 +19,7 @@ "close" ], "User-Agent": [ - " Async PRAW/7.1.1.dev0 asyncprawcore/1.4.0.post1" + " Async PRAW/7.4.1.dev0 asyncprawcore/2.3.1.dev0" ] }, "method": "POST", @@ -31,23 +31,23 @@ }, "headers": { "Accept-Ranges": "bytes", - "Cache-Control": "max-age=0, must-revalidate", "Connection": "close", - "Content-Length": "106", + "Content-Length": "109", "Content-Type": "application/json; charset=UTF-8", - "Date": "Sun, 05 Jul 2020 22:08:16 GMT", + "Date": "Tue, 02 Nov 2021 23:29:33 GMT", "Server": "snooserv", - "Set-Cookie": "edgebucket=4WLGaeVOND4QZREXWL; Domain=reddit.com; Max-Age=63071999; Path=/; secure", + "Set-Cookie": "edgebucket=P9TTjbLf0QVYQaelJ2; Domain=reddit.com; Max-Age=63071999; Path=/; secure", "Strict-Transport-Security": "max-age=15552000; includeSubDomains; preload", "Via": "1.1 varnish", - "X-Cache": "MISS", - "X-Cache-Hits": "0", + "X-Clacks-Overhead": "GNU Terry Pratchett", "X-Moose": "majestic", - "X-Served-By": "cache-mci5942-MCI", - "X-Timer": "S1593986897.869287,VS0,VE78", + "cache-control": "max-age=0, must-revalidate", "x-content-type-options": "nosniff", "x-frame-options": "SAMEORIGIN", - "x-reddit-loid": "000000000076a1e6di.2.1593986896913.Z0FBQUFBQmZBazlReUhTOTJmaHphUXhwSXF0YUgyV2hFWUJDeVZKRW9LbHdBZFNFZ0tHUWpPRXNiQ2tsRVhkUWtYdURITG1SeWNBZVBIdmxBMVNndm9sTXQ4N3l0WG5LRENjNGpBeVN6c29ULUpZVTEwOXZxYUp5YlFKZG9WczlqbTk3TXR0SUdSV3I", + "x-ratelimit-remaining": "295", + "x-ratelimit-reset": "27", + "x-ratelimit-used": "5", + "x-reddit-loid": "0000000000g5bjvb7u.2.1635895773746.Z0FBQUFBQmhnY25kSm5SMXg4Qjlwcmh3Tkl1Y1hlMVA4TzJjMkM0ZG9xWUxIdWtPVFNGc3lsZEVsNmI3cHNoRUJjNXhVTHM2SElpMVJrekJEbVBqZXZ5NmNkdTZPQ0RsTHhWN0VFbzBVQzctUUhmaVJwSkdzN19KTnVQYzhTUWxteTdZZGZCUWJIRHg", "x-xss-protection": "1; mode=block" }, "status": { @@ -68,7 +68,7 @@ "bearer " ], "User-Agent": [ - " Async PRAW/7.1.1.dev0 asyncprawcore/1.4.0.post1" + " Async PRAW/7.4.1.dev0 asyncprawcore/2.3.1.dev0" ] }, "method": "GET", @@ -76,29 +76,29 @@ }, "response": { "body": { - "string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": \"\", \"dist\": 1, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_2gmzqe\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cklhv0f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"created_utc\": 1411010034.0, \"send_replies\": true, \"parent_id\": \"t1_cklfmye\", \"score\": 1, \"author_fullname\": \"t2_3pz6e\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qizd\", \"body\": \"Yes it does. That fix is also in the master branch, we just haven't made a release for it (and we probably won't until 3.0).\", \"awarders\": [], \"author_flair_css_class\": \"\", \"name\": \"t1_cklhv0f\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes it does. That fix is also in the master branch, we just haven\\u0026#39;t made a release for it (and we probably won\\u0026#39;t until 3.0).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/2gmzqe/praw_https_enabled_praw_testing_needed/cklhv0f/\", \"num_reports\": null, \"locked\": false, \"report_reasons\": null, \"created\": 1411038834.0, \"subreddit\": \"redditdev\", \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"subreddit_type\": \"public\", \"ups\": 1}}], \"after\": null, \"before\": null}}" + "string": "{\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": 1, \"modhash\": \"\", \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cklhv0f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cklfmye\", \"score\": 1, \"author_fullname\": \"t2_3pz6e\", \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"all_awardings\": [], \"body\": \"Yes it does. That fix is also in the master branch, we just haven't made a release for it (and we probably won't until 3.0).\", \"awarders\": [], \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": \"\", \"author_patreon_flair\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"is_submitter\": true, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes it does. That fix is also in the master branch, we just haven\\u0026#39;t made a release for it (and we probably won\\u0026#39;t until 3.0).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_2gmzqe\", \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/2gmzqe/praw_https_enabled_praw_testing_needed/cklhv0f/\", \"subreddit_type\": \"public\", \"locked\": false, \"name\": \"t1_cklhv0f\", \"created\": 1411010034.0, \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"created_utc\": 1411010034.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"before\": null}}" }, "headers": { "Accept-Ranges": "bytes", - "Access-Control-Allow-Origin": "*", - "Access-Control-Expose-Headers": "X-Moose", - "Cache-Control": "max-age=0, must-revalidate", "Connection": "keep-alive", - "Content-Length": "2032", + "Content-Length": "2160", "Content-Type": "application/json; charset=UTF-8", - "Date": "Sun, 05 Jul 2020 22:08:17 GMT", + "Date": "Tue, 02 Nov 2021 23:29:33 GMT", "Server": "snooserv", "Set-Cookie": "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-Cache": "MISS", - "X-Cache-Hits": "0", + "X-Clacks-Overhead": "GNU Terry Pratchett", "X-Moose": "majestic", - "X-Served-By": "cache-mci5920-MCI", - "X-Timer": "S1593986897.018756,VS0,VE111", + "access-control-allow-origin": "*", + "access-control-expose-headers": "X-Moose", + "cache-control": "max-age=0, must-revalidate", "x-content-type-options": "nosniff", "x-frame-options": "SAMEORIGIN", + "x-ratelimit-remaining": "299", + "x-ratelimit-reset": "27", + "x-ratelimit-used": "1", "x-ua-compatible": "IE=edge", "x-xss-protection": "1; mode=block" }, @@ -120,7 +120,7 @@ "bearer " ], "User-Agent": [ - " Async PRAW/7.1.1.dev0 asyncprawcore/1.4.0.post1" + " Async PRAW/7.4.1.dev0 asyncprawcore/2.3.1.dev0" ] }, "method": "GET", @@ -128,29 +128,29 @@ }, "response": { "body": { - "string": "[{\"kind\": \"Listing\", \"data\": {\"modhash\": \"\", \"dist\": 1, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"redditdev\", \"selftext\": \"PRAW client developers,\\n\\nI have made a PRAW branch to test using only HTTPS over the API. This change requires some testers to see if there any issues that did not come up from our set of unit tests. This is the first of a few improvements that will (hopefully soon) be released with PRAW version 3. If you want to start using HTTPS exclusively through PRAW please update via the following:\\n\\n pip install git+git://github.com/praw-dev/praw.git@praw3\\n\\nIf you experience any issues feel free to report them here, however filing a bug on github (https://github.com/praw-dev/praw/issues) would be ideal. Thanks!\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 1, \"clicked\": false, \"title\": \"[PRAW] HTTPS enabled PRAW testing needed\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/redditdev\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"parent_whitelist_status\": \"all_ads\", \"hide_score\": false, \"name\": \"t3_2gmzqe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.84, \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 1, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_3pz6e\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"PRAW\", \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {\"gid_2\": 1}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1410964471.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.redditdev\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPRAW client developers,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have made a PRAW branch to test using only HTTPS over the API. This change requires some testers to see if there any issues that did not come up from our set of unit tests. This is the first of a few improvements that will (hopefully soon) be released with PRAW version 3. If you want to start using HTTPS exclusively through PRAW please update via the following:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Epip install git+git://github.com/praw-dev/praw.git@praw3\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIf you experience any issues feel free to report them here, however filing a bug on github (\\u003Ca href=\\\"https://github.com/praw-dev/praw/issues\\\"\\u003Ehttps://github.com/praw-dev/praw/issues\\u003C/a\\u003E) would be ideal. Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": true, \"no_follow\": false, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [{\"giver_coin_reward\": null, \"subreddit_id\": null, \"is_new\": false, \"days_of_drip_extension\": 0, \"coin_price\": 500, \"id\": \"gid_2\", \"penny_donate\": null, \"coin_reward\": 100, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/gold_512.png\", \"days_of_premium\": 7, \"icon_height\": 512, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_128.png\", \"width\": 128, \"height\": 128}], \"icon_width\": 512, \"static_icon_width\": 512, \"start_date\": null, \"is_enabled\": true, \"description\": \"Gives the author a week of Reddit Premium, %{coin_symbol}100 Coins to do with as they please, and shows a Gold Award.\", \"end_date\": null, \"subreddit_coin_reward\": 0, \"count\": 1, \"static_icon_height\": 512, \"name\": \"Gold\", \"resized_static_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_128.png\", \"width\": 128, \"height\": 128}], \"icon_format\": null, \"award_sub_type\": \"GLOBAL\", \"penny_price\": null, \"award_type\": \"global\", \"static_icon_url\": \"https://www.redditstatic.com/gold/awards/icon/gold_512.png\"}], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qizd\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"2gmzqe\", \"is_robot_indexable\": true, \"num_duplicates\": 0, \"report_reasons\": null, \"author\": \"bboe\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"media\": null, \"contest_mode\": false, \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/redditdev/comments/2gmzqe/praw_https_enabled_praw_testing_needed/\", \"whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/redditdev/comments/2gmzqe/praw_https_enabled_praw_testing_needed/\", \"subreddit_subscribers\": 38991, \"created_utc\": 1410935671.0, \"num_crossposts\": 0, \"mod_reports\": [], \"is_video\": false}}], \"after\": null, \"before\": null}}, {\"kind\": \"Listing\", \"data\": {\"modhash\": \"\", \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_2gmzqe\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": \"\", \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_2gmzqe\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cklhv0f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cklfmye\", \"score\": 1, \"author_fullname\": \"t2_3pz6e\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qizd\", \"collapsed\": false, \"body\": \"Yes it does. That fix is also in the master branch, we just haven't made a release for it (and we probably won't until 3.0).\", \"edited\": false, \"author_flair_css_class\": \"\", \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes it does. That fix is also in the master branch, we just haven\\u0026#39;t made a release for it (and we probably won\\u0026#39;t until 3.0).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/2gmzqe/praw_https_enabled_praw_testing_needed/cklhv0f/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cklhv0f\", \"created\": 1411038834.0, \"subreddit\": \"redditdev\", \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"created_utc\": 1411010034.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cklfmye\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"paneer_burrito\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_2gmzqe\", \"score\": 1, \"author_fullname\": \"t2_gy2i1\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qizd\", \"body\": \"Quick question: I remember reading about an issue where the proxy settings for https requests were not getting picked up from the environment variables. Does this branch have that fix? Thanks\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EQuick question: I remember reading about an issue where the proxy settings for https requests were not getting picked up from the environment variables. Does this branch have that fix? Thanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/2gmzqe/praw_https_enabled_praw_testing_needed/cklfmye/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cklfmye\", \"created\": 1411033912.0, \"subreddit\": \"redditdev\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1411005112.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}]" + "string": "[{\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": 1, \"modhash\": \"\", \"geo_filter\": \"\", \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"redditdev\", \"selftext\": \"PRAW client developers,\\n\\nI have made a PRAW branch to test using only HTTPS over the API. This change requires some testers to see if there any issues that did not come up from our set of unit tests. This is the first of a few improvements that will (hopefully soon) be released with PRAW version 3. If you want to start using HTTPS exclusively through PRAW please update via the following:\\n\\n pip install git+git://github.com/praw-dev/praw.git@praw3\\n\\nIf you experience any issues feel free to report them here, however filing a bug on github (https://github.com/praw-dev/praw/issues) would be ideal. Thanks!\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 1, \"clicked\": false, \"title\": \"[PRAW] HTTPS enabled PRAW testing needed\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/redditdev\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"parent_whitelist_status\": \"all_ads\", \"hide_score\": false, \"name\": \"t3_2gmzqe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.94, \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 13, \"total_awards_received\": 1, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_3pz6e\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"PRAW\", \"can_mod_post\": false, \"score\": 13, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {\"gid_2\": 1}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1410935671.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.redditdev\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPRAW client developers,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have made a PRAW branch to test using only HTTPS over the API. This change requires some testers to see if there any issues that did not come up from our set of unit tests. This is the first of a few improvements that will (hopefully soon) be released with PRAW version 3. If you want to start using HTTPS exclusively through PRAW please update via the following:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Epip install git+git://github.com/praw-dev/praw.git@praw3\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIf you experience any issues feel free to report them here, however filing a bug on github (\\u003Ca href=\\\"https://github.com/praw-dev/praw/issues\\\"\\u003Ehttps://github.com/praw-dev/praw/issues\\u003C/a\\u003E) would be ideal. Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [{\"giver_coin_reward\": null, \"subreddit_id\": null, \"is_new\": false, \"days_of_drip_extension\": 0, \"coin_price\": 500, \"id\": \"gid_2\", \"penny_donate\": null, \"coin_reward\": 100, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/gold_512.png\", \"days_of_premium\": 7, \"icon_height\": 512, \"tiers_by_required_awardings\": null, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_128.png\", \"width\": 128, \"height\": 128}], \"icon_width\": 512, \"static_icon_width\": 512, \"start_date\": null, \"is_enabled\": true, \"awardings_required_to_grant_benefits\": null, \"description\": \"Gives 100 Reddit Coins and a week of r/lounge access and ad-free browsing.\", \"end_date\": null, \"subreddit_coin_reward\": 0, \"count\": 1, \"static_icon_height\": 512, \"name\": \"Gold\", \"resized_static_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_128.png\", \"width\": 128, \"height\": 128}], \"icon_format\": null, \"award_sub_type\": \"GLOBAL\", \"penny_price\": null, \"award_type\": \"global\", \"static_icon_url\": \"https://www.redditstatic.com/gold/awards/icon/gold_512.png\"}], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qizd\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"2gmzqe\", \"is_robot_indexable\": true, \"num_duplicates\": 0, \"report_reasons\": null, \"author\": \"bboe\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"media\": null, \"contest_mode\": false, \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/redditdev/comments/2gmzqe/praw_https_enabled_praw_testing_needed/\", \"whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/redditdev/comments/2gmzqe/praw_https_enabled_praw_testing_needed/\", \"subreddit_subscribers\": 63220, \"created_utc\": 1410935671.0, \"num_crossposts\": 0, \"mod_reports\": [], \"is_video\": false}}], \"before\": null}}, {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": \"\", \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": \"\", \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cklhv0f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"created_utc\": 1411010034.0, \"send_replies\": true, \"parent_id\": \"t1_cklfmye\", \"score\": 1, \"author_fullname\": \"t2_3pz6e\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Yes it does. That fix is also in the master branch, we just haven't made a release for it (and we probably won't until 3.0).\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": \"\", \"name\": \"t1_cklhv0f\", \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes it does. That fix is also in the master branch, we just haven\\u0026#39;t made a release for it (and we probably won\\u0026#39;t until 3.0).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_2gmzqe\", \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/2gmzqe/praw_https_enabled_praw_testing_needed/cklhv0f/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1411010034.0, \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cklfmye\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"paneer_burrito\", \"can_mod_post\": false, \"created_utc\": 1411005112.0, \"send_replies\": true, \"parent_id\": \"t3_2gmzqe\", \"score\": 1, \"author_fullname\": \"t2_gy2i1\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Quick question: I remember reading about an issue where the proxy settings for https requests were not getting picked up from the environment variables. Does this branch have that fix? Thanks\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cklfmye\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EQuick question: I remember reading about an issue where the proxy settings for https requests were not getting picked up from the environment variables. Does this branch have that fix? Thanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/2gmzqe/praw_https_enabled_praw_testing_needed/cklfmye/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1411005112.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_2gmzqe\", \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}]" }, "headers": { "Accept-Ranges": "bytes", - "Access-Control-Allow-Origin": "*", - "Access-Control-Expose-Headers": "X-Moose", - "Cache-Control": "max-age=0, must-revalidate", "Connection": "keep-alive", - "Content-Length": "10302", + "Content-Length": "10678", "Content-Type": "application/json; charset=UTF-8", - "Date": "Sun, 05 Jul 2020 22:08:17 GMT", + "Date": "Tue, 02 Nov 2021 23:29:34 GMT", "Server": "snooserv", - "Set-Cookie": "session_tracker=aeprhikcpdgeogcqmp.0.1593986897221.Z0FBQUFBQmZBazlSYjdUOUNWVkpueWJFZTFabFZoZ3A1Y1VNdXJ4dzlvN0JnaE1lUUlPOWpvemJNTlhuZkg4NDVnUUluUGlUMGc5RVMxQjVoNjFkU2huSUV4X0ZMMjRMSmVvVE9pcExWTC1WcHd3eHdKM3FsQWpqVGJqTnVSTXJUaEEtX2RwT2JlNGY; Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Jul-2020 00:08:17 GMT; secure; SameSite=None; Secure", + "Set-Cookie": "session_tracker=gcmljlqpaipojammha.0.1635895773987.Z0FBQUFBQmhnY25lR3JBTm9xbUFNOHNfRzB3Z3psOVBMbVdyRGg2OEpkU29vM3RlMGtpeDdfUTI5YzZOaVdGYlZtaVlBX0RPbGxuMXN5SUExQ2NzQ3JLY3Z2OGdvaTNUUV9jU0dGUVlRQVpxSmFFNlhUQTBqVmE4ZkpzNTVIbllvZkF1SU1kLTFtcUQ; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 03-Nov-2021 01:29:34 GMT; secure; SameSite=None; Secure", "Strict-Transport-Security": "max-age=15552000; includeSubDomains; preload", "Vary": "accept-encoding", "Via": "1.1 varnish", - "X-Cache": "MISS", - "X-Cache-Hits": "0", + "X-Clacks-Overhead": "GNU Terry Pratchett", "X-Moose": "majestic", - "X-Served-By": "cache-mci5920-MCI", - "X-Timer": "S1593986897.150236,VS0,VE248", + "access-control-allow-origin": "*", + "access-control-expose-headers": "X-Moose", + "cache-control": "max-age=0, must-revalidate", "x-content-type-options": "nosniff", "x-frame-options": "SAMEORIGIN", + "x-ratelimit-remaining": "298", + "x-ratelimit-reset": "27", + "x-ratelimit-used": "2", "x-ua-compatible": "IE=edge", "x-xss-protection": "1; mode=block" }, @@ -172,7 +172,59 @@ "bearer " ], "User-Agent": [ - " Async PRAW/7.1.1.dev0 asyncprawcore/1.4.0.post1" + " Async PRAW/7.4.1.dev0 asyncprawcore/2.3.1.dev0" + ] + }, + "method": "GET", + "uri": "https://oauth.reddit.com/api/info/?id=t1_cklfmye&raw_json=1" + }, + "response": { + "body": { + "string": "{\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": 1, \"modhash\": \"\", \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cklfmye\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"paneer_burrito\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_2gmzqe\", \"score\": 1, \"author_fullname\": \"t2_gy2i1\", \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"all_awardings\": [], \"body\": \"Quick question: I remember reading about an issue where the proxy settings for https requests were not getting picked up from the environment variables. Does this branch have that fix? Thanks\", \"awarders\": [], \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"author_patreon_flair\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EQuick question: I remember reading about an issue where the proxy settings for https requests were not getting picked up from the environment variables. Does this branch have that fix? Thanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_2gmzqe\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/2gmzqe/praw_https_enabled_praw_testing_needed/cklfmye/\", \"subreddit_type\": \"public\", \"locked\": false, \"name\": \"t1_cklfmye\", \"created\": 1411005112.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1411005112.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"before\": null}}" + }, + "headers": { + "Accept-Ranges": "bytes", + "Connection": "keep-alive", + "Content-Length": "2279", + "Content-Type": "application/json; charset=UTF-8", + "Date": "Tue, 02 Nov 2021 23:29:34 GMT", + "Server": "snooserv", + "Set-Cookie": "session_tracker=gcmljlqpaipojammha.0.1635895774132.Z0FBQUFBQmhnY25lTWlUTWZsTVNfLXdMS3RHajl0MmdFbmVtM1NxOWRFdkZNX0wtTG9pUUtJUnNBR2tabGdTTVpiSHVlNU5HNDVxVWFBaV84SGh2b2FDSkxENmwtN1Via2tVZG12NDBSV1RSek9VVHRLVHFqbHdySTZHVHd4YUtDd0p2aFJyOGFXbm4; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 03-Nov-2021 01:29:34 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", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ratelimit-remaining": "297", + "x-ratelimit-reset": "26", + "x-ratelimit-used": "3", + "x-ua-compatible": "IE=edge", + "x-xss-protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://oauth.reddit.com/api/info/?id=t1_cklfmye&raw_json=1" + } + }, + { + "request": { + "body": null, + "headers": { + "Accept-Encoding": [ + "identity" + ], + "Authorization": [ + "bearer " + ], + "User-Agent": [ + " Async PRAW/7.4.1.dev0 asyncprawcore/2.3.1.dev0" ] }, "method": "GET", @@ -180,29 +232,29 @@ }, "response": { "body": { - "string": "[{\"kind\": \"Listing\", \"data\": {\"modhash\": \"\", \"dist\": 1, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"redditdev\", \"selftext\": \"PRAW client developers,\\n\\nI have made a PRAW branch to test using only HTTPS over the API. This change requires some testers to see if there any issues that did not come up from our set of unit tests. This is the first of a few improvements that will (hopefully soon) be released with PRAW version 3. If you want to start using HTTPS exclusively through PRAW please update via the following:\\n\\n pip install git+git://github.com/praw-dev/praw.git@praw3\\n\\nIf you experience any issues feel free to report them here, however filing a bug on github (https://github.com/praw-dev/praw/issues) would be ideal. Thanks!\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 1, \"clicked\": false, \"title\": \"[PRAW] HTTPS enabled PRAW testing needed\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/redditdev\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"parent_whitelist_status\": \"all_ads\", \"hide_score\": false, \"name\": \"t3_2gmzqe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.88, \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 1, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_3pz6e\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"PRAW\", \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {\"gid_2\": 1}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1410964471.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.redditdev\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPRAW client developers,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have made a PRAW branch to test using only HTTPS over the API. This change requires some testers to see if there any issues that did not come up from our set of unit tests. This is the first of a few improvements that will (hopefully soon) be released with PRAW version 3. If you want to start using HTTPS exclusively through PRAW please update via the following:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Epip install git+git://github.com/praw-dev/praw.git@praw3\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIf you experience any issues feel free to report them here, however filing a bug on github (\\u003Ca href=\\\"https://github.com/praw-dev/praw/issues\\\"\\u003Ehttps://github.com/praw-dev/praw/issues\\u003C/a\\u003E) would be ideal. Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": true, \"no_follow\": false, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [{\"giver_coin_reward\": null, \"subreddit_id\": null, \"is_new\": false, \"days_of_drip_extension\": 0, \"coin_price\": 500, \"id\": \"gid_2\", \"penny_donate\": null, \"coin_reward\": 100, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/gold_512.png\", \"days_of_premium\": 7, \"icon_height\": 512, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_128.png\", \"width\": 128, \"height\": 128}], \"icon_width\": 512, \"static_icon_width\": 512, \"start_date\": null, \"is_enabled\": true, \"description\": \"Gives the author a week of Reddit Premium, %{coin_symbol}100 Coins to do with as they please, and shows a Gold Award.\", \"end_date\": null, \"subreddit_coin_reward\": 0, \"count\": 1, \"static_icon_height\": 512, \"name\": \"Gold\", \"resized_static_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_128.png\", \"width\": 128, \"height\": 128}], \"icon_format\": null, \"award_sub_type\": \"GLOBAL\", \"penny_price\": null, \"award_type\": \"global\", \"static_icon_url\": \"https://www.redditstatic.com/gold/awards/icon/gold_512.png\"}], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qizd\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"2gmzqe\", \"is_robot_indexable\": true, \"num_duplicates\": 0, \"report_reasons\": null, \"author\": \"bboe\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"media\": null, \"contest_mode\": false, \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/redditdev/comments/2gmzqe/praw_https_enabled_praw_testing_needed/\", \"whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/redditdev/comments/2gmzqe/praw_https_enabled_praw_testing_needed/\", \"subreddit_subscribers\": 38991, \"created_utc\": 1410935671.0, \"num_crossposts\": 0, \"mod_reports\": [], \"is_video\": false}}], \"after\": null, \"before\": null}}, {\"kind\": \"Listing\", \"data\": {\"modhash\": \"\", \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_2gmzqe\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": \"\", \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_2gmzqe\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cklhv0f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cklfmye\", \"score\": 1, \"author_fullname\": \"t2_3pz6e\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qizd\", \"collapsed\": false, \"body\": \"Yes it does. That fix is also in the master branch, we just haven't made a release for it (and we probably won't until 3.0).\", \"edited\": false, \"author_flair_css_class\": \"\", \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes it does. That fix is also in the master branch, we just haven\\u0026#39;t made a release for it (and we probably won\\u0026#39;t until 3.0).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/2gmzqe/praw_https_enabled_praw_testing_needed/cklhv0f/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cklhv0f\", \"created\": 1411038834.0, \"subreddit\": \"redditdev\", \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"created_utc\": 1411010034.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cklfmye\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"paneer_burrito\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_2gmzqe\", \"score\": 1, \"author_fullname\": \"t2_gy2i1\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qizd\", \"body\": \"Quick question: I remember reading about an issue where the proxy settings for https requests were not getting picked up from the environment variables. Does this branch have that fix? Thanks\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EQuick question: I remember reading about an issue where the proxy settings for https requests were not getting picked up from the environment variables. Does this branch have that fix? Thanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/2gmzqe/praw_https_enabled_praw_testing_needed/cklfmye/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cklfmye\", \"created\": 1411033912.0, \"subreddit\": \"redditdev\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1411005112.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}]" + "string": "[{\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": 1, \"modhash\": \"\", \"geo_filter\": \"\", \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"redditdev\", \"selftext\": \"PRAW client developers,\\n\\nI have made a PRAW branch to test using only HTTPS over the API. This change requires some testers to see if there any issues that did not come up from our set of unit tests. This is the first of a few improvements that will (hopefully soon) be released with PRAW version 3. If you want to start using HTTPS exclusively through PRAW please update via the following:\\n\\n pip install git+git://github.com/praw-dev/praw.git@praw3\\n\\nIf you experience any issues feel free to report them here, however filing a bug on github (https://github.com/praw-dev/praw/issues) would be ideal. Thanks!\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 1, \"clicked\": false, \"title\": \"[PRAW] HTTPS enabled PRAW testing needed\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/redditdev\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"parent_whitelist_status\": \"all_ads\", \"hide_score\": false, \"name\": \"t3_2gmzqe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.83, \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 10, \"total_awards_received\": 1, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_3pz6e\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"PRAW\", \"can_mod_post\": false, \"score\": 10, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {\"gid_2\": 1}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1410935671.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.redditdev\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPRAW client developers,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have made a PRAW branch to test using only HTTPS over the API. This change requires some testers to see if there any issues that did not come up from our set of unit tests. This is the first of a few improvements that will (hopefully soon) be released with PRAW version 3. If you want to start using HTTPS exclusively through PRAW please update via the following:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Epip install git+git://github.com/praw-dev/praw.git@praw3\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIf you experience any issues feel free to report them here, however filing a bug on github (\\u003Ca href=\\\"https://github.com/praw-dev/praw/issues\\\"\\u003Ehttps://github.com/praw-dev/praw/issues\\u003C/a\\u003E) would be ideal. Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": false, \"pinned\": false, \"over_18\": false, \"all_awardings\": [{\"giver_coin_reward\": null, \"subreddit_id\": null, \"is_new\": false, \"days_of_drip_extension\": 0, \"coin_price\": 500, \"id\": \"gid_2\", \"penny_donate\": null, \"coin_reward\": 100, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/gold_512.png\", \"days_of_premium\": 7, \"icon_height\": 512, \"tiers_by_required_awardings\": null, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_128.png\", \"width\": 128, \"height\": 128}], \"icon_width\": 512, \"static_icon_width\": 512, \"start_date\": null, \"is_enabled\": true, \"awardings_required_to_grant_benefits\": null, \"description\": \"Gives 100 Reddit Coins and a week of r/lounge access and ad-free browsing.\", \"end_date\": null, \"subreddit_coin_reward\": 0, \"count\": 1, \"static_icon_height\": 512, \"name\": \"Gold\", \"resized_static_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_128.png\", \"width\": 128, \"height\": 128}], \"icon_format\": null, \"award_sub_type\": \"GLOBAL\", \"penny_price\": null, \"award_type\": \"global\", \"static_icon_url\": \"https://www.redditstatic.com/gold/awards/icon/gold_512.png\"}], \"awarders\": [], \"media_only\": false, \"can_gild\": false, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qizd\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"2gmzqe\", \"is_robot_indexable\": true, \"num_duplicates\": 0, \"report_reasons\": null, \"author\": \"bboe\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"media\": null, \"contest_mode\": false, \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/redditdev/comments/2gmzqe/praw_https_enabled_praw_testing_needed/\", \"whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/redditdev/comments/2gmzqe/praw_https_enabled_praw_testing_needed/\", \"subreddit_subscribers\": 63220, \"created_utc\": 1410935671.0, \"num_crossposts\": 0, \"mod_reports\": [], \"is_video\": false}}], \"before\": null}}, {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": \"\", \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": \"\", \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cklhv0f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"created_utc\": 1411010034.0, \"send_replies\": true, \"parent_id\": \"t1_cklfmye\", \"score\": 1, \"author_fullname\": \"t2_3pz6e\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Yes it does. That fix is also in the master branch, we just haven't made a release for it (and we probably won't until 3.0).\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": \"\", \"name\": \"t1_cklhv0f\", \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes it does. That fix is also in the master branch, we just haven\\u0026#39;t made a release for it (and we probably won\\u0026#39;t until 3.0).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_2gmzqe\", \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/2gmzqe/praw_https_enabled_praw_testing_needed/cklhv0f/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1411010034.0, \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cklfmye\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"paneer_burrito\", \"can_mod_post\": false, \"created_utc\": 1411005112.0, \"send_replies\": true, \"parent_id\": \"t3_2gmzqe\", \"score\": 1, \"author_fullname\": \"t2_gy2i1\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Quick question: I remember reading about an issue where the proxy settings for https requests were not getting picked up from the environment variables. Does this branch have that fix? Thanks\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cklfmye\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EQuick question: I remember reading about an issue where the proxy settings for https requests were not getting picked up from the environment variables. Does this branch have that fix? Thanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/2gmzqe/praw_https_enabled_praw_testing_needed/cklfmye/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1411005112.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_2gmzqe\", \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}]" }, "headers": { "Accept-Ranges": "bytes", - "Access-Control-Allow-Origin": "*", - "Access-Control-Expose-Headers": "X-Moose", - "Cache-Control": "max-age=0, must-revalidate", "Connection": "keep-alive", - "Content-Length": "10302", + "Content-Length": "10678", "Content-Type": "application/json; charset=UTF-8", - "Date": "Sun, 05 Jul 2020 22:08:17 GMT", + "Date": "Tue, 02 Nov 2021 23:29:34 GMT", "Server": "snooserv", - "Set-Cookie": "session_tracker=aeprhikcpdgeogcqmp.0.1593986897553.Z0FBQUFBQmZBazlSWWh6bWxURTJKSDNrUUllVzUwRVM5OGlMRl9hckQ2ZW1lRnVwVjRTWVdraXdrU244V280TmxNRjhINjZnNUp0U1ZHUzdYcGl6YUJuUnY5LTRzeEtiQzB3djdjTFlsT2hua1ZhWUQyQUZvNFRaajZDaVZQLVJhSUtvN0d4Uk9vUXQ; Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Jul-2020 00:08:17 GMT; secure; SameSite=None; Secure", + "Set-Cookie": "session_tracker=gcmljlqpaipojammha.0.1635895774247.Z0FBQUFBQmhnY25lUWJ5dVZ4RThZTWUwUFZrMTI5NnhPX1daeWNWQXdXQzdWdE9IaUtjSXZDUzdEU1VJb2Fta20wWXlpVXZRZTRFSTdSSVRzcV9rTUc5ZWFTcGpQZ0lhbGE1QkJsZWNVYjJZVENHak5aLVpISDJQLUxKRF9ac2hzWGRtYWxtUHV3b2s; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 03-Nov-2021 01:29:34 GMT; secure; SameSite=None; Secure", "Strict-Transport-Security": "max-age=15552000; includeSubDomains; preload", "Vary": "accept-encoding", "Via": "1.1 varnish", - "X-Cache": "MISS", - "X-Cache-Hits": "0", + "X-Clacks-Overhead": "GNU Terry Pratchett", "X-Moose": "majestic", - "X-Served-By": "cache-mci5920-MCI", - "X-Timer": "S1593986897.419376,VS0,VE228", + "access-control-allow-origin": "*", + "access-control-expose-headers": "X-Moose", + "cache-control": "max-age=0, must-revalidate", "x-content-type-options": "nosniff", "x-frame-options": "SAMEORIGIN", + "x-ratelimit-remaining": "296", + "x-ratelimit-reset": "26", + "x-ratelimit-used": "4", "x-ua-compatible": "IE=edge", "x-xss-protection": "1; mode=block" }, @@ -214,6 +266,6 @@ } } ], - "recorded_at": "2020-07-05T17:08:17", + "recorded_at": "2021-11-02T18:29:34", "version": 1 } diff --git a/tests/integration/cassettes/TestComment.test_refresh.json b/tests/integration/cassettes/TestComment.test_refresh.json index 2d44b79c..a7d4cfe6 100644 --- a/tests/integration/cassettes/TestComment.test_refresh.json +++ b/tests/integration/cassettes/TestComment.test_refresh.json @@ -23,7 +23,7 @@ "close" ], "User-Agent": [ - " Async PRAW/7.1.1.dev0 asyncprawcore/1.4.0.post1" + " Async PRAW/7.4.1.dev0 asyncprawcore/2.3.1.dev0" ] }, "method": "POST", @@ -31,26 +31,26 @@ }, "response": { "body": { - "string": "{\"access_token\": \"\", \"token_type\": \"bearer\", \"expires_in\": 3600, \"scope\": \"account creddits edit flair history identity livemanage modconfig modcontributors modflair modlog modmail modothers modposts modself modtraffic modwiki mysubreddits privatemessages read report save structuredstyles submit subscribe vote wikiedit wikiread\"}" + "string": "{\"access_token\": \"\", \"token_type\": \"bearer\", \"expires_in\": 3600, \"refresh_token\": \"\", \"scope\": \"account creddits edit flair history identity livemanage modconfig modcontributors modflair modlog modmail modothers modposts modself modtraffic modwiki mysubreddits privatemessages read report save structuredstyles submit subscribe vote wikiedit wikiread\"}" }, "headers": { "Accept-Ranges": "bytes", - "Cache-Control": "max-age=0, must-revalidate", "Connection": "close", - "Content-Length": "371", + "Content-Length": "427", "Content-Type": "application/json; charset=UTF-8", - "Date": "Mon, 06 Jul 2020 00:20:35 GMT", + "Date": "Tue, 02 Nov 2021 23:29:13 GMT", "Server": "snooserv", - "Set-Cookie": "edgebucket=VCRYfFqO8qHxi8Hatf; Domain=reddit.com; Max-Age=63071999; Path=/; secure", + "Set-Cookie": "edgebucket=yiFvqBPMedYzUcVgb5; Domain=reddit.com; Max-Age=63071999; Path=/; secure", "Strict-Transport-Security": "max-age=15552000; includeSubDomains; preload", "Via": "1.1 varnish", - "X-Cache": "MISS", - "X-Cache-Hits": "0", + "X-Clacks-Overhead": "GNU Terry Pratchett", "X-Moose": "majestic", - "X-Served-By": "cache-mci5949-MCI", - "X-Timer": "S1593994835.469417,VS0,VE95", + "cache-control": "max-age=0, must-revalidate", "x-content-type-options": "nosniff", "x-frame-options": "SAMEORIGIN", + "x-ratelimit-remaining": "297", + "x-ratelimit-reset": "47", + "x-ratelimit-used": "3", "x-xss-protection": "1; mode=block" }, "status": { @@ -71,7 +71,7 @@ "bearer " ], "User-Agent": [ - " Async PRAW/7.1.1.dev0 asyncprawcore/1.4.0.post1" + " Async PRAW/7.4.1.dev0 asyncprawcore/2.3.1.dev0" ] }, "method": "GET", @@ -79,31 +79,28 @@ }, "response": { "body": { - "string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 1, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_54hhwl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"d81vwef\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"created_utc\": 1474842803.0, \"send_replies\": true, \"parent_id\": \"t3_54hhwl\", \"score\": 2, \"author_fullname\": \"t2_3pz6e\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qizd\", \"body\": \"That appears to be a bug in that PRAW4 is currently using `/api/info` to load the comment's attributes. I'll see what I can do.\", \"awarders\": [], \"author_flair_css_class\": null, \"name\": \"t1_d81vwef\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat appears to be a bug in that PRAW4 is currently using \\u003Ccode\\u003E/api/info\\u003C/code\\u003E to load the comment\\u0026#39;s attributes. I\\u0026#39;ll see what I can do.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": \"comment score below threshold\", \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d81vwef/\", \"num_reports\": null, \"locked\": false, \"report_reasons\": null, \"created\": 1474871603.0, \"subreddit\": \"redditdev\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": true, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"subreddit_type\": \"public\", \"ups\": 2}}], \"after\": null, \"before\": null}}" + "string": "{\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": 1, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 2, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"d81vwef\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_54hhwl\", \"score\": 2, \"author_fullname\": \"t2_3pz6e\", \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"all_awardings\": [], \"body\": \"That appears to be a bug in that PRAW4 is currently using `/api/info` to load the comment's attributes. I'll see what I can do.\", \"awarders\": [], \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": \"\", \"author_patreon_flair\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat appears to be a bug in that PRAW4 is currently using \\u003Ccode\\u003E/api/info\\u003C/code\\u003E to load the comment\\u0026#39;s attributes. I\\u0026#39;ll see what I can do.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_54hhwl\", \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d81vwef/\", \"subreddit_type\": \"public\", \"locked\": false, \"name\": \"t1_d81vwef\", \"created\": 1474842803.0, \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"created_utc\": 1474842803.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"before\": null}}" }, "headers": { "Accept-Ranges": "bytes", - "Cache-Control": "private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate", "Connection": "keep-alive", - "Content-Length": "2089", + "Content-Length": "2198", "Content-Type": "application/json; charset=UTF-8", - "Date": "Mon, 06 Jul 2020 00:20:35 GMT", - "Expires": "-1", + "Date": "Tue, 02 Nov 2021 23:29:14 GMT", "Server": "snooserv", "Set-Cookie": "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-Cache": "MISS", - "X-Cache-Hits": "0", + "X-Clacks-Overhead": "GNU Terry Pratchett", "X-Moose": "majestic", - "X-Served-By": "cache-mci5946-MCI", - "X-Timer": "S1593994836.636184,VS0,VE116", + "cache-control": "private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate", + "expires": "-1", "x-content-type-options": "nosniff", "x-frame-options": "SAMEORIGIN", - "x-ratelimit-remaining": "599.0", - "x-ratelimit-reset": "565", - "x-ratelimit-used": "1", + "x-ratelimit-remaining": "65.0", + "x-ratelimit-reset": "46", + "x-ratelimit-used": "535", "x-ua-compatible": "IE=edge", "x-xss-protection": "1; mode=block" }, @@ -125,7 +122,58 @@ "bearer " ], "User-Agent": [ - " Async PRAW/7.1.1.dev0 asyncprawcore/1.4.0.post1" + " Async PRAW/7.4.1.dev0 asyncprawcore/2.3.1.dev0" + ] + }, + "method": "GET", + "uri": "https://oauth.reddit.com/api/info/?id=t1_d81vwef&raw_json=1" + }, + "response": { + "body": { + "string": "{\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": 1, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 2, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"d81vwef\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_54hhwl\", \"score\": 2, \"author_fullname\": \"t2_3pz6e\", \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"all_awardings\": [], \"body\": \"That appears to be a bug in that PRAW4 is currently using `/api/info` to load the comment's attributes. I'll see what I can do.\", \"awarders\": [], \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": \"\", \"author_patreon_flair\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat appears to be a bug in that PRAW4 is currently using \\u003Ccode\\u003E/api/info\\u003C/code\\u003E to load the comment\\u0026#39;s attributes. I\\u0026#39;ll see what I can do.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_54hhwl\", \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d81vwef/\", \"subreddit_type\": \"public\", \"locked\": false, \"name\": \"t1_d81vwef\", \"created\": 1474842803.0, \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"created_utc\": 1474842803.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"before\": null}}" + }, + "headers": { + "Accept-Ranges": "bytes", + "Connection": "keep-alive", + "Content-Length": "2198", + "Content-Type": "application/json; charset=UTF-8", + "Date": "Tue, 02 Nov 2021 23:29:14 GMT", + "Server": "snooserv", + "Set-Cookie": "session_tracker=lfdlrdrqchphjncqbh.0.1635895754169.Z0FBQUFBQmhnY25LcXRHY0w0WFJ4c3BiM0dscGI0dDA2SmJxNG4zakprek9xS2toMlN4bGdNc1hlYmd3cDlhT0QtZnExYUdHVkNNNmw5eGlsMzIzQnd4S2dsRzVLa2N5R3hKZ085djZfbTBkdmFMM3BZTjhRc3M3X2wtSHZBV1RtMXd5SVFWVlp3WW8; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 03-Nov-2021 01:29:14 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", + "cache-control": "private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate", + "expires": "-1", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ratelimit-remaining": "64.0", + "x-ratelimit-reset": "46", + "x-ratelimit-used": "536", + "x-ua-compatible": "IE=edge", + "x-xss-protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://oauth.reddit.com/api/info/?id=t1_d81vwef&raw_json=1" + } + }, + { + "request": { + "body": null, + "headers": { + "Accept-Encoding": [ + "identity" + ], + "Authorization": [ + "bearer " + ], + "User-Agent": [ + " Async PRAW/7.4.1.dev0 asyncprawcore/2.3.1.dev0" ] }, "method": "GET", @@ -133,31 +181,28 @@ }, "response": { "body": { - "string": "[{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 1, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"redditdev\", \"selftext\": \"Just as the title states. I'm fetching a reddit comment through following lines:\\n\\nsession = praw.Reddit(login_stuff_here)\\n...\\nsession.comment(id=comment_id)\\n\\nHow do I go about fetching and viewing a tree of this specific comment's replies? \\n\\nIt was possible in PRAW 3 given that I had the comment object; I was able to call comment.refresh() to fetch all of the comments, then use the member \\\"replies\\\", like \\\"comment.replies\\\", to view all of the specific comment's replies.\\n\\nNow, it seems like I'm only able to get a list of comment replies to that specific comment's **submission**, but not just the tree of replies for that specific comment.\\n\\nAny advice on what I should try?\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[PRAW 4]: Fetch specific comment replies\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/redditdev\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"parent_whitelist_status\": \"all_ads\", \"hide_score\": false, \"name\": \"t3_54hhwl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.67, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_11e0ll\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"PRAW\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1474871136.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.redditdev\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust as the title states. I\\u0026#39;m fetching a reddit comment through following lines:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Esession = praw.Reddit(login_stuff_here)\\n...\\nsession.comment(id=comment_id)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I go about fetching and viewing a tree of this specific comment\\u0026#39;s replies? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt was possible in PRAW 3 given that I had the comment object; I was able to call comment.refresh() to fetch all of the comments, then use the member \\u0026quot;replies\\u0026quot;, like \\u0026quot;comment.replies\\u0026quot;, to view all of the specific comment\\u0026#39;s replies.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow, it seems like I\\u0026#39;m only able to get a list of comment replies to that specific comment\\u0026#39;s \\u003Cstrong\\u003Esubmission\\u003C/strong\\u003E, but not just the tree of replies for that specific comment.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny advice on what I should try?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": true, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qizd\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"54hhwl\", \"is_robot_indexable\": true, \"num_duplicates\": 0, \"report_reasons\": null, \"author\": \"OkRedditBot\", \"discussion_type\": null, \"num_comments\": 10, \"send_replies\": true, \"media\": null, \"contest_mode\": false, \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/\", \"whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/\", \"subreddit_subscribers\": 39000, \"created_utc\": 1474842336.0, \"num_crossposts\": 0, \"mod_reports\": [], \"is_video\": false}}], \"after\": null, \"before\": null}}, {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_54hhwl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_54hhwl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_54hhwl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"more\", \"data\": {\"count\": 7, \"name\": \"t1_d82twtt\", \"id\": \"d82twtt\", \"parent_id\": \"t1_d81xm8b\", \"depth\": 3, \"children\": [\"d82twtt\"]}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d81xm8b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"created_utc\": 1474845286.0, \"send_replies\": true, \"parent_id\": \"t1_d81w4vt\", \"score\": 2, \"author_fullname\": \"t2_3pz6e\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qizd\", \"body\": \"`refresh` has been added to v.4.0.0b19. To update please run: `pip install --upgrade --pre praw`.\\n\\nThen I suggest doing:\\n\\n comment = session.comment(id=comment_id).refresh()\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003Erefresh\\u003C/code\\u003E has been added to v.4.0.0b19. To update please run: \\u003Ccode\\u003Epip install --upgrade --pre praw\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen I suggest doing:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ecomment = session.comment(id=comment_id).refresh()\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": \"comment score below threshold\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d81xm8b/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_d81xm8b\", \"created\": 1474874086.0, \"subreddit\": \"redditdev\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": true, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d81w4vt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"OkRedditBot\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_d81vwef\", \"score\": 1, \"author_fullname\": \"t2_11e0ll\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qizd\", \"collapsed\": true, \"body\": \"Thank you! My bot currently relies on this functionality for fetching and scanning over comment replies, so it's currently unusable until that feature is added (or unless I revert-migrate back to PRAW 3, but I'd rather not).\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you! My bot currently relies on this functionality for fetching and scanning over comment replies, so it\\u0026#39;s currently unusable until that feature is added (or unless I revert-migrate back to PRAW 3, but I\\u0026#39;d rather not).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": \"comment score below threshold\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d81w4vt/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_d81w4vt\", \"created\": 1474871935.0, \"subreddit\": \"redditdev\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1474843135.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d81vwef\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_54hhwl\", \"score\": 2, \"author_fullname\": \"t2_3pz6e\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qizd\", \"body\": \"That appears to be a bug in that PRAW4 is currently using `/api/info` to load the comment's attributes. I'll see what I can do.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat appears to be a bug in that PRAW4 is currently using \\u003Ccode\\u003E/api/info\\u003C/code\\u003E to load the comment\\u0026#39;s attributes. I\\u0026#39;ll see what I can do.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": \"comment score below threshold\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d81vwef/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_d81vwef\", \"created\": 1474871603.0, \"subreddit\": \"redditdev\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1474842803.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}]" + "string": "[{\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": 1, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"redditdev\", \"selftext\": \"Just as the title states. I'm fetching a reddit comment through following lines:\\n\\nsession = praw.Reddit(login_stuff_here)\\n...\\nsession.comment(id=comment_id)\\n\\nHow do I go about fetching and viewing a tree of this specific comment's replies? \\n\\nIt was possible in PRAW 3 given that I had the comment object; I was able to call comment.refresh() to fetch all of the comments, then use the member \\\"replies\\\", like \\\"comment.replies\\\", to view all of the specific comment's replies.\\n\\nNow, it seems like I'm only able to get a list of comment replies to that specific comment's **submission**, but not just the tree of replies for that specific comment.\\n\\nAny advice on what I should try?\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[PRAW 4]: Fetch specific comment replies\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/redditdev\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"parent_whitelist_status\": \"all_ads\", \"hide_score\": false, \"name\": \"t3_54hhwl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.67, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_11e0ll\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"PRAW\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1474842336.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.redditdev\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust as the title states. I\\u0026#39;m fetching a reddit comment through following lines:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Esession = praw.Reddit(login_stuff_here)\\n...\\nsession.comment(id=comment_id)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I go about fetching and viewing a tree of this specific comment\\u0026#39;s replies? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt was possible in PRAW 3 given that I had the comment object; I was able to call comment.refresh() to fetch all of the comments, then use the member \\u0026quot;replies\\u0026quot;, like \\u0026quot;comment.replies\\u0026quot;, to view all of the specific comment\\u0026#39;s replies.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow, it seems like I\\u0026#39;m only able to get a list of comment replies to that specific comment\\u0026#39;s \\u003Cstrong\\u003Esubmission\\u003C/strong\\u003E, but not just the tree of replies for that specific comment.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny advice on what I should try?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qizd\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"54hhwl\", \"is_robot_indexable\": true, \"num_duplicates\": 0, \"report_reasons\": null, \"author\": \"OkRedditBot\", \"discussion_type\": null, \"num_comments\": 10, \"send_replies\": true, \"media\": null, \"contest_mode\": false, \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/\", \"whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/\", \"subreddit_subscribers\": 63220, \"created_utc\": 1474842336.0, \"num_crossposts\": 0, \"mod_reports\": [], \"is_video\": false}}], \"before\": null}}, {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"d83h2x4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"created_utc\": 1474939055.0, \"send_replies\": true, \"parent_id\": \"t1_d8320uo\", \"score\": 2, \"author_fullname\": \"t2_3pz6e\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"What's happening here is that's a deleted comment. I made a fix (https://github.com/praw-dev/praw/commit/2804602f751f61bb76181907768e1807e65e53a6), but I am not likely to make a release tonight. You can either install the version out of the git repository (pip install --upgrade https://github.com/praw-dev/praw/archive/praw4.zip) or handle the exception you are currently receiving in your code. Either way, you'll have to handle an exception since it raises `ClientException` when refresh fails due to a deleted comment.\\n\\nDeleted comment: https://www.reddit.com/r/test/comments/52o2fl/testing_define_bot/d7ltvl0/\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": \"\", \"name\": \"t1_d83h2x4\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat\\u0026#39;s happening here is that\\u0026#39;s a deleted comment. I made a fix (\\u003Ca href=\\\"https://github.com/praw-dev/praw/commit/2804602f751f61bb76181907768e1807e65e53a6\\\"\\u003Ehttps://github.com/praw-dev/praw/commit/2804602f751f61bb76181907768e1807e65e53a6\\u003C/a\\u003E), but I am not likely to make a release tonight. You can either install the version out of the git repository (pip install --upgrade \\u003Ca href=\\\"https://github.com/praw-dev/praw/archive/praw4.zip\\\"\\u003Ehttps://github.com/praw-dev/praw/archive/praw4.zip\\u003C/a\\u003E) or handle the exception you are currently receiving in your code. Either way, you\\u0026#39;ll have to handle an exception since it raises \\u003Ccode\\u003EClientException\\u003C/code\\u003E when refresh fails due to a deleted comment.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDeleted comment: \\u003Ca href=\\\"https://www.reddit.com/r/test/comments/52o2fl/testing_define_bot/d7ltvl0/\\\"\\u003Ehttps://www.reddit.com/r/test/comments/52o2fl/testing_define_bot/d7ltvl0/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d83h2x4/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1474939055.0, \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"link_id\": \"t3_54hhwl\", \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"d836mqd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"created_utc\": 1474924252.0, \"send_replies\": true, \"parent_id\": \"t1_d8320uo\", \"score\": 1, \"author_fullname\": \"t2_3pz6e\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Oh okay. I'll take a look this evening (PDT).\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": \"\", \"name\": \"t1_d836mqd\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh okay. I\\u0026#39;ll take a look this evening (PDT).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d836mqd/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1474924252.0, \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"link_id\": \"t3_54hhwl\", \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d8320uo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"cdrootrmdashrfstar\", \"can_mod_post\": false, \"created_utc\": 1474918446.0, \"send_replies\": true, \"parent_id\": \"t1_d831t17\", \"score\": 1, \"author_fullname\": \"t2_unh07\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Hello, the dev for this bot here. \\n\\nThe id is not prefixed in actual use, I only included this as a note to readers about IDs and the api. The code does not do any sort of prepending of prefixes and continues to fail in its current state. \\n\\nThe code is available here: https://github.com/seanpianka/OkReddit within the okreddit/okreddit.py file. \", \"edited\": 1474918726.0, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_d8320uo\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello, the dev for this bot here. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe id is not prefixed in actual use, I only included this as a note to readers about IDs and the api. The code does not do any sort of prepending of prefixes and continues to fail in its current state. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe code is available here: \\u003Ca href=\\\"https://github.com/seanpianka/OkReddit\\\"\\u003Ehttps://github.com/seanpianka/OkReddit\\u003C/a\\u003E within the okreddit/okreddit.py file. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_54hhwl\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d8320uo/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1474918446.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d831t17\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_d82waqz\", \"score\": 1, \"author_fullname\": \"t2_3pz6e\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"There shouldn't be a prefix when using this method.Try passing in `d7ltvl0`.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": \"\", \"name\": \"t1_d831t17\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere shouldn\\u0026#39;t be a prefix when using this method.Try passing in \\u003Ccode\\u003Ed7ltvl0\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_54hhwl\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d831t17/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1474918177.0, \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"created_utc\": 1474918177.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d82waqz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"OkRedditBot\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_d82vz05\", \"score\": 1, \"author_fullname\": \"t2_11e0ll\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"The id is \\\"d7ltvl0\\\" (prefixed with a \\\"t1_\\\")\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_d82waqz\", \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe id is \\u0026quot;d7ltvl0\\u0026quot; (prefixed with a \\u0026quot;t1_\\u0026quot;)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_54hhwl\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d82waqz/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1474911253.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1474911253.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d82vz05\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_d82twtt\", \"score\": 1, \"author_fullname\": \"t2_3pz6e\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"What's the `comment['id']` in that case?\", \"edited\": false, \"author_flair_css_class\": \"\", \"name\": \"t1_d82vz05\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat\\u0026#39;s the \\u003Ccode\\u003Ecomment[\\u0026#39;id\\u0026#39;]\\u003C/code\\u003E in that case?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_54hhwl\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d82vz05/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1474910845.0, \"author_flair_text\": \"PRAW Author\", \"collapsed\": false, \"created_utc\": 1474910845.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d82twtt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"OkRedditBot\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_d81xm8b\", \"score\": 1, \"author_fullname\": \"t2_11e0ll\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"I have the following lines:\\n\\n praw_comment = session.comment(id=comment['id'])\\n praw_comment = praw_comment.refresh()\\n\\nThe first line runs fine for any and all comments I instantiate from the api.\\n\\nHowever, I'm receiving the follow traceback/error on certain comments when calling refresh:\\n\\n Traceback (most recent call last):\\n File \\\"okreddit.py\\\", line 254, in \\u003Cmodule\\u003E\\n run(PHRASE_PATTERNS)\\n File \\\"okreddit.py\\\", line 65, in run\\n new_comments = scan_comments(r, phrases, USERNAME)\\n File \\\"okreddit.py\\\", line 152, in scan_comments\\n to_be_added_comments += validate_comments(raw_comments)\\n File \\\"okreddit.py\\\", line 117, in validate_comments\\n praw_comment = praw_comment.refresh()\\n File \\\"/Users/Pianka/Development/.virtualenvs/okgoogle/lib/python3.5/site-packages/praw/models/reddit/comment.py\\\", line 92, in refresh\\n comment = self._reddit.get(comment_path)[1].children[0]\\n IndexError: list index out of range\\n\\nDo you have any insight into what this would be? Possibly something on my end?\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_d82twtt\", \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have the following lines:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E praw_comment = session.comment(id=comment[\\u0026#39;id\\u0026#39;])\\n praw_comment = praw_comment.refresh()\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThe first line runs fine for any and all comments I instantiate from the api.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, I\\u0026#39;m receiving the follow traceback/error on certain comments when calling refresh:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003ETraceback (most recent call last):\\n File \\u0026quot;okreddit.py\\u0026quot;, line 254, in \\u0026lt;module\\u0026gt;\\n run(PHRASE_PATTERNS)\\n File \\u0026quot;okreddit.py\\u0026quot;, line 65, in run\\n new_comments = scan_comments(r, phrases, USERNAME)\\n File \\u0026quot;okreddit.py\\u0026quot;, line 152, in scan_comments\\n to_be_added_comments += validate_comments(raw_comments)\\n File \\u0026quot;okreddit.py\\u0026quot;, line 117, in validate_comments\\n praw_comment = praw_comment.refresh()\\n File \\u0026quot;/Users/Pianka/Development/.virtualenvs/okgoogle/lib/python3.5/site-packages/praw/models/reddit/comment.py\\u0026quot;, line 92, in refresh\\n comment = self._reddit.get(comment_path)[1].children[0]\\nIndexError: list index out of range\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EDo you have any insight into what this would be? Possibly something on my end?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_54hhwl\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d82twtt/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1474908249.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1474908249.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d81xm8b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_d81w4vt\", \"score\": 2, \"author_fullname\": \"t2_3pz6e\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"`refresh` has been added to v.4.0.0b19. To update please run: `pip install --upgrade --pre praw`.\\n\\nThen I suggest doing:\\n\\n comment = session.comment(id=comment_id).refresh()\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": \"\", \"name\": \"t1_d81xm8b\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003Erefresh\\u003C/code\\u003E has been added to v.4.0.0b19. To update please run: \\u003Ccode\\u003Epip install --upgrade --pre praw\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen I suggest doing:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ecomment = session.comment(id=comment_id).refresh()\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_54hhwl\", \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d81xm8b/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1474845286.0, \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"created_utc\": 1474845286.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d81w4vt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"OkRedditBot\", \"can_mod_post\": false, \"created_utc\": 1474843135.0, \"send_replies\": true, \"parent_id\": \"t1_d81vwef\", \"score\": 1, \"author_fullname\": \"t2_11e0ll\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Thank you! My bot currently relies on this functionality for fetching and scanning over comment replies, so it's currently unusable until that feature is added (or unless I revert-migrate back to PRAW 3, but I'd rather not).\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_d81w4vt\", \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you! My bot currently relies on this functionality for fetching and scanning over comment replies, so it\\u0026#39;s currently unusable until that feature is added (or unless I revert-migrate back to PRAW 3, but I\\u0026#39;d rather not).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_54hhwl\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d81w4vt/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1474843135.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d81vwef\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"created_utc\": 1474842803.0, \"send_replies\": true, \"parent_id\": \"t3_54hhwl\", \"score\": 2, \"author_fullname\": \"t2_3pz6e\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"That appears to be a bug in that PRAW4 is currently using `/api/info` to load the comment's attributes. I'll see what I can do.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": \"\", \"name\": \"t1_d81vwef\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat appears to be a bug in that PRAW4 is currently using \\u003Ccode\\u003E/api/info\\u003C/code\\u003E to load the comment\\u0026#39;s attributes. I\\u0026#39;ll see what I can do.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d81vwef/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1474842803.0, \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"link_id\": \"t3_54hhwl\", \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}], \"before\": null}}]" }, "headers": { "Accept-Ranges": "bytes", - "Cache-Control": "private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate", "Connection": "keep-alive", - "Content-Length": "11364", + "Content-Length": "30329", "Content-Type": "application/json; charset=UTF-8", - "Date": "Mon, 06 Jul 2020 00:20:35 GMT", - "Expires": "-1", + "Date": "Tue, 02 Nov 2021 23:29:14 GMT", "Server": "snooserv", - "Set-Cookie": "session_tracker=bhglqmeodlpenmbraq.0.1593994835827.Z0FBQUFBQmZBbTVUY0ZmdkJ3eEtLLTFXbXNfdlExMWlmM19vdzZKMG9WemVDMFl3ajRHTzJlSzFnVnV1V2padnVjUFFyX0tHeDd5VkdYZjhVbEhvQ0dkYllqSFFqOXNXSDRPdDRwN3dSSnNIR3RhTUlycGVyWFc5Zl9CczFKZmZFd2FGblJQSzNCR1k; Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Jul-2020 02:20:35 GMT; secure; SameSite=None; Secure", + "Set-Cookie": "session_tracker=lfdlrdrqchphjncqbh.0.1635895754348.Z0FBQUFBQmhnY25LMF84SmIyR1BqZTE4TE1NVGp0bktXZXkyNHBHZTl4QjhJbk5QN1VWYS1kQ294YW1IX3N2c2RVUlNXNGk2V1ZuMnZzVTZRNmN2aWJLbml2SGYtVGJjaFd4WFAtcVRmVVJqRWxnTzZFQXc5dFdSbnBseTFfRTV3R0FtX2lfTEV5SDY; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 03-Nov-2021 01:29:14 GMT; secure; SameSite=None; Secure", "Strict-Transport-Security": "max-age=15552000; includeSubDomains; preload", "Vary": "accept-encoding", "Via": "1.1 varnish", - "X-Cache": "MISS", - "X-Cache-Hits": "0", + "X-Clacks-Overhead": "GNU Terry Pratchett", "X-Moose": "majestic", - "X-Served-By": "cache-mci5946-MCI", - "X-Timer": "S1593994836.770826,VS0,VE178", + "cache-control": "private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate", + "expires": "-1", "x-content-type-options": "nosniff", "x-frame-options": "SAMEORIGIN", - "x-ratelimit-remaining": "598.0", - "x-ratelimit-reset": "565", - "x-ratelimit-used": "2", + "x-ratelimit-remaining": "62.0", + "x-ratelimit-reset": "46", + "x-ratelimit-used": "538", "x-ua-compatible": "IE=edge", "x-xss-protection": "1; mode=block" }, @@ -169,6 +214,6 @@ } } ], - "recorded_at": "2020-07-05T19:20:35", + "recorded_at": "2021-11-02T18:29:14", "version": 1 } diff --git a/tests/integration/cassettes/TestComment.test_refresh__twice.json b/tests/integration/cassettes/TestComment.test_refresh__twice.json index 79468686..14850649 100644 --- a/tests/integration/cassettes/TestComment.test_refresh__twice.json +++ b/tests/integration/cassettes/TestComment.test_refresh__twice.json @@ -23,7 +23,7 @@ "close" ], "User-Agent": [ - " Async PRAW/7.1.1.dev0 asyncprawcore/1.4.0.post1" + " Async PRAW/7.4.1.dev0 asyncprawcore/2.3.1.dev0" ] }, "method": "POST", @@ -31,26 +31,26 @@ }, "response": { "body": { - "string": "{\"access_token\": \"\", \"token_type\": \"bearer\", \"expires_in\": 3600, \"scope\": \"account creddits edit flair history identity livemanage modconfig modcontributors modflair modlog modmail modothers modposts modself modtraffic modwiki mysubreddits privatemessages read report save structuredstyles submit subscribe vote wikiedit wikiread\"}" + "string": "{\"access_token\": \"\", \"token_type\": \"bearer\", \"expires_in\": 3600, \"refresh_token\": \"\", \"scope\": \"account creddits edit flair history identity livemanage modconfig modcontributors modflair modlog modmail modothers modposts modself modtraffic modwiki mysubreddits privatemessages read report save structuredstyles submit subscribe vote wikiedit wikiread\"}" }, "headers": { "Accept-Ranges": "bytes", - "Cache-Control": "max-age=0, must-revalidate", "Connection": "close", - "Content-Length": "371", + "Content-Length": "427", "Content-Type": "application/json; charset=UTF-8", - "Date": "Sun, 05 Jul 2020 22:23:56 GMT", + "Date": "Tue, 02 Nov 2021 23:29:18 GMT", "Server": "snooserv", - "Set-Cookie": "edgebucket=TYwSHqVM1F7XUvHvLi; Domain=reddit.com; Max-Age=63071999; Path=/; secure", + "Set-Cookie": "edgebucket=0yVbU5N2TlnA7tesET; Domain=reddit.com; Max-Age=63071999; Path=/; secure", "Strict-Transport-Security": "max-age=15552000; includeSubDomains; preload", "Via": "1.1 varnish", - "X-Cache": "MISS", - "X-Cache-Hits": "0", + "X-Clacks-Overhead": "GNU Terry Pratchett", "X-Moose": "majestic", - "X-Served-By": "cache-mci5944-MCI", - "X-Timer": "S1593987836.897677,VS0,VE131", + "cache-control": "max-age=0, must-revalidate", "x-content-type-options": "nosniff", "x-frame-options": "SAMEORIGIN", + "x-ratelimit-remaining": "296", + "x-ratelimit-reset": "42", + "x-ratelimit-used": "4", "x-xss-protection": "1; mode=block" }, "status": { @@ -71,7 +71,7 @@ "bearer " ], "User-Agent": [ - " Async PRAW/7.1.1.dev0 asyncprawcore/1.4.0.post1" + " Async PRAW/7.4.1.dev0 asyncprawcore/2.3.1.dev0" ] }, "method": "GET", @@ -79,31 +79,28 @@ }, "response": { "body": { - "string": "{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 1, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_54hhwl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"d81vwef\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"created_utc\": 1474842803.0, \"send_replies\": true, \"parent_id\": \"t3_54hhwl\", \"score\": 2, \"author_fullname\": \"t2_3pz6e\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qizd\", \"body\": \"That appears to be a bug in that PRAW4 is currently using `/api/info` to load the comment's attributes. I'll see what I can do.\", \"awarders\": [], \"author_flair_css_class\": null, \"name\": \"t1_d81vwef\", \"author_patreon_flair\": false, \"downs\": 0, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat appears to be a bug in that PRAW4 is currently using \\u003Ccode\\u003E/api/info\\u003C/code\\u003E to load the comment\\u0026#39;s attributes. I\\u0026#39;ll see what I can do.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": \"comment score below threshold\", \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d81vwef/\", \"num_reports\": null, \"locked\": false, \"report_reasons\": null, \"created\": 1474871603.0, \"subreddit\": \"redditdev\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": true, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"subreddit_type\": \"public\", \"ups\": 2}}], \"after\": null, \"before\": null}}" + "string": "{\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": 1, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 2, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"d81vwef\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_54hhwl\", \"score\": 2, \"author_fullname\": \"t2_3pz6e\", \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"all_awardings\": [], \"body\": \"That appears to be a bug in that PRAW4 is currently using `/api/info` to load the comment's attributes. I'll see what I can do.\", \"awarders\": [], \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": \"\", \"author_patreon_flair\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat appears to be a bug in that PRAW4 is currently using \\u003Ccode\\u003E/api/info\\u003C/code\\u003E to load the comment\\u0026#39;s attributes. I\\u0026#39;ll see what I can do.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_54hhwl\", \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d81vwef/\", \"subreddit_type\": \"public\", \"locked\": false, \"name\": \"t1_d81vwef\", \"created\": 1474842803.0, \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"created_utc\": 1474842803.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"before\": null}}" }, "headers": { "Accept-Ranges": "bytes", - "Cache-Control": "private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate", "Connection": "keep-alive", - "Content-Length": "2089", + "Content-Length": "2198", "Content-Type": "application/json; charset=UTF-8", - "Date": "Sun, 05 Jul 2020 22:23:56 GMT", - "Expires": "-1", + "Date": "Tue, 02 Nov 2021 23:29:19 GMT", "Server": "snooserv", "Set-Cookie": "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-Cache": "MISS", - "X-Cache-Hits": "0", + "X-Clacks-Overhead": "GNU Terry Pratchett", "X-Moose": "majestic", - "X-Served-By": "cache-mci5921-MCI", - "X-Timer": "S1593987836.120982,VS0,VE192", + "cache-control": "private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate", + "expires": "-1", "x-content-type-options": "nosniff", "x-frame-options": "SAMEORIGIN", - "x-ratelimit-remaining": "599.0", - "x-ratelimit-reset": "364", - "x-ratelimit-used": "1", + "x-ratelimit-remaining": "59.0", + "x-ratelimit-reset": "41", + "x-ratelimit-used": "541", "x-ua-compatible": "IE=edge", "x-xss-protection": "1; mode=block" }, @@ -125,7 +122,7 @@ "bearer " ], "User-Agent": [ - " Async PRAW/7.1.1.dev0 asyncprawcore/1.4.0.post1" + " Async PRAW/7.4.1.dev0 asyncprawcore/2.3.1.dev0" ] }, "method": "GET", @@ -133,31 +130,28 @@ }, "response": { "body": { - "string": "[{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 1, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"redditdev\", \"selftext\": \"Just as the title states. I'm fetching a reddit comment through following lines:\\n\\nsession = praw.Reddit(login_stuff_here)\\n...\\nsession.comment(id=comment_id)\\n\\nHow do I go about fetching and viewing a tree of this specific comment's replies? \\n\\nIt was possible in PRAW 3 given that I had the comment object; I was able to call comment.refresh() to fetch all of the comments, then use the member \\\"replies\\\", like \\\"comment.replies\\\", to view all of the specific comment's replies.\\n\\nNow, it seems like I'm only able to get a list of comment replies to that specific comment's **submission**, but not just the tree of replies for that specific comment.\\n\\nAny advice on what I should try?\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[PRAW 4]: Fetch specific comment replies\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/redditdev\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"parent_whitelist_status\": \"all_ads\", \"hide_score\": false, \"name\": \"t3_54hhwl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.67, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_11e0ll\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"PRAW\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1474871136.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.redditdev\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust as the title states. I\\u0026#39;m fetching a reddit comment through following lines:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Esession = praw.Reddit(login_stuff_here)\\n...\\nsession.comment(id=comment_id)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I go about fetching and viewing a tree of this specific comment\\u0026#39;s replies? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt was possible in PRAW 3 given that I had the comment object; I was able to call comment.refresh() to fetch all of the comments, then use the member \\u0026quot;replies\\u0026quot;, like \\u0026quot;comment.replies\\u0026quot;, to view all of the specific comment\\u0026#39;s replies.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow, it seems like I\\u0026#39;m only able to get a list of comment replies to that specific comment\\u0026#39;s \\u003Cstrong\\u003Esubmission\\u003C/strong\\u003E, but not just the tree of replies for that specific comment.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny advice on what I should try?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": true, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qizd\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"54hhwl\", \"is_robot_indexable\": true, \"num_duplicates\": 0, \"report_reasons\": null, \"author\": \"OkRedditBot\", \"discussion_type\": null, \"num_comments\": 10, \"send_replies\": true, \"media\": null, \"contest_mode\": false, \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/\", \"whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/\", \"subreddit_subscribers\": 38991, \"created_utc\": 1474842336.0, \"num_crossposts\": 0, \"mod_reports\": [], \"is_video\": false}}], \"after\": null, \"before\": null}}, {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_54hhwl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_54hhwl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_54hhwl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"more\", \"data\": {\"count\": 7, \"name\": \"t1_d82twtt\", \"id\": \"d82twtt\", \"parent_id\": \"t1_d81xm8b\", \"depth\": 3, \"children\": [\"d82twtt\"]}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d81xm8b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"created_utc\": 1474845286.0, \"send_replies\": true, \"parent_id\": \"t1_d81w4vt\", \"score\": 2, \"author_fullname\": \"t2_3pz6e\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qizd\", \"body\": \"`refresh` has been added to v.4.0.0b19. To update please run: `pip install --upgrade --pre praw`.\\n\\nThen I suggest doing:\\n\\n comment = session.comment(id=comment_id).refresh()\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003Erefresh\\u003C/code\\u003E has been added to v.4.0.0b19. To update please run: \\u003Ccode\\u003Epip install --upgrade --pre praw\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen I suggest doing:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ecomment = session.comment(id=comment_id).refresh()\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": \"comment score below threshold\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d81xm8b/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_d81xm8b\", \"created\": 1474874086.0, \"subreddit\": \"redditdev\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": true, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d81w4vt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"OkRedditBot\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_d81vwef\", \"score\": 1, \"author_fullname\": \"t2_11e0ll\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qizd\", \"collapsed\": true, \"body\": \"Thank you! My bot currently relies on this functionality for fetching and scanning over comment replies, so it's currently unusable until that feature is added (or unless I revert-migrate back to PRAW 3, but I'd rather not).\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you! My bot currently relies on this functionality for fetching and scanning over comment replies, so it\\u0026#39;s currently unusable until that feature is added (or unless I revert-migrate back to PRAW 3, but I\\u0026#39;d rather not).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": \"comment score below threshold\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d81w4vt/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_d81w4vt\", \"created\": 1474871935.0, \"subreddit\": \"redditdev\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1474843135.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d81vwef\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_54hhwl\", \"score\": 2, \"author_fullname\": \"t2_3pz6e\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qizd\", \"body\": \"That appears to be a bug in that PRAW4 is currently using `/api/info` to load the comment's attributes. I'll see what I can do.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat appears to be a bug in that PRAW4 is currently using \\u003Ccode\\u003E/api/info\\u003C/code\\u003E to load the comment\\u0026#39;s attributes. I\\u0026#39;ll see what I can do.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": \"comment score below threshold\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d81vwef/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_d81vwef\", \"created\": 1474871603.0, \"subreddit\": \"redditdev\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1474842803.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}]" + "string": "[{\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": 1, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"redditdev\", \"selftext\": \"Just as the title states. I'm fetching a reddit comment through following lines:\\n\\nsession = praw.Reddit(login_stuff_here)\\n...\\nsession.comment(id=comment_id)\\n\\nHow do I go about fetching and viewing a tree of this specific comment's replies? \\n\\nIt was possible in PRAW 3 given that I had the comment object; I was able to call comment.refresh() to fetch all of the comments, then use the member \\\"replies\\\", like \\\"comment.replies\\\", to view all of the specific comment's replies.\\n\\nNow, it seems like I'm only able to get a list of comment replies to that specific comment's **submission**, but not just the tree of replies for that specific comment.\\n\\nAny advice on what I should try?\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[PRAW 4]: Fetch specific comment replies\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/redditdev\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"parent_whitelist_status\": \"all_ads\", \"hide_score\": false, \"name\": \"t3_54hhwl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.67, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_11e0ll\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"PRAW\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1474842336.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.redditdev\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust as the title states. I\\u0026#39;m fetching a reddit comment through following lines:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Esession = praw.Reddit(login_stuff_here)\\n...\\nsession.comment(id=comment_id)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I go about fetching and viewing a tree of this specific comment\\u0026#39;s replies? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt was possible in PRAW 3 given that I had the comment object; I was able to call comment.refresh() to fetch all of the comments, then use the member \\u0026quot;replies\\u0026quot;, like \\u0026quot;comment.replies\\u0026quot;, to view all of the specific comment\\u0026#39;s replies.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow, it seems like I\\u0026#39;m only able to get a list of comment replies to that specific comment\\u0026#39;s \\u003Cstrong\\u003Esubmission\\u003C/strong\\u003E, but not just the tree of replies for that specific comment.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny advice on what I should try?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qizd\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"54hhwl\", \"is_robot_indexable\": true, \"num_duplicates\": 0, \"report_reasons\": null, \"author\": \"OkRedditBot\", \"discussion_type\": null, \"num_comments\": 10, \"send_replies\": true, \"media\": null, \"contest_mode\": false, \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/\", \"whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/\", \"subreddit_subscribers\": 63220, \"created_utc\": 1474842336.0, \"num_crossposts\": 0, \"mod_reports\": [], \"is_video\": false}}], \"before\": null}}, {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"d83h2x4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"created_utc\": 1474939055.0, \"send_replies\": true, \"parent_id\": \"t1_d8320uo\", \"score\": 2, \"author_fullname\": \"t2_3pz6e\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"What's happening here is that's a deleted comment. I made a fix (https://github.com/praw-dev/praw/commit/2804602f751f61bb76181907768e1807e65e53a6), but I am not likely to make a release tonight. You can either install the version out of the git repository (pip install --upgrade https://github.com/praw-dev/praw/archive/praw4.zip) or handle the exception you are currently receiving in your code. Either way, you'll have to handle an exception since it raises `ClientException` when refresh fails due to a deleted comment.\\n\\nDeleted comment: https://www.reddit.com/r/test/comments/52o2fl/testing_define_bot/d7ltvl0/\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": \"\", \"name\": \"t1_d83h2x4\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat\\u0026#39;s happening here is that\\u0026#39;s a deleted comment. I made a fix (\\u003Ca href=\\\"https://github.com/praw-dev/praw/commit/2804602f751f61bb76181907768e1807e65e53a6\\\"\\u003Ehttps://github.com/praw-dev/praw/commit/2804602f751f61bb76181907768e1807e65e53a6\\u003C/a\\u003E), but I am not likely to make a release tonight. You can either install the version out of the git repository (pip install --upgrade \\u003Ca href=\\\"https://github.com/praw-dev/praw/archive/praw4.zip\\\"\\u003Ehttps://github.com/praw-dev/praw/archive/praw4.zip\\u003C/a\\u003E) or handle the exception you are currently receiving in your code. Either way, you\\u0026#39;ll have to handle an exception since it raises \\u003Ccode\\u003EClientException\\u003C/code\\u003E when refresh fails due to a deleted comment.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDeleted comment: \\u003Ca href=\\\"https://www.reddit.com/r/test/comments/52o2fl/testing_define_bot/d7ltvl0/\\\"\\u003Ehttps://www.reddit.com/r/test/comments/52o2fl/testing_define_bot/d7ltvl0/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d83h2x4/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1474939055.0, \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"link_id\": \"t3_54hhwl\", \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"d836mqd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"created_utc\": 1474924252.0, \"send_replies\": true, \"parent_id\": \"t1_d8320uo\", \"score\": 1, \"author_fullname\": \"t2_3pz6e\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Oh okay. I'll take a look this evening (PDT).\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": \"\", \"name\": \"t1_d836mqd\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh okay. I\\u0026#39;ll take a look this evening (PDT).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d836mqd/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1474924252.0, \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"link_id\": \"t3_54hhwl\", \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d8320uo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"cdrootrmdashrfstar\", \"can_mod_post\": false, \"created_utc\": 1474918446.0, \"send_replies\": true, \"parent_id\": \"t1_d831t17\", \"score\": 1, \"author_fullname\": \"t2_unh07\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Hello, the dev for this bot here. \\n\\nThe id is not prefixed in actual use, I only included this as a note to readers about IDs and the api. The code does not do any sort of prepending of prefixes and continues to fail in its current state. \\n\\nThe code is available here: https://github.com/seanpianka/OkReddit within the okreddit/okreddit.py file. \", \"edited\": 1474918726.0, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_d8320uo\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello, the dev for this bot here. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe id is not prefixed in actual use, I only included this as a note to readers about IDs and the api. The code does not do any sort of prepending of prefixes and continues to fail in its current state. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe code is available here: \\u003Ca href=\\\"https://github.com/seanpianka/OkReddit\\\"\\u003Ehttps://github.com/seanpianka/OkReddit\\u003C/a\\u003E within the okreddit/okreddit.py file. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_54hhwl\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d8320uo/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1474918446.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d831t17\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_d82waqz\", \"score\": 1, \"author_fullname\": \"t2_3pz6e\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"There shouldn't be a prefix when using this method.Try passing in `d7ltvl0`.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": \"\", \"name\": \"t1_d831t17\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere shouldn\\u0026#39;t be a prefix when using this method.Try passing in \\u003Ccode\\u003Ed7ltvl0\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_54hhwl\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d831t17/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1474918177.0, \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"created_utc\": 1474918177.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d82waqz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"OkRedditBot\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_d82vz05\", \"score\": 1, \"author_fullname\": \"t2_11e0ll\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"The id is \\\"d7ltvl0\\\" (prefixed with a \\\"t1_\\\")\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_d82waqz\", \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe id is \\u0026quot;d7ltvl0\\u0026quot; (prefixed with a \\u0026quot;t1_\\u0026quot;)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_54hhwl\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d82waqz/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1474911253.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1474911253.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d82vz05\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_d82twtt\", \"score\": 1, \"author_fullname\": \"t2_3pz6e\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"What's the `comment['id']` in that case?\", \"edited\": false, \"author_flair_css_class\": \"\", \"name\": \"t1_d82vz05\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat\\u0026#39;s the \\u003Ccode\\u003Ecomment[\\u0026#39;id\\u0026#39;]\\u003C/code\\u003E in that case?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_54hhwl\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d82vz05/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1474910845.0, \"author_flair_text\": \"PRAW Author\", \"collapsed\": false, \"created_utc\": 1474910845.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d82twtt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"OkRedditBot\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_d81xm8b\", \"score\": 1, \"author_fullname\": \"t2_11e0ll\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"I have the following lines:\\n\\n praw_comment = session.comment(id=comment['id'])\\n praw_comment = praw_comment.refresh()\\n\\nThe first line runs fine for any and all comments I instantiate from the api.\\n\\nHowever, I'm receiving the follow traceback/error on certain comments when calling refresh:\\n\\n Traceback (most recent call last):\\n File \\\"okreddit.py\\\", line 254, in \\u003Cmodule\\u003E\\n run(PHRASE_PATTERNS)\\n File \\\"okreddit.py\\\", line 65, in run\\n new_comments = scan_comments(r, phrases, USERNAME)\\n File \\\"okreddit.py\\\", line 152, in scan_comments\\n to_be_added_comments += validate_comments(raw_comments)\\n File \\\"okreddit.py\\\", line 117, in validate_comments\\n praw_comment = praw_comment.refresh()\\n File \\\"/Users/Pianka/Development/.virtualenvs/okgoogle/lib/python3.5/site-packages/praw/models/reddit/comment.py\\\", line 92, in refresh\\n comment = self._reddit.get(comment_path)[1].children[0]\\n IndexError: list index out of range\\n\\nDo you have any insight into what this would be? Possibly something on my end?\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_d82twtt\", \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have the following lines:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E praw_comment = session.comment(id=comment[\\u0026#39;id\\u0026#39;])\\n praw_comment = praw_comment.refresh()\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThe first line runs fine for any and all comments I instantiate from the api.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, I\\u0026#39;m receiving the follow traceback/error on certain comments when calling refresh:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003ETraceback (most recent call last):\\n File \\u0026quot;okreddit.py\\u0026quot;, line 254, in \\u0026lt;module\\u0026gt;\\n run(PHRASE_PATTERNS)\\n File \\u0026quot;okreddit.py\\u0026quot;, line 65, in run\\n new_comments = scan_comments(r, phrases, USERNAME)\\n File \\u0026quot;okreddit.py\\u0026quot;, line 152, in scan_comments\\n to_be_added_comments += validate_comments(raw_comments)\\n File \\u0026quot;okreddit.py\\u0026quot;, line 117, in validate_comments\\n praw_comment = praw_comment.refresh()\\n File \\u0026quot;/Users/Pianka/Development/.virtualenvs/okgoogle/lib/python3.5/site-packages/praw/models/reddit/comment.py\\u0026quot;, line 92, in refresh\\n comment = self._reddit.get(comment_path)[1].children[0]\\nIndexError: list index out of range\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EDo you have any insight into what this would be? Possibly something on my end?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_54hhwl\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d82twtt/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1474908249.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1474908249.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d81xm8b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_d81w4vt\", \"score\": 2, \"author_fullname\": \"t2_3pz6e\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"`refresh` has been added to v.4.0.0b19. To update please run: `pip install --upgrade --pre praw`.\\n\\nThen I suggest doing:\\n\\n comment = session.comment(id=comment_id).refresh()\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": \"\", \"name\": \"t1_d81xm8b\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003Erefresh\\u003C/code\\u003E has been added to v.4.0.0b19. To update please run: \\u003Ccode\\u003Epip install --upgrade --pre praw\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen I suggest doing:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ecomment = session.comment(id=comment_id).refresh()\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_54hhwl\", \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d81xm8b/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1474845286.0, \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"created_utc\": 1474845286.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d81w4vt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"OkRedditBot\", \"can_mod_post\": false, \"created_utc\": 1474843135.0, \"send_replies\": true, \"parent_id\": \"t1_d81vwef\", \"score\": 1, \"author_fullname\": \"t2_11e0ll\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Thank you! My bot currently relies on this functionality for fetching and scanning over comment replies, so it's currently unusable until that feature is added (or unless I revert-migrate back to PRAW 3, but I'd rather not).\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_d81w4vt\", \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you! My bot currently relies on this functionality for fetching and scanning over comment replies, so it\\u0026#39;s currently unusable until that feature is added (or unless I revert-migrate back to PRAW 3, but I\\u0026#39;d rather not).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_54hhwl\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d81w4vt/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1474843135.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d81vwef\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"created_utc\": 1474842803.0, \"send_replies\": true, \"parent_id\": \"t3_54hhwl\", \"score\": 2, \"author_fullname\": \"t2_3pz6e\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"That appears to be a bug in that PRAW4 is currently using `/api/info` to load the comment's attributes. I'll see what I can do.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": \"\", \"name\": \"t1_d81vwef\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat appears to be a bug in that PRAW4 is currently using \\u003Ccode\\u003E/api/info\\u003C/code\\u003E to load the comment\\u0026#39;s attributes. I\\u0026#39;ll see what I can do.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d81vwef/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1474842803.0, \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"link_id\": \"t3_54hhwl\", \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}], \"before\": null}}]" }, "headers": { "Accept-Ranges": "bytes", - "Cache-Control": "private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate", "Connection": "keep-alive", - "Content-Length": "11364", + "Content-Length": "30329", "Content-Type": "application/json; charset=UTF-8", - "Date": "Sun, 05 Jul 2020 22:23:56 GMT", - "Expires": "-1", + "Date": "Tue, 02 Nov 2021 23:29:19 GMT", "Server": "snooserv", - "Set-Cookie": "session_tracker=plnrlpjbghgledamrc.0.1593987836386.Z0FBQUFBQmZBbEw4NG14N2loQjVEdGloMUpJN2dwX0VOYkJla2JZSDFwZjI2QmF3MkdNbnlhLVUteTJaaW4xdjRXVTZGRVpfM3U1RTU4aWhYMlhQMDQ0V3A3YzhWZGJQaExuSUV5UXRnTERjQng2OVhOaUN4R3AwbVgxNDNXRVRlTnNpNlcwai0tYWo; Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Jul-2020 00:23:56 GMT; secure; SameSite=None; Secure", + "Set-Cookie": "session_tracker=kafphhgkmgkpfdmqlr.0.1635895759235.Z0FBQUFBQmhnY25QM0JFM2laMkVDSmJKaGpzZnRZR3pyYTJWSGR6akZsLXc4SEZrODRYdEI4eWxiVmpmbGd3MXhRNUJVLVhQbHNZZjJ0TnQ2TGZHNVg1VDZkajlGWDd5djk3d19qUG40blJoRl9JeXl6bGFDekV2ZjVvdnVYQXIwR1Raay12M1FELVE; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 03-Nov-2021 01:29:19 GMT; secure; SameSite=None; Secure", "Strict-Transport-Security": "max-age=15552000; includeSubDomains; preload", "Vary": "accept-encoding", "Via": "1.1 varnish", - "X-Cache": "MISS", - "X-Cache-Hits": "0", + "X-Clacks-Overhead": "GNU Terry Pratchett", "X-Moose": "majestic", - "X-Served-By": "cache-mci5921-MCI", - "X-Timer": "S1593987836.330873,VS0,VE168", + "cache-control": "private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate", + "expires": "-1", "x-content-type-options": "nosniff", "x-frame-options": "SAMEORIGIN", - "x-ratelimit-remaining": "598.0", - "x-ratelimit-reset": "364", - "x-ratelimit-used": "2", + "x-ratelimit-remaining": "58.0", + "x-ratelimit-reset": "41", + "x-ratelimit-used": "542", "x-ua-compatible": "IE=edge", "x-xss-protection": "1; mode=block" }, @@ -179,7 +173,58 @@ "bearer " ], "User-Agent": [ - " Async PRAW/7.1.1.dev0 asyncprawcore/1.4.0.post1" + " Async PRAW/7.4.1.dev0 asyncprawcore/2.3.1.dev0" + ] + }, + "method": "GET", + "uri": "https://oauth.reddit.com/api/info/?id=t1_d81vwef&raw_json=1" + }, + "response": { + "body": { + "string": "{\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": 1, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"edited\": false, \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 2, \"num_reports\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"d81vwef\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_54hhwl\", \"score\": 2, \"author_fullname\": \"t2_3pz6e\", \"report_reasons\": null, \"removal_reason\": null, \"approved_by\": null, \"all_awardings\": [], \"body\": \"That appears to be a bug in that PRAW4 is currently using `/api/info` to load the comment's attributes. I'll see what I can do.\", \"awarders\": [], \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": \"\", \"author_patreon_flair\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat appears to be a bug in that PRAW4 is currently using \\u003Ccode\\u003E/api/info\\u003C/code\\u003E to load the comment\\u0026#39;s attributes. I\\u0026#39;ll see what I can do.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_54hhwl\", \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d81vwef/\", \"subreddit_type\": \"public\", \"locked\": false, \"name\": \"t1_d81vwef\", \"created\": 1474842803.0, \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"created_utc\": 1474842803.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"before\": null}}" + }, + "headers": { + "Accept-Ranges": "bytes", + "Connection": "keep-alive", + "Content-Length": "2198", + "Content-Type": "application/json; charset=UTF-8", + "Date": "Tue, 02 Nov 2021 23:29:19 GMT", + "Server": "snooserv", + "Set-Cookie": "session_tracker=kafphhgkmgkpfdmqlr.0.1635895759560.Z0FBQUFBQmhnY25QaWFIcnNxNXhlc2RvRk5ZLU1GZktGV0syaDBJX1hHSUk0YVhGOGZCSE02ZDJJTWZkT1FmTTRuc1Q1UjhJZjJiaUlQZkljOFBUTDgxLUhqa3BtaHBodFJhWHRQZVZDcnpxY2c5LS1PUzlmaUJxNml6RTMzV3ZHN25IbWZQVTBpSmw; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 03-Nov-2021 01:29:19 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", + "cache-control": "private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate", + "expires": "-1", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ratelimit-remaining": "56.0", + "x-ratelimit-reset": "41", + "x-ratelimit-used": "544", + "x-ua-compatible": "IE=edge", + "x-xss-protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://oauth.reddit.com/api/info/?id=t1_d81vwef&raw_json=1" + } + }, + { + "request": { + "body": null, + "headers": { + "Accept-Encoding": [ + "identity" + ], + "Authorization": [ + "bearer " + ], + "User-Agent": [ + " Async PRAW/7.4.1.dev0 asyncprawcore/2.3.1.dev0" ] }, "method": "GET", @@ -187,31 +232,28 @@ }, "response": { "body": { - "string": "[{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 1, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"redditdev\", \"selftext\": \"Just as the title states. I'm fetching a reddit comment through following lines:\\n\\nsession = praw.Reddit(login_stuff_here)\\n...\\nsession.comment(id=comment_id)\\n\\nHow do I go about fetching and viewing a tree of this specific comment's replies? \\n\\nIt was possible in PRAW 3 given that I had the comment object; I was able to call comment.refresh() to fetch all of the comments, then use the member \\\"replies\\\", like \\\"comment.replies\\\", to view all of the specific comment's replies.\\n\\nNow, it seems like I'm only able to get a list of comment replies to that specific comment's **submission**, but not just the tree of replies for that specific comment.\\n\\nAny advice on what I should try?\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[PRAW 4]: Fetch specific comment replies\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/redditdev\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"top_awarded_type\": null, \"parent_whitelist_status\": \"all_ads\", \"hide_score\": false, \"name\": \"t3_54hhwl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.67, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_11e0ll\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"PRAW\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"author_premium\": false, \"thumbnail\": \"\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1474871136.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.redditdev\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust as the title states. I\\u0026#39;m fetching a reddit comment through following lines:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Esession = praw.Reddit(login_stuff_here)\\n...\\nsession.comment(id=comment_id)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I go about fetching and viewing a tree of this specific comment\\u0026#39;s replies? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt was possible in PRAW 3 given that I had the comment object; I was able to call comment.refresh() to fetch all of the comments, then use the member \\u0026quot;replies\\u0026quot;, like \\u0026quot;comment.replies\\u0026quot;, to view all of the specific comment\\u0026#39;s replies.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow, it seems like I\\u0026#39;m only able to get a list of comment replies to that specific comment\\u0026#39;s \\u003Cstrong\\u003Esubmission\\u003C/strong\\u003E, but not just the tree of replies for that specific comment.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny advice on what I should try?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": true, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qizd\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"54hhwl\", \"is_robot_indexable\": true, \"num_duplicates\": 0, \"report_reasons\": null, \"author\": \"OkRedditBot\", \"discussion_type\": null, \"num_comments\": 10, \"send_replies\": true, \"media\": null, \"contest_mode\": false, \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/\", \"whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/\", \"subreddit_subscribers\": 38991, \"created_utc\": 1474842336.0, \"num_crossposts\": 0, \"mod_reports\": [], \"is_video\": false}}], \"after\": null, \"before\": null}}, {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_54hhwl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_54hhwl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_54hhwl\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"more\", \"data\": {\"count\": 7, \"name\": \"t1_d82twtt\", \"id\": \"d82twtt\", \"parent_id\": \"t1_d81xm8b\", \"depth\": 3, \"children\": [\"d82twtt\"]}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d81xm8b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"created_utc\": 1474845286.0, \"send_replies\": true, \"parent_id\": \"t1_d81w4vt\", \"score\": 2, \"author_fullname\": \"t2_3pz6e\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qizd\", \"body\": \"`refresh` has been added to v.4.0.0b19. To update please run: `pip install --upgrade --pre praw`.\\n\\nThen I suggest doing:\\n\\n comment = session.comment(id=comment_id).refresh()\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003Erefresh\\u003C/code\\u003E has been added to v.4.0.0b19. To update please run: \\u003Ccode\\u003Epip install --upgrade --pre praw\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen I suggest doing:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ecomment = session.comment(id=comment_id).refresh()\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": \"comment score below threshold\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d81xm8b/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_d81xm8b\", \"created\": 1474874086.0, \"subreddit\": \"redditdev\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": true, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d81w4vt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"OkRedditBot\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_d81vwef\", \"score\": 1, \"author_fullname\": \"t2_11e0ll\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qizd\", \"collapsed\": true, \"body\": \"Thank you! My bot currently relies on this functionality for fetching and scanning over comment replies, so it's currently unusable until that feature is added (or unless I revert-migrate back to PRAW 3, but I'd rather not).\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you! My bot currently relies on this functionality for fetching and scanning over comment replies, so it\\u0026#39;s currently unusable until that feature is added (or unless I revert-migrate back to PRAW 3, but I\\u0026#39;d rather not).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": \"comment score below threshold\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d81w4vt/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_d81w4vt\", \"created\": 1474871935.0, \"subreddit\": \"redditdev\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1474843135.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d81vwef\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_54hhwl\", \"score\": 2, \"author_fullname\": \"t2_3pz6e\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qizd\", \"body\": \"That appears to be a bug in that PRAW4 is currently using `/api/info` to load the comment's attributes. I'll see what I can do.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat appears to be a bug in that PRAW4 is currently using \\u003Ccode\\u003E/api/info\\u003C/code\\u003E to load the comment\\u0026#39;s attributes. I\\u0026#39;ll see what I can do.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": \"comment score below threshold\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d81vwef/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_d81vwef\", \"created\": 1474871603.0, \"subreddit\": \"redditdev\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1474842803.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}]" + "string": "[{\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": 1, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"redditdev\", \"selftext\": \"Just as the title states. I'm fetching a reddit comment through following lines:\\n\\nsession = praw.Reddit(login_stuff_here)\\n...\\nsession.comment(id=comment_id)\\n\\nHow do I go about fetching and viewing a tree of this specific comment's replies? \\n\\nIt was possible in PRAW 3 given that I had the comment object; I was able to call comment.refresh() to fetch all of the comments, then use the member \\\"replies\\\", like \\\"comment.replies\\\", to view all of the specific comment's replies.\\n\\nNow, it seems like I'm only able to get a list of comment replies to that specific comment's **submission**, but not just the tree of replies for that specific comment.\\n\\nAny advice on what I should try?\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"[PRAW 4]: Fetch specific comment replies\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/redditdev\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"parent_whitelist_status\": \"all_ads\", \"hide_score\": false, \"name\": \"t3_54hhwl\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.67, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 1, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_11e0ll\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"PRAW\", \"can_mod_post\": false, \"score\": 1, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1474842336.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.redditdev\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust as the title states. I\\u0026#39;m fetching a reddit comment through following lines:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Esession = praw.Reddit(login_stuff_here)\\n...\\nsession.comment(id=comment_id)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHow do I go about fetching and viewing a tree of this specific comment\\u0026#39;s replies? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt was possible in PRAW 3 given that I had the comment object; I was able to call comment.refresh() to fetch all of the comments, then use the member \\u0026quot;replies\\u0026quot;, like \\u0026quot;comment.replies\\u0026quot;, to view all of the specific comment\\u0026#39;s replies.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENow, it seems like I\\u0026#39;m only able to get a list of comment replies to that specific comment\\u0026#39;s \\u003Cstrong\\u003Esubmission\\u003C/strong\\u003E, but not just the tree of replies for that specific comment.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAny advice on what I should try?\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": true, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qizd\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"54hhwl\", \"is_robot_indexable\": true, \"num_duplicates\": 0, \"report_reasons\": null, \"author\": \"OkRedditBot\", \"discussion_type\": null, \"num_comments\": 10, \"send_replies\": true, \"media\": null, \"contest_mode\": false, \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/\", \"whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/\", \"subreddit_subscribers\": 63220, \"created_utc\": 1474842336.0, \"num_crossposts\": 0, \"mod_reports\": [], \"is_video\": false}}], \"before\": null}}, {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"d83h2x4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"created_utc\": 1474939055.0, \"send_replies\": true, \"parent_id\": \"t1_d8320uo\", \"score\": 2, \"author_fullname\": \"t2_3pz6e\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"What's happening here is that's a deleted comment. I made a fix (https://github.com/praw-dev/praw/commit/2804602f751f61bb76181907768e1807e65e53a6), but I am not likely to make a release tonight. You can either install the version out of the git repository (pip install --upgrade https://github.com/praw-dev/praw/archive/praw4.zip) or handle the exception you are currently receiving in your code. Either way, you'll have to handle an exception since it raises `ClientException` when refresh fails due to a deleted comment.\\n\\nDeleted comment: https://www.reddit.com/r/test/comments/52o2fl/testing_define_bot/d7ltvl0/\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": \"\", \"name\": \"t1_d83h2x4\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat\\u0026#39;s happening here is that\\u0026#39;s a deleted comment. I made a fix (\\u003Ca href=\\\"https://github.com/praw-dev/praw/commit/2804602f751f61bb76181907768e1807e65e53a6\\\"\\u003Ehttps://github.com/praw-dev/praw/commit/2804602f751f61bb76181907768e1807e65e53a6\\u003C/a\\u003E), but I am not likely to make a release tonight. You can either install the version out of the git repository (pip install --upgrade \\u003Ca href=\\\"https://github.com/praw-dev/praw/archive/praw4.zip\\\"\\u003Ehttps://github.com/praw-dev/praw/archive/praw4.zip\\u003C/a\\u003E) or handle the exception you are currently receiving in your code. Either way, you\\u0026#39;ll have to handle an exception since it raises \\u003Ccode\\u003EClientException\\u003C/code\\u003E when refresh fails due to a deleted comment.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDeleted comment: \\u003Ca href=\\\"https://www.reddit.com/r/test/comments/52o2fl/testing_define_bot/d7ltvl0/\\\"\\u003Ehttps://www.reddit.com/r/test/comments/52o2fl/testing_define_bot/d7ltvl0/\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d83h2x4/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1474939055.0, \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"link_id\": \"t3_54hhwl\", \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"d836mqd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"created_utc\": 1474924252.0, \"send_replies\": true, \"parent_id\": \"t1_d8320uo\", \"score\": 1, \"author_fullname\": \"t2_3pz6e\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Oh okay. I'll take a look this evening (PDT).\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": \"\", \"name\": \"t1_d836mqd\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh okay. I\\u0026#39;ll take a look this evening (PDT).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d836mqd/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1474924252.0, \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"link_id\": \"t3_54hhwl\", \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d8320uo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"cdrootrmdashrfstar\", \"can_mod_post\": false, \"created_utc\": 1474918446.0, \"send_replies\": true, \"parent_id\": \"t1_d831t17\", \"score\": 1, \"author_fullname\": \"t2_unh07\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Hello, the dev for this bot here. \\n\\nThe id is not prefixed in actual use, I only included this as a note to readers about IDs and the api. The code does not do any sort of prepending of prefixes and continues to fail in its current state. \\n\\nThe code is available here: https://github.com/seanpianka/OkReddit within the okreddit/okreddit.py file. \", \"edited\": 1474918726.0, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_d8320uo\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHello, the dev for this bot here. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe id is not prefixed in actual use, I only included this as a note to readers about IDs and the api. The code does not do any sort of prepending of prefixes and continues to fail in its current state. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe code is available here: \\u003Ca href=\\\"https://github.com/seanpianka/OkReddit\\\"\\u003Ehttps://github.com/seanpianka/OkReddit\\u003C/a\\u003E within the okreddit/okreddit.py file. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_54hhwl\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d8320uo/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1474918446.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d831t17\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_d82waqz\", \"score\": 1, \"author_fullname\": \"t2_3pz6e\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"There shouldn't be a prefix when using this method.Try passing in `d7ltvl0`.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": \"\", \"name\": \"t1_d831t17\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThere shouldn\\u0026#39;t be a prefix when using this method.Try passing in \\u003Ccode\\u003Ed7ltvl0\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_54hhwl\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d831t17/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1474918177.0, \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"created_utc\": 1474918177.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d82waqz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"OkRedditBot\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_d82vz05\", \"score\": 1, \"author_fullname\": \"t2_11e0ll\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"The id is \\\"d7ltvl0\\\" (prefixed with a \\\"t1_\\\")\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_d82waqz\", \"is_submitter\": true, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe id is \\u0026quot;d7ltvl0\\u0026quot; (prefixed with a \\u0026quot;t1_\\u0026quot;)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_54hhwl\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d82waqz/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1474911253.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1474911253.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d82vz05\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_d82twtt\", \"score\": 1, \"author_fullname\": \"t2_3pz6e\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"What's the `comment['id']` in that case?\", \"edited\": false, \"author_flair_css_class\": \"\", \"name\": \"t1_d82vz05\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat\\u0026#39;s the \\u003Ccode\\u003Ecomment[\\u0026#39;id\\u0026#39;]\\u003C/code\\u003E in that case?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_54hhwl\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d82vz05/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1474910845.0, \"author_flair_text\": \"PRAW Author\", \"collapsed\": false, \"created_utc\": 1474910845.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d82twtt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"OkRedditBot\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_d81xm8b\", \"score\": 1, \"author_fullname\": \"t2_11e0ll\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"I have the following lines:\\n\\n praw_comment = session.comment(id=comment['id'])\\n praw_comment = praw_comment.refresh()\\n\\nThe first line runs fine for any and all comments I instantiate from the api.\\n\\nHowever, I'm receiving the follow traceback/error on certain comments when calling refresh:\\n\\n Traceback (most recent call last):\\n File \\\"okreddit.py\\\", line 254, in \\u003Cmodule\\u003E\\n run(PHRASE_PATTERNS)\\n File \\\"okreddit.py\\\", line 65, in run\\n new_comments = scan_comments(r, phrases, USERNAME)\\n File \\\"okreddit.py\\\", line 152, in scan_comments\\n to_be_added_comments += validate_comments(raw_comments)\\n File \\\"okreddit.py\\\", line 117, in validate_comments\\n praw_comment = praw_comment.refresh()\\n File \\\"/Users/Pianka/Development/.virtualenvs/okgoogle/lib/python3.5/site-packages/praw/models/reddit/comment.py\\\", line 92, in refresh\\n comment = self._reddit.get(comment_path)[1].children[0]\\n IndexError: list index out of range\\n\\nDo you have any insight into what this would be? Possibly something on my end?\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_d82twtt\", \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have the following lines:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003E praw_comment = session.comment(id=comment[\\u0026#39;id\\u0026#39;])\\n praw_comment = praw_comment.refresh()\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EThe first line runs fine for any and all comments I instantiate from the api.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EHowever, I\\u0026#39;m receiving the follow traceback/error on certain comments when calling refresh:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003ETraceback (most recent call last):\\n File \\u0026quot;okreddit.py\\u0026quot;, line 254, in \\u0026lt;module\\u0026gt;\\n run(PHRASE_PATTERNS)\\n File \\u0026quot;okreddit.py\\u0026quot;, line 65, in run\\n new_comments = scan_comments(r, phrases, USERNAME)\\n File \\u0026quot;okreddit.py\\u0026quot;, line 152, in scan_comments\\n to_be_added_comments += validate_comments(raw_comments)\\n File \\u0026quot;okreddit.py\\u0026quot;, line 117, in validate_comments\\n praw_comment = praw_comment.refresh()\\n File \\u0026quot;/Users/Pianka/Development/.virtualenvs/okgoogle/lib/python3.5/site-packages/praw/models/reddit/comment.py\\u0026quot;, line 92, in refresh\\n comment = self._reddit.get(comment_path)[1].children[0]\\nIndexError: list index out of range\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EDo you have any insight into what this would be? Possibly something on my end?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_54hhwl\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d82twtt/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1474908249.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1474908249.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d81xm8b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_d81w4vt\", \"score\": 2, \"author_fullname\": \"t2_3pz6e\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"`refresh` has been added to v.4.0.0b19. To update please run: `pip install --upgrade --pre praw`.\\n\\nThen I suggest doing:\\n\\n comment = session.comment(id=comment_id).refresh()\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": \"\", \"name\": \"t1_d81xm8b\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ccode\\u003Erefresh\\u003C/code\\u003E has been added to v.4.0.0b19. To update please run: \\u003Ccode\\u003Epip install --upgrade --pre praw\\u003C/code\\u003E.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThen I suggest doing:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Ecomment = session.comment(id=comment_id).refresh()\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_54hhwl\", \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d81xm8b/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1474845286.0, \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"created_utc\": 1474845286.0, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d81w4vt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"OkRedditBot\", \"can_mod_post\": false, \"created_utc\": 1474843135.0, \"send_replies\": true, \"parent_id\": \"t1_d81vwef\", \"score\": 1, \"author_fullname\": \"t2_11e0ll\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Thank you! My bot currently relies on this functionality for fetching and scanning over comment replies, so it's currently unusable until that feature is added (or unless I revert-migrate back to PRAW 3, but I'd rather not).\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_d81w4vt\", \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThank you! My bot currently relies on this functionality for fetching and scanning over comment replies, so it\\u0026#39;s currently unusable until that feature is added (or unless I revert-migrate back to PRAW 3, but I\\u0026#39;d rather not).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_54hhwl\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d81w4vt/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1474843135.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"d81vwef\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"created_utc\": 1474842803.0, \"send_replies\": true, \"parent_id\": \"t3_54hhwl\", \"score\": 2, \"author_fullname\": \"t2_3pz6e\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"That appears to be a bug in that PRAW4 is currently using `/api/info` to load the comment's attributes. I'll see what I can do.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": \"\", \"name\": \"t1_d81vwef\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat appears to be a bug in that PRAW4 is currently using \\u003Ccode\\u003E/api/info\\u003C/code\\u003E to load the comment\\u0026#39;s attributes. I\\u0026#39;ll see what I can do.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/54hhwl/praw_4_fetch_specific_comment_replies/d81vwef/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1474842803.0, \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"link_id\": \"t3_54hhwl\", \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}], \"before\": null}}]" }, "headers": { "Accept-Ranges": "bytes", - "Cache-Control": "private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate", "Connection": "keep-alive", - "Content-Length": "11364", + "Content-Length": "30329", "Content-Type": "application/json; charset=UTF-8", - "Date": "Sun, 05 Jul 2020 22:23:56 GMT", - "Expires": "-1", + "Date": "Tue, 02 Nov 2021 23:29:19 GMT", "Server": "snooserv", - "Set-Cookie": "session_tracker=plnrlpjbghgledamrc.0.1593987836575.Z0FBQUFBQmZBbEw4WVZHVlF5b1k3UVd4Z3hVYmhwcFZSUnRnWE9PZWhhT251c3dBSjRINzhxMnBEeWl1TDNiUkdvOUkzVmRhYjc0eVZJUnQwM3Z5Yy13czBISWFSWlMxWWVHZ2g2NzkyTEJZdXRkcWthbDQyN0FGTFNua0ZoT0xEdk5YNzFHZE0yZGg; Domain=reddit.com; Max-Age=7199; Path=/; expires=Mon, 06-Jul-2020 00:23:56 GMT; secure; SameSite=None; Secure", + "Set-Cookie": "session_tracker=kafphhgkmgkpfdmqlr.0.1635895759698.Z0FBQUFBQmhnY25QRGVZNmczX3YyNktKZlEwY280cHRaYUh5Q05UYkdISmxxR1h2NEFadkFqanotRE4xY2lVR3d1MWVqdlB3OExQV0NxSWNkRFlBWE1RQkFJMTluY0NJazRZbVN3Ukx4NndJaGlCQTd2SzllSG8xMmZqeExyWlA5TEZMRVdOc05zR1I; Domain=reddit.com; Max-Age=7199; Path=/; expires=Wed, 03-Nov-2021 01:29:19 GMT; secure; SameSite=None; Secure", "Strict-Transport-Security": "max-age=15552000; includeSubDomains; preload", "Vary": "accept-encoding", "Via": "1.1 varnish", - "X-Cache": "MISS", - "X-Cache-Hits": "0", + "X-Clacks-Overhead": "GNU Terry Pratchett", "X-Moose": "majestic", - "X-Served-By": "cache-mci5921-MCI", - "X-Timer": "S1593987837.521148,VS0,VE189", + "cache-control": "private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate", + "expires": "-1", "x-content-type-options": "nosniff", "x-frame-options": "SAMEORIGIN", - "x-ratelimit-remaining": "597.0", - "x-ratelimit-reset": "364", - "x-ratelimit-used": "3", + "x-ratelimit-remaining": "55.0", + "x-ratelimit-reset": "41", + "x-ratelimit-used": "545", "x-ua-compatible": "IE=edge", "x-xss-protection": "1; mode=block" }, @@ -223,6 +265,6 @@ } } ], - "recorded_at": "2020-07-05T17:23:56", + "recorded_at": "2021-11-02T18:29:19", "version": 1 } diff --git a/tests/integration/cassettes/TestCommentForest.test_replace__all_with_comment_sort.json b/tests/integration/cassettes/TestCommentForest.test_replace__all_with_comment_sort.json index 1cfdd595..c94f09d0 100644 --- a/tests/integration/cassettes/TestCommentForest.test_replace__all_with_comment_sort.json +++ b/tests/integration/cassettes/TestCommentForest.test_replace__all_with_comment_sort.json @@ -23,7 +23,7 @@ "close" ], "User-Agent": [ - " Async PRAW/7.1.1.dev0 asyncprawcore/1.4.0.post1" + " Async PRAW/7.4.1.dev0 asyncprawcore/2.3.1.dev0" ] }, "method": "POST", @@ -31,26 +31,26 @@ }, "response": { "body": { - "string": "{\"access_token\": \"\", \"token_type\": \"bearer\", \"expires_in\": 3600, \"scope\": \"account creddits edit flair history identity livemanage modconfig modcontributors modflair modlog modmail modothers modposts modself modtraffic modwiki mysubreddits privatemessages read report save structuredstyles submit subscribe vote wikiedit wikiread\"}" + "string": "{\"access_token\": \"\", \"token_type\": \"bearer\", \"expires_in\": 3600, \"refresh_token\": \"\", \"scope\": \"account creddits edit flair history identity livemanage modconfig modcontributors modflair modlog modmail modothers modposts modself modtraffic modwiki mysubreddits privatemessages read report save structuredstyles submit subscribe vote wikiedit wikiread\"}" }, "headers": { "Accept-Ranges": "bytes", - "Cache-Control": "max-age=0, must-revalidate", "Connection": "close", - "Content-Length": "367", + "Content-Length": "427", "Content-Type": "application/json; charset=UTF-8", - "Date": "Sat, 04 Jul 2020 23:15:48 GMT", + "Date": "Fri, 05 Nov 2021 17:40:00 GMT", "Server": "snooserv", - "Set-Cookie": "edgebucket=oF2hwsokHbWvvAfEs5; Domain=reddit.com; Max-Age=63071999; Path=/; secure", + "Set-Cookie": "edgebucket=81f5W5KRaboYpcCQur; Domain=reddit.com; Max-Age=63071999; Path=/; secure", "Strict-Transport-Security": "max-age=15552000; includeSubDomains; preload", "Via": "1.1 varnish", - "X-Cache": "MISS", - "X-Cache-Hits": "0", + "X-Clacks-Overhead": "GNU Terry Pratchett", "X-Moose": "majestic", - "X-Served-By": "cache-mci5930-MCI", - "X-Timer": "S1593904548.323046,VS0,VE118", + "cache-control": "max-age=0, must-revalidate", "x-content-type-options": "nosniff", "x-frame-options": "SAMEORIGIN", + "x-ratelimit-remaining": "299", + "x-ratelimit-reset": "1", + "x-ratelimit-used": "1", "x-xss-protection": "1; mode=block" }, "status": { @@ -71,40 +71,37 @@ "bearer " ], "User-Agent": [ - " Async PRAW/7.1.1.dev0 asyncprawcore/1.4.0.post1" + " Async PRAW/7.4.1.dev0 asyncprawcore/2.3.1.dev0" ] }, "method": "GET", - "uri": "https://oauth.reddit.com/comments/3hahrw/?limit=2048&sort=confidence&raw_json=1" + "uri": "https://oauth.reddit.com/comments/3hahrw/?limit=2048&sort=old&raw_json=1" }, "response": { "body": { - "string": "[{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 1, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"funny\", \"selftext\": \"\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Ba Dum Tsss\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/funny\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"top_awarded_type\": null, \"parent_whitelist_status\": \"all_ads\", \"hide_score\": false, \"name\": \"t3_3hahrw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.94, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 29777, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_oh64a\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 29777, \"approved_by\": null, \"author_premium\": true, \"thumbnail\": \"https://b.thumbs.redditmedia.com/5e3u8ceMZN0CYelVW2cPTp-R2o_lRGgIrFUCqN-p-pE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"previous_visits\": [1593823974.0, 1593825193.0, 1593884552.0, 1593886933.0, 1593887944.0, 1593889025.0, 1593889956.0], \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1439826280.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.imgur.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"http://i.imgur.com/eoF76hj.gifv\", \"view_count\": null, \"archived\": true, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?format=png8\\u0026s=8fce0e240021fae6057e6e9d0bc6d01e55c8d8be\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=0043d5d451641f59d83957debb5c2d5debbffe6a\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=8c6193562e873cad671f8be0cc1ded20cf8e4e40\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=fdc55cdb3f665ea544d0016c80251f67172c75f2\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026crop=smart\\u0026format=png8\\u0026s=b6a454102e2e35ee91634a3970a0b1946d51667b\", \"width\": 640, \"height\": 360}], \"variants\": {\"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?s=63556b2af71b62a2c6349aad5b058320301bc5d8\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026crop=smart\\u0026s=5d45ebe65c5b794b092185f83bf26d204a8dc3cd\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026crop=smart\\u0026s=9792339b06b9446433cd0b96643f3e34344d9eea\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026crop=smart\\u0026s=88703ea358f721aa004b9a53ffad705ff75ec297\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026crop=smart\\u0026s=05d76587afce21bcab664ce75f8dd28262e19820\", \"width\": 640, \"height\": 360}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?format=mp4\\u0026s=33e82bc7191fc664e87b3024b8b7668c2e2d9912\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026format=mp4\\u0026s=12a22c0f2b96a8839e3dafe719386935d125bea5\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026format=mp4\\u0026s=b8ca79735d3686d3fb19a2eb85b497a309693977\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026format=mp4\\u0026s=5235abf63a2395c43fc5696fa2d37766ea81deaf\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026format=mp4\\u0026s=418110d4a11d29ef741cac5d463bf552385902b4\", \"width\": 640, \"height\": 360}]}}, \"id\": \"TWpgQy5a3ucVCvWlwGPDbYeZk6FAbbk-f2WKWBi7pVY\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh33\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"3hahrw\", \"is_robot_indexable\": true, \"num_duplicates\": 9, \"report_reasons\": null, \"author\": \"your_local_librarian\", \"discussion_type\": null, \"num_comments\": 532, \"send_replies\": true, \"media\": null, \"contest_mode\": false, \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/\", \"whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://i.imgur.com/eoF76hj.gifv\", \"subreddit_subscribers\": 31469211, \"created_utc\": 1439797480.0, \"num_crossposts\": 0, \"mod_reports\": [], \"is_video\": false}}], \"after\": null, \"before\": null}}, {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1132, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 703, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 227, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 177, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 118, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 57, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 11, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 151, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 28, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 14, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5x3k9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"Soddington\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5w3kc\", \"score\": 14, \"author_fullname\": \"t2_8hukb\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"\\u003Ea little underwhelmed\\n\\nI hope thats what tuba/Sousaphone players are going for, cause I think they get that a lot.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ea little underwhelmed\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI hope thats what tuba/Sousaphone players are going for, cause I think they get that a lot.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5x3k9/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5x3k9\", \"created\": 1439852460.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439823660.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 23, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": false, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xe6k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5w3kc\", \"score\": 23, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Try setting the speed to 1.25. It's a bit better \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETry setting the speed to 1.25. It\\u0026#39;s a bit better \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xe6k/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5xe6k\", \"created\": 1439852986.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439824186.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6mt4y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"ChawulsBawkley\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5w3kc\", \"score\": 1, \"author_fullname\": \"t2_ct0tq\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"You'd think he'd show a little more enthusiasm w/ all that energy he's got in his room. \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou\\u0026#39;d think he\\u0026#39;d show a little more enthusiasm w/ all that energy he\\u0026#39;s got in his room. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6mt4y/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6mt4y\", \"created\": 1439894484.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439865684.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu62n0l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5w3kc\", \"score\": 0, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Learn to triple tongue, kid. \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELearn to triple tongue, kid. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu62n0l/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu62n0l\", \"created\": 1439861502.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439832702.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5w3kc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"badfan\", \"can_mod_post\": false, \"created_utc\": 1439821864.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uj5q\", \"score\": 28, \"author_fullname\": \"t2_7kdkx\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"https://www.youtube.com/watch?v=FmDRHv_6hx4\\n\\nI'm glad this exists but I was a little underwhelmed\\n\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=FmDRHv_6hx4\\\"\\u003Ehttps://www.youtube.com/watch?v=FmDRHv_6hx4\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m glad this exists but I was a little underwhelmed\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w3kc/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5w3kc\", \"created\": 1439850664.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 7, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 13, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu68rt8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"KimJongOod\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5xgzb\", \"score\": 13, \"author_fullname\": \"t2_kfl7x\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[Toy Trumpet Virtuoso](https://youtu.be/esMnme69t2M)\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://youtu.be/esMnme69t2M\\\"\\u003EToy Trumpet Virtuoso\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu68rt8/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu68rt8\", \"created\": 1439870679.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439841879.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"more\", \"data\": {\"count\": 0, \"name\": \"t1__\", \"id\": \"_\", \"parent_id\": \"t1_cu61zil\", \"depth\": 10, \"children\": []}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu61zil\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"kgbanarchy\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5xgzb\", \"score\": 1, \"author_fullname\": \"t2_fyczk\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"not enough was said of this\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Enot enough was said of this\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61zil/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu61zil\", \"created\": 1439860488.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439831688.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5xgzb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"nerevars\", \"can_mod_post\": false, \"created_utc\": 1439824320.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uj5q\", \"score\": 7, \"author_fullname\": \"t2_cmxiw\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"With recorder https://www.youtube.com/watch?v=Sso4vjERgdA\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWith recorder \\u003Ca href=\\\"https://www.youtube.com/watch?v=Sso4vjERgdA\\\"\\u003Ehttps://www.youtube.com/watch?v=Sso4vjERgdA\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xgzb/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5xgzb\", \"created\": 1439853120.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu61be3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"avboden\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu603ef\", \"score\": 1, \"author_fullname\": \"t2_6ekji\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"not as much, but sometimes it just fits\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Enot as much, but sometimes it just fits\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61be3/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu61be3\", \"created\": 1439859434.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439830634.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu603ef\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"daimposter\", \"can_mod_post\": false, \"created_utc\": 1439828693.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uj5q\", \"score\": 1, \"author_fullname\": \"t2_p8pe\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I guess we are still doing this\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI guess we are still doing this\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu603ef/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu603ef\", \"created\": 1439857493.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"more\", \"data\": {\"count\": 0, \"name\": \"t1__\", \"id\": \"_\", \"parent_id\": \"t1_cu5v5h7\", \"depth\": 10, \"children\": []}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5v5h7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5v4if\", \"score\": 1, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[deleted]\", \"edited\": 1502205193.0, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[deleted]\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v5h7/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v5h7\", \"created\": 1439848853.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820053.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5v4if\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"created_utc\": 1439820002.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uj5q\", \"score\": 1, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Dead hahaha\", \"edited\": false, \"author_flair_css_class\": null, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDead hahaha\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v4if/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v4if\", \"created\": 1439848802.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v6ok\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"badvok666\", \"can_mod_post\": false, \"created_utc\": 1439820122.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uj5q\", \"score\": 0, \"author_fullname\": \"t2_boohk\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Thanks!\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v6ok/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v6ok\", \"created\": 1439848922.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uj5q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"avboden\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ui8o\", \"score\": 151, \"author_fullname\": \"t2_6ekji\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Darude, Sandstorm. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDarude, Sandstorm. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uj5q/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uj5q\", \"created\": 1439847577.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818777.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 7, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uro5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Fractal_Plains_of_SD\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ui8o\", \"score\": 7, \"author_fullname\": \"t2_io0m1\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Sounds like ride of the valkyries.\\n\\nEdit: Wagner op pls nerf\\n\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESounds like ride of the valkyries.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: Wagner op pls nerf\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uro5/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uro5\", \"created\": 1439848083.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819283.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 6, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uy0y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"HelperBot_\", \"can_mod_post\": false, \"created_utc\": 1439819644.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uxy9\", \"score\": 3, \"author_fullname\": \"t2_owot1\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Non-Mobile link: https://en.wikipedia.org/wiki/Ride_of_the_Valkyries\\n***\\n^HelperBot_\\u2122 ^v1.0 ^I ^am ^a ^bot. ^Please ^message ^/u/swim1929 ^with ^any ^feedback ^and/or ^hate. ^Counter: ^8375\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENon-Mobile link: \\u003Ca href=\\\"https://en.wikipedia.org/wiki/Ride_of_the_Valkyries\\\"\\u003Ehttps://en.wikipedia.org/wiki/Ride_of_the_Valkyries\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003EHelperBot_\\u2122\\u003C/sup\\u003E \\u003Csup\\u003Ev1.0\\u003C/sup\\u003E \\u003Csup\\u003EI\\u003C/sup\\u003E \\u003Csup\\u003Eam\\u003C/sup\\u003E \\u003Csup\\u003Ea\\u003C/sup\\u003E \\u003Csup\\u003Ebot.\\u003C/sup\\u003E \\u003Csup\\u003EPlease\\u003C/sup\\u003E \\u003Csup\\u003Emessage\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"/u/swim1929\\\"\\u003E/u/swim1929\\u003C/a\\u003E\\u003C/sup\\u003E \\u003Csup\\u003Ewith\\u003C/sup\\u003E \\u003Csup\\u003Eany\\u003C/sup\\u003E \\u003Csup\\u003Efeedback\\u003C/sup\\u003E \\u003Csup\\u003Eand/or\\u003C/sup\\u003E \\u003Csup\\u003Ehate.\\u003C/sup\\u003E \\u003Csup\\u003ECounter:\\u003C/sup\\u003E \\u003Csup\\u003E8375\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uy0y/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uy0y\", \"created\": 1439848444.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v71k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"kalitarios\", \"can_mod_post\": false, \"created_utc\": 1439820143.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uxy9\", \"score\": 1, \"author_fullname\": \"t2_9i2gb\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I was thinking the first part was \\\"Old Mule\\\" or whatever that early 1900s song was, but it's not.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was thinking the first part was \\u0026quot;Old Mule\\u0026quot; or whatever that early 1900s song was, but it\\u0026#39;s not.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v71k/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v71k\", \"created\": 1439848943.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uxy9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"riotwraith\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ui8o\", \"score\": 6, \"author_fullname\": \"t2_95zev\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Google gives a bunch of suggestions which are all wrong. Googling any suggestion of a name that isn't wrong just brings more family guy clips, but I remember that tune from before they were on the air. \\n\\nThat middle part where it gets really intense is [Ride of the Valkyries](https://en.m.wikipedia.org/wiki/Ride_of_the_Valkyries)\", \"edited\": 1439820212.0, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGoogle gives a bunch of suggestions which are all wrong. Googling any suggestion of a name that isn\\u0026#39;t wrong just brings more family guy clips, but I remember that tune from before they were on the air. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat middle part where it gets really intense is \\u003Ca href=\\\"https://en.m.wikipedia.org/wiki/Ride_of_the_Valkyries\\\"\\u003ERide of the Valkyries\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uxy9/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uxy9\", \"created\": 1439848440.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819640.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5voqn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Broetz\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ui8o\", \"score\": 1, \"author_fullname\": \"t2_d4jaq\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"at one point he is playing ride of the valkyries\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eat one point he is playing ride of the valkyries\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5voqn/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5voqn\", \"created\": 1439849903.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821103.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vp33\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"hessbs\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ui8o\", \"score\": 1, \"author_fullname\": \"t2_6ctat\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"well he eventually goes into \\\"The ride of the valkyries\\\" from Wagner's Ring Cycle. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewell he eventually goes into \\u0026quot;The ride of the valkyries\\u0026quot; from Wagner\\u0026#39;s Ring Cycle. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vp33/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vp33\", \"created\": 1439849922.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821122.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5ui8o\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"kalitarios\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tt57\", \"score\": 11, \"author_fullname\": \"t2_9i2gb\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"what's the name of the song he's playing?\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewhat\\u0026#39;s the name of the song he\\u0026#39;s playing?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ui8o/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ui8o\", \"created\": 1439847524.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818724.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu62h6x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"th3cardman\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tt57\", \"score\": 1, \"author_fullname\": \"t2_cs25j\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"If you're a sousaphone player in marching band, you know this song. They've been doing this since the early 80s at least \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf you\\u0026#39;re a sousaphone player in marching band, you know this song. They\\u0026#39;ve been doing this since the early 80s at least \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu62h6x/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu62h6x\", \"created\": 1439861249.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439832449.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tt57\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"avboden\", \"can_mod_post\": false, \"created_utc\": 1439817132.0, \"send_replies\": true, \"parent_id\": \"t1_cu5tnfu\", \"score\": 57, \"author_fullname\": \"t2_6ekji\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"pretty sure the family guy clip is what inspired him, even playing the same thing pretty much \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Epretty sure the family guy clip is what inspired him, even playing the same thing pretty much \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tt57/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tt57\", \"created\": 1439845932.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 35, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": false, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 12, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vh25\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"GoldVader\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5v4e7\", \"score\": 12, \"author_fullname\": \"t2_jucud\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I was thinking the same damn thing. The last one really was the icing on the cake though 'The family tree has no branches'\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was thinking the same damn thing. The last one really was the icing on the cake though \\u0026#39;The family tree has no branches\\u0026#39;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vh25/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vh25\", \"created\": 1439849492.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820692.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu62fds\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"__REV__\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5v4e7\", \"score\": 2, \"author_fullname\": \"t2_ik5ug\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Voice was like a cheese grater to me.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EVoice was like a cheese grater to me.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu62fds/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu62fds\", \"created\": 1439861171.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439832371.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5v4e7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"created_utc\": 1439819995.0, \"send_replies\": true, \"parent_id\": \"t1_cu5tnfu\", \"score\": 35, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"That lady recording who says insightful phrases like, \\\"stupid is as stupid does,\\\" really needs to shut the fuck up.\", \"edited\": false, \"author_flair_css_class\": null, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat lady recording who says insightful phrases like, \\u0026quot;stupid is as stupid does,\\u0026quot; really needs to shut the fuck up.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v4e7/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v4e7\", \"created\": 1439848795.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 4, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu66xjq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"Deven247\", \"can_mod_post\": false, \"created_utc\": 1439839153.0, \"send_replies\": true, \"parent_id\": \"t1_cu5tnfu\", \"score\": 4, \"author_fullname\": \"t2_9wh3g\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I was laughing so hard, but the old woman's commentary ruins the comedy. \\n\\nSHOW, DON'T TELL!\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was laughing so hard, but the old woman\\u0026#39;s commentary ruins the comedy. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESHOW, DON\\u0026#39;T TELL!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu66xjq/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu66xjq\", \"created\": 1439867953.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 8, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vrdz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"ShelSilverstain\", \"can_mod_post\": false, \"created_utc\": 1439821245.0, \"send_replies\": true, \"parent_id\": \"t1_cu5tnfu\", \"score\": 8, \"author_fullname\": \"t2_ciiw8\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Why are the Klan members carrying around the battle flag of northern Virginia? next thing you know, purple will associate it with ignorance, hatred, and racism!\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhy are the Klan members carrying around the battle flag of northern Virginia? next thing you know, purple will associate it with ignorance, hatred, and racism!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vrdz/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vrdz\", \"created\": 1439850045.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu61mbg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"67Mustang-Man\", \"can_mod_post\": false, \"created_utc\": 1439831114.0, \"send_replies\": true, \"parent_id\": \"t1_cu5tnfu\", \"score\": 2, \"author_fullname\": \"t2_dib7j\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Oddly if I could learn to play the Sousaphone this is all I would want to learn and use it for.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOddly if I could learn to play the Sousaphone this is all I would want to learn and use it for.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61mbg/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu61mbg\", \"created\": 1439859914.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu62mvj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"IamSparticles\", \"can_mod_post\": false, \"created_utc\": 1439832696.0, \"send_replies\": true, \"parent_id\": \"t1_cu5tnfu\", \"score\": 2, \"author_fullname\": \"t2_4jq2f\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"The switch to Flight of the Valkyries really makes this.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe switch to Flight of the Valkyries really makes this.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu62mvj/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu62mvj\", \"created\": 1439861496.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6pi0z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"annekat\", \"can_mod_post\": false, \"created_utc\": 1439870891.0, \"send_replies\": true, \"parent_id\": \"t1_cu5tnfu\", \"score\": 2, \"author_fullname\": \"t2_jm8w\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"He is a goddamn hero for playing the sousaphone to ridicule the KKK. I'm being very clear so that nobody mistakes me for saying the KKK members are heroes or anything. Fuck them.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe is a goddamn hero for playing the sousaphone to ridicule the KKK. I\\u0026#39;m being very clear so that nobody mistakes me for saying the KKK members are heroes or anything. Fuck them.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6pi0z/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6pi0z\", \"created\": 1439899691.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tnfu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"wwoodrum\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tlz5\", \"score\": 118, \"author_fullname\": \"t2_gyugy\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Reminds me of [this](https://www.youtube.com/watch?v=Rs4P1kKK-5k) guy\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EReminds me of \\u003Ca href=\\\"https://www.youtube.com/watch?v=Rs4P1kKK-5k\\\"\\u003Ethis\\u003C/a\\u003E guy\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tnfu/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tnfu\", \"created\": 1439845546.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816746.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 24, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 16, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6lwmn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"litadoggie\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uyrg\", \"score\": 1, \"author_fullname\": \"t2_gyurv\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"It's real; I know the drummer!\\n\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u0026#39;s real; I know the drummer!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6lwmn/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6lwmn\", \"created\": 1439892885.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439864085.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uyrg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"areolaisland\", \"can_mod_post\": false, \"created_utc\": 1439819684.0, \"send_replies\": true, \"parent_id\": \"t1_cu5txtm\", \"score\": 16, \"author_fullname\": \"t2_ivuhv\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Looks fake to me, but if it is actually real, then I hope the dude smashed the kid's sax at least.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELooks fake to me, but if it is actually real, then I hope the dude smashed the kid\\u0026#39;s sax at least.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uyrg/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uyrg\", \"created\": 1439848484.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 46, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 17, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"body\": \"\\\"If you ever bully another kid again, I'll come back and butt fuck your father with your mother's headless corpse on this god damned lawn\\\"\", \"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 8, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5y839\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"dragontail\", \"can_mod_post\": false, \"created_utc\": 1439825625.0, \"send_replies\": true, \"parent_id\": \"t1_cu5viz4\", \"score\": 3, \"author_fullname\": \"t2_70mhh\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[Relevant](https://www.youtube.com/watch?v=mkBli19MSG4\\u0026t=4m45s)\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=mkBli19MSG4\\u0026amp;t=4m45s\\\"\\u003ERelevant\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5y839/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5y839\", \"created\": 1439854425.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xisk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"yourmansconnect\", \"can_mod_post\": false, \"created_utc\": 1439824410.0, \"send_replies\": true, \"parent_id\": \"t1_cu5viz4\", \"score\": 1, \"author_fullname\": \"t2_6twfb\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Colin was great this season\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EColin was great this season\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xisk/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5xisk\", \"created\": 1439853210.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5viz4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uvuw\", \"score\": 8, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"author_cakeday\": true, \"edited\": false, \"author_flair_css_class\": null, \"collapsed\": false, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026quot;If you ever bully another kid again, I\\u0026#39;ll come back and butt fuck your father with your mother\\u0026#39;s headless corpse on this god damned lawn\\u0026quot;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5viz4/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5viz4\", \"created\": 1439849594.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820794.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 7, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vi2z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"lohkey\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uvuw\", \"score\": 7, \"author_fullname\": \"t2_dcz63\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Then they will make a show out of it and get someone like Colin Farrell to do that\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThen they will make a show out of it and get someone like Colin Farrell to do that\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vi2z/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vi2z\", \"created\": 1439849546.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820746.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vu4l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"semperfi3\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uvuw\", \"score\": 2, \"author_fullname\": \"t2_l4equ\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Right.. not gonna play tuba near you that's for sure lol\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERight.. not gonna play tuba near you that\\u0026#39;s for sure lol\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vu4l/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vu4l\", \"created\": 1439850184.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821384.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -7, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uxqk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"ratesyourtits1\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uvuw\", \"score\": -7, \"author_fullname\": \"t2_j8l5o\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"I highly fucking doubt a person that large would be motivated enough to do all that work. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI highly fucking doubt a person that large would be motivated enough to do all that work. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uxqk/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uxqk\", \"created\": 1439848428.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819628.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uvuw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"wakeupwill\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uat1\", \"score\": 17, \"author_fullname\": \"t2_6epsf\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Nah. Someone's gonna show up at their house and beat the shit out of their dad. Then threaten to skull fuck him with their mom's severed head if he keeps that shit up.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENah. Someone\\u0026#39;s gonna show up at their house and beat the shit out of their dad. Then threaten to skull fuck him with their mom\\u0026#39;s severed head if he keeps that shit up.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uvuw/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uvuw\", \"created\": 1439848324.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819524.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vq5m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"iMurd\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uat1\", \"score\": 2, \"author_fullname\": \"t2_frp9p\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I thought I heard somewhere they knew the guy and he was just acting. \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI thought I heard somewhere they knew the guy and he was just acting. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vq5m/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vq5m\", \"created\": 1439849980.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821180.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 5, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 7, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vv0k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"kahrahtay\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ufip\", \"score\": 7, \"author_fullname\": \"t2_49d38\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Aim for the valve pads. They are vulnerable to liquids.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAim for the valve pads. They are vulnerable to liquids.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vv0k/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vv0k\", \"created\": 1439850229.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821429.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 16, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wop7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"xFoeHammer\", \"can_mod_post\": false, \"created_utc\": 1439822931.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uibp\", \"score\": 2, \"author_fullname\": \"t2_a09m6\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"He could just casually pull it out and pretend he's gonna drink it. They'd think it's funny and let their guard down. Then he could just pour away.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe could just casually pull it out and pretend he\\u0026#39;s gonna drink it. They\\u0026#39;d think it\\u0026#39;s funny and let their guard down. Then he could just pour away.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wop7/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wop7\", \"created\": 1439851731.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu61jgk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"IAmNotNathaniel\", \"can_mod_post\": false, \"created_utc\": 1439830989.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uibp\", \"score\": 1, \"author_fullname\": \"t2_gvej1\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Little shit was getting pretty close. Even fat people can move fast in short bursts.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELittle shit was getting pretty close. Even fat people can move fast in short bursts.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61jgk/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu61jgk\", \"created\": 1439859789.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vxe6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"MajorNarsilion\", \"can_mod_post\": false, \"created_utc\": 1439821552.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uibp\", \"score\": 1, \"author_fullname\": \"t2_adcca\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Not sure what would be funniest, the person chasing them with a jug of milk or the guy running with a tuba. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENot sure what would be funniest, the person chasing them with a jug of milk or the guy running with a tuba. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vxe6/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vxe6\", \"created\": 1439850352.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uibp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"_Larry_Love_\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ufip\", \"score\": 16, \"author_fullname\": \"t2_lmtg3\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"He would have to catch them first :(\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe would have to catch them first :(\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uibp/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uibp\", \"created\": 1439847529.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818729.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5ufip\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"IAmNotNathaniel\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uat1\", \"score\": 5, \"author_fullname\": \"t2_gvej1\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"seriously. \\n\\nif I was that guy I would have gotten a jug of milk and poured it right into the bell\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eseriously. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eif I was that guy I would have gotten a jug of milk and poured it right into the bell\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ufip/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ufip\", \"created\": 1439847354.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818554.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 8, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -17, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 8, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu68k2p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"MaxDG1013\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5wcur\", \"score\": 1, \"author_fullname\": \"t2_ldca5\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Guy, /u/jokerman170 is probably joking. His comment karma is only 116. Almost all of his recent comments are in the negatives.\\n\\nOr, alternatively, he just has *really bad opinions.*\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGuy, \\u003Ca href=\\\"/u/jokerman170\\\"\\u003E/u/jokerman170\\u003C/a\\u003E is probably joking. His comment karma is only 116. Almost all of his recent comments are in the negatives.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOr, alternatively, he just has \\u003Cem\\u003Ereally bad opinions.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu68k2p/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu68k2p\", \"created\": 1439870359.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439841559.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -5, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu63uky\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"jokerman170\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5wcur\", \"score\": -5, \"author_fullname\": \"t2_8aokl\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"nope, u are just part of the fat army that can't restrain themselves from stuffing their fat mouths\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Enope, u are just part of the fat army that can\\u0026#39;t restrain themselves from stuffing their fat mouths\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu63uky/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu63uky\", \"created\": 1439863339.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439834539.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5wcur\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"intarwebzWINNAR\", \"can_mod_post\": false, \"created_utc\": 1439822337.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uz8s\", \"score\": 8, \"author_fullname\": \"t2_4du8w\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"You're just a cunt and a half, aren't you\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou\\u0026#39;re just a cunt and a half, aren\\u0026#39;t you\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wcur/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wcur\", \"created\": 1439851137.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uz8s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"jokerman170\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ugrd\", \"score\": -17, \"author_fullname\": \"t2_8aokl\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"they should think of their insecurities before every bite of pizza they stuff in their faces\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethey should think of their insecurities before every bite of pizza they stuff in their faces\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uz8s/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uz8s\", \"created\": 1439848511.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819711.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5ugrd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"JayCut\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uat1\", \"score\": 8, \"author_fullname\": \"t2_b5tyw\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Yeah. I don't think they realize that those are actual people they're bullying and that those people are probably insecure because of assholes like them. Fuckin' pisses me off \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYeah. I don\\u0026#39;t think they realize that those are actual people they\\u0026#39;re bullying and that those people are probably insecure because of assholes like them. Fuckin\\u0026#39; pisses me off \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ugrd/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ugrd\", \"created\": 1439847430.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818630.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5x2qp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"ScottWalkerSucks\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uat1\", \"score\": 1, \"author_fullname\": \"t2_m1xwn\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I think it's pretty hilarious. Heh.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think it\\u0026#39;s pretty hilarious. Heh.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5x2qp/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5x2qp\", \"created\": 1439852420.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439823620.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uh3a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"teknogeek1\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uat1\", \"score\": 1, \"author_fullname\": \"t2_63xyx\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"probably they do\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eprobably they do\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uh3a/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uh3a\", \"created\": 1439847451.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818651.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5umzt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"chumothy\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uat1\", \"score\": -1, \"author_fullname\": \"t2_ou6xu\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I hope they get fat.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI hope they get fat.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5umzt/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5umzt\", \"created\": 1439847807.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819007.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -24, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 7, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6e2sn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"DrunkenPadawan\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5z7ht\", \"score\": 2, \"author_fullname\": \"t2_4j1q3\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Yeah, cuz that'll make them not fat. Clearly they'll feel better and not go to the stress coping behavior they've clearly already been utilizing. Eating. You and all those people are just so fuckin' dumb, man, and the worst part is you don't even see who fucking dumb you are! Its so sad at every level!\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYeah, cuz that\\u0026#39;ll make them not fat. Clearly they\\u0026#39;ll feel better and not go to the stress coping behavior they\\u0026#39;ve clearly already been utilizing. Eating. You and all those people are just so fuckin\\u0026#39; dumb, man, and the worst part is you don\\u0026#39;t even see who fucking dumb you are! Its so sad at every level!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6e2sn/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6e2sn\", \"created\": 1439878919.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439850119.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5zuhv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"BOWBOWBOWBOW\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5z7ht\", \"score\": 2, \"author_fullname\": \"t2_bmzc5\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Eh, fuck that sub. Everyone has a right to an opinion but it only existed to take the piss out of people that obviously have some issue. The whole idea that a group of people gathered together to have a mutual masturbation session over how terrible people are who, yes, probably don't control their diets etc is fucking weird especially since they probably don't affect your own life much.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EEh, fuck that sub. Everyone has a right to an opinion but it only existed to take the piss out of people that obviously have some issue. The whole idea that a group of people gathered together to have a mutual masturbation session over how terrible people are who, yes, probably don\\u0026#39;t control their diets etc is fucking weird especially since they probably don\\u0026#39;t affect your own life much.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5zuhv/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5zuhv\", \"created\": 1439857090.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439828290.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5z7ht\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"opieopi\", \"can_mod_post\": false, \"created_utc\": 1439827244.0, \"send_replies\": true, \"parent_id\": \"t1_cu5unuk\", \"score\": 1, \"author_fullname\": \"t2_p6252\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"fat people should be ridiculed, this is why we need the return of r/fatpeoplehate\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Efat people should be ridiculed, this is why we need the return of \\u003Ca href=\\\"/r/fatpeoplehate\\\"\\u003Er/fatpeoplehate\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5z7ht/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5z7ht\", \"created\": 1439856044.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5unuk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"BOWBOWBOWBOW\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ug2h\", \"score\": 7, \"author_fullname\": \"t2_bmzc5\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Fuck you dude, not fat and I did laugh. But there's a huge difference between a fucking cartoon displaying a theoretical situation and finding that funny and humiliating a dude out in public for internet grins. And the fact you can't distinguish that means you're probably a little bit ass backward. Sometimes the \\\"triggered\\\" shit is warranted even if not in those words. I'm definitely no SJW but sometimes uncool shit is uncool.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFuck you dude, not fat and I did laugh. But there\\u0026#39;s a huge difference between a fucking cartoon displaying a theoretical situation and finding that funny and humiliating a dude out in public for internet grins. And the fact you can\\u0026#39;t distinguish that means you\\u0026#39;re probably a little bit ass backward. Sometimes the \\u0026quot;triggered\\u0026quot; shit is warranted even if not in those words. I\\u0026#39;m definitely no SJW but sometimes uncool shit is uncool.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5unuk/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5unuk\", \"created\": 1439847858.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819058.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 10, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 7, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 7, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uxoh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"monnii99\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5unth\", \"score\": 7, \"author_fullname\": \"t2_niiwp\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Nah, it's just an example don't worry.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENah, it\\u0026#39;s just an example don\\u0026#39;t worry.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uxoh/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uxoh\", \"created\": 1439848425.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819625.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"more\", \"data\": {\"count\": 0, \"name\": \"t1__\", \"id\": \"_\", \"parent_id\": \"t1_cu5uyz1\", \"depth\": 10, \"children\": []}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uyz1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Fresh_Bulgarian_Miak\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5unth\", \"score\": 3, \"author_fullname\": \"t2_lyjdc\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"TIL\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETIL\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uyz1/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uyz1\", \"created\": 1439848494.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819694.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5unth\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"chumothy\", \"can_mod_post\": false, \"created_utc\": 1439819056.0, \"send_replies\": true, \"parent_id\": \"t1_cu5ukqd\", \"score\": 7, \"author_fullname\": \"t2_ou6xu\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"So...killing people in real life is bad, then? \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo...killing people in real life is bad, then? \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5unth/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5unth\", \"created\": 1439847856.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5ukqd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"TheGrimGuardian\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ug2h\", \"score\": 10, \"author_fullname\": \"t2_oxl0c\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"\\u003E oh so if family guy does it its funny.\\n\\nYeah. It's a cartoon.\\n\\n\\u003Ebut if someone mimics it. Noooooooooo un-cool TRIGGER TRIGGER ALERT.\\n\\nBecause that's effecting actual people.\\n\\nYour argument sounds completely ignorant.\\n\\nIt's like saying \\\"Killing people in a video game is widely accepted, so killing people in real life should be totally cool!\\\"\\n\\n\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Eoh so if family guy does it its funny.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EYeah. It\\u0026#39;s a cartoon.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ebut if someone mimics it. Noooooooooo un-cool TRIGGER TRIGGER ALERT.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EBecause that\\u0026#39;s effecting actual people.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYour argument sounds completely ignorant.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s like saying \\u0026quot;Killing people in a video game is widely accepted, so killing people in real life should be totally cool!\\u0026quot;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ukqd/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ukqd\", \"created\": 1439847670.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818870.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uldk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"Daloure\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ug2h\", \"score\": 3, \"author_fullname\": \"t2_8r8qj\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"You really can't see the difference? Making fun of fat people in general in a cartoon is not the same as following and harassing people in real life. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou really can\\u0026#39;t see the difference? Making fun of fat people in general in a cartoon is not the same as following and harassing people in real life. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uldk/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uldk\", \"created\": 1439847709.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818909.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ujm2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"kalitarios\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ug2h\", \"score\": 2, \"author_fullname\": \"t2_9i2gb\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"found the saxophone player\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Efound the saxophone player\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ujm2/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ujm2\", \"created\": 1439847603.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818803.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5ug2h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"opieopi\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uat1\", \"score\": -24, \"author_fullname\": \"t2_p6252\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"oh so if family guy does it its funny.\\n\\nbut if someone mimics it. Noooooooooo un-cool TRIGGER TRIGGER ALERT.\\n\\nEat shit\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eoh so if family guy does it its funny.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebut if someone mimics it. Noooooooooo un-cool TRIGGER TRIGGER ALERT.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEat shit\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ug2h/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ug2h\", \"created\": 1439847388.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818588.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 4, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu65oiw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Do_Whatever_You_Like\", \"can_mod_post\": false, \"created_utc\": 1439837298.0, \"send_replies\": true, \"parent_id\": \"t1_cu65lvx\", \"score\": -1, \"author_fullname\": \"t2_i1o2i\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Their intention was to harass someone. It's a prank and that's what a prank is. You fuck off old timer, this is what kids do don't get your panties in a twist...\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETheir intention was to harass someone. It\\u0026#39;s a prank and that\\u0026#39;s what a prank is. You fuck off old timer, this is what kids do don\\u0026#39;t get your panties in a twist...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu65oiw/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu65oiw\", \"created\": 1439866098.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu65lvx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"zil_zil\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu637g6\", \"score\": 4, \"author_fullname\": \"t2_cyz55\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Yes, because their intention was to play an instrument and not harass anyone while doing it. Fuck off.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes, because their intention was to play an instrument and not harass anyone while doing it. Fuck off.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu65lvx/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu65lvx\", \"created\": 1439865987.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439837187.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu637g6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Do_Whatever_You_Like\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uat1\", \"score\": -2, \"author_fullname\": \"t2_i1o2i\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Such pieces of shit they are to try to pull off a prank as dangerous as playing an instrument near someone /s\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESuch pieces of shit they are to try to pull off a prank as dangerous as playing an instrument near someone /s\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu637g6/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu637g6\", \"created\": 1439862379.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439833579.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -4, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uvq3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Taugis\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uat1\", \"score\": -4, \"author_fullname\": \"t2_9wpdn\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Fat butt hurt?\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFat butt hurt?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uvq3/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uvq3\", \"created\": 1439848317.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819517.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uat1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"zil_zil\", \"can_mod_post\": false, \"created_utc\": 1439818251.0, \"send_replies\": true, \"parent_id\": \"t1_cu5txtm\", \"score\": 46, \"author_fullname\": \"t2_cyz55\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Wow those kids are total dicks. Hopefully they get their shit knocked in one day\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWow those kids are total dicks. Hopefully they get their shit knocked in one day\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uat1/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uat1\", \"created\": 1439847051.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 5, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vjvq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"pessimistic_platypus\", \"can_mod_post\": false, \"created_utc\": 1439820843.0, \"send_replies\": true, \"parent_id\": \"t1_cu5txtm\", \"score\": 5, \"author_fullname\": \"t2_lekw8\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"The comments on that thing are awful.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe comments on that thing are awful.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vjvq/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vjvq\", \"created\": 1439849643.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vibj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"senorbolsa\", \"can_mod_post\": false, \"created_utc\": 1439820759.0, \"send_replies\": true, \"parent_id\": \"t1_cu5txtm\", \"score\": 2, \"author_fullname\": \"t2_8a2ug\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Oh god, I love that he just continues walking like he is trying to pretend he isn't following the guy.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh god, I love that he just continues walking like he is trying to pretend he isn\\u0026#39;t following the guy.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vibj/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vibj\", \"created\": 1439849559.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 6, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 10, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cumy29e\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Decalance\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5wqhq\", \"score\": 1, \"author_fullname\": \"t2_6vglx\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"You do know humour is subjective \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou do know humour is subjective \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cumy29e/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cumy29e\", \"created\": 1441140086.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1441111286.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5wqhq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"xFoeHammer\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uluj\", \"score\": 10, \"author_fullname\": \"t2_a09m6\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Jackass teenagers *copying a family guy episode* and doing it in a way that negatively affects real people really isn't that funny.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJackass teenagers \\u003Cem\\u003Ecopying a family guy episode\\u003C/em\\u003E and doing it in a way that negatively affects real people really isn\\u0026#39;t that funny.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wqhq/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wqhq\", \"created\": 1439851818.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439823018.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wjc9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uluj\", \"score\": 1, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"\\u003E just that occasionally assholes can be pretty funny.\\n\\nYeah, my asshole cracks me up.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ejust that occasionally assholes can be pretty funny.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EYeah, my asshole cracks me up.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wjc9/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wjc9\", \"created\": 1439851467.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822667.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uzoz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Fresh_Bulgarian_Miak\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uluj\", \"score\": -3, \"author_fullname\": \"t2_lyjdc\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Are you overweight?\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAre you overweight?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uzoz/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uzoz\", \"created\": 1439848534.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819734.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uluj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"Sam474\", \"can_mod_post\": false, \"created_utc\": 1439818937.0, \"send_replies\": true, \"parent_id\": \"t1_cu5txtm\", \"score\": 6, \"author_fullname\": \"t2_4y7ux\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Oh man... I laughed so hard at this the first time I saw it. I'm not saying they aren't assholes, just that occasionally assholes can be pretty funny. I feel bad for the dude and if he had punched that kid I would totally have been on his side but still... I laughed.\\n\\nI would have just embraced it, put a little skip in my step and gone about my day with a musical track.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh man... I laughed so hard at this the first time I saw it. I\\u0026#39;m not saying they aren\\u0026#39;t assholes, just that occasionally assholes can be pretty funny. I feel bad for the dude and if he had punched that kid I would totally have been on his side but still... I laughed.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI would have just embraced it, put a little skip in my step and gone about my day with a musical track.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uluj/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uluj\", \"created\": 1439847737.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5txtm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"joavim\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tlz5\", \"score\": 24, \"author_fullname\": \"t2_bw3kg\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"[Now in real life](https://www.youtube.com/watch?v=Y5zCVlNuuO4)\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=Y5zCVlNuuO4\\\"\\u003ENow in real life\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5txtm/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5txtm\", \"created\": 1439846236.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817436.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -4, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu694c2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"EdwardBola\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tlz5\", \"score\": -4, \"author_fullname\": \"t2_ice8x\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"\\\"That'll be sixty dolla-\\\"\\n\\nCouldn't edit in that last 1/4 of a second?\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026quot;That\\u0026#39;ll be sixty dolla-\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECouldn\\u0026#39;t edit in that last 1/4 of a second?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu694c2/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu694c2\", \"created\": 1439871200.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439842400.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tlz5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"avboden\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tgzu\", \"score\": 177, \"author_fullname\": \"t2_6ekji\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[BRRRHRGHRGHHH](https://www.youtube.com/watch?v=d0aIqx1McVI)\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=d0aIqx1McVI\\\"\\u003EBRRRHRGHRGHHH\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tlz5/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tlz5\", \"created\": 1439845444.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816644.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu638nc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Thundercats_Hoooo\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tgzu\", \"score\": 1, \"author_fullname\": \"t2_mofxd\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Then stop eating glandulars!\\n\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThen stop eating glandulars!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu638nc/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu638nc\", \"created\": 1439862428.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439833628.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -35, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 27, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u1lw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"lingh0e\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tzj5\", \"score\": 27, \"author_fullname\": \"t2_5i57j\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"No, it's reddit making a reference to a joke on Family Guy, but nice try anyways fatty. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo, it\\u0026#39;s reddit making a reference to a joke on Family Guy, but nice try anyways fatty. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u1lw/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u1lw\", \"created\": 1439846480.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817680.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 8, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u3xi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"Hara-Kiri\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tzj5\", \"score\": 8, \"author_fullname\": \"t2_4nr5t\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Well that was more making fun of people who think they are fat because they have a glandular problem rather than that they eat too much. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWell that was more making fun of people who think they are fat because they have a glandular problem rather than that they eat too much. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u3xi/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u3xi\", \"created\": 1439846624.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817824.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 15, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u1co\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"PM_ME_YA_BEWBS\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tzj5\", \"score\": 15, \"author_fullname\": \"t2_g768s\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Found the fatty\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFound the fatty\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u1co/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u1co\", \"created\": 1439846464.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817664.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u33d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"marnches\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tzj5\", \"score\": 3, \"author_fullname\": \"t2_9xjxm\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Yes. They should learn to control themselves.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes. They should learn to control themselves.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u33d/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u33d\", \"created\": 1439846573.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817773.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 4, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u5pa\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Hansen301\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tzj5\", \"score\": 4, \"author_fullname\": \"t2_7g6jn\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Well get thin then lol \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWell get thin then lol \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u5pa/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u5pa\", \"created\": 1439846737.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817937.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uzzx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"myrptaway\", \"can_mod_post\": false, \"created_utc\": 1439819750.0, \"send_replies\": true, \"parent_id\": \"t1_cu5utfs\", \"score\": 1, \"author_fullname\": \"t2_gpf0f\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Das de joke. Doh...\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDas de joke. Doh...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uzzx/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uzzx\", \"created\": 1439848550.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5utfs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"profoundWHALE\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tzj5\", \"score\": 1, \"author_fullname\": \"t2_bgi9o\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"You're calling other people dumb because you can't write something without it sounding sarcastic... K.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou\\u0026#39;re calling other people dumb because you can\\u0026#39;t write something without it sounding sarcastic... K.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5utfs/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5utfs\", \"created\": 1439848186.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819386.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uct8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"myrptaway\", \"can_mod_post\": false, \"created_utc\": 1439818378.0, \"send_replies\": true, \"parent_id\": \"t1_cu5ub32\", \"score\": 0, \"author_fullname\": \"t2_gpf0f\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I think you can say n\\u00efgg\\u0113r here. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think you can say n\\u00efgg\\u0113r here. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uct8/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uct8\", \"created\": 1439847178.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5ub32\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"mcampo84\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tzj5\", \"score\": -1, \"author_fullname\": \"t2_7a8ak\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Well, considering I *am* an overweight person, I guess it's sort of like a black guy saying ni-- you know what, I'm gonna stop there.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWell, considering I \\u003Cem\\u003Eam\\u003C/em\\u003E an overweight person, I guess it\\u0026#39;s sort of like a black guy saying ni-- you know what, I\\u0026#39;m gonna stop there.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ub32/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ub32\", \"created\": 1439847068.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818268.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tzj5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"myrptaway\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tgzu\", \"score\": -35, \"author_fullname\": \"t2_gpf0f\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Wow Reddit making fun of overweight people...again.\\n\\nGood.\\n\\nEdit: you dumb mother fuckers. I said \\\"good\\\" as in keep up the good work. \", \"edited\": 1439818971.0, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWow Reddit making fun of overweight people...again.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGood.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: you dumb mother fuckers. I said \\u0026quot;good\\u0026quot; as in keep up the good work. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tzj5/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tzj5\", \"created\": 1439846349.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817549.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tgzu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"mcampo84\", \"can_mod_post\": false, \"created_utc\": 1439816297.0, \"send_replies\": true, \"parent_id\": \"t1_cu5sye5\", \"score\": 227, \"author_fullname\": \"t2_7a8ak\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"\\u003EI have a glandular problem! \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EI have a glandular problem! \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tgzu/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tgzu\", \"created\": 1439845097.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 16, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v6cc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"regular_lurker\", \"can_mod_post\": false, \"created_utc\": 1439820103.0, \"send_replies\": true, \"parent_id\": \"t1_cu5sye5\", \"score\": 16, \"author_fullname\": \"t2_nk8au\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Thought you guys would appreciate this. Inspired by the guy at the KKK rally, the TV Show \\\"The Last Leg\\\" has started following people around, that the public doesn't like, with a Sousaphone and titled the section [Tubular Bellend](https://www.youtube.com/watch?v=7QosyPyUTag)\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThought you guys would appreciate this. Inspired by the guy at the KKK rally, the TV Show \\u0026quot;The Last Leg\\u0026quot; has started following people around, that the public doesn\\u0026#39;t like, with a Sousaphone and titled the section \\u003Ca href=\\\"https://www.youtube.com/watch?v=7QosyPyUTag\\\"\\u003ETubular Bellend\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v6cc/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v6cc\", \"created\": 1439848903.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 12, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5udrw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"DingyWarehouse\", \"can_mod_post\": false, \"created_utc\": 1439818437.0, \"send_replies\": true, \"parent_id\": \"t1_cu5sye5\", \"score\": 12, \"author_fullname\": \"t2_ax11y\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Blow me like one of your french horns.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBlow me like one of your french horns.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5udrw/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5udrw\", \"created\": 1439847237.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 13, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu638w9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Do_Whatever_You_Like\", \"can_mod_post\": false, \"created_utc\": 1439833639.0, \"send_replies\": true, \"parent_id\": \"t1_cu5wzc7\", \"score\": 1, \"author_fullname\": \"t2_i1o2i\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"The guy says \\\"tuba\\\" so call out OP\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe guy says \\u0026quot;tuba\\u0026quot; so call out OP\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu638w9/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu638w9\", \"created\": 1439862439.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5wzc7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Logiconaut\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5w3gc\", \"score\": 2, \"author_fullname\": \"t2_8ctxc\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"I didn't see anyone with a tuba but maybe the guy with the sax knows him.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI didn\\u0026#39;t see anyone with a tuba but maybe the guy with the sax knows him.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wzc7/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wzc7\", \"created\": 1439852258.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439823458.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu69cxf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"rimalp\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu65kd1\", \"score\": 2, \"author_fullname\": \"t2_d2n5p\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"\\u003E So never play a prank on anyone basically because what if they don't laugh at it?\\n\\nThat's not what I said. The asshole sax player and his buddy made a video of the situation and put it on youtube. The guy, that they are making \\\"fun\\\" of, has no chance of preventing this. It's not like they asked him \\\"hey can we put this on youtube?\\\". That's just a really really cowardly move by the asshat playing the sax and his asshole buddy secretly recording the situation. It would be a different thing, if the guy would have laughed and/or agreed to be put on Youtube.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESo never play a prank on anyone basically because what if they don\\u0026#39;t laugh at it?\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s not what I said. The asshole sax player and his buddy made a video of the situation and put it on youtube. The guy, that they are making \\u0026quot;fun\\u0026quot; of, has no chance of preventing this. It\\u0026#39;s not like they asked him \\u0026quot;hey can we put this on youtube?\\u0026quot;. That\\u0026#39;s just a really really cowardly move by the asshat playing the sax and his asshole buddy secretly recording the situation. It would be a different thing, if the guy would have laughed and/or agreed to be put on Youtube.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu69cxf/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu69cxf\", \"created\": 1439871561.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439842761.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu65kd1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Do_Whatever_You_Like\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu65d4u\", \"score\": -3, \"author_fullname\": \"t2_i1o2i\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"That's so stupid. So never play a prank on anyone basically because what if they don't laugh at it? Am I supposed to check and make sure all my friends are in a good mood first? and never prank a stranger? \\n\\nNo you're just adding the \\\"bro\\\" dialog to try to lump him into the same category as people who call the SWAT on other people and do other dumb shit. Yeah he would say \\\"it's just a prank\\\" because it fucking is, he's playing music next to someone who the fuck cares? Of course it's filmed, that's the whole fucking point. Prank shows are filmed too but you don't bitch about those..\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u0026#39;s so stupid. So never play a prank on anyone basically because what if they don\\u0026#39;t laugh at it? Am I supposed to check and make sure all my friends are in a good mood first? and never prank a stranger? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENo you\\u0026#39;re just adding the \\u0026quot;bro\\u0026quot; dialog to try to lump him into the same category as people who call the SWAT on other people and do other dumb shit. Yeah he would say \\u0026quot;it\\u0026#39;s just a prank\\u0026quot; because it fucking is, he\\u0026#39;s playing music next to someone who the fuck cares? Of course it\\u0026#39;s filmed, that\\u0026#39;s the whole fucking point. Prank shows are filmed too but you don\\u0026#39;t bitch about those..\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu65kd1/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu65kd1\", \"created\": 1439865923.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439837123.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu65d4u\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"rimalp\", \"can_mod_post\": false, \"created_utc\": 1439836816.0, \"send_replies\": true, \"parent_id\": \"t1_cu639m7\", \"score\": 1, \"author_fullname\": \"t2_d2n5p\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"It's only fun if the pranked person can laugh about it too. This sax player idiot is more like \\\"It's just a prank, bro. Let's make fun of a stranger and put him on display on youtube, bro. He doesn't know we're filming this, bro.\\\"\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u0026#39;s only fun if the pranked person can laugh about it too. This sax player idiot is more like \\u0026quot;It\\u0026#39;s just a prank, bro. Let\\u0026#39;s make fun of a stranger and put him on display on youtube, bro. He doesn\\u0026#39;t know we\\u0026#39;re filming this, bro.\\u0026quot;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu65d4u/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu65d4u\", \"created\": 1439865616.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu639m7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Do_Whatever_You_Like\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5w3gc\", \"score\": -2, \"author_fullname\": \"t2_i1o2i\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"not really. take a fucking joke. not everyone who pulls a prank deserves to get punched...\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Enot really. take a fucking joke. not everyone who pulls a prank deserves to get punched...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu639m7/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu639m7\", \"created\": 1439862470.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439833670.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5w3gc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"xf-\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tyhz\", \"score\": -2, \"author_fullname\": \"t2_nhm84\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"That little dipshit with the ~~tuba~~ sax deserves a punch to the face.\\n\\nedit: I'm not a musician.\", \"edited\": 1439825571.0, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat little dipshit with the \\u003Cdel\\u003Etuba\\u003C/del\\u003E sax deserves a punch to the face.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eedit: I\\u0026#39;m not a musician.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w3gc/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5w3gc\", \"created\": 1439850658.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821858.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tyhz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"pizzafest\", \"can_mod_post\": false, \"created_utc\": 1439817481.0, \"send_replies\": true, \"parent_id\": \"t1_cu5sye5\", \"score\": 13, \"author_fullname\": \"t2_bf2it\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[Poor Guy](https://www.youtube.com/watch?v=QBjf8T5k6Mk)\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=QBjf8T5k6Mk\\\"\\u003EPoor Guy\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tyhz/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tyhz\", \"created\": 1439846281.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5zo4i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"created_utc\": 1439828003.0, \"send_replies\": true, \"parent_id\": \"t1_cu5sye5\", \"score\": 2, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"\\\"I want all the ham.\\\"\", \"edited\": false, \"author_flair_css_class\": null, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026quot;I want all the ham.\\u0026quot;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5zo4i/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5zo4i\", \"created\": 1439856803.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5udsa\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"-zimms-\", \"can_mod_post\": false, \"created_utc\": 1439818437.0, \"send_replies\": true, \"parent_id\": \"t1_cu5sye5\", \"score\": 3, \"author_fullname\": \"t2_6jx9c\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[Like this?](https://www.youtube.com/watch?v=Rs4P1kKK-5k)\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=Rs4P1kKK-5k\\\"\\u003ELike this?\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5udsa/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5udsa\", \"created\": 1439847237.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tc2n\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"MadTitan63\", \"can_mod_post\": false, \"created_utc\": 1439815938.0, \"send_replies\": true, \"parent_id\": \"t1_cu5sye5\", \"score\": 1, \"author_fullname\": \"t2_ji7lj\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Why are you following me??\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhy are you following me??\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tc2n/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tc2n\", \"created\": 1439844738.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5sye5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"Lommo97\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pebp\", \"score\": 703, \"author_fullname\": \"t2_g6ttp\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Better than being a fat guy and getting followed around with a Tuba all day.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBetter than being a fat guy and getting followed around with a Tuba all day.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5sye5/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5sye5\", \"created\": 1439843708.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439814908.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 11, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": false, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6brig\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"rarely-sarcastic\", \"can_mod_post\": false, \"created_utc\": 1439846362.0, \"send_replies\": true, \"parent_id\": \"t1_cu5tovd\", \"score\": 1, \"author_fullname\": \"t2_9xren\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I fell off my chair today. I wasn't even moving around too much. I just kind of kept on sliding lower and lower and then when I tried to sit back up the chair just slid all the way back and I was on the floor. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI fell off my chair today. I wasn\\u0026#39;t even moving around too much. I just kind of kept on sliding lower and lower and then when I tried to sit back up the chair just slid all the way back and I was on the floor. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6brig/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6brig\", \"created\": 1439875162.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tovd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pebp\", \"score\": 11, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[deleted]\", \"edited\": 1462414186.0, \"author_flair_css_class\": null, \"collapsed\": false, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[deleted]\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tovd/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tovd\", \"created\": 1439845644.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816844.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6dave\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Borkach\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pebp\", \"score\": 1, \"author_fullname\": \"t2_pjyg1\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"That kid saw **25 cents** on the floor. Quick reaction yo\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat kid saw \\u003Cstrong\\u003E25 cents\\u003C/strong\\u003E on the floor. Quick reaction yo\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6dave/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6dave\", \"created\": 1439877615.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439848815.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu616jd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"omnilynx\", \"can_mod_post\": false, \"created_utc\": 1439830420.0, \"send_replies\": true, \"parent_id\": \"t1_cu5tzum\", \"score\": 3, \"author_fullname\": \"t2_3fiym\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I thought so too at first but looking carefully, he only steps with one foot, and the foot he's not stepping with is actually the first to slide. So he would have had to be already on a treadmill, which started up as he took the step. The simpler explanation is that he's on a slippery surface.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI thought so too at first but looking carefully, he only steps with one foot, and the foot he\\u0026#39;s not stepping with is actually the first to slide. So he would have had to be already on a treadmill, which started up as he took the step. The simpler explanation is that he\\u0026#39;s on a slippery surface.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu616jd/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu616jd\", \"created\": 1439859220.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tzum\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"kosh56\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pebp\", \"score\": 0, \"author_fullname\": \"t2_ausz6\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"It looks like he purposefully stepped on a running treadmill.This looks staged to me.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt looks like he purposefully stepped on a running treadmill.This looks staged to me.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tzum/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tzum\", \"created\": 1439846368.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817568.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ujqr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"uncleawesome\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pebp\", \"score\": 0, \"author_fullname\": \"t2_3cbg9\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"http://instantrimshot.com/classic/?sound=rimshot is there for you.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://instantrimshot.com/classic/?sound=rimshot\\\"\\u003Ehttp://instantrimshot.com/classic/?sound=rimshot\\u003C/a\\u003E is there for you.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ujqr/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ujqr\", \"created\": 1439847610.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818810.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5pebp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"johnnwho\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1132, \"author_fullname\": \"t2_ay7a7\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Man I am glad there isn't someone on a drum set every time I fall over.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMan I am glad there isn\\u0026#39;t someone on a drum set every time I fall over.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5pebp/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5pebp\", \"created\": 1439829951.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439801151.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1445, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 635, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 285, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 83, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 98, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 60, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 14, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 10, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6da83\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"aaronrenoawesome\", \"can_mod_post\": false, \"created_utc\": 1439848786.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uinp\", \"score\": 3, \"author_fullname\": \"t2_61bfe\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Draw blood. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDraw blood. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6da83/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6da83\", \"created\": 1439877586.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 5, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v6eb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"YOUR_MOTHERS_BUTT_\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uvey\", \"score\": 5, \"author_fullname\": \"t2_jvxwt\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"No, but I do want to go to Trader Vicks\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo, but I do want to go to Trader Vicks\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v6eb/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v6eb\", \"created\": 1439848906.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820106.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uvey\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"CornCobMcGee\", \"can_mod_post\": false, \"created_utc\": 1439819500.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uinp\", \"score\": -1, \"author_fullname\": \"t2_9b7a9\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Do you want to get caught in the rain?\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDo you want to get caught in the rain?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uvey/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uvey\", \"created\": 1439848300.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wqxe\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"KimJongIlSunglasses\", \"can_mod_post\": false, \"created_utc\": 1439823040.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uinp\", \"score\": -1, \"author_fullname\": \"t2_4jy2b\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"And walks in the rain. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAnd walks in the rain. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wqxe/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wqxe\", \"created\": 1439851840.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uinp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"YOUR_MOTHERS_BUTT_\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uayl\", \"score\": 10, \"author_fullname\": \"t2_jvxwt\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Now i want a Pina colada...\\n\\nEdit: Does nobody else know how the god damn song goes?!?\\n\\n'He was drinking a pina colada at trader vicks'\\n\\nAnd his hair was perfect\\n\\nDIDT!\\n\\nAROOOOOOOOOOOO\", \"edited\": 1439843340.0, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENow i want a Pina colada...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: Does nobody else know how the god damn song goes?!?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#39;He was drinking a pina colada at trader vicks\\u0026#39;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd his hair was perfect\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDIDT!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAROOOOOOOOOOOO\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uinp/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uinp\", \"created\": 1439847548.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818748.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uh2p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"POI_Harold-Finch\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uayl\", \"score\": -2, \"author_fullname\": \"t2_k3qh3\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"I'd like to meet his trainer\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;d like to meet his trainer\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uh2p/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uh2p\", \"created\": 1439847450.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818650.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uayl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"benbrennan\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5u02p\", \"score\": 14, \"author_fullname\": \"t2_gd7uc\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Ha. I'd like to meet his tailor. \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHa. I\\u0026#39;d like to meet his tailor. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uayl/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uayl\", \"created\": 1439847060.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818260.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5u02p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"3rd_Shift_Tech_Man\", \"can_mod_post\": false, \"created_utc\": 1439817583.0, \"send_replies\": true, \"parent_id\": \"t1_cu5tu76\", \"score\": 60, \"author_fullname\": \"t2_77ub1\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"\\n\\nAaaaooooooh, werewolves of London!\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAaaaooooooh, werewolves of London!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u02p/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u02p\", \"created\": 1439846383.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tu76\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"aaronrenoawesome\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tlxl\", \"score\": 98, \"author_fullname\": \"t2_61bfe\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"...and his hair was perfect. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E...and his hair was perfect. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tu76/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tu76\", \"created\": 1439846001.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817201.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uipf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"AvatarIII\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tlxl\", \"score\": 2, \"author_fullname\": \"t2_9qv7q\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"He probably doesn't suffer from arrhythmia. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe probably doesn\\u0026#39;t suffer from arrhythmia. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uipf/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uipf\", \"created\": 1439847550.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818750.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vv1f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"pheasant-plucker\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tlxl\", \"score\": 1, \"author_fullname\": \"t2_g0vjj\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"As was his pecker.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs was his pecker.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vv1f/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vv1f\", \"created\": 1439850231.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821431.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu624c4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Do_Whatever_You_Like\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tlxl\", \"score\": 1, \"author_fullname\": \"t2_i1o2i\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"that's the same as responding with a faceless gesture no? it didn't make sense the way he said it but I think that's what he meant... \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethat\\u0026#39;s the same as responding with a faceless gesture no? it didn\\u0026#39;t make sense the way he said it but I think that\\u0026#39;s what he meant... \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu624c4/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu624c4\", \"created\": 1439860696.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439831896.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tlxl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"zenofire\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tazd\", \"score\": 83, \"author_fullname\": \"t2_66v98\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Also his accuracy was impeccable\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAlso his accuracy was impeccable\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tlxl/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tlxl\", \"created\": 1439845441.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816641.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 14, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 6, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 6, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 10, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xqvj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"barrtender\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5x4jc\", \"score\": 10, \"author_fullname\": \"t2_79vth\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"\\\"Unfortunate happenstance\\\" as in: \\\"That's a bad beat\\\"\\n\\nOr more likely just \\\"hitting something\\\" as in \\\"he beat his head on the ground\\\"\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026quot;Unfortunate happenstance\\u0026quot; as in: \\u0026quot;That\\u0026#39;s a bad beat\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOr more likely just \\u0026quot;hitting something\\u0026quot; as in \\u0026quot;he beat his head on the ground\\u0026quot;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xqvj/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5xqvj\", \"created\": 1439853607.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439824807.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5x4jc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"Zantier\", \"can_mod_post\": false, \"created_utc\": 1439823709.0, \"send_replies\": true, \"parent_id\": \"t1_cu5wud7\", \"score\": 6, \"author_fullname\": \"t2_3ur2u\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Is there a meaning of \\\"beat\\\" that fits #3?\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there a meaning of \\u0026quot;beat\\u0026quot; that fits #3?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5x4jc/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5x4jc\", \"created\": 1439852509.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5wud7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"barrtender\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uzcs\", \"score\": 6, \"author_fullname\": \"t2_79vth\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"1) he didn't mis-time his playing of a musical instrument. \\n\\n2) he didn't hesitate when seeing the opportunity\\n\\n3) he didn't fail to see the other person fall\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E1) he didn\\u0026#39;t mis-time his playing of a musical instrument. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2) he didn\\u0026#39;t hesitate when seeing the opportunity\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E3) he didn\\u0026#39;t fail to see the other person fall\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wud7/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wud7\", \"created\": 1439852013.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439823213.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uzcs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"BillyTheBanana\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tazd\", \"score\": 14, \"author_fullname\": \"t2_4chi6\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"The third one is a stretch unless I don't get it...\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe third one is a stretch unless I don\\u0026#39;t get it...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uzcs/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uzcs\", \"created\": 1439848516.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819716.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu641qn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"captpiggard\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tazd\", \"score\": 1, \"author_fullname\": \"t2_4r1v8\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Aaaaand all I can think about is The League...\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAaaaand all I can think about is The League...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu641qn/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu641qn\", \"created\": 1439863642.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439834842.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ucgu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tazd\", \"score\": 0, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"IT WORKS!\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIT WORKS!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ucgu/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ucgu\", \"created\": 1439847156.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818356.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -5, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ukgt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"JoeMo81\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tazd\", \"score\": -5, \"author_fullname\": \"t2_7ggsu\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"You want triple entendres? I think I got two for you. Once at the mall I saw a kiosk selling cheap, plastic, oversized, \\\"jewel\\\" encrusted crosses to which I commented \\\"man those are so gaudy! (Could also be taken as goddy for the religious aspect or gotti for the cheesy Italian element.) Second one, a friend once posted a picture of a dingy looking sex store called \\\"romance store\\\" saying \\\"romance store not so romantic\\\" I replied \\\"remember, it's what's inside that counts\\\" (I.e. what they sell in the store is what matters, the old saying to not judge people on superficial looks, and third a sexual reference to having a big penis inside you)\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou want triple entendres? I think I got two for you. Once at the mall I saw a kiosk selling cheap, plastic, oversized, \\u0026quot;jewel\\u0026quot; encrusted crosses to which I commented \\u0026quot;man those are so gaudy! (Could also be taken as goddy for the religious aspect or gotti for the cheesy Italian element.) Second one, a friend once posted a picture of a dingy looking sex store called \\u0026quot;romance store\\u0026quot; saying \\u0026quot;romance store not so romantic\\u0026quot; I replied \\u0026quot;remember, it\\u0026#39;s what\\u0026#39;s inside that counts\\u0026quot; (I.e. what they sell in the store is what matters, the old saying to not judge people on superficial looks, and third a sexual reference to having a big penis inside you)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ukgt/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ukgt\", \"created\": 1439847654.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818854.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tazd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"I_UPVOTE_ARKANSAS\", \"can_mod_post\": false, \"created_utc\": 1439815855.0, \"send_replies\": true, \"parent_id\": \"t1_cu5t516\", \"score\": 285, \"author_fullname\": \"t2_83t2v\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Is this the elusive triple entendre?\\n\\n\\u003Ehe didn't miss a beat\\n\\nKid is on the drums\\n\\n\\u003Ehe didn't miss a beat\\n\\nKid immediately responded with a faceless gesture \\n\\n\\u003Ehe didn't miss a beat\\n\\nKid witnessed the boy fall helplessly as he hit the floor \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs this the elusive triple entendre?\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ehe didn\\u0026#39;t miss a beat\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EKid is on the drums\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ehe didn\\u0026#39;t miss a beat\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EKid immediately responded with a faceless gesture \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ehe didn\\u0026#39;t miss a beat\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EKid witnessed the boy fall helplessly as he hit the floor \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tazd/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tazd\", \"created\": 1439844655.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 14, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 40, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 5, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xjcc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Gyossaits\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5urps\", \"score\": 1, \"author_fullname\": \"t2_7nf9e\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"awh lerdy loo\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eawh lerdy loo\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xjcc/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5xjcc\", \"created\": 1439853238.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439824438.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5urps\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"PunisherXXV\", \"can_mod_post\": false, \"created_utc\": 1439819286.0, \"send_replies\": true, \"parent_id\": \"t1_cu5tj1j\", \"score\": 1, \"author_fullname\": \"t2_7wo2z\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"oh lawdy\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eoh lawdy\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5urps/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5urps\", \"created\": 1439848086.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tj1j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"onwheels\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tfh6\", \"score\": 5, \"author_fullname\": \"t2_akw5a\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Oh Lord.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh Lord.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tj1j/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tj1j\", \"created\": 1439845238.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816438.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tfh6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"frittenlord\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tbhx\", \"score\": 40, \"author_fullname\": \"t2_jjpjz\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Ba Pun Tss?\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBa Pun Tss?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tfh6/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tfh6\", \"created\": 1439844992.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816192.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 6, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uh3o\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"SlayterDev\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tbhx\", \"score\": 6, \"author_fullname\": \"t2_94k6y\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I don't think crescendo is the right word...\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t think crescendo is the right word...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uh3o/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uh3o\", \"created\": 1439847452.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818652.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tbhx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"MadTitan63\", \"can_mod_post\": false, \"created_utc\": 1439815894.0, \"send_replies\": true, \"parent_id\": \"t1_cu5t516\", \"score\": 14, \"author_fullname\": \"t2_ji7lj\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"If only there was a drum crescendo that illuminated that pun of yours...\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf only there was a drum crescendo that illuminated that pun of yours...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tbhx/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tbhx\", \"created\": 1439844694.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tb0y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"frittenlord\", \"can_mod_post\": false, \"created_utc\": 1439815858.0, \"send_replies\": true, \"parent_id\": \"t1_cu5t516\", \"score\": 3, \"author_fullname\": \"t2_jjpjz\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Ba Dum Tss\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBa Dum Tss\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tb0y/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tb0y\", \"created\": 1439844658.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 6, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": false, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tqpy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"created_utc\": 1439816971.0, \"send_replies\": true, \"parent_id\": \"t1_cu5t516\", \"score\": 6, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I think it was an act to drum up some laughs.\", \"edited\": false, \"author_flair_css_class\": null, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think it was an act to drum up some laughs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tqpy/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tqpy\", \"created\": 1439845771.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 4, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu613zq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"u283\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uhzr\", \"score\": 1, \"author_fullname\": \"t2_cyyh1\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Where's u/a_poem_for_your_sprog when you need him\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhere\\u0026#39;s \\u003Ca href=\\\"/u/a_poem_for_your_sprog\\\"\\u003Eu/a_poem_for_your_sprog\\u003C/a\\u003E when you need him\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu613zq/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu613zq\", \"created\": 1439859108.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439830308.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uhzr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"POI_Harold-Finch\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tl6b\", \"score\": 4, \"author_fullname\": \"t2_k3qh3\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"\\u003E he didn't miss a beat.\\n\\n\\u003EI fell off my seat\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ehe didn\\u0026#39;t miss a beat.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI fell off my seat\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uhzr/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uhzr\", \"created\": 1439847508.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818708.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tl6b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"dfsatacs\", \"can_mod_post\": false, \"created_utc\": 1439816586.0, \"send_replies\": true, \"parent_id\": \"t1_cu5t516\", \"score\": 1, \"author_fullname\": \"t2_mrshs\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I fell off my seat when he didn't miss a beat.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI fell off my seat when he didn\\u0026#39;t miss a beat.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tl6b/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tl6b\", \"created\": 1439845386.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5t516\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"Rivster79\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5oif1\", \"score\": 635, \"author_fullname\": \"t2_6njhe\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"He didn't miss a beat\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe didn\\u0026#39;t miss a beat\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5t516/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5t516\", \"created\": 1439844214.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439815414.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 31, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tmix\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"KMerrells\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5oif1\", \"score\": 31, \"author_fullname\": \"t2_oolny\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"\\\"I know what I must do.\\\"\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026quot;I know what I must do.\\u0026quot;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tmix/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tmix\", \"created\": 1439845481.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816681.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 14, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5w7hs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"MindOverManter\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5oif1\", \"score\": 14, \"author_fullname\": \"t2_hngqv\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"This is the burden all drummers must bear, constantly vigilant for that perfect moment.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is the burden all drummers must bear, constantly vigilant for that perfect moment.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w7hs/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5w7hs\", \"created\": 1439850864.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822064.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu63tao\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Hyperian\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5oif1\", \"score\": 1, \"author_fullname\": \"t2_3b3j0\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"he's ready for show biz\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehe\\u0026#39;s ready for show biz\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu63tao/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu63tao\", \"created\": 1439863288.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439834488.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wwcs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Tummes\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5oif1\", \"score\": 1, \"author_fullname\": \"t2_3h67d\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Ba Dum Piss\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBa Dum Piss\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wwcs/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wwcs\", \"created\": 1439852110.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439823310.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u4od\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"turbogoblin\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5oif1\", \"score\": 0, \"author_fullname\": \"t2_7nxcu\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"He really drummed up some applause for that fall.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe really drummed up some applause for that fall.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u4od/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u4od\", \"created\": 1439846671.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817871.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vr6e\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"hardypart\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5oif1\", \"score\": 0, \"author_fullname\": \"t2_dbmp3\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"https://i.imgur.com/BbgL7x3h.gifv\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/BbgL7x3h.gifv\\\"\\u003Ehttps://i.imgur.com/BbgL7x3h.gifv\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vr6e/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vr6e\", \"created\": 1439850035.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821235.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5zp8v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"jerusha16\", \"can_mod_post\": false, \"created_utc\": 1439828055.0, \"send_replies\": true, \"parent_id\": \"t1_cu5yroy\", \"score\": 1, \"author_fullname\": \"t2_685qw\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Easy, Captain Killjoy.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EEasy, Captain Killjoy.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5zp8v/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5zp8v\", \"created\": 1439856855.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5yroy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Boo_R4dley\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5oif1\", \"score\": 0, \"author_fullname\": \"t2_9rvrk\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"His face is emotionless because the falling kid isn't there. It's two videos composited together. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHis face is emotionless because the falling kid isn\\u0026#39;t there. It\\u0026#39;s two videos composited together. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5yroy/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5yroy\", \"created\": 1439855317.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439826517.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -5, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 8, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5un6l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"frittenlord\", \"can_mod_post\": false, \"created_utc\": 1439819019.0, \"send_replies\": true, \"parent_id\": \"t1_cu5um6y\", \"score\": 8, \"author_fullname\": \"t2_jjpjz\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"You must be fun at parties...\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou must be fun at parties...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5un6l/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5un6l\", \"created\": 1439847819.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5volx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Judo_Guy07\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uvqu\", \"score\": 1, \"author_fullname\": \"t2_d56mi\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"OR. People see what they want to see.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOR. People see what they want to see.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5volx/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5volx\", \"created\": 1439849897.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821097.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uvqu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"monkey0410\", \"can_mod_post\": false, \"created_utc\": 1439819518.0, \"send_replies\": true, \"parent_id\": \"t1_cu5um6y\", \"score\": 3, \"author_fullname\": \"t2_apl5j\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"OR. This might be a little comedy skit by these two. And one of the jokes includes falling over. \\n\\nIn this case, drummer boy was right on cue. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOR. This might be a little comedy skit by these two. And one of the jokes includes falling over. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn this case, drummer boy was right on cue. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uvqu/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uvqu\", \"created\": 1439848318.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5um6y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Judo_Guy07\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5oif1\", \"score\": -5, \"author_fullname\": \"t2_d56mi\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"The kid doesn't react for a reason.\\n\\nTake a look at his hand on the microphone, the speed at which he falls, and the placement of the body in relation to the microphone stand. Also, note the slight wobble of the microphone stand itself when it is not being touched.\\n\\nThe kid falling was edited in.\\n\\nEDIT: Video could actually be legit.\", \"edited\": 1439827252.0, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe kid doesn\\u0026#39;t react for a reason.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETake a look at his hand on the microphone, the speed at which he falls, and the placement of the body in relation to the microphone stand. Also, note the slight wobble of the microphone stand itself when it is not being touched.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe kid falling was edited in.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: Video could actually be legit.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5um6y/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5um6y\", \"created\": 1439847757.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818957.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5oif1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"frittenlord\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1445, \"author_fullname\": \"t2_jjpjz\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"His emotionless face...oh god, I nearly pissed myself laughing!\\nThanks for brightening my monday!\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHis emotionless face...oh god, I nearly pissed myself laughing!\\nThanks for brightening my monday!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5oif1/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5oif1\", \"created\": 1439826339.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439797539.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 192, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": false, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 48, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 20, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 19, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 27, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 7, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wgck\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"Maclimes\", \"can_mod_post\": false, \"created_utc\": 1439822514.0, \"send_replies\": true, \"parent_id\": \"t1_cu5v9nb\", \"score\": 7, \"author_fullname\": \"t2_4jy9f\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"/r/subredditsashashbrowns\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/subredditsashashbrowns\\\"\\u003E/r/subredditsashashbrowns\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wgck/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wgck\", \"created\": 1439851314.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 9, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6btjt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"rarely-sarcastic\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5w3e6\", \"score\": 1, \"author_fullname\": \"t2_9xren\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Is that sub for Meek Mill?\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs that sub for Meek Mill?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6btjt/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6btjt\", \"created\": 1439875250.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439846450.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xmm0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"yourmansconnect\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5w3e6\", \"score\": 1, \"author_fullname\": \"t2_6twfb\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"/r/spaceclop\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/spaceclop\\\"\\u003E/r/spaceclop\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xmm0/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5xmm0\", \"created\": 1439853399.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439824599.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5w3e6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"Qazfuel\", \"can_mod_post\": false, \"created_utc\": 1439821855.0, \"send_replies\": true, \"parent_id\": \"t1_cu5v9nb\", \"score\": 9, \"author_fullname\": \"t2_nups4\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"/r/watchpeopledie \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/watchpeopledie\\\"\\u003E/r/watchpeopledie\\u003C/a\\u003E \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w3e6/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5w3e6\", \"created\": 1439850655.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5v9nb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"Sodomy-Clown\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5v6r4\", \"score\": 27, \"author_fullname\": \"t2_ovur9\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"/r/subredditsarehashtags\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/subredditsarehashtags\\\"\\u003E/r/subredditsarehashtags\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v9nb/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v9nb\", \"created\": 1439849090.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820290.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5v6r4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"uptwolait\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uu41\", \"score\": 19, \"author_fullname\": \"t2_36vh9\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"/r/howlongwillthiscontinue\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/howlongwillthiscontinue\\\"\\u003E/r/howlongwillthiscontinue\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v6r4/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v6r4\", \"created\": 1439848926.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820126.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu61vkg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Bitey_the_Squirrel\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uu41\", \"score\": 2, \"author_fullname\": \"t2_p42iz\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"/r/unnecessaryexplosions \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/unnecessaryexplosions\\\"\\u003E/r/unnecessaryexplosions\\u003C/a\\u003E \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61vkg/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu61vkg\", \"created\": 1439860320.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439831520.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uu41\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"usernamenottakenwooh\", \"can_mod_post\": false, \"created_utc\": 1439819425.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uluu\", \"score\": 20, \"author_fullname\": \"t2_8aomb\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"/r/ofcoursethatsathing \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/ofcoursethatsathing\\\"\\u003E/r/ofcoursethatsathing\\u003C/a\\u003E \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uu41/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uu41\", \"created\": 1439848225.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uluu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"Antrikshy\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5s3hd\", \"score\": 48, \"author_fullname\": \"t2_4i3x1\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"/r/childrenfallingover\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/childrenfallingover\\\"\\u003E/r/childrenfallingover\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uluu/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uluu\", \"created\": 1439847738.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818938.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wg0v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"The_Punniest\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5s3hd\", \"score\": 3, \"author_fullname\": \"t2_acwan\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"/r/shouldjustbeavideo\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/shouldjustbeavideo\\\"\\u003E/r/shouldjustbeavideo\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wg0v/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wg0v\", \"created\": 1439851299.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822499.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu65raf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Muntberg\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5s3hd\", \"score\": 1, \"author_fullname\": \"t2_8erx2\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Wait... that didn't have sound? \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWait... that didn\\u0026#39;t have sound? \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu65raf/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu65raf\", \"created\": 1439866215.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439837415.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5s3hd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 192, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"/r/noisygifs \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/noisygifs\\\"\\u003E/r/noisygifs\\u003C/a\\u003E \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5s3hd/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5s3hd\", \"created\": 1439841075.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439812275.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 202, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 53, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 32, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 6, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": false, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu61te3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5u49t\", \"score\": 6, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Drummers are just that cool. \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDrummers are just that cool. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61te3/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu61te3\", \"created\": 1439860227.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439831427.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5u49t\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"brucetwarzen\", \"can_mod_post\": false, \"created_utc\": 1439817845.0, \"send_replies\": true, \"parent_id\": \"t1_cu5tq8c\", \"score\": 32, \"author_fullname\": \"t2_6mdzv\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Look at the drummer, he wasn't surprised at all. He did that many times before\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELook at the drummer, he wasn\\u0026#39;t surprised at all. He did that many times before\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u49t/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u49t\", \"created\": 1439846645.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -12, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ugwp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Judo_Guy07\", \"can_mod_post\": false, \"created_utc\": 1439818640.0, \"send_replies\": true, \"parent_id\": \"t1_cu5tq8c\", \"score\": -12, \"author_fullname\": \"t2_d56mi\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I'm not... because its not real. To me it looks obviously photoshopped or manipulated.\\n\\nTake a look at his hand on the microphone, the speed at which he falls, and the placement of the body in relation to the microphone stand. Also, note the slight wobble of the microphone stand itself when it is not being touched.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not... because its not real. To me it looks obviously photoshopped or manipulated.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETake a look at his hand on the microphone, the speed at which he falls, and the placement of the body in relation to the microphone stand. Also, note the slight wobble of the microphone stand itself when it is not being touched.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ugwp/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ugwp\", \"created\": 1439847440.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tq8c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"8bit_Planet\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5q4m5\", \"score\": 53, \"author_fullname\": \"t2_cse9k\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"I'm just impressed he managed not to knock anything over. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m just impressed he managed not to knock anything over. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tq8c/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tq8c\", \"created\": 1439845736.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816936.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 20, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ukar\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"mattmck90\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5q4m5\", \"score\": 20, \"author_fullname\": \"t2_kjnrm\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"It's almost as if he stepped on to a treadmill.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u0026#39;s almost as if he stepped on to a treadmill.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ukar/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ukar\", \"created\": 1439847644.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818844.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 9, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v16a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"marmo518\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5q4m5\", \"score\": 9, \"author_fullname\": \"t2_5k6ql\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"http://www.reddit.com/r/funny/comments/3hahrw/ba_dum_tsss/cu5uwfx\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://www.reddit.com/r/funny/comments/3hahrw/ba_dum_tsss/cu5uwfx\\\"\\u003Ehttp://www.reddit.com/r/funny/comments/3hahrw/ba_dum_tsss/cu5uwfx\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v16a/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v16a\", \"created\": 1439848615.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819815.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 6, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uhi6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"conwaytwt\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5q4m5\", \"score\": 6, \"author_fullname\": \"t2_cmyk9\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"It looks like someone yanked his legs out from under him... THEN the earth opened up and swallowed him whole.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt looks like someone yanked his legs out from under him... THEN the earth opened up and swallowed him whole.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uhi6/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uhi6\", \"created\": 1439847477.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818677.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6a2ar\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Huldr3f0lk\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5q4m5\", \"score\": 1, \"author_fullname\": \"t2_p5tgu\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Stepped on a drumstick is my guess. Source: I've done that on cement and it hurts.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EStepped on a drumstick is my guess. Source: I\\u0026#39;ve done that on cement and it hurts.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6a2ar/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6a2ar\", \"created\": 1439872607.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439843807.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5q4m5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"FrostyAce81\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 202, \"author_fullname\": \"t2_ilbug\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"After watching 25+ times, I'm not yet convinced that the earth didn't open and swallow him whole. \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAfter watching 25+ times, I\\u0026#39;m not yet convinced that the earth didn\\u0026#39;t open and swallow him whole. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5q4m5/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5q4m5\", \"created\": 1439833146.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439804346.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 334, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 201, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": false, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 20, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 10, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v51h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"devyol14\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5utri\", \"score\": 1, \"author_fullname\": \"t2_nvrav\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"yeah man, gotta watch out for those damn sneaky drums\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eyeah man, gotta watch out for those damn sneaky drums\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v51h/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v51h\", \"created\": 1439848829.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820029.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5utri\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"RaverDan\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tqy7\", \"score\": 10, \"author_fullname\": \"t2_eez4i\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Comedians hate his secret\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EComedians hate his secret\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5utri/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5utri\", \"created\": 1439848205.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819405.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tqy7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"Slokunshialgo\", \"can_mod_post\": false, \"created_utc\": 1439816986.0, \"send_replies\": true, \"parent_id\": \"t1_cu5th6m\", \"score\": 20, \"author_fullname\": \"t2_7wco6\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"He'll be a hit in a few years, for sure!\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe\\u0026#39;ll be a hit in a few years, for sure!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tqy7/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tqy7\", \"created\": 1439845786.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 9, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 37, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 11, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu69sh9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Windadct\", \"can_mod_post\": false, \"created_utc\": 1439843400.0, \"send_replies\": true, \"parent_id\": \"t1_cu5ugsd\", \"score\": 1, \"author_fullname\": \"t2_4pkpn\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"did you step on one?\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Edid you step on one?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu69sh9/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu69sh9\", \"created\": 1439872200.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5ugsd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"StillEnjoyLegos\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5u1br\", \"score\": 11, \"author_fullname\": \"t2_guore\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"God dammit....\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGod dammit....\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ugsd/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ugsd\", \"created\": 1439847432.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818632.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5u1br\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"red2wedge\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5txc4\", \"score\": 37, \"author_fullname\": \"t2_cl67d\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Cymbal \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECymbal \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u1br/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u1br\", \"created\": 1439846462.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817662.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u5rb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"SevenAugust\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5txc4\", \"score\": 3, \"author_fullname\": \"t2_agrcz\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Ba dum tsss\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBa dum tsss\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u5rb/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u5rb\", \"created\": 1439846740.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817940.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 5, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 4, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v68s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"devyol14\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ukx2\", \"score\": 3, \"author_fullname\": \"t2_nvrav\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I see what you did there, but did you there what I...see...?\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI see what you did there, but did you there what I...see...?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v68s/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v68s\", \"created\": 1439848898.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820098.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5ukx2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"AvatarIII\", \"can_mod_post\": false, \"created_utc\": 1439818882.0, \"send_replies\": true, \"parent_id\": \"t1_cu5u51z\", \"score\": 4, \"author_fullname\": \"t2_9qv7q\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"you spelled the wrong symbol right but the right cymbal wrong.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eyou spelled the wrong symbol right but the right cymbal wrong.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ukx2/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ukx2\", \"created\": 1439847682.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5u51z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"StillEnjoyLegos\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5u282\", \"score\": 5, \"author_fullname\": \"t2_guore\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"No, I'm just an idiot and spelled it wrong.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo, I\\u0026#39;m just an idiot and spelled it wrong.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u51z/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u51z\", \"created\": 1439846696.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817896.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5u282\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"landragoran\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5txc4\", \"score\": 0, \"author_fullname\": \"t2_4dzsd\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"you missed a chance for a second pun in the word symbol (cymbal).\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eyou missed a chance for a second pun in the word symbol (cymbal).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u282/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u282\", \"created\": 1439846520.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817720.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5txc4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"StillEnjoyLegos\", \"can_mod_post\": false, \"created_utc\": 1439817405.0, \"send_replies\": true, \"parent_id\": \"t1_cu5th6m\", \"score\": 9, \"author_fullname\": \"t2_guore\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Not sure if I can bass this on just one performance, but this kid could be a comedic symbol to his generation!\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENot sure if I can bass this on just one performance, but this kid could be a comedic symbol to his generation!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5txc4/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5txc4\", \"created\": 1439846205.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5th6m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5p1hh\", \"score\": 201, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"With that kind of comedic timing he'll be posting awful puns on Reddit for years to come.\", \"edited\": false, \"author_flair_css_class\": null, \"collapsed\": false, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWith that kind of comedic timing he\\u0026#39;ll be posting awful puns on Reddit for years to come.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5th6m/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5th6m\", \"created\": 1439845109.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816309.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 7, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u1oq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"CombatMarshmallow\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5p1hh\", \"score\": 7, \"author_fullname\": \"t2_cf81h\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Yeah, the floor.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYeah, the floor.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u1oq/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u1oq\", \"created\": 1439846485.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817685.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5w3uv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Axoren\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5p1hh\", \"score\": 1, \"author_fullname\": \"t2_4odhf\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Yeah, hell for one.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYeah, hell for one.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w3uv/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5w3uv\", \"created\": 1439850678.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821878.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu62dxq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"SQUID_FUCKER\", \"can_mod_post\": false, \"created_utc\": 1439832309.0, \"send_replies\": true, \"parent_id\": \"t1_cu6055x\", \"score\": 3, \"author_fullname\": \"t2_8q359\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"That was my first thought. Not Colbert but, 'damn this kid could be in a talk show band.'\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat was my first thought. Not Colbert but, \\u0026#39;damn this kid could be in a talk show band.\\u0026#39;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu62dxq/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu62dxq\", \"created\": 1439861109.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu6055x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5p1hh\", \"score\": 1, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Maybe in the band for whomever replaces Colbert. \", \"edited\": false, \"author_flair_css_class\": null, \"collapsed\": false, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMaybe in the band for whomever replaces Colbert. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6055x/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6055x\", \"created\": 1439857574.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439828774.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vyon\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"goofball_jones\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5p1hh\", \"score\": 0, \"author_fullname\": \"t2_5qq4a\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Maybe not any place good....but \\\"places\\\". \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMaybe not any place good....but \\u0026quot;places\\u0026quot;. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vyon/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vyon\", \"created\": 1439850418.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821618.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u9uw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"wintremute\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5p1hh\", \"score\": 0, \"author_fullname\": \"t2_1r898\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Like Therapy.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELike Therapy.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u9uw/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u9uw\", \"created\": 1439846993.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818193.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -56, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 34, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5t6gf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"NotAModBro\", \"can_mod_post\": false, \"created_utc\": 1439815518.0, \"send_replies\": true, \"parent_id\": \"t1_cu5t0tk\", \"score\": 34, \"author_fullname\": \"t2_ggccw\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Amazing story, publish it.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAmazing story, publish it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5t6gf/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5t6gf\", \"created\": 1439844318.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 10, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5t5fm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"deepfeeld\", \"can_mod_post\": false, \"created_utc\": 1439815443.0, \"send_replies\": true, \"parent_id\": \"t1_cu5t0tk\", \"score\": 10, \"author_fullname\": \"t2_5xqmv\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"A story for the ages.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA story for the ages.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5t5fm/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5t5fm\", \"created\": 1439844243.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 6, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5x49i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"dafaq101\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tlgk\", \"score\": 0, \"author_fullname\": \"t2_c8tsz\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Hilaaaaaaaaaaaarious... I'm stealing this one...\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHilaaaaaaaaaaaarious... I\\u0026#39;m stealing this one...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5x49i/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5x49i\", \"created\": 1439852496.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439823696.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tlgk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"admiraljohn\", \"can_mod_post\": false, \"created_utc\": 1439816607.0, \"send_replies\": true, \"parent_id\": \"t1_cu5t0tk\", \"score\": 6, \"author_fullname\": \"t2_3meg8\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[Wow...](http://2.bp.blogspot.com/-uS4XbUCDsSI/VFHRuOnrC0I/AAAAAAAAgBk/nbJ-HTmhCig/s1600/cool%2Bstory%2Bbro.jpg)\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://2.bp.blogspot.com/-uS4XbUCDsSI/VFHRuOnrC0I/AAAAAAAAgBk/nbJ-HTmhCig/s1600/cool%2Bstory%2Bbro.jpg\\\"\\u003EWow...\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tlgk/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tlgk\", \"created\": 1439845407.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6889z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"dafaq101\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu62hcz\", \"score\": 1, \"author_fullname\": \"t2_c8tsz\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"*edit* hmmm\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cem\\u003Eedit\\u003C/em\\u003E hmmm\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6889z/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6889z\", \"created\": 1439869880.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439841080.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu62hcz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"SQUID_FUCKER\", \"can_mod_post\": false, \"created_utc\": 1439832457.0, \"send_replies\": true, \"parent_id\": \"t1_cu5t0tk\", \"score\": 1, \"author_fullname\": \"t2_8q359\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"You've been on reddit for two years and haven't yet realized that statements like, 'came here to say that' and 'logged in just to upvote you' and editing your comment to say, 'why the downvotes?' are ALL downvote magnets. You miraculously managed to fit all three of these downvoted redditisms into one statement. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou\\u0026#39;ve been on reddit for two years and haven\\u0026#39;t yet realized that statements like, \\u0026#39;came here to say that\\u0026#39; and \\u0026#39;logged in just to upvote you\\u0026#39; and editing your comment to say, \\u0026#39;why the downvotes?\\u0026#39; are ALL downvote magnets. You miraculously managed to fit all three of these downvoted redditisms into one statement. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu62hcz/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu62hcz\", \"created\": 1439861257.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5t0tk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"dafaq101\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5p1hh\", \"score\": -56, \"author_fullname\": \"t2_c8tsz\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"came here to say that... logged into tell you \\\"thanks for saying that\\\" lost your comment when I logged in... so had to dig it out.. luckily it didn't take too long...\\n\\n*EDIT* wtf why the DV to hell damn.. honestly that is exactly the reason I don't comment/reply much... Geez damn you Reddit I've yet to understand yoy\", \"edited\": 1439823827.0, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ecame here to say that... logged into tell you \\u0026quot;thanks for saying that\\u0026quot; lost your comment when I logged in... so had to dig it out.. luckily it didn\\u0026#39;t take too long...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EEDIT\\u003C/em\\u003E wtf why the DV to hell damn.. honestly that is exactly the reason I don\\u0026#39;t comment/reply much... Geez damn you Reddit I\\u0026#39;ve yet to understand yoy\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5t0tk/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5t0tk\", \"created\": 1439843893.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439815093.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -147, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 29, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -83, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 33, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -47, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 4, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tau6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"lumdidum\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5sb33\", \"score\": 4, \"author_fullname\": \"t2_bn0ml\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Such an original joke you have to explain it and *salute* to the *bros* who 'didn't get it'...\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESuch an original joke you have to explain it and \\u003Cem\\u003Esalute\\u003C/em\\u003E to the \\u003Cem\\u003Ebros\\u003C/em\\u003E who \\u0026#39;didn\\u0026#39;t get it\\u0026#39;...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tau6/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tau6\", \"created\": 1439844644.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439815844.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tuyu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5sb33\", \"score\": 1, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I approve your fedora tip.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI approve your fedora tip.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tuyu/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tuyu\", \"created\": 1439846050.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817250.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5sb33\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Ciruttai\", \"can_mod_post\": false, \"created_utc\": 1439812968.0, \"send_replies\": true, \"parent_id\": \"t1_cu5r2ne\", \"score\": -47, \"author_fullname\": \"t2_axqvo\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"i think you missed that he was making a joke on the fact that the original commenter has \\\"prophet\\\" in his name, and you both missed it so... dont worry bro, i salute you.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ei think you missed that he was making a joke on the fact that the original commenter has \\u0026quot;prophet\\u0026quot; in his name, and you both missed it so... dont worry bro, i salute you.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5sb33/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5sb33\", \"created\": 1439841768.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5r2ne\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"Hillbillyblues\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pr04\", \"score\": 33, \"author_fullname\": \"t2_i1y7y\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Good call.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGood call.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5r2ne/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5r2ne\", \"created\": 1439837249.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439808449.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5pr04\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Nak4000\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pjjs\", \"score\": -83, \"author_fullname\": \"t2_n838c\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Whatever I'll just keep it to my self then\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhatever I\\u0026#39;ll just keep it to my self then\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5pr04/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5pr04\", \"created\": 1439831493.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439802693.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5pjjs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"my__name__is\", \"can_mod_post\": false, \"created_utc\": 1439801788.0, \"send_replies\": true, \"parent_id\": \"t1_cu5pg2h\", \"score\": 29, \"author_fullname\": \"t2_g32j4\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Be more original. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBe more original. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5pjjs/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5pjjs\", \"created\": 1439830588.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 4, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5t5yg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"SneakyTigers\", \"can_mod_post\": false, \"created_utc\": 1439815482.0, \"send_replies\": true, \"parent_id\": \"t1_cu5pg2h\", \"score\": 4, \"author_fullname\": \"t2_ht6fq\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"http://imgur.com/gallery/Nw4VbVz\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://imgur.com/gallery/Nw4VbVz\\\"\\u003Ehttp://imgur.com/gallery/Nw4VbVz\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5t5yg/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5t5yg\", \"created\": 1439844282.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uv18\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Karl_Marx_\", \"can_mod_post\": false, \"created_utc\": 1439819477.0, \"send_replies\": true, \"parent_id\": \"t1_cu5pg2h\", \"score\": 1, \"author_fullname\": \"t2_5uky1\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"/r/cringe, feel free to have a thought of your own.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/cringe\\\"\\u003E/r/cringe\\u003C/a\\u003E, feel free to have a thought of your own.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uv18/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uv18\", \"created\": 1439848277.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5sy4c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Orangebeardo\", \"can_mod_post\": false, \"created_utc\": 1439814885.0, \"send_replies\": true, \"parent_id\": \"t1_cu5pg2h\", \"score\": 0, \"author_fullname\": \"t2_6fxor\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I'm sure we all came here to say that. Someone will always be first.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m sure we all came here to say that. Someone will always be first.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5sy4c/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5sy4c\", \"created\": 1439843685.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5sy4l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Orangebeardo\", \"can_mod_post\": false, \"created_utc\": 1439814886.0, \"send_replies\": true, \"parent_id\": \"t1_cu5pg2h\", \"score\": 0, \"author_fullname\": \"t2_6fxor\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I'm sure we all came here to say that. Someone will always be first.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m sure we all came here to say that. Someone will always be first.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5sy4l/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5sy4l\", \"created\": 1439843686.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5pg2h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Nak4000\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5p1hh\", \"score\": -147, \"author_fullname\": \"t2_n838c\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"You... HOW DARE YOU!!\\n\\nYou stole from me!!\\n\\nMy only thing keeping me attached to this thread!!\\n\\nYou stole my words before I could even type them!!!\\n\\nYou sir!!\\n\\nI have no words for the person that you have become\\nT-T\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou... HOW DARE YOU!!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou stole from me!!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy only thing keeping me attached to this thread!!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou stole my words before I could even type them!!!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou sir!!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have no words for the person that you have become\\nT-T\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5pg2h/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5pg2h\", \"created\": 1439830164.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439801364.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5p1hh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"TheProphetBroses\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 334, \"author_fullname\": \"t2_juum1\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"That kid is going places. \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat kid is going places. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5p1hh/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5p1hh\", \"created\": 1439828474.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439799674.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 69, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 53, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 28, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 38, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": false, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu63ror\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ym3r\", \"score\": 2, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"The music ruins it completely, that and the complete lack of buildup. \", \"edited\": false, \"author_flair_css_class\": null, \"collapsed\": false, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe music ruins it completely, that and the complete lack of buildup. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu63ror/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu63ror\", \"created\": 1439863219.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439834419.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5ym3r\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"InquisitaB\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5x0y7\", \"score\": 38, \"author_fullname\": \"t2_dljs4\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Perhaps it was the freaking clown music playing through the video.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPerhaps it was the freaking clown music playing through the video.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ym3r/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ym3r\", \"created\": 1439855066.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439826266.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu63crv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Do_Whatever_You_Like\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5x0y7\", \"score\": 1, \"author_fullname\": \"t2_i1o2i\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"what were you expecting? I was expecting it to be like the gif but with an audible \\\"Ba Dum Tsss\\\" so I was quite happy with it...\\n\\n\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewhat were you expecting? I was expecting it to be like the gif but with an audible \\u0026quot;Ba Dum Tsss\\u0026quot; so I was quite happy with it...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu63crv/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu63crv\", \"created\": 1439862597.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439833797.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5x0y7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"ShowtimeCA\", \"can_mod_post\": false, \"created_utc\": 1439823534.0, \"send_replies\": true, \"parent_id\": \"t1_cu5w5tg\", \"score\": 28, \"author_fullname\": \"t2_d5hm1\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Well that was way less satisfying than I expected, no aftermath no laugh nothing :/\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWell that was way less satisfying than I expected, no aftermath no laugh nothing :/\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5x0y7/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5x0y7\", \"created\": 1439852334.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 7, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cz9hu6w\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"svds\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5zzgp\", \"score\": 1, \"author_fullname\": \"t2_9o0gp\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I hope his tongue was in the right place..\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI hope his tongue was in the right place..\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cz9hu6w/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cz9hu6w\", \"created\": 1453624458.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1453595658.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5zzgp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"Deviant_Legion\", \"can_mod_post\": false, \"created_utc\": 1439828512.0, \"send_replies\": true, \"parent_id\": \"t1_cu5w5tg\", \"score\": 7, \"author_fullname\": \"t2_ilrmm\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[FML](https://imgur.com/7ONpGM9)\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/7ONpGM9\\\"\\u003EFML\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5zzgp/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5zzgp\", \"created\": 1439857312.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6ofeg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"twixcow\", \"can_mod_post\": false, \"created_utc\": 1439868664.0, \"send_replies\": true, \"parent_id\": \"t1_cu5w5tg\", \"score\": 1, \"author_fullname\": \"t2_8lstq\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"The one where he bumped his chin on the table looked like it hurt.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe one where he bumped his chin on the table looked like it hurt.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6ofeg/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6ofeg\", \"created\": 1439897464.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5w5tg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"Terranoch\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5spl9\", \"score\": 53, \"author_fullname\": \"t2_m9k0k\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"https://www.youtube.com/watch?v=BdsQBqN7bCw\\u0026feature=youtu.be\\u0026t=15s\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=BdsQBqN7bCw\\u0026amp;feature=youtu.be\\u0026amp;t=15s\\\"\\u003Ehttps://www.youtube.com/watch?v=BdsQBqN7bCw\\u0026amp;feature=youtu.be\\u0026amp;t=15s\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w5tg/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5w5tg\", \"created\": 1439850778.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821978.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -8, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vbyu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Drift_Pig\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5spl9\", \"score\": -8, \"author_fullname\": \"t2_bb8h0\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"http://i.imgur.com/eoF76hj.gifv\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://i.imgur.com/eoF76hj.gifv\\\"\\u003Ehttp://i.imgur.com/eoF76hj.gifv\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vbyu/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vbyu\", \"created\": 1439849221.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820421.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5spl9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"Trixzy\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 69, \"author_fullname\": \"t2_7oa8b\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Source?\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESource?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5spl9/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5spl9\", \"created\": 1439843013.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439814213.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 22, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5w7za\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"greaseleg\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 22, \"author_fullname\": \"t2_5on0p\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"As a drummer and an asshole, this fills my heart with more joy than I can put into words. I have a new spirit animal.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs a drummer and an asshole, this fills my heart with more joy than I can put into words. I have a new spirit animal.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w7za/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5w7za\", \"created\": 1439850889.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822089.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 43, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -11, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cumy3vj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Decalance\", \"can_mod_post\": false, \"created_utc\": 1441111411.0, \"send_replies\": true, \"parent_id\": \"t1_cu5w0qp\", \"score\": 1, \"author_fullname\": \"t2_6vglx\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Oh noess\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh noess\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cumy3vj/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cumy3vj\", \"created\": 1441140211.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5w0qp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"britboy3456\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5v77p\", \"score\": -11, \"author_fullname\": \"t2_asvkk\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Wow, Reddit takes content from BuzzFeed now. What is this place coming to?!\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWow, Reddit takes content from BuzzFeed now. What is this place coming to?!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w0qp/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5w0qp\", \"created\": 1439850522.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821722.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5v77p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"LokiBartleby\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 43, \"author_fullname\": \"t2_696zk\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Source (kind of, it's a BuzzFeed video, couldn't find the original video yet): https://youtu.be/BdsQBqN7bCw?t=15s\\n\\nGot the Youtube link from another Imgur post that has a \\\"created from\\\" in the header: http://imgur.com/gallery/DZwKzyF\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESource (kind of, it\\u0026#39;s a BuzzFeed video, couldn\\u0026#39;t find the original video yet): \\u003Ca href=\\\"https://youtu.be/BdsQBqN7bCw?t=15s\\\"\\u003Ehttps://youtu.be/BdsQBqN7bCw?t=15s\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGot the Youtube link from another Imgur post that has a \\u0026quot;created from\\u0026quot; in the header: \\u003Ca href=\\\"http://imgur.com/gallery/DZwKzyF\\\"\\u003Ehttp://imgur.com/gallery/DZwKzyF\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v77p/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v77p\", \"created\": 1439848952.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820152.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 24, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": false, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 13, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": false, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu61215\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"lebanese_redditor\", \"can_mod_post\": false, \"created_utc\": 1439830221.0, \"send_replies\": true, \"parent_id\": \"t1_cu5ujk8\", \"score\": 1, \"author_fullname\": \"t2_4vebs\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"kids on treadmills... gives me \\\"Dexter\\\" flashbacks\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ekids on treadmills... gives me \\u0026quot;Dexter\\u0026quot; flashbacks\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61215/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu61215\", \"created\": 1439859021.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wnt5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Richard70nl\", \"can_mod_post\": false, \"created_utc\": 1439822887.0, \"send_replies\": true, \"parent_id\": \"t1_cu5ujk8\", \"score\": 0, \"author_fullname\": \"t2_ili0d\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I had the exact same thought. It's like his legs are pulled under him.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI had the exact same thought. It\\u0026#39;s like his legs are pulled under him.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wnt5/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wnt5\", \"created\": 1439851687.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5ujk8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tcm9\", \"score\": 13, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"A treadmill? \", \"edited\": false, \"author_flair_css_class\": null, \"collapsed\": false, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA treadmill? \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ujk8/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ujk8\", \"created\": 1439847600.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818800.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 9, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v2e6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"inajeep\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tcm9\", \"score\": 9, \"author_fullname\": \"t2_3bpji\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Banana Jedi stage trick.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBanana Jedi stage trick.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v2e6/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v2e6\", \"created\": 1439848683.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819883.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu600u7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"sergelo\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tcm9\", \"score\": 2, \"author_fullname\": \"t2_a0rrq\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"He was probably standing on something that tipped over. Much like the little girl later on in the same [source video](https://youtu.be/BdsQBqN7bCw?t=43s).\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe was probably standing on something that tipped over. Much like the little girl later on in the same \\u003Ca href=\\\"https://youtu.be/BdsQBqN7bCw?t=43s\\\"\\u003Esource video\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu600u7/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu600u7\", \"created\": 1439857375.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439828575.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu62420\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"CarTarget\", \"can_mod_post\": false, \"created_utc\": 1439831884.0, \"send_replies\": true, \"parent_id\": \"t1_cu5wwg7\", \"score\": 2, \"author_fullname\": \"t2_6bk47\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Oh! That kid must be Peter Pan!\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh! That kid must be Peter Pan!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu62420/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu62420\", \"created\": 1439860684.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5wwg7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"OyleSlyck\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tcm9\", \"score\": 1, \"author_fullname\": \"t2_58gzf\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"An odd shadow on the lower half of the right wall appears right before the kid falls. So the shadow swept the kid's legs.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAn odd shadow on the lower half of the right wall appears right before the kid falls. So the shadow swept the kid\\u0026#39;s legs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wwg7/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wwg7\", \"created\": 1439852115.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439823315.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu68vnd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Backflip_into_a_star\", \"can_mod_post\": false, \"send_replies\": false, \"parent_id\": \"t1_cu5tcm9\", \"score\": 1, \"author_fullname\": \"t2_altpx\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"People keep saying treadmill, but you can get the same effect with a skateboard. He is standing on it and steps forward too close to the nose(or tail) which shifts his weight and the wheels shoot the board out from under him. Plus that seems like a weird place to shove a treadmill, and it would probably be big enough to see.\\n\\n\", \"edited\": 1439842258.0, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPeople keep saying treadmill, but you can get the same effect with a skateboard. He is standing on it and steps forward too close to the nose(or tail) which shifts his weight and the wheels shoot the board out from under him. Plus that seems like a weird place to shove a treadmill, and it would probably be big enough to see.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu68vnd/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu68vnd\", \"created\": 1439870839.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439842039.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu696sc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Wolferines\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tcm9\", \"score\": 1, \"author_fullname\": \"t2_fxl07\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Maybe someone was moving a wire and it was wrapped on his foot.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMaybe someone was moving a wire and it was wrapped on his foot.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu696sc/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu696sc\", \"created\": 1439871303.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439842503.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5w8g9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tcm9\", \"score\": 0, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Probably video editing software. That's my vote.\", \"edited\": false, \"author_flair_css_class\": null, \"collapsed\": false, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EProbably video editing software. That\\u0026#39;s my vote.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w8g9/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5w8g9\", \"created\": 1439850912.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822112.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tcm9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 24, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Wtf that kid slip on? He fell with such force.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWtf that kid slip on? He fell with such force.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tcm9/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tcm9\", \"created\": 1439844779.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439815979.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 125, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 399, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 247, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 13, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 16, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 7, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vcu1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"karrachr000\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uth8\", \"score\": 1, \"author_fullname\": \"t2_bfnlf\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Nope; like I said streams are blocked... I had to get updates from one of the people who work in our *command center* as they have a tv on in there that is always showing news.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENope; like I said streams are blocked... I had to get updates from one of the people who work in our \\u003Cem\\u003Ecommand center\\u003C/em\\u003E as they have a tv on in there that is always showing news.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vcu1/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vcu1\", \"created\": 1439849268.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820468.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uth8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"thecheat420\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uamk\", \"score\": 7, \"author_fullname\": \"t2_c0p4s\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Were you at least able to watch a live stream of the action on your work computer?\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWere you at least able to watch a live stream of the action on your work computer?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uth8/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uth8\", \"created\": 1439848188.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819388.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6fea2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"FalseAD\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uamk\", \"score\": 1, \"author_fullname\": \"t2_cv6yv\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Well excuse me for having no idea of a past experience in your lifetime.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWell excuse me for having no idea of a past experience in your lifetime.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6fea2/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6fea2\", \"created\": 1439881186.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439852386.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uamk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"karrachr000\", \"can_mod_post\": false, \"created_utc\": 1439818240.0, \"send_replies\": true, \"parent_id\": \"t1_cu5u0ci\", \"score\": 3, \"author_fullname\": \"t2_bfnlf\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Don't even joke about that... Over a month ago there was a police detective shot less than a mile from my building and the police were swarming the rest of the day looking for the shooter.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDon\\u0026#39;t even joke about that... Over a month ago there was a police detective shot less than a mile from my building and the police were swarming the rest of the day looking for the shooter.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uamk/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uamk\", \"created\": 1439847040.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5u0ci\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"FalseAD\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tqhn\", \"score\": 16, \"author_fullname\": \"t2_cv6yv\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"*\\\"Gunner on their way to local office building\\\"*\\n\\nWouldn't want to miss that\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Gunner on their way to local office building\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWouldn\\u0026#39;t want to miss that\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u0ci/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u0ci\", \"created\": 1439846401.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817601.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tqhn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"karrachr000\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5t1uw\", \"score\": 13, \"author_fullname\": \"t2_bfnlf\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"At least your work computers allow videos... Mine blocks all videos and streams of any kind, even news.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAt least your work computers allow videos... Mine blocks all videos and streams of any kind, even news.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tqhn/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tqhn\", \"created\": 1439845754.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816954.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 7, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 6, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wcp3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"OyleSlyck\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5u3du\", \"score\": 6, \"author_fullname\": \"t2_58gzf\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"In your browser window, hit spacebar to scroll down, shift + spacebar to scroll up.\\n\\nNo more hyper scroll wheel activity to give you away.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn your browser window, hit spacebar to scroll down, shift + spacebar to scroll up.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENo more hyper scroll wheel activity to give you away.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wcp3/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wcp3\", \"created\": 1439851129.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822329.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ze1k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Stomish\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5u3du\", \"score\": 1, \"author_fullname\": \"t2_7sk0g\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Get a nicer mouse!\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGet a nicer mouse!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ze1k/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ze1k\", \"created\": 1439856346.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439827546.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5u3du\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"StillEnjoyLegos\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5t1uw\", \"score\": 7, \"author_fullname\": \"t2_guore\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Yes it does. My co-worker sitting one cube over apparently could hear me scrolling all the time... the scroll wheel on the middle of my mouse makes a bit of noise when I'm scrolling through comments like something fierce.\\n\\nNever know what's gonna give you up, be safe out there guys. \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes it does. My co-worker sitting one cube over apparently could hear me scrolling all the time... the scroll wheel on the middle of my mouse makes a bit of noise when I\\u0026#39;m scrolling through comments like something fierce.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENever know what\\u0026#39;s gonna give you up, be safe out there guys. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u3du/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u3du\", \"created\": 1439846593.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817793.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tz31\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"i_reddited_it\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5t1uw\", \"score\": 3, \"author_fullname\": \"t2_aeny6\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"\\u003E As far as anyone knows I'm doing something productive over here.\\n\\n... Said everyone, always. \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAs far as anyone knows I\\u0026#39;m doing something productive over here.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E... Said everyone, always. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tz31/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tz31\", \"created\": 1439846319.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817519.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5w3f3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"jrworthy\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5t1uw\", \"score\": 1, \"author_fullname\": \"t2_4tjht\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"http://www.amazon.com/s/ref=nb_sb_noss_2?url=search-alias%3Daps\\u0026field-keywords=headphones\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://www.amazon.com/s/ref=nb_sb_noss_2?url=search-alias%3Daps\\u0026amp;field-keywords=headphones\\\"\\u003Ehttp://www.amazon.com/s/ref=nb_sb_noss_2?url=search-alias%3Daps\\u0026amp;field-keywords=headphones\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w3f3/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5w3f3\", \"created\": 1439850656.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821856.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cvdz0ux\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"iceman78772\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5t1uw\", \"score\": 1, \"author_fullname\": \"t2_6bcyb\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Why not just mute your PC?\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhy not just mute your PC?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cvdz0ux/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cvdz0ux\", \"created\": 1443232005.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1443203205.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v6dh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Disgruntled__Goat\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5t1uw\", \"score\": 0, \"author_fullname\": \"t2_4ucug\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Wow, strange that you don't have a volume control on your computer.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWow, strange that you don\\u0026#39;t have a volume control on your computer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v6dh/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v6dh\", \"created\": 1439848905.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820105.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5t1uw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"full-of-grace\", \"can_mod_post\": false, \"created_utc\": 1439815174.0, \"send_replies\": true, \"parent_id\": \"t1_cu5qhfy\", \"score\": 247, \"author_fullname\": \"t2_eexw9\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Also, videos make noise. As far as anyone knows I'm doing something productive over here. Noise attracts attention. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAlso, videos make noise. As far as anyone knows I\\u0026#39;m doing something productive over here. Noise attracts attention. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5t1uw/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5t1uw\", \"created\": 1439843974.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5w02a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"grahamsimmons\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5u1zy\", \"score\": 2, \"author_fullname\": \"t2_7mt1x\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Relay is the best Reddit app\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERelay is the best Reddit app\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w02a/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5w02a\", \"created\": 1439850486.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821686.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5u1zy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"UnexpectedCroissant\", \"can_mod_post\": false, \"created_utc\": 1439817705.0, \"send_replies\": true, \"parent_id\": \"t1_cu5qhfy\", \"score\": 3, \"author_fullname\": \"t2_lk9r2\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"On Relay for Reddit, videos never need a new page, they open right on top of the other content\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOn Relay for Reddit, videos never need a new page, they open right on top of the other content\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u1zy/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u1zy\", \"created\": 1439846505.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 8, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 6, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 4, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 9, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": false, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 4, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"more\", \"data\": {\"count\": 0, \"name\": \"t1__\", \"id\": \"_\", \"parent_id\": \"t1_cu5x40j\", \"depth\": 10, \"children\": []}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5x40j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"nahfoo\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5wfv0\", \"score\": 1, \"author_fullname\": \"t2_bbgle\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"How do you like it so far? I like reddit is fun but it's the only one I know, people reccomented relay for reddit but I couldn't get into it. Some things were more complicated than they should be\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow do you like it so far? I like reddit is fun but it\\u0026#39;s the only one I know, people reccomented relay for reddit but I couldn\\u0026#39;t get into it. Some things were more complicated than they should be\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5x40j/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5x40j\", \"created\": 1439852483.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439823683.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xhrg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"FMAlfonse\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5wfv0\", \"score\": 1, \"author_fullname\": \"t2_b8f6e\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"It will also do that for YouTube videos. I hope you have an enjoyable experience. \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt will also do that for YouTube videos. I hope you have an enjoyable experience. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xhrg/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5xhrg\", \"created\": 1439853158.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439824358.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xw3s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Lifecoachingis50\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5wfv0\", \"score\": 1, \"author_fullname\": \"t2_c49f9\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Just a tip that I just figured out, you need to set off the NSFW filter to see any NSFW posts. \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust a tip that I just figured out, you need to set off the NSFW filter to see any NSFW posts. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xw3s/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5xw3s\", \"created\": 1439853863.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439825063.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5wfv0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"imhooks\", \"can_mod_post\": false, \"created_utc\": 1439822491.0, \"send_replies\": true, \"parent_id\": \"t1_cu5w67h\", \"score\": 1, \"author_fullname\": \"t2_i19in\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Just installed it. I like how it looks, and the floating window gifs open in is what im looking for. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust installed it. I like how it looks, and the floating window gifs open in is what im looking for. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wfv0/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wfv0\", \"created\": 1439851291.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5w67h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"FMAlfonse\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tuy4\", \"score\": 1, \"author_fullname\": \"t2_b8f6e\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Sync for reddit\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESync for reddit\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w67h/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5w67h\", \"created\": 1439850798.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821998.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wczp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"JollyRancherReminder\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tuy4\", \"score\": 1, \"author_fullname\": \"t2_5tist\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Bacon Reader\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBacon Reader\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wczp/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wczp\", \"created\": 1439851144.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822344.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tuy4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"imhooks\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tsc2\", \"score\": 4, \"author_fullname\": \"t2_i19in\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Gracias\\n\\nEdit: Dammit! I'm not an apple guy. Need an android option...\", \"edited\": 1439819793.0, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGracias\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: Dammit! I\\u0026#39;m not an apple guy. Need an android option...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tuy4/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tuy4\", \"created\": 1439846049.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817249.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u0f7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Official_Legacy\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tsc2\", \"score\": 2, \"author_fullname\": \"t2_e1hws\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"But YouTube videos run inside the Alien Blue app....\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBut YouTube videos run inside the Alien Blue app....\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u0f7/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u0f7\", \"created\": 1439846405.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817605.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tsc2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"created_utc\": 1439817077.0, \"send_replies\": true, \"parent_id\": \"t1_cu5to9q\", \"score\": 9, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[deleted]\", \"edited\": 1526589245.0, \"author_flair_css_class\": null, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[deleted]\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tsc2/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tsc2\", \"created\": 1439845877.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"more\", \"data\": {\"count\": 0, \"name\": \"t1__\", \"id\": \"_\", \"parent_id\": \"t1_cu5w5nv\", \"depth\": 10, \"children\": []}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5w5nv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"bigted41\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5vnzj\", \"score\": 1, \"author_fullname\": \"t2_5ww00\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"were you using night time mode with reddit is fun? turns background black and text white. easier to look at.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewere you using night time mode with reddit is fun? turns background black and text white. easier to look at.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w5nv/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5w5nv\", \"created\": 1439850770.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821970.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5vnzj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"imhooks\", \"can_mod_post\": false, \"created_utc\": 1439821062.0, \"send_replies\": true, \"parent_id\": \"t1_cu5v63q\", \"score\": 1, \"author_fullname\": \"t2_i19in\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"OHHH, within reddit is fun. Blah, I guess I just wasn't looking for another window to open up. I just installed 'reddit sync' and it's just about what im looking for. Gifs open in a floating window and the thread view of comment sections is easier on the eyes and shows guilded comments. It's going to take time to get used to though. \\n\\n\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOHHH, within reddit is fun. Blah, I guess I just wasn\\u0026#39;t looking for another window to open up. I just installed \\u0026#39;reddit sync\\u0026#39; and it\\u0026#39;s just about what im looking for. Gifs open in a floating window and the thread view of comment sections is easier on the eyes and shows guilded comments. It\\u0026#39;s going to take time to get used to though. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vnzj/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vnzj\", \"created\": 1439849862.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5v63q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"bigted41\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5v1pe\", \"score\": 1, \"author_fullname\": \"t2_5ww00\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"in my reddit is fun app, i click over on the right where the thumbnail is, not the text title. when you click the thumbnail (or question mark thumbnail) it opens the link within reddit is fun. maybe that's what you are doing wrong???\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ein my reddit is fun app, i click over on the right where the thumbnail is, not the text title. when you click the thumbnail (or question mark thumbnail) it opens the link within reddit is fun. maybe that\\u0026#39;s what you are doing wrong???\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v63q/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v63q\", \"created\": 1439848889.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820089.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5v1pe\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"imhooks\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tz3i\", \"score\": 1, \"author_fullname\": \"t2_i19in\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"It's just a blue hyperlink for me, so I have to click it, then I get a dialogue to copy, share, open. It's a real headache. Is there a setting im missing?\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u0026#39;s just a blue hyperlink for me, so I have to click it, then I get a dialogue to copy, share, open. It\\u0026#39;s a real headache. Is there a setting im missing?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v1pe/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v1pe\", \"created\": 1439848645.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819845.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tz3i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"bigted41\", \"can_mod_post\": false, \"created_utc\": 1439817520.0, \"send_replies\": true, \"parent_id\": \"t1_cu5to9q\", \"score\": 2, \"author_fullname\": \"t2_5ww00\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"my gifs stay within reddit is fun...\\n\\nvideos go out to youtubes, but one hit of the previous button sends me back to reddit is fun\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Emy gifs stay within reddit is fun...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Evideos go out to youtubes, but one hit of the previous button sends me back to reddit is fun\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tz3i/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tz3i\", \"created\": 1439846320.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wmwb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"StinkyS\", \"can_mod_post\": false, \"created_utc\": 1439822843.0, \"send_replies\": true, \"parent_id\": \"t1_cu5to9q\", \"score\": 1, \"author_fullname\": \"t2_9rg9a\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I use \\\"Relay\\\" for Reddit. I like it alot, opens all videos and gifs in app\\n\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI use \\u0026quot;Relay\\u0026quot; for Reddit. I like it alot, opens all videos and gifs in app\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wmwb/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wmwb\", \"created\": 1439851643.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6c00w\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"RPGX400\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu6419n\", \"score\": 1, \"author_fullname\": \"t2_9tf81\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"I mean that one time I clicked on a link and it played a video with audio. It looked like a gif but sounded like a video. \\n\\nSorry if I mislead anybody. I do not like the integrated YouTube video player and instead use the actual YouTube app. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI mean that one time I clicked on a link and it played a video with audio. It looked like a gif but sounded like a video. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESorry if I mislead anybody. I do not like the integrated YouTube video player and instead use the actual YouTube app. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6c00w/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6c00w\", \"created\": 1439875523.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439846723.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu6419n\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"imhooks\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu62h2m\", \"score\": 1, \"author_fullname\": \"t2_i19in\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"What do you mean 1% videos are formatted properly? In Sync?\\n\\nWhen I click on a video in Sync it opens up the youtube app, or the Viral app that I use in place of youtube.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat do you mean 1% videos are formatted properly? In Sync?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I click on a video in Sync it opens up the youtube app, or the Viral app that I use in place of youtube.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6419n/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6419n\", \"created\": 1439863623.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439834823.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu62h2m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"RPGX400\", \"can_mod_post\": false, \"created_utc\": 1439832444.0, \"send_replies\": true, \"parent_id\": \"t1_cu5to9q\", \"score\": 1, \"author_fullname\": \"t2_9tf81\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Gifs and pictures work fine. 1-5% of the time gifs don't load. And 1% of the time videos (not youtube videos) are formated properly and play in Reddit sync with no borders (like a gif)\\n\\nKeep in mind I disabled YouTube cus that player sucks.. (App is better)\", \"edited\": 1439846752.0, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGifs and pictures work fine. 1-5% of the time gifs don\\u0026#39;t load. And 1% of the time videos (not youtube videos) are formated properly and play in Reddit sync with no borders (like a gif)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EKeep in mind I disabled YouTube cus that player sucks.. (App is better)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu62h2m/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu62h2m\", \"created\": 1439861244.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5to9q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"imhooks\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5sxxf\", \"score\": 4, \"author_fullname\": \"t2_i19in\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"So do gifs. What am I missing? On my phone using \\\"reddit is fun\\\" It still opens in a new window.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo do gifs. What am I missing? On my phone using \\u0026quot;reddit is fun\\u0026quot; It still opens in a new window.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5to9q/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5to9q\", \"created\": 1439845603.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816803.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5sxxf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"RPGX400\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5s3ui\", \"score\": 6, \"author_fullname\": \"t2_9tf81\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Unfortunately 99% of the videos require a new browser page. (Not talking about YouTube videos, sorry)\", \"edited\": 1439846809.0, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUnfortunately 99% of the videos require a new browser page. (Not talking about YouTube videos, sorry)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5sxxf/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5sxxf\", \"created\": 1439843671.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439814871.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 4, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u65l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"HowieGaming\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tsw0\", \"score\": 4, \"author_fullname\": \"t2_61aru\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"I have no idea what you are doing wrong, but Sync opens all videos, gifs and pictures in app. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have no idea what you are doing wrong, but Sync opens all videos, gifs and pictures in app. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u65l/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u65l\", \"created\": 1439846765.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817965.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uztl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"jarquafelmu\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tsw0\", \"score\": 1, \"author_fullname\": \"t2_7gkou\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Go to settings, link handing, then change YouTube so it opens them in app.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGo to settings, link handing, then change YouTube so it opens them in app.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uztl/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uztl\", \"created\": 1439848541.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819741.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u0wx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"inno_func\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tsw0\", \"score\": 1, \"author_fullname\": \"t2_8gles\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Strange, youtube videos open like gifs for me. I don't need to exit the app to see them, maybe our settings are different. Check settings, go to link handling and check all the boxes and try again.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EStrange, youtube videos open like gifs for me. I don\\u0026#39;t need to exit the app to see them, maybe our settings are different. Check settings, go to link handling and check all the boxes and try again.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u0wx/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u0wx\", \"created\": 1439846436.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817636.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tsw0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"VoraciousGhost\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5s3ui\", \"score\": 1, \"author_fullname\": \"t2_gbyu4\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"What? I'm using sync, and YouTube videos definitely open in the separate YouTube app\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat? I\\u0026#39;m using sync, and YouTube videos definitely open in the separate YouTube app\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tsw0/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tsw0\", \"created\": 1439845913.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817113.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5s3ui\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"inno_func\", \"can_mod_post\": false, \"created_utc\": 1439812308.0, \"send_replies\": true, \"parent_id\": \"t1_cu5qhfy\", \"score\": 8, \"author_fullname\": \"t2_8gles\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Use redditsync, the videos open just like gifs on the app.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUse redditsync, the videos open just like gifs on the app.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5s3ui/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5s3ui\", \"created\": 1439841108.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wtvl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"created_utc\": 1439823188.0, \"send_replies\": true, \"parent_id\": \"t1_cu5qhfy\", \"score\": 1, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Yep. I can't look at videos at work or I'd be busted. Everyone thinks I'm just working on spreadsheets.\", \"edited\": false, \"author_flair_css_class\": null, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYep. I can\\u0026#39;t look at videos at work or I\\u0026#39;d be busted. Everyone thinks I\\u0026#39;m just working on spreadsheets.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wtvl/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wtvl\", \"created\": 1439851988.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5y5cz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Pelpid\", \"can_mod_post\": false, \"created_utc\": 1439825496.0, \"send_replies\": true, \"parent_id\": \"t1_cu5qhfy\", \"score\": 1, \"author_fullname\": \"t2_932cx\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"gif's load slower than youtube.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Egif\\u0026#39;s load slower than youtube.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5y5cz/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5y5cz\", \"created\": 1439854296.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u748\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Dressy_Ent\", \"can_mod_post\": false, \"created_utc\": 1439818025.0, \"send_replies\": true, \"parent_id\": \"t1_cu5qhfy\", \"score\": 1, \"author_fullname\": \"t2_8e2hq\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Yup. This is very accurate\\n\\nSource: in the DMV number G15 and they're only in fucking F89 on a fucking Monday morning when they said it would be good because no one would fucking be here. There are people here. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYup. This is very accurate\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESource: in the DMV number G15 and they\\u0026#39;re only in fucking F89 on a fucking Monday morning when they said it would be good because no one would fucking be here. There are people here. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u748/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u748\", \"created\": 1439846825.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ueic\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"0whodidyousay0\", \"can_mod_post\": false, \"created_utc\": 1439818490.0, \"send_replies\": true, \"parent_id\": \"t1_cu5qhfy\", \"score\": 0, \"author_fullname\": \"t2_gkbeq\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I'm on my phone and the videos load in-app, what are you using to browse Reddit? \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m on my phone and the videos load in-app, what are you using to browse Reddit? \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ueic/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ueic\", \"created\": 1439847290.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ub5c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"tangoshukudai\", \"can_mod_post\": false, \"created_utc\": 1439818272.0, \"send_replies\": true, \"parent_id\": \"t1_cu5qhfy\", \"score\": -1, \"author_fullname\": \"t2_46xop\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"As a mobile user, videos are optimized for my device and use my hardware decoder. I much much prefer videos. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs a mobile user, videos are optimized for my device and use my hardware decoder. I much much prefer videos. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ub5c/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ub5c\", \"created\": 1439847072.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -46, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 35, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 7, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5te48\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"justincase_2008\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ruv0\", \"score\": 7, \"author_fullname\": \"t2_blpxv\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Shit I use my phone over pc for Reddit just cause I'm so use to the app. When I go on the pc I'm lost for a good 3 minutes. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EShit I use my phone over pc for Reddit just cause I\\u0026#39;m so use to the app. When I go on the pc I\\u0026#39;m lost for a good 3 minutes. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5te48/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5te48\", \"created\": 1439844892.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816092.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -14, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -4, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 5, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u550\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"Hara-Kiri\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5twsd\", \"score\": 5, \"author_fullname\": \"t2_4nr5t\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"What the hell are you doing here?\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat the hell are you doing here?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u550/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u550\", \"created\": 1439846701.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817901.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u9ks\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"CplCucumber\", \"can_mod_post\": false, \"created_utc\": 1439818176.0, \"send_replies\": true, \"parent_id\": \"t1_cu5u7sm\", \"score\": 3, \"author_fullname\": \"t2_6h5ln\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"https://youtu.be/PZCq_G6m6Iw?t=353\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://youtu.be/PZCq_G6m6Iw?t=353\\\"\\u003Ehttps://youtu.be/PZCq_G6m6Iw?t=353\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u9ks/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u9ks\", \"created\": 1439846976.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5u7sm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"xKillaBeex\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5twsd\", \"score\": 3, \"author_fullname\": \"t2_5bb9f\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"You okay dude?\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou okay dude?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u7sm/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u7sm\", \"created\": 1439846864.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818064.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5twsd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"CplCucumber\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tc84\", \"score\": -1, \"author_fullname\": \"t2_6h5ln\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"eat me dick reddit person that suddenly thinks I am a spammer. Eat my dick. you know what, nows my chance to talk, and I have nothing to say so f you that reddit asshole that made it so I couldnt post anymore. eat my weiner.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eeat me dick reddit person that suddenly thinks I am a spammer. Eat my dick. you know what, nows my chance to talk, and I have nothing to say so f you that reddit asshole that made it so I couldnt post anymore. eat my weiner.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5twsd/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5twsd\", \"created\": 1439846169.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817369.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tc84\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"CplCucumber\", \"can_mod_post\": false, \"created_utc\": 1439815950.0, \"send_replies\": true, \"parent_id\": \"t1_cu5srsk\", \"score\": -4, \"author_fullname\": \"t2_6h5ln\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"nobody every believes you when you have aoraphobia, since you are usually drunk as fuck when you tell people you have it.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Enobody every believes you when you have aoraphobia, since you are usually drunk as fuck when you tell people you have it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tc84/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tc84\", \"created\": 1439844750.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5srsk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"CplCucumber\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ruv0\", \"score\": -14, \"author_fullname\": \"t2_6h5ln\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"I actually have agoraphobia, sorry.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI actually have agoraphobia, sorry.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5srsk/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5srsk\", \"created\": 1439843188.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439814388.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5ruv0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"Arrager\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5rnda\", \"score\": 35, \"author_fullname\": \"t2_lf97z\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Maybe the dude(tte) is not at home? You do realize there is a world out that front door, right? \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMaybe the dude(tte) is not at home? You do realize there is a world out that front door, right? \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ruv0/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ruv0\", \"created\": 1439840260.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439811460.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 17, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5rzz6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Palpable_Hate\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5rv36\", \"score\": 3, \"author_fullname\": \"t2_jc9ul\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Specially while on the subway to his mother's house.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESpecially while on the subway to his mother\\u0026#39;s house.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5rzz6/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5rzz6\", \"created\": 1439840745.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439811945.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5rv36\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"downhillcarver\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5rnda\", \"score\": 17, \"author_fullname\": \"t2_66636\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"We have a computer at home, but we're also browsing from work, lunch, our parents house, the subway, your mom's house, etc. So we're spending a lot of time on mobile. \\n\\nAt this point, I don't even go to reddit on my computer, I'll have reddit up on my phone, and be doing something else on the computer. \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWe have a computer at home, but we\\u0026#39;re also browsing from work, lunch, our parents house, the subway, your mom\\u0026#39;s house, etc. So we\\u0026#39;re spending a lot of time on mobile. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt this point, I don\\u0026#39;t even go to reddit on my computer, I\\u0026#39;ll have reddit up on my phone, and be doing something else on the computer. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5rv36/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5rv36\", \"created\": 1439840281.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439811481.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6kor4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"burnbrown\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5rnda\", \"score\": 1, \"author_fullname\": \"t2_96acb\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Yes.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6kor4/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6kor4\", \"created\": 1439890713.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439861913.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5rnda\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"CplCucumber\", \"can_mod_post\": false, \"created_utc\": 1439810710.0, \"send_replies\": true, \"parent_id\": \"t1_cu5qhfy\", \"score\": -46, \"author_fullname\": \"t2_6h5ln\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"you say mobile user like you don't have a pc, or laptop at home... wait is this how things are becoming? Is it gonna be phone over pc in the future? \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eyou say mobile user like you don\\u0026#39;t have a pc, or laptop at home... wait is this how things are becoming? Is it gonna be phone over pc in the future? \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5rnda/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5rnda\", \"created\": 1439839510.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5qhfy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"Graffy\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 399, \"author_fullname\": \"t2_b6q4a\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"As a mobile user I seldom open videos as it has to open in a new page and load.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs a mobile user I seldom open videos as it has to open in a new page and load.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5qhfy/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5qhfy\", \"created\": 1439834737.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439805937.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 35, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5s36w\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"Jeffslot\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 35, \"author_fullname\": \"t2_apqgw\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"So where is the actual video with sound? Anyone has a source? \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo where is the actual video with sound? Anyone has a source? \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5s36w/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5s36w\", \"created\": 1439841046.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439812246.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 20, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5txma\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"abc123shutthefuckup\", \"can_mod_post\": false, \"created_utc\": 1439817424.0, \"send_replies\": true, \"parent_id\": \"t1_cu5spid\", \"score\": 2, \"author_fullname\": \"t2_b4sqh\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Yeah, there is NO WAY the real sound is anywhere near as good as the sound I heard in my head\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYeah, there is NO WAY the real sound is anywhere near as good as the sound I heard in my head\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5txma/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5txma\", \"created\": 1439846224.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5spid\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"pragmatic_duck\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 20, \"author_fullname\": \"t2_frdq0\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"I'd agree with you for many gifs, but for this one i think part of what makes it funny is that you can hear the sounds in your head.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;d agree with you for many gifs, but for this one i think part of what makes it funny is that you can hear the sounds in your head.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5spid/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5spid\", \"created\": 1439843006.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439814206.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 5, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ui2r\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"Masterreefer420\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 5, \"author_fullname\": \"t2_j2eea\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Because subconsciously clicking a gif link is just like clicking a normal picture. Clicking on a video usually requires a bit more commitment so people only view what sounds really interesting. More people click it, more people upvote it.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBecause subconsciously clicking a gif link is just like clicking a normal picture. Clicking on a video usually requires a bit more commitment so people only view what sounds really interesting. More people click it, more people upvote it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ui2r/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ui2r\", \"created\": 1439847514.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818714.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 10, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uvp8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"streetscornetto\", \"can_mod_post\": false, \"created_utc\": 1439819515.0, \"send_replies\": true, \"parent_id\": \"t1_cu5tz8g\", \"score\": 1, \"author_fullname\": \"t2_exs1w\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"EXACTLY \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EEXACTLY \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uvp8/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uvp8\", \"created\": 1439848315.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tz8g\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"lorchard\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 10, \"author_fullname\": \"t2_c2kgg\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Where's the actual video?\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhere\\u0026#39;s the actual video?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tz8g/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tz8g\", \"created\": 1439846330.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817530.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 18, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 9, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v7wd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"caseycoold\", \"can_mod_post\": false, \"created_utc\": 1439820193.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uafs\", \"score\": 9, \"author_fullname\": \"t2_8jg1v\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"And we go over these every time. I feel like an explanation should be in the reddiquette so we could just link it.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAnd we go over these every time. I feel like an explanation should be in the reddiquette so we could just link it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v7wd/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v7wd\", \"created\": 1439848993.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ukr6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"kalitarios\", \"can_mod_post\": false, \"created_utc\": 1439818871.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uafs\", \"score\": 1, \"author_fullname\": \"t2_9i2gb\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"\\u003E Risk of YouTube Aids.\\n\\nFTFY\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERisk of YouTube Aids.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EFTFY\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ukr6/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ukr6\", \"created\": 1439847671.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uafs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"Hollowsong\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 18, \"author_fullname\": \"t2_9j7jd\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Lots of reasons:\\n\\n- Takes longer to load video than imgur.\\n\\n- Risk of YouTube Ads.\\n\\n- I'm at work; can't listen to sound anyway unless I dig out headphones.\\n\\n- Gifs are usually shorter. Easier on my attention span.\\n\\n- Many companies block YouTube (or other video sites) but not direct link to hosted gif.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELots of reasons:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ETakes longer to load video than imgur.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ERisk of YouTube Ads.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EI\\u0026#39;m at work; can\\u0026#39;t listen to sound anyway unless I dig out headphones.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGifs are usually shorter. Easier on my attention span.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EMany companies block YouTube (or other video sites) but not direct link to hosted gif.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uafs/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uafs\", \"created\": 1439847029.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818229.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 4, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u0o9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"PleaseBanShen\", \"can_mod_post\": false, \"created_utc\": 1439817621.0, \"send_replies\": true, \"parent_id\": \"t1_cu5tmej\", \"score\": 2, \"author_fullname\": \"t2_ckc7l\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"adblock?\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eadblock?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u0o9/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u0o9\", \"created\": 1439846421.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tmej\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"GravyMcBiscuits\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 4, \"author_fullname\": \"t2_3g86m\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"No ads for one.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo ads for one.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tmej/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tmej\", \"created\": 1439845473.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816673.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5w8lp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Grumpy_Kong\", \"can_mod_post\": false, \"created_utc\": 1439822119.0, \"send_replies\": true, \"parent_id\": \"t1_cu5vmsa\", \"score\": 2, \"author_fullname\": \"t2_5nphu\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Holy crap! You have to be a doctor to be a rapist nowadays?!\\n\\nThe higher education requirement for careers is getting a little ridiculous...\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHoly crap! You have to be a doctor to be a rapist nowadays?!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe higher education requirement for careers is getting a little ridiculous...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w8lp/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5w8lp\", \"created\": 1439850919.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5vmsa\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"ender1108\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5totl\", \"score\": 1, \"author_fullname\": \"t2_ecgoo\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"And when you are done. There is a great practice just down the road called rapist and racist. I'm told you won't have to wait log as they are very fast to get to you. However they don't have the best rep for listening. But you can be sure they will give you a very thorough physical. \\n \\nAs long as you're white. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAnd when you are done. There is a great practice just down the road called rapist and racist. I\\u0026#39;m told you won\\u0026#39;t have to wait log as they are very fast to get to you. However they don\\u0026#39;t have the best rep for listening. But you can be sure they will give you a very thorough physical. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs long as you\\u0026#39;re white. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vmsa/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vmsa\", \"created\": 1439849800.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821000.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5totl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Grumpy_Kong\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tmeu\", \"score\": 3, \"author_fullname\": \"t2_5nphu\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Maybe I'll just save the money and see a evangelist then.\\n\\nI wonder what part of the body the 'evangel' is...\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMaybe I\\u0026#39;ll just save the money and see a evangelist then.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI wonder what part of the body the \\u0026#39;evangel\\u0026#39; is...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5totl/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5totl\", \"created\": 1439845640.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816840.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wqaf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"CplCucumber\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5wo7b\", \"score\": 1, \"author_fullname\": \"t2_6h5ln\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"rap ist, like dr dre.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Erap ist, like dr dre.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wqaf/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wqaf\", \"created\": 1439851808.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439823008.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5wo7b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Rockyrambo\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tmeu\", \"score\": 1, \"author_fullname\": \"t2_6b9lp\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Rapist\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERapist\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wo7b/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wo7b\", \"created\": 1439851708.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822908.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tmeu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"CplCucumber\", \"can_mod_post\": false, \"created_utc\": 1439816674.0, \"send_replies\": true, \"parent_id\": \"t1_cu5tjhp\", \"score\": 1, \"author_fullname\": \"t2_6h5ln\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"go for it, I mean if it ends with ist, it must be a doctor.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ego for it, I mean if it ends with ist, it must be a doctor.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tmeu/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tmeu\", \"created\": 1439845474.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tjhp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Grumpy_Kong\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 3, \"author_fullname\": \"t2_5nphu\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"I don't know about you, but I heard it anyway.\\n\\nMaybe I should go see an otolaryngologist...\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t know about you, but I heard it anyway.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMaybe I should go see an otolaryngologist...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tjhp/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tjhp\", \"created\": 1439845267.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816467.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u8se\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"jago81\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 3, \"author_fullname\": \"t2_79jwr\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"I'm at work. I prefer not having to risk those annoyingly loud videos. I appreciate the video links in comments. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m at work. I prefer not having to risk those annoyingly loud videos. I appreciate the video links in comments. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u8se/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u8se\", \"created\": 1439846928.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818128.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u78k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"polish_niceguy\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 2, \"author_fullname\": \"t2_99kg7\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Because videos require clicking and take almost 10 seconds to load and start. Gifs start immediately.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBecause videos require clicking and take almost 10 seconds to load and start. Gifs start immediately.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u78k/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u78k\", \"created\": 1439846831.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818031.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uwdi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"mr_lab_rat\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 2, \"author_fullname\": \"t2_bo3d2\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"To be honest I think the lack of sound made it funnier. Kinda like a joke you have to think about a bit. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETo be honest I think the lack of sound made it funnier. Kinda like a joke you have to think about a bit. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uwdi/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uwdi\", \"created\": 1439848354.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819554.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 4, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5t3t8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"Victory33\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 4, \"author_fullname\": \"t2_4aywp\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"I can't view Youtube at work. Imgur is still allowed. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can\\u0026#39;t view Youtube at work. Imgur is still allowed. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5t3t8/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5t3t8\", \"created\": 1439844121.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439815321.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5udj0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"TheLastSparten\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 1, \"author_fullname\": \"t2_a1v6j\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"I don't bother looking at videos unless the title has me very interested because gifs are easier to view and rarely last more than 10 or 15 seconds. Having sounds isn't worth the extras effort for me to watch a video.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t bother looking at videos unless the title has me very interested because gifs are easier to view and rarely last more than 10 or 15 seconds. Having sounds isn\\u0026#39;t worth the extras effort for me to watch a video.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5udj0/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5udj0\", \"created\": 1439847222.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818422.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 13, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5waqp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"nonrg1\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5vhtr\", \"score\": 13, \"author_fullname\": \"t2_hm9h8\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"https://www.youtube.com/watch?v=BdsQBqN7bCw\\u0026feature=youtu.be\\u0026t=15s\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=BdsQBqN7bCw\\u0026amp;feature=youtu.be\\u0026amp;t=15s\\\"\\u003Ehttps://www.youtube.com/watch?v=BdsQBqN7bCw\\u0026amp;feature=youtu.be\\u0026amp;t=15s\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5waqp/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5waqp\", \"created\": 1439851031.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822231.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5vhtr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"kevinc69\", \"can_mod_post\": false, \"created_utc\": 1439820733.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uwfx\", \"score\": 1, \"author_fullname\": \"t2_3gp7u\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I really wanted this one to be real. \\n\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI really wanted this one to be real. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vhtr/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vhtr\", \"created\": 1439849533.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 4, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wwkd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Maclimes\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5wlip\", \"score\": 4, \"author_fullname\": \"t2_4jy9f\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"https://www.youtube.com/watch?v=BdsQBqN7bCw\\u0026amp;feature=youtu.be\\u0026amp;t=15s\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=BdsQBqN7bCw\\u0026amp;amp;feature=youtu.be\\u0026amp;amp;t=15s\\\"\\u003Ehttps://www.youtube.com/watch?v=BdsQBqN7bCw\\u0026amp;amp;feature=youtu.be\\u0026amp;amp;t=15s\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wwkd/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wwkd\", \"created\": 1439852120.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439823320.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5z1s8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Judo_Guy07\", \"can_mod_post\": false, \"created_utc\": 1439826985.0, \"send_replies\": true, \"parent_id\": \"t1_cu5xrk4\", \"score\": 3, \"author_fullname\": \"t2_d56mi\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Hmm, maybe the reason the video looks so fake or off to me is that it was filmed with an old camcorder that couldn't capture all the frames of the kid falling which makes it look unnatural.\\n\\nI am now skeptical of my skepticism\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHmm, maybe the reason the video looks so fake or off to me is that it was filmed with an old camcorder that couldn\\u0026#39;t capture all the frames of the kid falling which makes it look unnatural.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am now skeptical of my skepticism\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5z1s8/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5z1s8\", \"created\": 1439855785.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5xrk4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"yourmansconnect\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5wlip\", \"score\": 1, \"author_fullname\": \"t2_6twfb\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"This was on afv. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis was on afv. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xrk4/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5xrk4\", \"created\": 1439853642.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439824842.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5wlip\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Judo_Guy07\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5whjj\", \"score\": 1, \"author_fullname\": \"t2_d56mi\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Been looking and have not found anything yet.\\nHowever I can ask the same to you, please find the source video for the gif.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBeen looking and have not found anything yet.\\nHowever I can ask the same to you, please find the source video for the gif.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wlip/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wlip\", \"created\": 1439851575.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822775.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5whjj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Maclimes\", \"can_mod_post\": false, \"created_utc\": 1439822576.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uwfx\", \"score\": 1, \"author_fullname\": \"t2_4jy9f\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Show me the source. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EShow me the source. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5whjj/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5whjj\", \"created\": 1439851376.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"body\": \"Pretty sure it's real. There are shadows off the drum kit, and even a reflection in the metal above the bass drum. That's a LOT of effort to photoshop.\", \"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xh76\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"OkeyDokieArtichokie\", \"can_mod_post\": false, \"created_utc\": 1439824331.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uwfx\", \"score\": 1, \"author_fullname\": \"t2_oivmv\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"author_cakeday\": true, \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPretty sure it\\u0026#39;s real. There are shadows off the drum kit, and even a reflection in the metal above the bass drum. That\\u0026#39;s a LOT of effort to photoshop.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xh76/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5xh76\", \"created\": 1439853131.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uwfx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Judo_Guy07\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": -1, \"author_fullname\": \"t2_d56mi\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Video doesn't exist because it was edited.\\n\\nTake a look at his hand on the microphone, the speed at which he falls, and the placement of the body in relation to the microphone stand. Also, note the slight wobble of the microphone stand itself when it is not being touched.\\n\\nThese are two separate videos, one of a kid playing the drums and another of a kid with a microphone falling.\\n\\nEDIT: video could actually be legit\", \"edited\": 1439827214.0, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EVideo doesn\\u0026#39;t exist because it was edited.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETake a look at his hand on the microphone, the speed at which he falls, and the placement of the body in relation to the microphone stand. Also, note the slight wobble of the microphone stand itself when it is not being touched.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThese are two separate videos, one of a kid playing the drums and another of a kid with a microphone falling.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: video could actually be legit\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uwfx/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uwfx\", \"created\": 1439848357.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819557.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tp6z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"musicalisthenicsweed\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 1, \"author_fullname\": \"t2_nm63y\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"its your imagination that makes the difference\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eits your imagination that makes the difference\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tp6z/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tp6z\", \"created\": 1439845665.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816865.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tpa3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 1, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I agree with this. Sauce, please.\", \"edited\": false, \"author_flair_css_class\": null, \"collapsed\": false, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI agree with this. Sauce, please.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tpa3/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tpa3\", \"created\": 1439845672.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816872.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tccw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Roscoe_King\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 0, \"author_fullname\": \"t2_ajbdb\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"For me it's a work related thing. I don't want everyone to know I'm looking at Reddit in the office. With GIFs like this, I can easily imagine the sound that goes with it, it's easy to open, watch and close and it doesn't make any noise so I can quickly watch it and then close it without disturbing anyone and go back to work. If I want to watch the video anyway, I check out the comments and there's usually a source. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFor me it\\u0026#39;s a work related thing. I don\\u0026#39;t want everyone to know I\\u0026#39;m looking at Reddit in the office. With GIFs like this, I can easily imagine the sound that goes with it, it\\u0026#39;s easy to open, watch and close and it doesn\\u0026#39;t make any noise so I can quickly watch it and then close it without disturbing anyone and go back to work. If I want to watch the video anyway, I check out the comments and there\\u0026#39;s usually a source. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tccw/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tccw\", \"created\": 1439844760.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439815960.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v1f0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"paradoxofchoice\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 0, \"author_fullname\": \"t2_4t16t\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"/r/funny does not promote videos. gifs are preferred for the majority that is somewhere they should not be watching things like videos. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/funny\\\"\\u003E/r/funny\\u003C/a\\u003E does not promote videos. gifs are preferred for the majority that is somewhere they should not be watching things like videos. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v1f0/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v1f0\", \"created\": 1439848628.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819828.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ujvq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"CplCucumber\", \"can_mod_post\": false, \"created_utc\": 1439818818.0, \"send_replies\": true, \"parent_id\": \"t1_cu5ufrj\", \"score\": -1, \"author_fullname\": \"t2_6h5ln\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I know right? it's fucking stupid that you have to title something \\\"ba dum tiss\\\" in order for it to be a good post, but apparently gifs are the way of the future, so FUCK YOUTUBE.\\n\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI know right? it\\u0026#39;s fucking stupid that you have to title something \\u0026quot;ba dum tiss\\u0026quot; in order for it to be a good post, but apparently gifs are the way of the future, so FUCK YOUTUBE.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ujvq/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ujvq\", \"created\": 1439847618.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5ufrj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"0whodidyousay0\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": -1, \"author_fullname\": \"t2_gkbeq\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"The only thing that's annoying me in this thread, is that nobody seems to have found the source...Almost every other gif I see on here has a source in the comments \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe only thing that\\u0026#39;s annoying me in this thread, is that nobody seems to have found the source...Almost every other gif I see on here has a source in the comments \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ufrj/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ufrj\", \"created\": 1439847368.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818568.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5pr4y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"CplCucumber\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 125, \"author_fullname\": \"t2_6h5ln\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"why do gifs always get more upvotes than the actual video, even in situations like this where sound would make it amazing?\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewhy do gifs always get more upvotes than the actual video, even in situations like this where sound would make it amazing?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5pr4y/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5pr4y\", \"created\": 1439831509.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439802709.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 24, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 19, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5y07w\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"anonatitagain\", \"can_mod_post\": false, \"created_utc\": 1439825255.0, \"send_replies\": true, \"parent_id\": \"t1_cu5wm3n\", \"score\": 19, \"author_fullname\": \"t2_elcx6\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"A rare instance where the GIF is funnier\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA rare instance where the GIF is funnier\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5y07w/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5y07w\", \"created\": 1439854055.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5wm3n\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Swiftraven\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tj94\", \"score\": 3, \"author_fullname\": \"t2_38ahi\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"\\u003E https://www.youtube.com/watch?v=BdsQBqN7bCw\\u0026feature=youtu.be\\u0026t=15s\\n\\n\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=BdsQBqN7bCw\\u0026amp;feature=youtu.be\\u0026amp;t=15s\\\"\\u003Ehttps://www.youtube.com/watch?v=BdsQBqN7bCw\\u0026amp;feature=youtu.be\\u0026amp;t=15s\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wm3n/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wm3n\", \"created\": 1439851604.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822804.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tj94\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"mrskeetskeeter\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 24, \"author_fullname\": \"t2_4ipfj\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Anyone have the actual video? I'm sure it's way funnier. \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAnyone have the actual video? I\\u0026#39;m sure it\\u0026#39;s way funnier. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tj94/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tj94\", \"created\": 1439845252.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816452.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 17, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 61, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xhkq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"umjammerlammy\", \"can_mod_post\": false, \"created_utc\": 1439824348.0, \"send_replies\": true, \"parent_id\": \"t1_cu5u6mu\", \"score\": 2, \"author_fullname\": \"t2_5x8to\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"And the gif is better\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAnd the gif is better\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xhkq/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5xhkq\", \"created\": 1439853148.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5u6mu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"Wetbung\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tkvm\", \"score\": 61, \"author_fullname\": \"t2_bcan2\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Recorded direct to GIF\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERecorded direct to GIF\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u6mu/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u6mu\", \"created\": 1439846794.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817994.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu61rpx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tkvm\", \"score\": 0, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[deleted]\", \"edited\": false, \"author_flair_css_class\": null, \"collapsed\": false, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[deleted]\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61rpx/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu61rpx\", \"created\": 1439860153.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439831353.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tkvm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"blaizedm\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 17, \"author_fullname\": \"t2_6enob\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"5 hours old and no one has posted the source?\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E5 hours old and no one has posted the source?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tkvm/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tkvm\", \"created\": 1439845365.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816565.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 17, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ts0s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"johnny_cicala\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 17, \"author_fullname\": \"t2_gbo08\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[http://i.imgur.com/sPwgpLj.gif](http://i.imgur.com/sPwgpLj.gif)\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://i.imgur.com/sPwgpLj.gif\\\"\\u003Ehttp://i.imgur.com/sPwgpLj.gif\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ts0s/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ts0s\", \"created\": 1439845857.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817057.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 10, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5si45\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"brechtvdh\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 10, \"author_fullname\": \"t2_jbnaq\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"source plzzz :)\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Esource plzzz :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5si45/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5si45\", \"created\": 1439842390.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439813590.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5skqs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"incredulous_bee\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 3, \"author_fullname\": \"t2_ip6gj\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Kids got great comedic timing.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EKids got great comedic timing.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5skqs/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5skqs\", \"created\": 1439842609.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439813809.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v7rv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Always_smooth\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uk2x\", \"score\": 2, \"author_fullname\": \"t2_62bxn\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Mine says breathe, eat, and reproduce. \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMine says breathe, eat, and reproduce. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v7rv/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v7rv\", \"created\": 1439848985.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820185.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uk2x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"created_utc\": 1439818831.0, \"send_replies\": true, \"parent_id\": \"t1_cu5ufz0\", \"score\": 2, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Mine says treadmill. \", \"edited\": false, \"author_flair_css_class\": null, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMine says treadmill. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uk2x/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uk2x\", \"created\": 1439847631.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5ufz0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"beetroot_miscarriage\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tln5\", \"score\": 3, \"author_fullname\": \"t2_adcxp\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"my brain says skateboard.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Emy brain says skateboard.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ufz0/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ufz0\", \"created\": 1439847381.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818581.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tln5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"emdave\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 3, \"author_fullname\": \"t2_98w4e\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Did someone (or something?!) grab the kids ankle? How did he fall like that?\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDid someone (or something?!) grab the kids ankle? How did he fall like that?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tln5/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tln5\", \"created\": 1439845420.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816620.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5t14q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"Stenas\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 3, \"author_fullname\": \"t2_4ysed\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"That kid didnt miss a beat!\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat kid didnt miss a beat!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5t14q/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5t14q\", \"created\": 1439843917.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439815117.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 4, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cyfte2v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"JacP123\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5t8kq\", \"score\": 1, \"author_fullname\": \"t2_pos5p\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Trust me, it's better without sound\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETrust me, it\\u0026#39;s better without sound\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cyfte2v/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cyfte2v\", \"created\": 1451479370.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1451450570.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5t8kq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"imortality\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 4, \"author_fullname\": \"t2_9rljz\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I need sound. Why doesn't this have sound? webms can have sound\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI need sound. Why doesn\\u0026#39;t this have sound? webms can have sound\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5t8kq/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5t8kq\", \"created\": 1439844475.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439815675.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 7, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xhu8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Geerat5\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5u0sv\", \"score\": 2, \"author_fullname\": \"t2_6028j\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"He was probably just acting\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe was probably just acting\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xhu8/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5xhu8\", \"created\": 1439853161.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439824361.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v7cs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Judo_Guy07\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5u0sv\", \"score\": -2, \"author_fullname\": \"t2_d56mi\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Yep, this is shopped. But don't let anyone else here hear you say that or you'll be downvoted into oblivion by people who don't care.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYep, this is shopped. But don\\u0026#39;t let anyone else here hear you say that or you\\u0026#39;ll be downvoted into oblivion by people who don\\u0026#39;t care.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v7cs/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v7cs\", \"created\": 1439848960.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820160.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5u0sv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"ObviouslyHatesSuarez\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 7, \"author_fullname\": \"t2_lnomy\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I'm not saying that everyone should grab their torches, but doesn't this look like it's photoshopped? It just seems very unnatural and nobody has posted the source.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not saying that everyone should grab their torches, but doesn\\u0026#39;t this look like it\\u0026#39;s photoshopped? It just seems very unnatural and nobody has posted the source.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u0sv/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u0sv\", \"created\": 1439846429.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817629.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5t2m2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Froggy_hop\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 2, \"author_fullname\": \"t2_64nt5\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Everything about this gif is perfect. I mean, how often are you around a drum set when something funny happens?\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EEverything about this gif is perfect. I mean, how often are you around a drum set when something funny happens?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5t2m2/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5t2m2\", \"created\": 1439844029.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439815229.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tpet\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"yaboproductions\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 2, \"author_fullname\": \"t2_f4mav\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"What did the guy slip on?\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat did the guy slip on?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tpet/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tpet\", \"created\": 1439845679.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816879.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u5wq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"JustinMagill\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 2, \"author_fullname\": \"t2_d3023\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"This video isn't very funny without sound.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis video isn\\u0026#39;t very funny without sound.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u5wq/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u5wq\", \"created\": 1439846749.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817949.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uj4y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"IGrowAcorns\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 2, \"author_fullname\": \"t2_9gyad\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Hey I have an idea. Let's turn this video, that the funniest part is a sound, into a gif. \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey I have an idea. Let\\u0026#39;s turn this video, that the funniest part is a sound, into a gif. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uj4y/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uj4y\", \"created\": 1439847576.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818776.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5x6r5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Windowlicker79\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5vc4a\", \"score\": 1, \"author_fullname\": \"t2_g84bq\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Like a tiny black hole opened up in the floor in front of him for a split second.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELike a tiny black hole opened up in the floor in front of him for a split second.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5x6r5/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5x6r5\", \"created\": 1439852617.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439823817.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5vc4a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Trewper-\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 2, \"author_fullname\": \"t2_9j2p0\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"It looks like an unnatural force of gravity just slammed that kid.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt looks like an unnatural force of gravity just slammed that kid.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vc4a/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vc4a\", \"created\": 1439849230.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820430.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu64opo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"NOVA_OWL\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 2, \"author_fullname\": \"t2_e8mud\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"As a fellow drummer, I should say it is our duty to always have a *ba dum chh* ready. This kid is honoring the brethren of the boom\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs a fellow drummer, I should say it is our duty to always have a \\u003Cem\\u003Eba dum chh\\u003C/em\\u003E ready. This kid is honoring the brethren of the boom\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu64opo/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu64opo\", \"created\": 1439864595.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439835795.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu69jlk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"DDAAMMNN\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 2, \"author_fullname\": \"t2_8luo1\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"*NOT MY FUCKING TEMPO*\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cem\\u003ENOT MY FUCKING TEMPO\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu69jlk/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu69jlk\", \"created\": 1439871836.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439843036.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cxxubk8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"thebageljew\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 2, \"author_fullname\": \"t2_bszmd\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"In Soviet Russia, mic drops you\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn Soviet Russia, mic drops you\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cxxubk8/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cxxubk8\", \"created\": 1450068061.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1450039261.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 5, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tohz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"PeterFnet\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 5, \"author_fullname\": \"t2_382vt\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Totally not planned.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETotally not planned.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tohz/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tohz\", \"created\": 1439845618.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816818.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 5, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 38, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 18, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu606xh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"sergelo\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5u5qt\", \"score\": 1, \"author_fullname\": \"t2_a0rrq\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Why not the xylophone?\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhy not the xylophone?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu606xh/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu606xh\", \"created\": 1439857652.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439828852.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5u5qt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"Deon555\", \"can_mod_post\": false, \"created_utc\": 1439817939.0, \"send_replies\": true, \"parent_id\": \"t1_cu5ru87\", \"score\": 18, \"author_fullname\": \"t2_3ae0p\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"http://imgur.com/lrQdiwB\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://imgur.com/lrQdiwB\\\"\\u003Ehttp://imgur.com/lrQdiwB\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u5qt/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u5qt\", \"created\": 1439846739.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 5, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5sadw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"Omniduro\", \"can_mod_post\": false, \"created_utc\": 1439812907.0, \"send_replies\": true, \"parent_id\": \"t1_cu5ru87\", \"score\": 5, \"author_fullname\": \"t2_7u7s0\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I have tickets to David Grohl's first undead drum performance.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have tickets to David Grohl\\u0026#39;s first undead drum performance.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5sadw/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5sadw\", \"created\": 1439841707.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vlhn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Forsyte\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5v80u\", \"score\": 1, \"author_fullname\": \"t2_femjz\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Hold my drummer's corpse, I'm going in!\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHold my drummer\\u0026#39;s corpse, I\\u0026#39;m going in!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vlhn/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vlhn\", \"created\": 1439849730.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820930.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5v80u\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Brandon23z\", \"can_mod_post\": false, \"created_utc\": 1439820201.0, \"send_replies\": true, \"parent_id\": \"t1_cu5ru87\", \"score\": 1, \"author_fullname\": \"t2_8y8aw\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Ah, the old reddit [switcheroo](https://m.reddit.com/r/todayilearned/comments/3h74q3/til_hooters_offered_employees_the_chance_to_win_a/cu5dec6).\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAh, the old reddit \\u003Ca href=\\\"https://m.reddit.com/r/todayilearned/comments/3h74q3/til_hooters_offered_employees_the_chance_to_win_a/cu5dec6\\\"\\u003Eswitcheroo\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v80u/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v80u\", \"created\": 1439849001.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5w0gv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"goofball_jones\", \"can_mod_post\": false, \"created_utc\": 1439821708.0, \"send_replies\": true, \"parent_id\": \"t1_cu5ru87\", \"score\": 1, \"author_fullname\": \"t2_5qq4a\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Mickey Hart and Bill Kreutzmann would disagree with you there. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMickey Hart and Bill Kreutzmann would disagree with you there. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w0gv/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5w0gv\", \"created\": 1439850508.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5t396\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Acidogenic\", \"can_mod_post\": false, \"created_utc\": 1439815278.0, \"send_replies\": true, \"parent_id\": \"t1_cu5ru87\", \"score\": -3, \"author_fullname\": \"t2_516a5\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Ah, the old reddit switcher-ba-bum-dis.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAh, the old reddit switcher-ba-bum-dis.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5t396/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5t396\", \"created\": 1439844078.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5ru87\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"knylok\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5p9jb\", \"score\": 38, \"author_fullname\": \"t2_27hoy\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"No. The dead typically aren't very good at playing the drums. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo. The dead typically aren\\u0026#39;t very good at playing the drums. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ru87/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ru87\", \"created\": 1439840198.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439811398.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tum8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"CopaceticGatsby\", \"can_mod_post\": false, \"created_utc\": 1439817227.0, \"send_replies\": true, \"parent_id\": \"t1_cu5t7wi\", \"score\": 2, \"author_fullname\": \"t2_ahbkh\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Shut your whore mouth.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EShut your whore mouth.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tum8/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tum8\", \"created\": 1439846027.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5t7wi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"popaninja\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5p9jb\", \"score\": 0, \"author_fullname\": \"t2_77odq\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"He still has his shoes on, so I guess he's alive.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe still has his shoes on, so I guess he\\u0026#39;s alive.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5t7wi/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5t7wi\", \"created\": 1439844426.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439815626.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5p9jb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"yourpantslooktasty\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 5, \"author_fullname\": \"t2_o4bap\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"is he dead?\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eis he dead?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5p9jb/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5p9jb\", \"created\": 1439829394.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439800594.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tik2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"esmith972\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_3w93e\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Source? Tineye didn't pull anything.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESource? Tineye didn\\u0026#39;t pull anything.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tik2/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tik2\", \"created\": 1439845205.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816405.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 9, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5x0hr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"dkey1983\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ujg2\", \"score\": 1, \"author_fullname\": \"t2_5t9wr\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"He doesn't cast a shadow on the drum equipment, but there's definitely a reflection of him bouncing off of the kit. That could have been shopped, but someone did a decent job at thinking to do that if that's the case. I'm not certain if this is a shop or not.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe doesn\\u0026#39;t cast a shadow on the drum equipment, but there\\u0026#39;s definitely a reflection of him bouncing off of the kit. That could have been shopped, but someone did a decent job at thinking to do that if that\\u0026#39;s the case. I\\u0026#39;m not certain if this is a shop or not.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5x0hr/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5x0hr\", \"created\": 1439852312.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439823512.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xkfj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"ILovePopPunk\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ujg2\", \"score\": 1, \"author_fullname\": \"t2_77jw9\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Judging by the shadows the drums are casting, I would say the main source of light is above the drummer, hence there is no visible shadow being cast by the falling kid. He does fall abnormally quickly but it doesn't really seem that is was edited.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJudging by the shadows the drums are casting, I would say the main source of light is above the drummer, hence there is no visible shadow being cast by the falling kid. He does fall abnormally quickly but it doesn\\u0026#39;t really seem that is was edited.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xkfj/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5xkfj\", \"created\": 1439853291.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439824491.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"more\", \"data\": {\"count\": 0, \"name\": \"t1__\", \"id\": \"_\", \"parent_id\": \"t1_cu61tk1\", \"depth\": 10, \"children\": []}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu61tk1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu61nnl\", \"score\": 1, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[deleted]\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[deleted]\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61tk1/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu61tk1\", \"created\": 1439860234.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439831434.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu61nnl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"yourmansconnect\", \"can_mod_post\": false, \"created_utc\": 1439831175.0, \"send_replies\": true, \"parent_id\": \"t1_cu61dgb\", \"score\": 1, \"author_fullname\": \"t2_6twfb\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Because he picks up the drumsticks that means its shopped? Even the parent commented who said it was shopped now thinks it was just an old camcorder\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBecause he picks up the drumsticks that means its shopped? Even the parent commented who said it was shopped now thinks it was just an old camcorder\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61nnl/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu61nnl\", \"created\": 1439859975.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu61dgb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu6138g\", \"score\": 1, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[deleted]\", \"edited\": false, \"author_flair_css_class\": null, \"collapsed\": false, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[deleted]\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61dgb/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu61dgb\", \"created\": 1439859523.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439830723.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu6138g\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"yourmansconnect\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu60yyr\", \"score\": 1, \"author_fullname\": \"t2_6twfb\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"The shadow on the drumset I mean. Or is that flash of the kids arm falling shopped too? The other things don't mean that it's shopped. \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe shadow on the drumset I mean. Or is that flash of the kids arm falling shopped too? The other things don\\u0026#39;t mean that it\\u0026#39;s shopped. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6138g/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6138g\", \"created\": 1439859075.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439830275.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu60yyr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"created_utc\": 1439830089.0, \"send_replies\": true, \"parent_id\": \"t1_cu5yghg\", \"score\": 1, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[deleted]\", \"edited\": false, \"author_flair_css_class\": null, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[deleted]\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu60yyr/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu60yyr\", \"created\": 1439858889.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5yghg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"yourmansconnect\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5y4ro\", \"score\": 1, \"author_fullname\": \"t2_6twfb\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"But wee see a shadow on the drum when he falls. I don't really see what the guy is talking about with the mic. Can you explain\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBut wee see a shadow on the drum when he falls. I don\\u0026#39;t really see what the guy is talking about with the mic. Can you explain\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5yghg/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5yghg\", \"created\": 1439854808.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439826008.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5y4ro\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5xs69\", \"score\": 1, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[deleted]\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[deleted]\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5y4ro/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5y4ro\", \"created\": 1439854269.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439825469.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5xs69\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"yourmansconnect\", \"can_mod_post\": false, \"created_utc\": 1439824871.0, \"send_replies\": true, \"parent_id\": \"t1_cu5w5hz\", \"score\": 1, \"author_fullname\": \"t2_6twfb\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"This was a video on Americas funniest home videos. It's not shopped\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis was a video on Americas funniest home videos. It\\u0026#39;s not shopped\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xs69/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5xs69\", \"created\": 1439853671.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5w5hz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ujg2\", \"score\": -1, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[deleted]\", \"edited\": false, \"author_flair_css_class\": null, \"collapsed\": false, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[deleted]\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w5hz/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5w5hz\", \"created\": 1439850762.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821962.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 1, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5ujg2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"Judo_Guy07\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 9, \"author_fullname\": \"t2_d56mi\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Hate to break it to you all but the kid falling has shopped onto the video of the kid with the drum kit.\\n\\nTake a look at his hand on the microphone, the speed at which he falls, and the placement of the body in relation to the microphone stand. Also, note the slight wobble of the microphone stand itself when it is not being touched. The falling kid also does not cast a shadow on the drum equipment at all and is inconsistent with the lighting in the room (you can see shadows on the walls of the drum equipment).\\n\\nThe kid on the drum kit doesn't react at all for a reason.\\n\\nEDIT: It has been pointed out by another redditor that he/she has seen this on AFV. Potentially the video seems fake to me because the camcorders at the time could not capture all of the frames of the kid falling and makes it look edited.\\nOf course this is also a guess but I am now skeptical of my previous skepticism. Could be legit.\", \"edited\": 1439827161.0, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHate to break it to you all but the kid falling has shopped onto the video of the kid with the drum kit.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETake a look at his hand on the microphone, the speed at which he falls, and the placement of the body in relation to the microphone stand. Also, note the slight wobble of the microphone stand itself when it is not being touched. The falling kid also does not cast a shadow on the drum equipment at all and is inconsistent with the lighting in the room (you can see shadows on the walls of the drum equipment).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe kid on the drum kit doesn\\u0026#39;t react at all for a reason.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: It has been pointed out by another redditor that he/she has seen this on AFV. Potentially the video seems fake to me because the camcorders at the time could not capture all of the frames of the kid falling and makes it look edited.\\nOf course this is also a guess but I am now skeptical of my previous skepticism. Could be legit.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ujg2/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ujg2\", \"created\": 1439847594.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818794.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ucw9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"happyself\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 2, \"author_fullname\": \"t2_mvumo\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Anyone else check if their mute was on while watching this clip?\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAnyone else check if their mute was on while watching this clip?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ucw9/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ucw9\", \"created\": 1439847183.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818383.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5rrdt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"CSI_am_Sam\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_p4f9m\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"So can we get a video source on this or what?\\n\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo can we get a video source on this or what?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5rrdt/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5rrdt\", \"created\": 1439839915.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439811115.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5snd8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"RicardoLovesYou\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_h4mml\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"He already knows the number one rule in comedy.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe already knows the number one rule in comedy.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5snd8/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5snd8\", \"created\": 1439842833.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439814033.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5sqp4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"zman122333\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_j74oi\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"No hesitation. Brilliant. \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo hesitation. Brilliant. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5sqp4/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5sqp4\", \"created\": 1439843103.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439814303.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uc0p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Kruse\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5swgs\", \"score\": 1, \"author_fullname\": \"t2_4812l\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"https://youtu.be/BVGi7h2NTOg?t=1m19s\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://youtu.be/BVGi7h2NTOg?t=1m19s\\\"\\u003Ehttps://youtu.be/BVGi7h2NTOg?t=1m19s\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uc0p/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uc0p\", \"created\": 1439847128.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818328.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5swgs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Cold as ice.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECold as ice.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5swgs/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5swgs\", \"created\": 1439843562.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439814762.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tskf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"danbh\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_9frjc\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I can almost hear it\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can almost hear it\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tskf/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tskf\", \"created\": 1439845892.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817092.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5twta\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Haroldholt\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_74y6u\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Any one got the original sauce or video?\\n\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAny one got the original sauce or video?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5twta/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5twta\", \"created\": 1439846171.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817371.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tzjl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"RawRoots\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_hx9kl\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"OK. Am I the only one trying to turn up te volume? Heard it crystal clear in my head the first time tho.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOK. Am I the only one trying to turn up te volume? Heard it crystal clear in my head the first time tho.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tzjl/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tzjl\", \"created\": 1439846349.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817549.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u1vm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"TOYLTH\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_pc7ik\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Am I the only one that hears the clash sound when he hits the crash?\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAm I the only one that hears the clash sound when he hits the crash?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u1vm/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u1vm\", \"created\": 1439846498.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817698.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u64d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"caseymae3\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_k7e1s\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"He saw the opportunity and he took it. Smart kid.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe saw the opportunity and he took it. Smart kid.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u64d/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u64d\", \"created\": 1439846763.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817963.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u7ft\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"SugarBear4Real\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_5z518\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Comedy is all about timing\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EComedy is all about timing\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u7ft/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u7ft\", \"created\": 1439846843.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818043.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ubt8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Kid's got great comedic instincts \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EKid\\u0026#39;s got great comedic instincts \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ubt8/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ubt8\", \"created\": 1439847114.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818314.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uca3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"thescariestbear\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_8ti4s\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Now that's fucking talent\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENow that\\u0026#39;s fucking talent\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uca3/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uca3\", \"created\": 1439847144.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818344.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uhuf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Crash665\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_7na85\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I'm assuming these are brothers. Only brothers can have such little regard for the well being of each other.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m assuming these are brothers. Only brothers can have such little regard for the well being of each other.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uhuf/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uhuf\", \"created\": 1439847498.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818698.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5un6h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Sketchables\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_iguwd\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"What did that kid step on a treadmill?\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat did that kid step on a treadmill?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5un6h/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5un6h\", \"created\": 1439847819.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819019.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5unfj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Casparilla\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_9ahap\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"This is making laugh unreasonably hard on a Monday morning.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is making laugh unreasonably hard on a Monday morning.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5unfj/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5unfj\", \"created\": 1439847833.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819033.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uq8q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"peter-bone\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_7t3ox\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Why do people not just post the video? This would be much better with sound.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhy do people not just post the video? This would be much better with sound.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uq8q/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uq8q\", \"created\": 1439847999.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819199.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"body\": \"Sharp kid. \", \"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v1jt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Kill3rKin3\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_5gtr3\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"author_cakeday\": true, \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESharp kid. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v1jt/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v1jt\", \"created\": 1439848635.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819835.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v2x8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"underwatr_cheestrain\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_9bpzv\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"That kid fell so fast it looks like his legs were teleported away from under him\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat kid fell so fast it looks like his legs were teleported away from under him\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v2x8/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v2x8\", \"created\": 1439848712.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819912.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v5l4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"larenardemaigre\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_olqec\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"You can see genuine concern flash across his face for a moment, then it's taken over by the \\\"oh my god, this is my chance\\\" realization.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou can see genuine concern flash across his face for a moment, then it\\u0026#39;s taken over by the \\u0026quot;oh my god, this is my chance\\u0026quot; realization.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v5l4/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v5l4\", \"created\": 1439848859.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820059.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v9rk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Cajunbot\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_4i2zb\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Am I the only one that was looking for the sheep and the snake?\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAm I the only one that was looking for the sheep and the snake?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v9rk/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v9rk\", \"created\": 1439849097.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820297.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wmd1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"fort_wendy\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5vf4x\", \"score\": 1, \"author_fullname\": \"t2_fz6ou\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Username checks out\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUsername checks out\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wmd1/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wmd1\", \"created\": 1439851616.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822816.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5vf4x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"badum_tsss\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_azu89\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"\\u003E\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vf4x/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vf4x\", \"created\": 1439849393.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820593.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5voyp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"per_mare_per_terras\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_mlxxo\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Sound please.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESound please.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5voyp/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5voyp\", \"created\": 1439849915.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821115.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vq0k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"load231\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_9sz3f\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Gif? Wheres the video? \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGif? Wheres the video? \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vq0k/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vq0k\", \"created\": 1439849972.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821172.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vqto\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Khaki_Steve\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_liu48\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Did you touch my drumset? \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDid you touch my drumset? \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vqto/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vqto\", \"created\": 1439850015.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821215.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vv3o\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"ass_drough_not\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_mio9n\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"What caused the kid to fall, I wonder? Looks like his foot got yanked out from under him. \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat caused the kid to fall, I wonder? Looks like his foot got yanked out from under him. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vv3o/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vv3o\", \"created\": 1439850234.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821434.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vvba\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"A_Rim_Shot_For_You\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_77dzw\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[I'll allow it.](http://instantrimshot.com/classic/?sound=rimshot\\u0026play=true)\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://instantrimshot.com/classic/?sound=rimshot\\u0026amp;play=true\\\"\\u003EI\\u0026#39;ll allow it.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vvba/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vvba\", \"created\": 1439850244.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821444.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vysm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Rens1997\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_bx99o\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"/r/noisygifs\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/noisygifs\\\"\\u003E/r/noisygifs\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vysm/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vysm\", \"created\": 1439850423.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821623.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5w3qk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"ljman\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_emake\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Am I the only one that can, almost, hear the sound of the drums by only watching this. \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAm I the only one that can, almost, hear the sound of the drums by only watching this. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w3qk/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5w3qk\", \"created\": 1439850672.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821872.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wium\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"DANNYonPC\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_7w12q\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Oh my god, something that actually made me laugh in /r/funny!\\n\\ntn for that /u/your_local_librarian\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh my god, something that actually made me laugh in \\u003Ca href=\\\"/r/funny\\\"\\u003E/r/funny\\u003C/a\\u003E!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Etn for that \\u003Ca href=\\\"/u/your_local_librarian\\\"\\u003E/u/your_local_librarian\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wium/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wium\", \"created\": 1439851443.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822643.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wlpi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"neverbeen1\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_nhepo\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"100% going places\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E100% going places\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wlpi/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wlpi\", \"created\": 1439851585.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822785.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wn87\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"genghisruled\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_c4h4t\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"without missing a beat\\n\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewithout missing a beat\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wn87/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wn87\", \"created\": 1439851659.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822859.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wo2z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"kerred\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_5d6sw\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Eh not quite my tempo\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EEh not quite my tempo\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wo2z/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wo2z\", \"created\": 1439851702.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822902.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wohm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"dragoonjefy\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_a24zm\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"The drummer has a split-second reaction, in which I can almost guarantee, the following ran through his head:\\n\\n\\\"Oh my god!! He fell.. WAIT!! This is it! This is the PERFECT moment.. All my training is about to pay off!!! DO IT!\\\"\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe drummer has a split-second reaction, in which I can almost guarantee, the following ran through his head:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;Oh my god!! He fell.. WAIT!! This is it! This is the PERFECT moment.. All my training is about to pay off!!! DO IT!\\u0026quot;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wohm/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wohm\", \"created\": 1439851721.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822921.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wpss\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Christ he went down with some speed. Almost free fall. \\n\\n\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EChrist he went down with some speed. Almost free fall. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wpss/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wpss\", \"created\": 1439851785.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822985.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xgyd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"caitlinisgreatlin\", \"can_mod_post\": false, \"created_utc\": 1439824319.0, \"send_replies\": true, \"parent_id\": \"t1_cu5x3nm\", \"score\": 2, \"author_fullname\": \"t2_cw4ao\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Maybe. \\r\\rI'm a teacher, so I see a lot of kids. They all wear the same damn clothes.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMaybe. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m a teacher, so I see a lot of kids. They all wear the same damn clothes.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xgyd/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5xgyd\", \"created\": 1439853119.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5x3nm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Windowlicker79\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5wqkv\", \"score\": 0, \"author_fullname\": \"t2_g84bq\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"I don't track and note the clothing habits of enough 12 year old boys to give an educated answer to your question.\\n\\nSo maybe it is just you?\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t track and note the clothing habits of enough 12 year old boys to give an educated answer to your question.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo maybe it is just you?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5x3nm/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5x3nm\", \"created\": 1439852465.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439823665.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5wqkv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"caitlinisgreatlin\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_cw4ao\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Is it just me or does every boy under the age of 12 have that dark gray/lime green hoodie??\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs it just me or does every boy under the age of 12 have that dark gray/lime green hoodie??\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wqkv/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wqkv\", \"created\": 1439851823.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439823023.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wt45\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"zammalad\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_e06nc\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Someone needs to add sound to this\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESomeone needs to add sound to this\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wt45/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wt45\", \"created\": 1439851951.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439823151.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wwq8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Instincts\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_5lfbj\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"That's actually some great showmanship, especially for his age.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u0026#39;s actually some great showmanship, especially for his age.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wwq8/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wwq8\", \"created\": 1439852128.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439823328.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5x1ih\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Jmersh\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_4u9be\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"You can't teach that kind of comedic timing \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou can\\u0026#39;t teach that kind of comedic timing \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5x1ih/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5x1ih\", \"created\": 1439852362.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439823562.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5x49x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"amolad\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_697uq\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Future *Tonight Show* band drummer.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFuture \\u003Cem\\u003ETonight Show\\u003C/em\\u003E band drummer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5x49x/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5x49x\", \"created\": 1439852496.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439823696.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5x4gu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"nahfoo\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_bbgle\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Did he step on a skateboard?\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDid he step on a skateboard?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5x4gu/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5x4gu\", \"created\": 1439852505.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439823705.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xb47\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"1003rp\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_juma4\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"/r/loudgifs \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/loudgifs\\\"\\u003E/r/loudgifs\\u003C/a\\u003E \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xb47/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5xb47\", \"created\": 1439852835.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439824035.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xd08\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Count_Awesome\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_fg8bb\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Nope, not my tempo. \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENope, not my tempo. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xd08/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5xd08\", \"created\": 1439852929.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439824129.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ye1s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Kugel\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_8dedb\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[had to be done](https://gifsound.com/?gifv=eoF76hj\\u0026v=6zXDo4dL7SU\\u0026s=2)\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://gifsound.com/?gifv=eoF76hj\\u0026amp;v=6zXDo4dL7SU\\u0026amp;s=2\\\"\\u003Ehad to be done\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ye1s/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ye1s\", \"created\": 1439854695.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439825895.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ynq2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Lowgarr\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_fjxvl\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"https://www.youtube.com/watch?v=BdsQBqN7bCw\\u0026feature=youtu.be\\u0026t=15s\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=BdsQBqN7bCw\\u0026amp;feature=youtu.be\\u0026amp;t=15s\\\"\\u003Ehttps://www.youtube.com/watch?v=BdsQBqN7bCw\\u0026amp;feature=youtu.be\\u0026amp;t=15s\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ynq2/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ynq2\", \"created\": 1439855139.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439826339.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5zia9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"SonOfTK421\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_798fz\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Cheeky little bastard. He makes me so happy.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECheeky little bastard. He makes me so happy.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5zia9/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5zia9\", \"created\": 1439856540.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439827740.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5zm42\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"soonpls\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_h9m65\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"This kid is going places\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis kid is going places\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5zm42/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5zm42\", \"created\": 1439856712.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439827912.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5zw1h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"ljs009\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_mv3f0\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"https://www.youtube.com/watch?v=6zXDo4dL7SU\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=6zXDo4dL7SU\\\"\\u003Ehttps://www.youtube.com/watch?v=6zXDo4dL7SU\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5zw1h/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5zw1h\", \"created\": 1439857160.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439828360.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu60csr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"thorhyphenaxe\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_nd9uj\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Oh. My god. It's perfect.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh. My god. It\\u0026#39;s perfect.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu60csr/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu60csr\", \"created\": 1439857915.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439829115.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu60ivx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"DishinDimes\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_f9zp2\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"That kid is on point. Perfect timing.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat kid is on point. Perfect timing.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu60ivx/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu60ivx\", \"created\": 1439858187.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439829387.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu61po6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"H00NER\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_grw2y\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[Rimshot!](http://instantrimshot.com/classic/?sound=rimshot\\u0026play=true)\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://instantrimshot.com/classic/?sound=rimshot\\u0026amp;play=true\\\"\\u003ERimshot!\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61po6/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu61po6\", \"created\": 1439860061.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439831261.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu61qj1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"problatikal\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_b0t3d\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Bad Pun Tsss\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBad Pun Tsss\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61qj1/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu61qj1\", \"created\": 1439860101.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439831301.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu61t06\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Gravelord-_Nito\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_aulvp\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"How come every little boy ever ALWAYS is wearing that exact same hoodie\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow come every little boy ever ALWAYS is wearing that exact same hoodie\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61t06/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu61t06\", \"created\": 1439860211.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439831411.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu64k2r\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"andhe1000\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_p7ktd\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Comedy is all about timing\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EComedy is all about timing\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu64k2r/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu64k2r\", \"created\": 1439864405.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439835605.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu64n5o\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"bryandenny71\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_5zbh2\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"That kid was on point!\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat kid was on point!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu64n5o/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu64n5o\", \"created\": 1439864530.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439835730.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6568d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"The_Celtic_Chemist\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_5elnq\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Without missing a beat..\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWithout missing a beat..\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6568d/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6568d\", \"created\": 1439865325.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439836525.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu67blf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"mindtrapped\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_93tls\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"This kids going places.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis kids going places.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu67blf/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu67blf\", \"created\": 1439868526.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439839726.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu67zs9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"SkylarMelody\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_pljhg\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"LOL\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELOL\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu67zs9/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu67zs9\", \"created\": 1439869532.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439840732.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu68ke1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"__z__z__\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_gi470\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Is that Jake Lloyd?\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs that Jake Lloyd?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu68ke1/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu68ke1\", \"created\": 1439870372.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439841572.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu68z7z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"gingerninja361\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_mho2y\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Kid's like \\\"My time has come.\\\"\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EKid\\u0026#39;s like \\u0026quot;My time has come.\\u0026quot;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu68z7z/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu68z7z\", \"created\": 1439870988.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439842188.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6a3l7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"He'll be hear all week, folks!\\n\\n...because he broke his ankle and the only thing that little drummer boy can pick up is a decent beat.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe\\u0026#39;ll be hear all week, folks!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E...because he broke his ankle and the only thing that little drummer boy can pick up is a decent beat.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6a3l7/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6a3l7\", \"created\": 1439872662.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439843862.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6a8w9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Wsnjr\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_lbq20\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"\\\"Sorry, not quite my tempo\\\" - Terence Fletcher \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026quot;Sorry, not quite my tempo\\u0026quot; - Terence Fletcher \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6a8w9/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6a8w9\", \"created\": 1439872878.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439844078.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6c6tm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"CallmeFree\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_cggnv\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"This kid is going places in life\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis kid is going places in life\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6c6tm/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6c6tm\", \"created\": 1439875811.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439847011.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6e11e\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"vHAL_9000\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_hwpa8\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"He will remember this moment forever. Soo smooth...\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe will remember this moment forever. Soo smooth...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6e11e/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6e11e\", \"created\": 1439878838.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439850038.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6g16b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"MrSpof\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_3e96d\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Truly a gif for the ages.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETruly a gif for the ages.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6g16b/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6g16b\", \"created\": 1439882346.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439853546.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6hgi9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"DoxBox\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_5fkoh\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"That kid is going places. Possibly even college places.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat kid is going places. Possibly even college places.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6hgi9/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6hgi9\", \"created\": 1439884937.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439856137.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6iocg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"swordsman3000\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_5b5pc\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Having a brother must be fun. \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHaving a brother must be fun. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6iocg/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6iocg\", \"created\": 1439887107.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439858307.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6kf6y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Tracy_Ray\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_phfub\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"drum is cool\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Edrum is cool\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6kf6y/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6kf6y\", \"created\": 1439890234.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439861434.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6lknl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"/r/noisygifs\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/noisygifs\\\"\\u003E/r/noisygifs\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6lknl/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6lknl\", \"created\": 1439892309.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439863509.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6pfhw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"annekat\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_jm8w\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"What's the difference between a pizza and a drummer? A drummer can't feed a family of 4.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat\\u0026#39;s the difference between a pizza and a drummer? A drummer can\\u0026#39;t feed a family of 4.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6pfhw/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6pfhw\", \"created\": 1439899538.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439870738.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu737kd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"bcruz3\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_dqnlt\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Comedy is all about timing.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EComedy is all about timing.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu737kd/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu737kd\", \"created\": 1439939155.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439910355.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cuau8wb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"djones0305\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_7sz0i\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"That looks like CARRRLRLLLLLLRLRLRL\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat looks like CARRRLRLLLLLLRLRLRL\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cuau8wb/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cuau8wb\", \"created\": 1440205031.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1440176231.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cuqtc08\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Revenant38\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_d2sy2\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"He saw his chance, and he took it!\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe saw his chance, and he took it!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cuqtc08/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cuqtc08\", \"created\": 1441425965.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1441397165.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cwtrkl1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"keepcalmandswagon\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_rqjne\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"savage alert\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Esavage alert\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cwtrkl1/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cwtrkl1\", \"created\": 1447074040.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1447045240.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cy6jjhy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Verithos\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_9ex2i\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"This was amazing. \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis was amazing. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cy6jjhy/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cy6jjhy\", \"created\": 1450733067.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1450704267.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"czi61ft\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Romero1993\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_b3afo\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"He saw a opportunity and he took it\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe saw a opportunity and he took it\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/czi61ft/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_czi61ft\", \"created\": 1454235453.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1454206653.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5q78q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"ThoreJordan\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_p65dn\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"good\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Egood\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5q78q/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5q78q\", \"created\": 1439833468.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439804668.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vryn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"eyeaim2missbehave\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_5qhac\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"That kid's timing is on point.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat kid\\u0026#39;s timing is on point.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vryn/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vryn\", \"created\": 1439850074.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821274.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wttg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Fartikus\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_6z5ky\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Man if this was staged any more than it was, they'd be at a concert.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMan if this was staged any more than it was, they\\u0026#39;d be at a concert.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wttg/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wttg\", \"created\": 1439851986.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439823186.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5srn0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"It's there a video\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u0026#39;s there a video\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5srn0/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5srn0\", \"created\": 1439843175.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439814375.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -10, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5whnb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"myblindy\", \"can_mod_post\": false, \"created_utc\": 1439822582.0, \"send_replies\": true, \"parent_id\": \"t1_cu5vam9\", \"score\": 1, \"author_fullname\": \"t2_93z9x\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Pff like stupid ever stopped being in style. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPff like stupid ever stopped being in style. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5whnb/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5whnb\", \"created\": 1439851382.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5vam9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"caseycoold\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5usjd\", \"score\": 3, \"author_fullname\": \"t2_8jg1v\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Youtube and downvotes, must be rickroll. Yay for stupid making a come back.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYoutube and downvotes, must be rickroll. Yay for stupid making a come back.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vam9/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vam9\", \"created\": 1439849146.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820346.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 4, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v65g\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"WinterFresh04\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5usjd\", \"score\": 4, \"author_fullname\": \"t2_7fndy\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Nice try but that link was already purple.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENice try but that link was already purple.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v65g/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v65g\", \"created\": 1439848892.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820092.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ux4d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Say_Whatt\", \"can_mod_post\": false, \"created_utc\": 1439819595.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uvb1\", \"score\": 1, \"author_fullname\": \"t2_is7nr\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Thanks! It wasn't easy, it's a really small channel with very few subscribers.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks! It wasn\\u0026#39;t easy, it\\u0026#39;s a really small channel with very few subscribers.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ux4d/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ux4d\", \"created\": 1439848395.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uvb1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"theitgrunt\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5usjd\", \"score\": 0, \"author_fullname\": \"t2_4foyh\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Great Job! ;-)\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGreat Job! ;-)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uvb1/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uvb1\", \"created\": 1439848293.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819493.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5usjd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Say_Whatt\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -10, \"author_fullname\": \"t2_is7nr\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[Found it!](https://www.youtube.com/watch?v=dQw4w9WgXcQ)\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=dQw4w9WgXcQ\\\"\\u003EFound it!\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5usjd/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5usjd\", \"created\": 1439848134.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819334.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5udi4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"DaNubIzHere\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 0, \"author_fullname\": \"t2_brg54\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"http://i.imgur.com/gP0zuQg.gifv\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://i.imgur.com/gP0zuQg.gifv\\\"\\u003Ehttp://i.imgur.com/gP0zuQg.gifv\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5udi4/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5udi4\", \"created\": 1439847221.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818421.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -7, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -5, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5qnpc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"created_utc\": 1439806701.0, \"send_replies\": true, \"parent_id\": \"t1_cu5qn08\", \"score\": -5, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"You do what you must for karma. \", \"edited\": false, \"author_flair_css_class\": null, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou do what you must for karma. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5qnpc/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5qnpc\", \"created\": 1439835501.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 2, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5qn08\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5p1yt\", \"score\": 0, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[deleted]\", \"edited\": 1525627902.0, \"author_flair_css_class\": null, \"collapsed\": false, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[deleted]\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5qn08/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5qn08\", \"created\": 1439835421.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439806621.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 1, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5p1yt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -7, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Wanted to repost this in /r/ChildrenFallingOver but OP already posted it there. ;_;\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWanted to repost this in \\u003Ca href=\\\"/r/ChildrenFallingOver\\\"\\u003E/r/ChildrenFallingOver\\u003C/a\\u003E but OP already posted it there. ;_;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5p1yt/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5p1yt\", \"created\": 1439828530.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439799730.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5sl6a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"heebert\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 0, \"author_fullname\": \"t2_5717q\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"First post to make me literally laugh out loud this week. Thanks\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFirst post to make me literally laugh out loud this week. Thanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5sl6a/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5sl6a\", \"created\": 1439842645.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439813845.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ubuu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"ryanthecoliflower\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 0, \"author_fullname\": \"t2_pmf82\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"HAHAHAHAHA YES VERY GOOD VERY NICE VERY WOW\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHAHAHAHAHA YES VERY GOOD VERY NICE VERY WOW\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ubuu/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ubuu\", \"created\": 1439847117.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818317.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ubza\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Red-Jester\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 0, \"author_fullname\": \"t2_8v0z8\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Im glad this is a gif and not a video because hearing that drum would have been so crap.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIm glad this is a gif and not a video because hearing that drum would have been so crap.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ubza/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ubza\", \"created\": 1439847125.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818325.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ue9c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"icu_\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 0, \"author_fullname\": \"t2_3bog9\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I didn't realize they were still teaching *Ba Dum Tsss* in schools.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI didn\\u0026#39;t realize they were still teaching \\u003Cem\\u003EBa Dum Tsss\\u003C/em\\u003E in schools.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ue9c/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ue9c\", \"created\": 1439847271.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818471.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uekc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"hehehe979797\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 0, \"author_fullname\": \"t2_hsqjr\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"*funny drum sound*\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cem\\u003Efunny drum sound\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uekc/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uekc\", \"created\": 1439847294.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818494.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ulo5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"The_Withheld_Name\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 0, \"author_fullname\": \"t2_ft57l\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"*tap tap crash\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E*tap tap crash\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ulo5/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ulo5\", \"created\": 1439847727.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818927.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v93f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"twashereandthere\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 0, \"author_fullname\": \"t2_odw7l\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Didn't miss a beat. \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDidn\\u0026#39;t miss a beat. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v93f/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v93f\", \"created\": 1439849060.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820260.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5va4c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"kwid\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 0, \"author_fullname\": \"t2_4taax\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Two drums and symbol fall off a cliff...\\n\\n\\nBa Dum Tsss\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETwo drums and symbol fall off a cliff...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBa Dum Tsss\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5va4c/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5va4c\", \"created\": 1439849117.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820317.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vl9j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"match6969\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 0, \"author_fullname\": \"t2_phnih\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"http://i.imgur.com/gP0zuQg.gifv\\n\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://i.imgur.com/gP0zuQg.gifv\\\"\\u003Ehttp://i.imgur.com/gP0zuQg.gifv\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vl9j/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vl9j\", \"created\": 1439849717.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820917.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vsjk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"cocobear13\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 0, \"author_fullname\": \"t2_bxxfa\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I laughed harder than I should have at that kid falling. Thanks!!!!!! :)\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI laughed harder than I should have at that kid falling. Thanks!!!!!! :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vsjk/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vsjk\", \"created\": 1439850104.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821304.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5x7xp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"RoseL123\", \"can_mod_post\": false, \"created_utc\": 1439823878.0, \"send_replies\": true, \"parent_id\": \"t1_cu5x0zo\", \"score\": 1, \"author_fullname\": \"t2_gqqxe\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"But it's only when he hits the brass thingy.\\n\\nIt sounds really far-off in my right ear.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBut it\\u0026#39;s only when he hits the brass thingy.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt sounds really far-off in my right ear.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5x7xp/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5x7xp\", \"created\": 1439852678.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5x0zo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Windowlicker79\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5wtzp\", \"score\": 1, \"author_fullname\": \"t2_g84bq\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"That might be tinnitus. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat might be tinnitus. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5x0zo/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5x0zo\", \"created\": 1439852336.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439823536.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5wtzp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"RoseL123\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 0, \"author_fullname\": \"t2_gqqxe\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Am I the only one that heard the 'tsss'?\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAm I the only one that heard the \\u0026#39;tsss\\u0026#39;?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wtzp/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wtzp\", \"created\": 1439851995.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439823195.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu60xnz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"TheRealBabyCave\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 0, \"author_fullname\": \"t2_a2j8k\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"PSA:\\n\\nThis is not called a \\\"rimshot.\\\"\\n\\nThis is called a \\\"sting.\\\"\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPSA:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is not called a \\u0026quot;rimshot.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is called a \\u0026quot;sting.\\u0026quot;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu60xnz/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu60xnz\", \"created\": 1439858831.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439830031.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6jrez\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"TermyYT\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 0, \"author_fullname\": \"t2_mxs5m\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"He caught me trippin'.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe caught me trippin\\u0026#39;.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6jrez/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6jrez\", \"created\": 1439889056.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439860256.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -8, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 8, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5patn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"Mogg_the_Poet\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5onj0\", \"score\": 8, \"author_fullname\": \"t2_8seui\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Hi *me trying to make a comment on reddit*!\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi \\u003Cem\\u003Eme trying to make a comment on reddit\\u003C/em\\u003E!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5patn/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5patn\", \"created\": 1439829544.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439800744.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 4, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5pn5x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": false, \"author\": \"not_funnyname\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5onj0\", \"score\": 4, \"author_fullname\": \"t2_ixtgq\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"*Ba Dum Tsss*\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cem\\u003EBa Dum Tsss\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5pn5x/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5pn5x\", \"created\": 1439831023.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439802223.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -7, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5oumb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Matti_Matti_Matti\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5onj0\", \"score\": -7, \"author_fullname\": \"t2_57b03\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"[http://i.imgur.com/eoF76hj.gifv](http://i.imgur.com/eoF76hj.gifv)\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://i.imgur.com/eoF76hj.gifv\\\"\\u003Ehttp://i.imgur.com/eoF76hj.gifv\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5oumb/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5oumb\", \"created\": 1439827694.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439798894.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5onj0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"lovestospooj420\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -8, \"author_fullname\": \"t2_dz5rh\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"This is me trying to make a comment on reddit\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is me trying to make a comment on reddit\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5onj0/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5onj0\", \"created\": 1439826887.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439798087.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -9, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 0, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5rhz7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Thastuff\", \"can_mod_post\": false, \"created_utc\": 1439810135.0, \"send_replies\": true, \"parent_id\": \"t1_cu5pdr4\", \"score\": 0, \"author_fullname\": \"t2_9l5j1\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"meme danks, poo. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ememe danks, poo. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5rhz7/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5rhz7\", \"created\": 1439838935.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5pdr4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"trolol_12\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5payz\", \"score\": -3, \"author_fullname\": \"t2_6eqmd\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"me thanks, too. \", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eme thanks, too. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5pdr4/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5pdr4\", \"created\": 1439829882.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439801082.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5payz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"870\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -9, \"author_fullname\": \"t2_611hs\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"me_irl\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eme_irl\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5payz/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5payz\", \"created\": 1439829562.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439800762.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5unrv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Ormusn2o\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -1, \"author_fullname\": \"t2_80nsh\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I cant belive he's done that.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI cant belive he\\u0026#39;s done that.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5unrv/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5unrv\", \"created\": 1439847854.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819054.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vrz5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"iamRambo88\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -1, \"author_fullname\": \"t2_oc1j1\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"when your new to reddit and it says submit links to other reddit stories? does that mean video links to stuff i wanna post?\\n\\ne.g \\nhttps://www.youtube.com/watch?v=MQgP96uTLTU\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewhen your new to reddit and it says submit links to other reddit stories? does that mean video links to stuff i wanna post?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ee.g \\n\\u003Ca href=\\\"https://www.youtube.com/watch?v=MQgP96uTLTU\\\"\\u003Ehttps://www.youtube.com/watch?v=MQgP96uTLTU\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vrz5/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vrz5\", \"created\": 1439850074.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821274.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xl0c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"exclaimdi1000\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -1, \"author_fullname\": \"t2_ot6ak\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Why do people not just post the video? This would be much better with sound.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhy do people not just post the video? This would be much better with sound.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xl0c/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5xl0c\", \"created\": 1439853320.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439824520.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6rlqv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Reason_to_Smile\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -1, \"author_fullname\": \"t2_pldh1\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"http://i.imgur.com/luKjJ0o.gifv\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://i.imgur.com/luKjJ0o.gifv\\\"\\u003Ehttp://i.imgur.com/luKjJ0o.gifv\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6rlqv/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6rlqv\", \"created\": 1439904775.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439875975.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -12, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u961\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"pibroch\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tx53\", \"score\": 1, \"author_fullname\": \"t2_5ymxz\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Was at least with you until you brought up the ride. He could have muted the crash, but there are plenty of examples that I can think of to merit using the crash in a rimshot.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWas at least with you until you brought up the ride. He could have muted the crash, but there are plenty of examples that I can think of to merit using the crash in a rimshot.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u961/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u961\", \"created\": 1439846951.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818151.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tx53\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Doonie\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -12, \"author_fullname\": \"t2_6dz1w\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Ugh, I'm sorry Reddit in advance. But I have to be this guy. That's not a proper rimshot. Right tom, left tom, crash? would sound more like: \\\"Bom Bum KSHHHHHH\\\" (read aloud). A proper rimshot should be snare, snare, hi-hat. or snare, snare, ride.\\n\\nSo, to everyone saying the gif is better with sound.. You're wrong. It's better that you play your own rimshot in your head.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUgh, I\\u0026#39;m sorry Reddit in advance. But I have to be this guy. That\\u0026#39;s not a proper rimshot. Right tom, left tom, crash? would sound more like: \\u0026quot;Bom Bum KSHHHHHH\\u0026quot; (read aloud). A proper rimshot should be snare, snare, hi-hat. or snare, snare, ride.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo, to everyone saying the gif is better with sound.. You\\u0026#39;re wrong. It\\u0026#39;s better that you play your own rimshot in your head.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tx53/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tx53\", \"created\": 1439846192.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817392.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -5, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5t92s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"TheTrampRO\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -5, \"author_fullname\": \"t2_6k3go\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I actually laughed out loud at something on r/funny. Somebody check Hell and see if it has frozen over. \\n\\nAll my upvotes!\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI actually laughed out loud at something on \\u003Ca href=\\\"/r/funny\\\"\\u003Er/funny\\u003C/a\\u003E. Somebody check Hell and see if it has frozen over. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll my upvotes!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5t92s/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5t92s\", \"created\": 1439844512.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439815712.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tead\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"lava1o\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -2, \"author_fullname\": \"t2_8khta\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"He saw the chance and he took it, this kid is going places\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe saw the chance and he took it, this kid is going places\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tead/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tead\", \"created\": 1439844904.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816104.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tt8h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"microdon23\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -2, \"author_fullname\": \"t2_ki3aa\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Good timing. Kids got a future. \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGood timing. Kids got a future. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tt8h/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tt8h\", \"created\": 1439845938.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817138.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v9yd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"idosillythings\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -2, \"author_fullname\": \"t2_6o7wd\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"In case anyone is interested, this drum action is referred to as a [rimshot.](http://instantrimshot.com/)\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn case anyone is interested, this drum action is referred to as a \\u003Ca href=\\\"http://instantrimshot.com/\\\"\\u003Erimshot.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v9yd/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v9yd\", \"created\": 1439849108.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820308.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5twf5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"sighunzips\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -3, \"author_fullname\": \"t2_pkw9t\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I get the feeling this kid is someone who rises to the occasion.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI get the feeling this kid is someone who rises to the occasion.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5twf5/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5twf5\", \"created\": 1439846145.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817345.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -8, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5oufs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Matti_Matti_Matti\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -8, \"author_fullname\": \"t2_57b03\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I really like it when the title matches the picture.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI really like it when the title matches the picture.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5oufs/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5oufs\", \"created\": 1439827672.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439798872.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -26, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5pbdh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Mogg_the_Poet\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -26, \"author_fullname\": \"t2_8seui\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Punch line.\\n\\nThe title shouldn't be the\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPunch line.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe title shouldn\\u0026#39;t be the\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5pbdh/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5pbdh\", \"created\": 1439829607.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439800807.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": -18, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5rxpy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"ryanb-\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -18, \"author_fullname\": \"t2_izx02\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"i can has dilicious sauce [ploz?\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ei can has dilicious sauce [ploz?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5rxpy/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5rxpy\", \"created\": 1439840530.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439811730.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}]" + "string": "[{\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": 1, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"funny\", \"selftext\": \"\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Ba Dum Tsss\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/funny\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"top_awarded_type\": null, \"parent_whitelist_status\": \"all_ads\", \"hide_score\": false, \"name\": \"t3_3hahrw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.94, \"author_flair_background_color\": null, \"ups\": 29788, \"domain\": \"i.imgur.com\", \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_oh64a\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 29788, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/5e3u8ceMZN0CYelVW2cPTp-R2o_lRGgIrFUCqN-p-pE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"previous_visits\": [1636062445.0, 1636063577.0, 1636064643.0, 1636065644.0, 1636067281.0, 1636068315.0, 1636069286.0, 1636070400.0, 1636074540.0, 1636132806.0], \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"subreddit_type\": \"public\", \"created\": 1439797480.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"http://i.imgur.com/eoF76hj.gifv\", \"view_count\": null, \"archived\": true, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?format=png8\\u0026s=8fce0e240021fae6057e6e9d0bc6d01e55c8d8be\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=0043d5d451641f59d83957debb5c2d5debbffe6a\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=8c6193562e873cad671f8be0cc1ded20cf8e4e40\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=fdc55cdb3f665ea544d0016c80251f67172c75f2\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026crop=smart\\u0026format=png8\\u0026s=b6a454102e2e35ee91634a3970a0b1946d51667b\", \"width\": 640, \"height\": 360}], \"variants\": {\"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?s=63556b2af71b62a2c6349aad5b058320301bc5d8\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026crop=smart\\u0026s=5d45ebe65c5b794b092185f83bf26d204a8dc3cd\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026crop=smart\\u0026s=9792339b06b9446433cd0b96643f3e34344d9eea\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026crop=smart\\u0026s=88703ea358f721aa004b9a53ffad705ff75ec297\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026crop=smart\\u0026s=05d76587afce21bcab664ce75f8dd28262e19820\", \"width\": 640, \"height\": 360}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?format=mp4\\u0026s=33e82bc7191fc664e87b3024b8b7668c2e2d9912\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026format=mp4\\u0026s=12a22c0f2b96a8839e3dafe719386935d125bea5\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026format=mp4\\u0026s=b8ca79735d3686d3fb19a2eb85b497a309693977\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026format=mp4\\u0026s=5235abf63a2395c43fc5696fa2d37766ea81deaf\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026format=mp4\\u0026s=418110d4a11d29ef741cac5d463bf552385902b4\", \"width\": 640, \"height\": 360}]}}, \"id\": \"TWpgQy5a3ucVCvWlwGPDbYeZk6FAbbk-f2WKWBi7pVY\"}], \"reddit_video_preview\": {\"bitrate_kbps\": 800, \"fallback_url\": \"https://v.redd.it/vxahemsz24i71/DASH_360.mp4\", \"height\": 360, \"width\": 639, \"scrubber_media_url\": \"https://v.redd.it/vxahemsz24i71/DASH_96.mp4\", \"dash_url\": \"https://v.redd.it/vxahemsz24i71/DASHPlaylist.mpd\", \"duration\": 3, \"hls_url\": \"https://v.redd.it/vxahemsz24i71/HLSPlaylist.m3u8\", \"is_gif\": true, \"transcoding_status\": \"completed\"}, \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"mod_note\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh33\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"num_reports\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"3hahrw\", \"is_robot_indexable\": true, \"num_duplicates\": 9, \"report_reasons\": null, \"author\": \"your_local_librarian\", \"discussion_type\": null, \"num_comments\": 529, \"send_replies\": true, \"media\": null, \"contest_mode\": false, \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/\", \"whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://i.imgur.com/eoF76hj.gifv\", \"subreddit_subscribers\": 37829696, \"created_utc\": 1439797480.0, \"num_crossposts\": 0, \"mod_reports\": [], \"is_video\": false}}], \"before\": null}}, {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uh2p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"POI_Harold-Finch\", \"can_mod_post\": false, \"created_utc\": 1439818650.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uayl\", \"score\": -2, \"author_fullname\": \"t2_k3qh3\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I'd like to meet his trainer\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5uh2p\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;d like to meet his trainer\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uh2p/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818650.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v6eb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"YOUR_MOTHERS_BUTT_\", \"can_mod_post\": false, \"created_utc\": 1439820106.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uvey\", \"score\": 4, \"author_fullname\": \"t2_jvxwt\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"No, but I do want to go to Trader Vicks\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5v6eb\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo, but I do want to go to Trader Vicks\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v6eb/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820106.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 4}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uvey\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"CornCobMcGee\", \"can_mod_post\": false, \"created_utc\": 1439819500.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uinp\", \"score\": -1, \"author_fullname\": \"t2_9b7a9\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Do you want to get caught in the rain?\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5uvey\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDo you want to get caught in the rain?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uvey/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819500.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wqxe\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"KimJongIlSunglasses\", \"can_mod_post\": false, \"created_utc\": 1439823040.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uinp\", \"score\": -1, \"author_fullname\": \"t2_4jy2b\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"And walks in the rain. \", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5wqxe\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAnd walks in the rain. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wqxe/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439823040.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6da83\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"aaronrenoawesome\", \"can_mod_post\": false, \"created_utc\": 1439848786.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uinp\", \"score\": 3, \"author_fullname\": \"t2_61bfe\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Draw blood. \", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu6da83\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDraw blood. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6da83/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439848786.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uinp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"YOUR_MOTHERS_BUTT_\", \"can_mod_post\": false, \"created_utc\": 1439818748.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uayl\", \"score\": 9, \"author_fullname\": \"t2_jvxwt\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Now i want a Pina colada...\\n\\nEdit: Does nobody else know how the god damn song goes?!?\\n\\n'He was drinking a pina colada at trader vicks'\\n\\nAnd his hair was perfect\\n\\nDIDT!\\n\\nAROOOOOOOOOOOO\", \"edited\": 1439843340.0, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5uinp\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENow i want a Pina colada...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: Does nobody else know how the god damn song goes?!?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026#39;He was drinking a pina colada at trader vicks\\u0026#39;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAnd his hair was perfect\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EDIDT!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAROOOOOOOOOOOO\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uinp/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818748.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 9}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uayl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"benbrennan\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5u02p\", \"score\": 15, \"author_fullname\": \"t2_gd7uc\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Ha. I'd like to meet his tailor. \", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5uayl\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHa. I\\u0026#39;d like to meet his tailor. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uayl/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818260.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818260.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 15}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5u02p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"3rd_Shift_Tech_Man\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tu76\", \"score\": 64, \"author_fullname\": \"t2_77ub1\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"\\n\\nAaaaooooooh, werewolves of London!\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5u02p\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAaaaooooooh, werewolves of London!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u02p/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817583.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817583.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 64}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tu76\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"aaronrenoawesome\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tlxl\", \"score\": 102, \"author_fullname\": \"t2_61bfe\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"...and his hair was perfect. \", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5tu76\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E...and his hair was perfect. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tu76/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817201.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439817201.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 102}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uipf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"AvatarIII\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tlxl\", \"score\": 2, \"author_fullname\": \"t2_9qv7q\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"He probably doesn't suffer from arrhythmia. \", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5uipf\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe probably doesn\\u0026#39;t suffer from arrhythmia. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uipf/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818750.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439818750.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vv1f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"pheasant-plucker\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tlxl\", \"score\": 1, \"author_fullname\": \"t2_g0vjj\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"As was his pecker.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5vv1f\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs was his pecker.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vv1f/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821431.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439821431.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu624c4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Do_Whatever_You_Like\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tlxl\", \"score\": 1, \"author_fullname\": \"t2_i1o2i\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"that's the same as responding with a faceless gesture no? it didn't make sense the way he said it but I think that's what he meant... \", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu624c4\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethat\\u0026#39;s the same as responding with a faceless gesture no? it didn\\u0026#39;t make sense the way he said it but I think that\\u0026#39;s what he meant... \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu624c4/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439831896.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439831896.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tlxl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"zenofire\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tazd\", \"score\": 86, \"author_fullname\": \"t2_66v98\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Also his accuracy was impeccable\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5tlxl\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAlso his accuracy was impeccable\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tlxl/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439816641.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816641.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 86}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 0, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ucgu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tazd\", \"score\": 0, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"IT WORKS!\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIT WORKS!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ucgu/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ucgu\", \"created\": 1439818356.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818356.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ukgt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"JoeMo81\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tazd\", \"score\": -3, \"author_fullname\": \"t2_7ggsu\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"You want triple entendres? I think I got two for you. Once at the mall I saw a kiosk selling cheap, plastic, oversized, \\\"jewel\\\" encrusted crosses to which I commented \\\"man those are so gaudy! (Could also be taken as goddy for the religious aspect or gotti for the cheesy Italian element.) Second one, a friend once posted a picture of a dingy looking sex store called \\\"romance store\\\" saying \\\"romance store not so romantic\\\" I replied \\\"remember, it's what's inside that counts\\\" (I.e. what they sell in the store is what matters, the old saying to not judge people on superficial looks, and third a sexual reference to having a big penis inside you)\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5ukgt\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou want triple entendres? I think I got two for you. Once at the mall I saw a kiosk selling cheap, plastic, oversized, \\u0026quot;jewel\\u0026quot; encrusted crosses to which I commented \\u0026quot;man those are so gaudy! (Could also be taken as goddy for the religious aspect or gotti for the cheesy Italian element.) Second one, a friend once posted a picture of a dingy looking sex store called \\u0026quot;romance store\\u0026quot; saying \\u0026quot;romance store not so romantic\\u0026quot; I replied \\u0026quot;remember, it\\u0026#39;s what\\u0026#39;s inside that counts\\u0026quot; (I.e. what they sell in the store is what matters, the old saying to not judge people on superficial looks, and third a sexual reference to having a big penis inside you)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ukgt/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818854.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818854.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -3}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xqvj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"barrtender\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5x4jc\", \"score\": 9, \"author_fullname\": \"t2_79vth\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"\\\"Unfortunate happenstance\\\" as in: \\\"That's a bad beat\\\"\\n\\nOr more likely just \\\"hitting something\\\" as in \\\"he beat his head on the ground\\\"\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5xqvj\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026quot;Unfortunate happenstance\\u0026quot; as in: \\u0026quot;That\\u0026#39;s a bad beat\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOr more likely just \\u0026quot;hitting something\\u0026quot; as in \\u0026quot;he beat his head on the ground\\u0026quot;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xqvj/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439824807.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439824807.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 9}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5x4jc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"Zantier\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5wud7\", \"score\": 6, \"author_fullname\": \"t2_3ur2u\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Is there a meaning of \\\"beat\\\" that fits #3?\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5x4jc\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs there a meaning of \\u0026quot;beat\\u0026quot; that fits #3?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5x4jc/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439823709.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439823709.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 6}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5wud7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"barrtender\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uzcs\", \"score\": 6, \"author_fullname\": \"t2_79vth\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"1) he didn't mis-time his playing of a musical instrument. \\n\\n2) he didn't hesitate when seeing the opportunity\\n\\n3) he didn't fail to see the other person fall\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5wud7\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E1) he didn\\u0026#39;t mis-time his playing of a musical instrument. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003E2) he didn\\u0026#39;t hesitate when seeing the opportunity\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E3) he didn\\u0026#39;t fail to see the other person fall\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wud7/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439823213.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439823213.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 6}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uzcs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"BillyTheBanana\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tazd\", \"score\": 14, \"author_fullname\": \"t2_4chi6\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"The third one is a stretch unless I don't get it...\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5uzcs\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe third one is a stretch unless I don\\u0026#39;t get it...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uzcs/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819716.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819716.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 14}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu641qn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"captpiggard\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tazd\", \"score\": 1, \"author_fullname\": \"t2_4r1v8\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Aaaaand all I can think about is The League...\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu641qn\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAaaaand all I can think about is The League...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu641qn/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439834842.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439834842.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tazd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"I_UPVOTE_ARKANSAS\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5t516\", \"score\": 282, \"author_fullname\": \"t2_83t2v\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Is this the elusive triple entendre?\\n\\n\\u003Ehe didn't miss a beat\\n\\nKid is on the drums\\n\\n\\u003Ehe didn't miss a beat\\n\\nKid immediately responded with a faceless gesture \\n\\n\\u003Ehe didn't miss a beat\\n\\nKid witnessed the boy fall helplessly as he hit the floor \", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5tazd\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs this the elusive triple entendre?\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ehe didn\\u0026#39;t miss a beat\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EKid is on the drums\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ehe didn\\u0026#39;t miss a beat\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EKid immediately responded with a faceless gesture \\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ehe didn\\u0026#39;t miss a beat\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EKid witnessed the boy fall helplessly as he hit the floor \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tazd/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439815855.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439815855.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 282}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tb0y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"frittenlord\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5t516\", \"score\": 3, \"author_fullname\": \"t2_jjpjz\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Ba Dum Tss\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5tb0y\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBa Dum Tss\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tb0y/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439815858.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439815858.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 6, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xjcc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Gyossaits\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5urps\", \"score\": 1, \"author_fullname\": \"t2_7nf9e\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"awh lerdy loo\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5xjcc\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eawh lerdy loo\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xjcc/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439824438.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439824438.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5urps\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"PunisherXXV\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tj1j\", \"score\": 1, \"author_fullname\": \"t2_7wo2z\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"oh lawdy\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5urps\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eoh lawdy\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5urps/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819286.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819286.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tj1j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tfh6\", \"score\": 6, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Oh Lord.\", \"edited\": false, \"author_flair_css_class\": null, \"collapsed\": false, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh Lord.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tj1j/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tj1j\", \"created\": 1439816438.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816438.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tfh6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"frittenlord\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tbhx\", \"score\": 40, \"author_fullname\": \"t2_jjpjz\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Ba Pun Tss?\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5tfh6\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBa Pun Tss?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tfh6/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439816192.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816192.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 40}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uh3o\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"SlayterDev\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tbhx\", \"score\": 4, \"author_fullname\": \"t2_94k6y\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"I don't think crescendo is the right word...\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5uh3o\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t think crescendo is the right word...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uh3o/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818652.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818652.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 4}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tbhx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"MadTitan63\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5t516\", \"score\": 13, \"author_fullname\": \"t2_ji7lj\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"If only there was a drum crescendo that illuminated that pun of yours...\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5tbhx\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf only there was a drum crescendo that illuminated that pun of yours...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tbhx/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439815894.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439815894.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 13}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu613zq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"u283\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uhzr\", \"score\": 1, \"author_fullname\": \"t2_cyyh1\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Where's u/a_poem_for_your_sprog when you need him\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu613zq\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhere\\u0026#39;s \\u003Ca href=\\\"/u/a_poem_for_your_sprog\\\"\\u003Eu/a_poem_for_your_sprog\\u003C/a\\u003E when you need him\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu613zq/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439830308.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439830308.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uhzr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"POI_Harold-Finch\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tl6b\", \"score\": 4, \"author_fullname\": \"t2_k3qh3\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"\\u003E he didn't miss a beat.\\n\\n\\u003EI fell off my seat\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5uhzr\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ehe didn\\u0026#39;t miss a beat.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI fell off my seat\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uhzr/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818708.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818708.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 4}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tl6b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"dfsatacs\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5t516\", \"score\": 1, \"author_fullname\": \"t2_mrshs\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I fell off my seat when he didn't miss a beat.\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5tl6b\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI fell off my seat when he didn\\u0026#39;t miss a beat.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tl6b/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439816586.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816586.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 5, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tqpy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"[deleted]\", \"can_mod_post\": false, \"created_utc\": 1439816971.0, \"send_replies\": true, \"parent_id\": \"t1_cu5t516\", \"score\": 5, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I think it was an act to drum up some laughs.\", \"edited\": false, \"author_flair_css_class\": null, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think it was an act to drum up some laughs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tqpy/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tqpy\", \"created\": 1439816971.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5t516\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"Rivster79\", \"can_mod_post\": false, \"created_utc\": 1439815414.0, \"send_replies\": true, \"parent_id\": \"t1_cu5oif1\", \"score\": 634, \"author_fullname\": \"t2_6njhe\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"He didn't miss a beat\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5t516\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe didn\\u0026#39;t miss a beat\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5t516/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439815414.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 634}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tmix\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"KMerrells\", \"can_mod_post\": false, \"created_utc\": 1439816681.0, \"send_replies\": true, \"parent_id\": \"t1_cu5oif1\", \"score\": 32, \"author_fullname\": \"t2_oolny\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"\\\"I know what I must do.\\\"\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5tmix\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026quot;I know what I must do.\\u0026quot;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tmix/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439816681.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 32}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u4od\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"turbogoblin\", \"can_mod_post\": false, \"created_utc\": 1439817871.0, \"send_replies\": true, \"parent_id\": \"t1_cu5oif1\", \"score\": 0, \"author_fullname\": \"t2_7nxcu\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"He really drummed up some applause for that fall.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5u4od\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe really drummed up some applause for that fall.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u4od/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817871.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5un6l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"frittenlord\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5um6y\", \"score\": 8, \"author_fullname\": \"t2_jjpjz\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"You must be fun at parties...\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5un6l\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou must be fun at parties...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5un6l/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819019.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819019.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 8}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5volx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Judo_Guy07\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uvqu\", \"score\": 1, \"author_fullname\": \"t2_d56mi\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"OR. People see what they want to see.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5volx\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOR. People see what they want to see.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5volx/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821097.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821097.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uvqu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"monkey0410\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5um6y\", \"score\": 3, \"author_fullname\": \"t2_apl5j\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"OR. This might be a little comedy skit by these two. And one of the jokes includes falling over. \\n\\nIn this case, drummer boy was right on cue. \", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5uvqu\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOR. This might be a little comedy skit by these two. And one of the jokes includes falling over. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIn this case, drummer boy was right on cue. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uvqu/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819518.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819518.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5um6y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Judo_Guy07\", \"can_mod_post\": false, \"created_utc\": 1439818957.0, \"send_replies\": true, \"parent_id\": \"t1_cu5oif1\", \"score\": -3, \"author_fullname\": \"t2_d56mi\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"The kid doesn't react for a reason.\\n\\nTake a look at his hand on the microphone, the speed at which he falls, and the placement of the body in relation to the microphone stand. Also, note the slight wobble of the microphone stand itself when it is not being touched.\\n\\nThe kid falling was edited in.\\n\\nEDIT: Video could actually be legit.\", \"edited\": 1439827252.0, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5um6y\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe kid doesn\\u0026#39;t react for a reason.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETake a look at his hand on the microphone, the speed at which he falls, and the placement of the body in relation to the microphone stand. Also, note the slight wobble of the microphone stand itself when it is not being touched.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe kid falling was edited in.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: Video could actually be legit.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5um6y/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818957.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -3}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vr6e\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"hardypart\", \"can_mod_post\": false, \"created_utc\": 1439821235.0, \"send_replies\": true, \"parent_id\": \"t1_cu5oif1\", \"score\": 0, \"author_fullname\": \"t2_dbmp3\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"https://i.imgur.com/BbgL7x3h.gifv\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5vr6e\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://i.imgur.com/BbgL7x3h.gifv\\\"\\u003Ehttps://i.imgur.com/BbgL7x3h.gifv\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vr6e/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821235.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5w7hs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"MindOverManter\", \"can_mod_post\": false, \"created_utc\": 1439822064.0, \"send_replies\": true, \"parent_id\": \"t1_cu5oif1\", \"score\": 11, \"author_fullname\": \"t2_hngqv\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"This is the burden all drummers must bear, constantly vigilant for that perfect moment.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5w7hs\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is the burden all drummers must bear, constantly vigilant for that perfect moment.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w7hs/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439822064.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 11}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wwcs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Tummes\", \"can_mod_post\": false, \"created_utc\": 1439823310.0, \"send_replies\": true, \"parent_id\": \"t1_cu5oif1\", \"score\": 1, \"author_fullname\": \"t2_3h67d\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Ba Dum Piss\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5wwcs\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBa Dum Piss\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wwcs/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439823310.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5zp8v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"jerusha16\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5yroy\", \"score\": 1, \"author_fullname\": \"t2_685qw\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Easy, Captain Killjoy.\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5zp8v\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EEasy, Captain Killjoy.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5zp8v/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439828055.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439828055.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5yroy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Boo_R4dley\", \"can_mod_post\": false, \"created_utc\": 1439826517.0, \"send_replies\": true, \"parent_id\": \"t1_cu5oif1\", \"score\": 0, \"author_fullname\": \"t2_9rvrk\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"His face is emotionless because the falling kid isn't there. It's two videos composited together. \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5yroy\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHis face is emotionless because the falling kid isn\\u0026#39;t there. It\\u0026#39;s two videos composited together. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5yroy/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439826517.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu63tao\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Hyperian\", \"can_mod_post\": false, \"created_utc\": 1439834488.0, \"send_replies\": true, \"parent_id\": \"t1_cu5oif1\", \"score\": 1, \"author_fullname\": \"t2_3b3j0\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"he's ready for show biz\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu63tao\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ehe\\u0026#39;s ready for show biz\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu63tao/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439834488.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5oif1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"frittenlord\", \"can_mod_post\": false, \"created_utc\": 1439797539.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1443, \"author_fullname\": \"t2_jjpjz\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"His emotionless face...oh god, I nearly pissed myself laughing!\\nThanks for brightening my monday!\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5oif1\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHis emotionless face...oh god, I nearly pissed myself laughing!\\nThanks for brightening my monday!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5oif1/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439797539.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1443}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5oumb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Matti_Matti_Matti\", \"can_mod_post\": false, \"created_utc\": 1439798894.0, \"send_replies\": true, \"parent_id\": \"t1_cu5onj0\", \"score\": -7, \"author_fullname\": \"t2_57b03\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"[http://i.imgur.com/eoF76hj.gifv](http://i.imgur.com/eoF76hj.gifv)\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5oumb\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://i.imgur.com/eoF76hj.gifv\\\"\\u003Ehttp://i.imgur.com/eoF76hj.gifv\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5oumb/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439798894.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -7}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5patn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"Mogg_the_Poet\", \"can_mod_post\": false, \"created_utc\": 1439800744.0, \"send_replies\": true, \"parent_id\": \"t1_cu5onj0\", \"score\": 9, \"author_fullname\": \"t2_8seui\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Hi *me trying to make a comment on reddit*!\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5patn\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHi \\u003Cem\\u003Eme trying to make a comment on reddit\\u003C/em\\u003E!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5patn/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439800744.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 9}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5pn5x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"not_funnyname\", \"can_mod_post\": false, \"created_utc\": 1439802223.0, \"send_replies\": true, \"parent_id\": \"t1_cu5onj0\", \"score\": 3, \"author_fullname\": \"t2_ixtgq\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"*Ba Dum Tsss*\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5pn5x\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cem\\u003EBa Dum Tsss\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5pn5x/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439802223.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5onj0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"lovestospooj420\", \"can_mod_post\": false, \"created_utc\": 1439798087.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -7, \"author_fullname\": \"t2_dz5rh\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"This is me trying to make a comment on reddit\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5onj0\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is me trying to make a comment on reddit\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5onj0/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439798087.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -7}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5oufs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Matti_Matti_Matti\", \"can_mod_post\": false, \"created_utc\": 1439798872.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -9, \"author_fullname\": \"t2_57b03\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"I really like it when the title matches the picture.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5oufs\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI really like it when the title matches the picture.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5oufs/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439798872.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -9}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tau6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"lumdidum\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5sb33\", \"score\": 4, \"author_fullname\": \"t2_bn0ml\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Such an original joke you have to explain it and *salute* to the *bros* who 'didn't get it'...\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5tau6\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESuch an original joke you have to explain it and \\u003Cem\\u003Esalute\\u003C/em\\u003E to the \\u003Cem\\u003Ebros\\u003C/em\\u003E who \\u0026#39;didn\\u0026#39;t get it\\u0026#39;...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tau6/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439815844.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439815844.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tuyu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5sb33\", \"score\": 1, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I approve your fedora tip.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI approve your fedora tip.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tuyu/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tuyu\", \"created\": 1439817250.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817250.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5sb33\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Ciruttai\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5r2ne\", \"score\": -44, \"author_fullname\": \"t2_axqvo\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"i think you missed that he was making a joke on the fact that the original commenter has \\\"prophet\\\" in his name, and you both missed it so... dont worry bro, i salute you.\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5sb33\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ei think you missed that he was making a joke on the fact that the original commenter has \\u0026quot;prophet\\u0026quot; in his name, and you both missed it so... dont worry bro, i salute you.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5sb33/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439812968.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439812968.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -44}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5r2ne\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"Hillbillyblues\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pr04\", \"score\": 35, \"author_fullname\": \"t2_i1y7y\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Good call.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5r2ne\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGood call.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5r2ne/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439808449.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439808449.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 35}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5pr04\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Nak4000\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pjjs\", \"score\": -82, \"author_fullname\": \"t2_n838c\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Whatever I'll just keep it to my self then\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5pr04\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhatever I\\u0026#39;ll just keep it to my self then\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5pr04/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439802693.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439802693.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -82}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5pjjs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"my__name__is\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pg2h\", \"score\": 29, \"author_fullname\": \"t2_g32j4\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Be more original. \", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5pjjs\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBe more original. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5pjjs/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439801788.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439801788.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 29}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5sy4c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Orangebeardo\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pg2h\", \"score\": 0, \"author_fullname\": \"t2_6fxor\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I'm sure we all came here to say that. Someone will always be first.\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5sy4c\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m sure we all came here to say that. Someone will always be first.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5sy4c/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439814885.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439814885.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5sy4l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Orangebeardo\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pg2h\", \"score\": 0, \"author_fullname\": \"t2_6fxor\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I'm sure we all came here to say that. Someone will always be first.\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5sy4l\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m sure we all came here to say that. Someone will always be first.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5sy4l/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439814886.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439814886.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 5, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5t5yg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"created_utc\": 1439815482.0, \"send_replies\": true, \"parent_id\": \"t1_cu5pg2h\", \"score\": 5, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"http://imgur.com/gallery/Nw4VbVz\", \"edited\": false, \"author_flair_css_class\": null, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://imgur.com/gallery/Nw4VbVz\\\"\\u003Ehttp://imgur.com/gallery/Nw4VbVz\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5t5yg/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5t5yg\", \"created\": 1439815482.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uv18\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Karl_Marx_\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pg2h\", \"score\": 1, \"author_fullname\": \"t2_5uky1\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"/r/cringe, feel free to have a thought of your own.\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5uv18\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/cringe\\\"\\u003E/r/cringe\\u003C/a\\u003E, feel free to have a thought of your own.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uv18/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819477.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819477.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5pg2h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Nak4000\", \"can_mod_post\": false, \"created_utc\": 1439801364.0, \"send_replies\": true, \"parent_id\": \"t1_cu5p1hh\", \"score\": -148, \"author_fullname\": \"t2_n838c\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"You... HOW DARE YOU!!\\n\\nYou stole from me!!\\n\\nMy only thing keeping me attached to this thread!!\\n\\nYou stole my words before I could even type them!!!\\n\\nYou sir!!\\n\\nI have no words for the person that you have become\\nT-T\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5pg2h\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou... HOW DARE YOU!!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou stole from me!!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMy only thing keeping me attached to this thread!!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou stole my words before I could even type them!!!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYou sir!!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have no words for the person that you have become\\nT-T\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5pg2h/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439801364.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -148}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5t5fm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"deepfeeld\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5t0tk\", \"score\": 10, \"author_fullname\": \"t2_5xqmv\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"A story for the ages.\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5t5fm\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA story for the ages.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5t5fm/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439815443.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439815443.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 10}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5t6gf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"NotAModBro\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5t0tk\", \"score\": 36, \"author_fullname\": \"t2_ggccw\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Amazing story, publish it.\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5t6gf\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAmazing story, publish it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5t6gf/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439815518.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439815518.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 36}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5x49i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"dafaq101\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tlgk\", \"score\": 0, \"author_fullname\": \"t2_c8tsz\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Hilaaaaaaaaaaaarious... I'm stealing this one...\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5x49i\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHilaaaaaaaaaaaarious... I\\u0026#39;m stealing this one...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5x49i/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439823696.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439823696.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tlgk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"admiraljohn\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5t0tk\", \"score\": 3, \"author_fullname\": \"t2_3meg8\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"[Wow...](http://2.bp.blogspot.com/-uS4XbUCDsSI/VFHRuOnrC0I/AAAAAAAAgBk/nbJ-HTmhCig/s1600/cool%2Bstory%2Bbro.jpg)\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5tlgk\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://2.bp.blogspot.com/-uS4XbUCDsSI/VFHRuOnrC0I/AAAAAAAAgBk/nbJ-HTmhCig/s1600/cool%2Bstory%2Bbro.jpg\\\"\\u003EWow...\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tlgk/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439816607.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816607.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6889z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"dafaq101\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu62hcz\", \"score\": 1, \"author_fullname\": \"t2_c8tsz\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"*edit* hmmm\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu6889z\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cem\\u003Eedit\\u003C/em\\u003E hmmm\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6889z/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439841080.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439841080.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu62hcz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"SQUID_FUCKER\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5t0tk\", \"score\": 1, \"author_fullname\": \"t2_8q359\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"You've been on reddit for two years and haven't yet realized that statements like, 'came here to say that' and 'logged in just to upvote you' and editing your comment to say, 'why the downvotes?' are ALL downvote magnets. You miraculously managed to fit all three of these downvoted redditisms into one statement. \", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu62hcz\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou\\u0026#39;ve been on reddit for two years and haven\\u0026#39;t yet realized that statements like, \\u0026#39;came here to say that\\u0026#39; and \\u0026#39;logged in just to upvote you\\u0026#39; and editing your comment to say, \\u0026#39;why the downvotes?\\u0026#39; are ALL downvote magnets. You miraculously managed to fit all three of these downvoted redditisms into one statement. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu62hcz/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439832457.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439832457.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5t0tk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"dafaq101\", \"can_mod_post\": false, \"created_utc\": 1439815093.0, \"send_replies\": true, \"parent_id\": \"t1_cu5p1hh\", \"score\": -51, \"author_fullname\": \"t2_c8tsz\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"came here to say that... logged into tell you \\\"thanks for saying that\\\" lost your comment when I logged in... so had to dig it out.. luckily it didn't take too long...\\n\\n*EDIT* wtf why the DV to hell damn.. honestly that is exactly the reason I don't comment/reply much... Geez damn you Reddit I've yet to understand yoy\", \"edited\": 1439823827.0, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5t0tk\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ecame here to say that... logged into tell you \\u0026quot;thanks for saying that\\u0026quot; lost your comment when I logged in... so had to dig it out.. luckily it didn\\u0026#39;t take too long...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u003Cem\\u003EEDIT\\u003C/em\\u003E wtf why the DV to hell damn.. honestly that is exactly the reason I don\\u0026#39;t comment/reply much... Geez damn you Reddit I\\u0026#39;ve yet to understand yoy\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5t0tk/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439815093.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -51}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 205, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v51h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"devyol14\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5utri\", \"score\": 1, \"author_fullname\": \"t2_nvrav\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"yeah man, gotta watch out for those damn sneaky drums\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5v51h\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eyeah man, gotta watch out for those damn sneaky drums\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v51h/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820029.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439820029.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5utri\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"RaverDan\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tqy7\", \"score\": 9, \"author_fullname\": \"t2_eez4i\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Comedians hate his secret\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5utri\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EComedians hate his secret\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5utri/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819405.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819405.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 9}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tqy7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"Slokunshialgo\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5th6m\", \"score\": 19, \"author_fullname\": \"t2_7wco6\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"He'll be a hit in a few years, for sure!\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5tqy7\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe\\u0026#39;ll be a hit in a few years, for sure!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tqy7/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439816986.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816986.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 19}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu69sh9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Windadct\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ugsd\", \"score\": 1, \"author_fullname\": \"t2_4pkpn\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"did you step on one?\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu69sh9\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Edid you step on one?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu69sh9/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439843400.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439843400.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5ugsd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"StillEnjoyLegos\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5u1br\", \"score\": 11, \"author_fullname\": \"t2_guore\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"God dammit....\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5ugsd\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGod dammit....\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ugsd/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818632.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439818632.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 11}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5u1br\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"red2wedge\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5txc4\", \"score\": 40, \"author_fullname\": \"t2_cl67d\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Cymbal \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5u1br\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECymbal \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u1br/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817662.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817662.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 40}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v68s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"devyol14\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ukx2\", \"score\": 3, \"author_fullname\": \"t2_nvrav\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"I see what you did there, but did you there what I...see...?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5v68s\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI see what you did there, but did you there what I...see...?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v68s/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820098.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820098.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5ukx2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"AvatarIII\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5u51z\", \"score\": 3, \"author_fullname\": \"t2_9qv7q\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"you spelled the wrong symbol right but the right cymbal wrong.\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5ukx2\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eyou spelled the wrong symbol right but the right cymbal wrong.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ukx2/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818882.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818882.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5u51z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"StillEnjoyLegos\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5u282\", \"score\": 5, \"author_fullname\": \"t2_guore\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"No, I'm just an idiot and spelled it wrong.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5u51z\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo, I\\u0026#39;m just an idiot and spelled it wrong.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u51z/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817896.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439817896.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 5}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5u282\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"landragoran\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5txc4\", \"score\": 0, \"author_fullname\": \"t2_4dzsd\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"you missed a chance for a second pun in the word symbol (cymbal).\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5u282\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eyou missed a chance for a second pun in the word symbol (cymbal).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u282/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817720.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817720.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u5rb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"SevenAugust\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5txc4\", \"score\": 3, \"author_fullname\": \"t2_agrcz\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Ba dum tsss\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5u5rb\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBa dum tsss\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u5rb/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817940.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817940.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5txc4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"StillEnjoyLegos\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5th6m\", \"score\": 10, \"author_fullname\": \"t2_guore\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Not sure if I can bass this on just one performance, but this kid could be a comedic symbol to his generation!\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5txc4\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENot sure if I can bass this on just one performance, but this kid could be a comedic symbol to his generation!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5txc4/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817405.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817405.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 10}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5th6m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5p1hh\", \"score\": 205, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"With that kind of comedic timing he'll be posting awful puns on Reddit for years to come.\", \"edited\": false, \"author_flair_css_class\": null, \"collapsed\": false, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWith that kind of comedic timing he\\u0026#39;ll be posting awful puns on Reddit for years to come.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5th6m/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5th6m\", \"created\": 1439816309.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816309.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u1oq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"CombatMarshmallow\", \"can_mod_post\": false, \"created_utc\": 1439817685.0, \"send_replies\": true, \"parent_id\": \"t1_cu5p1hh\", \"score\": 7, \"author_fullname\": \"t2_cf81h\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Yeah, the floor.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5u1oq\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYeah, the floor.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u1oq/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817685.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 7}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u9uw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"wintremute\", \"can_mod_post\": false, \"created_utc\": 1439818193.0, \"send_replies\": true, \"parent_id\": \"t1_cu5p1hh\", \"score\": 0, \"author_fullname\": \"t2_1r898\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Like Therapy.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5u9uw\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELike Therapy.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u9uw/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818193.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vyon\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"goofball_jones\", \"can_mod_post\": false, \"created_utc\": 1439821618.0, \"send_replies\": true, \"parent_id\": \"t1_cu5p1hh\", \"score\": 0, \"author_fullname\": \"t2_5qq4a\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Maybe not any place good....but \\\"places\\\". \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5vyon\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMaybe not any place good....but \\u0026quot;places\\u0026quot;. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vyon/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821618.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5w3uv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Axoren\", \"can_mod_post\": false, \"created_utc\": 1439821878.0, \"send_replies\": true, \"parent_id\": \"t1_cu5p1hh\", \"score\": 1, \"author_fullname\": \"t2_4odhf\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Yeah, hell for one.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5w3uv\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYeah, hell for one.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w3uv/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821878.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu62dxq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"SQUID_FUCKER\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu6055x\", \"score\": 3, \"author_fullname\": \"t2_8q359\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"That was my first thought. Not Colbert but, 'damn this kid could be in a talk show band.'\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu62dxq\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat was my first thought. Not Colbert but, \\u0026#39;damn this kid could be in a talk show band.\\u0026#39;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu62dxq/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439832309.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439832309.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu6055x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5p1hh\", \"score\": 1, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Maybe in the band for whomever replaces Colbert. \", \"edited\": false, \"author_flair_css_class\": null, \"collapsed\": false, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMaybe in the band for whomever replaces Colbert. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6055x/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6055x\", \"created\": 1439828774.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439828774.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5p1hh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"TheProphetBroses\", \"can_mod_post\": false, \"created_utc\": 1439799674.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 331, \"author_fullname\": \"t2_juum1\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"That kid is going places. \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5p1hh\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat kid is going places. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5p1hh/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439799674.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 331}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": -9, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": -6, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5qnpc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"created_utc\": 1439806701.0, \"send_replies\": true, \"parent_id\": \"t1_cu5qn08\", \"score\": -6, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"You do what you must for karma. \", \"edited\": false, \"author_flair_css_class\": null, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou do what you must for karma. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5qnpc/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5qnpc\", \"created\": 1439806701.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 2, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5qn08\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5p1yt\", \"score\": 1, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[deleted]\", \"edited\": 1525627902.0, \"author_flair_css_class\": null, \"collapsed\": false, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[deleted]\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5qn08/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5qn08\", \"created\": 1439806621.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439806621.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 1, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5p1yt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -9, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Wanted to repost this in /r/ChildrenFallingOver but OP already posted it there. ;_;\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWanted to repost this in \\u003Ca href=\\\"/r/ChildrenFallingOver\\\"\\u003E/r/ChildrenFallingOver\\u003C/a\\u003E but OP already posted it there. ;_;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5p1yt/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5p1yt\", \"created\": 1439799730.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439799730.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5sadw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"Omniduro\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ru87\", \"score\": 3, \"author_fullname\": \"t2_7u7s0\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I have tickets to David Grohl's first undead drum performance.\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5sadw\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have tickets to David Grohl\\u0026#39;s first undead drum performance.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5sadw/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439812907.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439812907.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5t396\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Acidogenic\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ru87\", \"score\": -2, \"author_fullname\": \"t2_516a5\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Ah, the old reddit switcher-ba-bum-dis.\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5t396\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAh, the old reddit switcher-ba-bum-dis.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5t396/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439815278.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439815278.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu606xh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"sergelo\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5u5qt\", \"score\": 1, \"author_fullname\": \"t2_a0rrq\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Why not the xylophone?\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu606xh\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhy not the xylophone?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu606xh/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439828852.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439828852.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5u5qt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"Deon555\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ru87\", \"score\": 18, \"author_fullname\": \"t2_3ae0p\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"http://imgur.com/lrQdiwB\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5u5qt\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://imgur.com/lrQdiwB\\\"\\u003Ehttp://imgur.com/lrQdiwB\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u5qt/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817939.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817939.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 18}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vlhn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Forsyte\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5v80u\", \"score\": 1, \"author_fullname\": \"t2_femjz\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Hold my drummer's corpse, I'm going in!\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5vlhn\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHold my drummer\\u0026#39;s corpse, I\\u0026#39;m going in!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vlhn/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820930.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820930.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5v80u\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Brandon23z\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ru87\", \"score\": 1, \"author_fullname\": \"t2_8y8aw\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Ah, the old reddit [switcheroo](https://m.reddit.com/r/todayilearned/comments/3h74q3/til_hooters_offered_employees_the_chance_to_win_a/cu5dec6).\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5v80u\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAh, the old reddit \\u003Ca href=\\\"https://m.reddit.com/r/todayilearned/comments/3h74q3/til_hooters_offered_employees_the_chance_to_win_a/cu5dec6\\\"\\u003Eswitcheroo\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v80u/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820201.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820201.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5w0gv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"goofball_jones\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ru87\", \"score\": 1, \"author_fullname\": \"t2_5qq4a\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Mickey Hart and Bill Kreutzmann would disagree with you there. \", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5w0gv\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMickey Hart and Bill Kreutzmann would disagree with you there. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w0gv/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821708.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821708.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5ru87\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"knylok\", \"can_mod_post\": false, \"created_utc\": 1439811398.0, \"send_replies\": true, \"parent_id\": \"t1_cu5p9jb\", \"score\": 40, \"author_fullname\": \"t2_27hoy\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"No. The dead typically aren't very good at playing the drums. \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5ru87\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo. The dead typically aren\\u0026#39;t very good at playing the drums. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ru87/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439811398.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 40}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tum8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"CopaceticGatsby\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5t7wi\", \"score\": 2, \"author_fullname\": \"t2_ahbkh\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Shut your whore mouth.\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5tum8\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EShut your whore mouth.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tum8/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817227.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817227.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5t7wi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"popaninja\", \"can_mod_post\": false, \"created_utc\": 1439815626.0, \"send_replies\": true, \"parent_id\": \"t1_cu5p9jb\", \"score\": 0, \"author_fullname\": \"t2_77odq\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"He still has his shoes on, so I guess he's alive.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5t7wi\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe still has his shoes on, so I guess he\\u0026#39;s alive.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5t7wi/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439815626.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5p9jb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"yourpantslooktasty\", \"can_mod_post\": false, \"created_utc\": 1439800594.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 5, \"author_fullname\": \"t2_o4bap\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"is he dead?\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5p9jb\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eis he dead?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5p9jb/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439800594.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 0, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5rhz7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"created_utc\": 1439810135.0, \"send_replies\": true, \"parent_id\": \"t1_cu5pdr4\", \"score\": 0, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[deleted]\", \"edited\": 1621211483.0, \"author_flair_css_class\": null, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[deleted]\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5rhz7/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5rhz7\", \"created\": 1439810135.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 2, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5pdr4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"trolol_12\", \"can_mod_post\": false, \"created_utc\": 1439801082.0, \"send_replies\": true, \"parent_id\": \"t1_cu5payz\", \"score\": 0, \"author_fullname\": \"t2_6eqmd\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"me thanks, too. \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5pdr4\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eme thanks, too. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5pdr4/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439801082.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5payz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"870\", \"can_mod_post\": false, \"created_utc\": 1439800762.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -9, \"author_fullname\": \"t2_611hs\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"me_irl\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5payz\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eme_irl\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5payz/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439800762.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -9}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5pbdh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Mogg_the_Poet\", \"can_mod_post\": false, \"created_utc\": 1439800807.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -27, \"author_fullname\": \"t2_8seui\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Punch line.\\n\\nThe title shouldn't be the\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5pbdh\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPunch line.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe title shouldn\\u0026#39;t be the\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5pbdh/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439800807.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -27}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tc2n\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"MadTitan63\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5sye5\", \"score\": 1, \"author_fullname\": \"t2_ji7lj\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Why are you following me??\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5tc2n\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhy are you following me??\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tc2n/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439815938.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439815938.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"more\", \"data\": {\"count\": 0, \"name\": \"t1__\", \"id\": \"_\", \"parent_id\": \"t1_cu5v5h7\", \"depth\": 10, \"children\": []}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5v5h7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5v4if\", \"score\": 1, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[deleted]\", \"edited\": 1502205193.0, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[deleted]\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v5h7/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v5h7\", \"created\": 1439820053.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820053.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5v4if\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"created_utc\": 1439820002.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uj5q\", \"score\": 1, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Dead hahaha\", \"edited\": false, \"author_flair_css_class\": null, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDead hahaha\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v4if/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v4if\", \"created\": 1439820002.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v6ok\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"badvok666\", \"can_mod_post\": false, \"created_utc\": 1439820122.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uj5q\", \"score\": 0, \"author_fullname\": \"t2_boohk\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Thanks!\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5v6ok\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v6ok/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820122.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5x3k9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"Soddington\", \"can_mod_post\": false, \"created_utc\": 1439823660.0, \"send_replies\": true, \"parent_id\": \"t1_cu5w3kc\", \"score\": 14, \"author_fullname\": \"t2_8hukb\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"\\u003Ea little underwhelmed\\n\\nI hope thats what tuba/Sousaphone players are going for, cause I think they get that a lot.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5x3k9\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ea little underwhelmed\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EI hope thats what tuba/Sousaphone players are going for, cause I think they get that a lot.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5x3k9/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439823660.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 14}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 20, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xe6k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5w3kc\", \"score\": 20, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Try setting the speed to 1.25. It's a bit better \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETry setting the speed to 1.25. It\\u0026#39;s a bit better \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xe6k/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5xe6k\", \"created\": 1439824186.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439824186.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 0, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu62n0l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5w3kc\", \"score\": 0, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Learn to triple tongue, kid. \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELearn to triple tongue, kid. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu62n0l/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu62n0l\", \"created\": 1439832702.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439832702.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6mt4y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"ChawulsBawkley\", \"can_mod_post\": false, \"created_utc\": 1439865684.0, \"send_replies\": true, \"parent_id\": \"t1_cu5w3kc\", \"score\": 1, \"author_fullname\": \"t2_ct0tq\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"You'd think he'd show a little more enthusiasm w/ all that energy he's got in his room. \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu6mt4y\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou\\u0026#39;d think he\\u0026#39;d show a little more enthusiasm w/ all that energy he\\u0026#39;s got in his room. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6mt4y/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439865684.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5w3kc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"badfan\", \"can_mod_post\": false, \"created_utc\": 1439821864.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uj5q\", \"score\": 27, \"author_fullname\": \"t2_7kdkx\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"https://www.youtube.com/watch?v=FmDRHv_6hx4\\n\\nI'm glad this exists but I was a little underwhelmed\\n\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5w3kc\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=FmDRHv_6hx4\\\"\\u003Ehttps://www.youtube.com/watch?v=FmDRHv_6hx4\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m glad this exists but I was a little underwhelmed\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w3kc/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821864.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 27}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"more\", \"data\": {\"count\": 0, \"name\": \"t1__\", \"id\": \"_\", \"parent_id\": \"t1_cu61zil\", \"depth\": 10, \"children\": []}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu61zil\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"kgbanarchy\", \"can_mod_post\": false, \"created_utc\": 1439831688.0, \"send_replies\": true, \"parent_id\": \"t1_cu5xgzb\", \"score\": 1, \"author_fullname\": \"t2_fyczk\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"not enough was said of this\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu61zil\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Enot enough was said of this\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61zil/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439831688.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu68rt8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"KimJongOod\", \"can_mod_post\": false, \"created_utc\": 1439841879.0, \"send_replies\": true, \"parent_id\": \"t1_cu5xgzb\", \"score\": 14, \"author_fullname\": \"t2_kfl7x\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"[Toy Trumpet Virtuoso](https://youtu.be/esMnme69t2M)\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu68rt8\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://youtu.be/esMnme69t2M\\\"\\u003EToy Trumpet Virtuoso\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu68rt8/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439841879.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 14}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5xgzb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"nerevars\", \"can_mod_post\": false, \"created_utc\": 1439824320.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uj5q\", \"score\": 7, \"author_fullname\": \"t2_cmxiw\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"With recorder https://www.youtube.com/watch?v=Sso4vjERgdA\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5xgzb\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWith recorder \\u003Ca href=\\\"https://www.youtube.com/watch?v=Sso4vjERgdA\\\"\\u003Ehttps://www.youtube.com/watch?v=Sso4vjERgdA\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xgzb/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439824320.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 7}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu61be3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"avboden\", \"can_mod_post\": false, \"created_utc\": 1439830634.0, \"send_replies\": true, \"parent_id\": \"t1_cu603ef\", \"score\": 1, \"author_fullname\": \"t2_6ekji\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"not as much, but sometimes it just fits\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu61be3\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Enot as much, but sometimes it just fits\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61be3/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439830634.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu603ef\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"daimposter\", \"can_mod_post\": false, \"created_utc\": 1439828693.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uj5q\", \"score\": 1, \"author_fullname\": \"t2_p8pe\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I guess we are still doing this\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu603ef\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI guess we are still doing this\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu603ef/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439828693.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uj5q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"avboden\", \"can_mod_post\": false, \"created_utc\": 1439818777.0, \"send_replies\": true, \"parent_id\": \"t1_cu5ui8o\", \"score\": 150, \"author_fullname\": \"t2_6ekji\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Darude, Sandstorm. \", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5uj5q\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDarude, Sandstorm. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uj5q/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818777.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 150}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uro5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"Fractal_Plains_of_SD\", \"can_mod_post\": false, \"created_utc\": 1439819283.0, \"send_replies\": true, \"parent_id\": \"t1_cu5ui8o\", \"score\": 8, \"author_fullname\": \"t2_io0m1\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Sounds like ride of the valkyries.\\n\\nEdit: Wagner op pls nerf\\n\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5uro5\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESounds like ride of the valkyries.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: Wagner op pls nerf\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uro5/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819283.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 8}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uy0y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"HelperBot_\", \"can_mod_post\": false, \"created_utc\": 1439819644.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uxy9\", \"score\": 3, \"author_fullname\": \"t2_owot1\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Non-Mobile link: https://en.wikipedia.org/wiki/Ride_of_the_Valkyries\\n***\\n^HelperBot_\\u2122 ^v1.0 ^I ^am ^a ^bot. ^Please ^message ^/u/swim1929 ^with ^any ^feedback ^and/or ^hate. ^Counter: ^8375\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5uy0y\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENon-Mobile link: \\u003Ca href=\\\"https://en.wikipedia.org/wiki/Ride_of_the_Valkyries\\\"\\u003Ehttps://en.wikipedia.org/wiki/Ride_of_the_Valkyries\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Chr/\\u003E\\n\\n\\u003Cp\\u003E\\u003Csup\\u003EHelperBot_\\u2122\\u003C/sup\\u003E \\u003Csup\\u003Ev1.0\\u003C/sup\\u003E \\u003Csup\\u003EI\\u003C/sup\\u003E \\u003Csup\\u003Eam\\u003C/sup\\u003E \\u003Csup\\u003Ea\\u003C/sup\\u003E \\u003Csup\\u003Ebot.\\u003C/sup\\u003E \\u003Csup\\u003EPlease\\u003C/sup\\u003E \\u003Csup\\u003Emessage\\u003C/sup\\u003E \\u003Csup\\u003E\\u003Ca href=\\\"/u/swim1929\\\"\\u003E/u/swim1929\\u003C/a\\u003E\\u003C/sup\\u003E \\u003Csup\\u003Ewith\\u003C/sup\\u003E \\u003Csup\\u003Eany\\u003C/sup\\u003E \\u003Csup\\u003Efeedback\\u003C/sup\\u003E \\u003Csup\\u003Eand/or\\u003C/sup\\u003E \\u003Csup\\u003Ehate.\\u003C/sup\\u003E \\u003Csup\\u003ECounter:\\u003C/sup\\u003E \\u003Csup\\u003E8375\\u003C/sup\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uy0y/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819644.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v71k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"kalitarios\", \"can_mod_post\": false, \"created_utc\": 1439820143.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uxy9\", \"score\": 1, \"author_fullname\": \"t2_9i2gb\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I was thinking the first part was \\\"Old Mule\\\" or whatever that early 1900s song was, but it's not.\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5v71k\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was thinking the first part was \\u0026quot;Old Mule\\u0026quot; or whatever that early 1900s song was, but it\\u0026#39;s not.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v71k/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820143.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uxy9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"riotwraith\", \"can_mod_post\": false, \"created_utc\": 1439819640.0, \"send_replies\": true, \"parent_id\": \"t1_cu5ui8o\", \"score\": 4, \"author_fullname\": \"t2_95zev\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Google gives a bunch of suggestions which are all wrong. Googling any suggestion of a name that isn't wrong just brings more family guy clips, but I remember that tune from before they were on the air. \\n\\nThat middle part where it gets really intense is [Ride of the Valkyries](https://en.m.wikipedia.org/wiki/Ride_of_the_Valkyries)\", \"edited\": 1439820212.0, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5uxy9\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGoogle gives a bunch of suggestions which are all wrong. Googling any suggestion of a name that isn\\u0026#39;t wrong just brings more family guy clips, but I remember that tune from before they were on the air. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThat middle part where it gets really intense is \\u003Ca href=\\\"https://en.m.wikipedia.org/wiki/Ride_of_the_Valkyries\\\"\\u003ERide of the Valkyries\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uxy9/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819640.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5voqn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Broetz\", \"can_mod_post\": false, \"created_utc\": 1439821103.0, \"send_replies\": true, \"parent_id\": \"t1_cu5ui8o\", \"score\": 1, \"author_fullname\": \"t2_d4jaq\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"at one point he is playing ride of the valkyries\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5voqn\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eat one point he is playing ride of the valkyries\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5voqn/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821103.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vp33\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"hessbs\", \"can_mod_post\": false, \"created_utc\": 1439821122.0, \"send_replies\": true, \"parent_id\": \"t1_cu5ui8o\", \"score\": 1, \"author_fullname\": \"t2_6ctat\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"well he eventually goes into \\\"The ride of the valkyries\\\" from Wagner's Ring Cycle. \", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5vp33\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewell he eventually goes into \\u0026quot;The ride of the valkyries\\u0026quot; from Wagner\\u0026#39;s Ring Cycle. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vp33/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821122.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5ui8o\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"kalitarios\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tt57\", \"score\": 12, \"author_fullname\": \"t2_9i2gb\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"what's the name of the song he's playing?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5ui8o\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewhat\\u0026#39;s the name of the song he\\u0026#39;s playing?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ui8o/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818724.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818724.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 12}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu62h6x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"th3cardman\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tt57\", \"score\": 1, \"author_fullname\": \"t2_cs25j\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"If you're a sousaphone player in marching band, you know this song. They've been doing this since the early 80s at least \", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu62h6x\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIf you\\u0026#39;re a sousaphone player in marching band, you know this song. They\\u0026#39;ve been doing this since the early 80s at least \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu62h6x/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439832449.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439832449.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tt57\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"avboden\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tnfu\", \"score\": 57, \"author_fullname\": \"t2_6ekji\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"pretty sure the family guy clip is what inspired him, even playing the same thing pretty much \", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5tt57\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Epretty sure the family guy clip is what inspired him, even playing the same thing pretty much \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tt57/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817132.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817132.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 57}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 35, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vh25\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"GoldVader\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5v4e7\", \"score\": 13, \"author_fullname\": \"t2_jucud\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"I was thinking the same damn thing. The last one really was the icing on the cake though 'The family tree has no branches'\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5vh25\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was thinking the same damn thing. The last one really was the icing on the cake though \\u0026#39;The family tree has no branches\\u0026#39;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vh25/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820692.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820692.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 13}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu62fds\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"__REV__\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5v4e7\", \"score\": 2, \"author_fullname\": \"t2_ik5ug\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Voice was like a cheese grater to me.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu62fds\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EVoice was like a cheese grater to me.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu62fds/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439832371.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439832371.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5v4e7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"[deleted]\", \"can_mod_post\": false, \"created_utc\": 1439819995.0, \"send_replies\": true, \"parent_id\": \"t1_cu5tnfu\", \"score\": 35, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"That lady recording who says insightful phrases like, \\\"stupid is as stupid does,\\\" really needs to shut the fuck up.\", \"edited\": false, \"author_flair_css_class\": null, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat lady recording who says insightful phrases like, \\u0026quot;stupid is as stupid does,\\u0026quot; really needs to shut the fuck up.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v4e7/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v4e7\", \"created\": 1439819995.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vrdz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"ShelSilverstain\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tnfu\", \"score\": 6, \"author_fullname\": \"t2_ciiw8\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Why are the Klan members carrying around the battle flag of northern Virginia? next thing you know, purple will associate it with ignorance, hatred, and racism!\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5vrdz\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhy are the Klan members carrying around the battle flag of northern Virginia? next thing you know, purple will associate it with ignorance, hatred, and racism!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vrdz/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821245.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821245.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 6}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu61mbg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"67Mustang-Man\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tnfu\", \"score\": 2, \"author_fullname\": \"t2_dib7j\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Oddly if I could learn to play the Sousaphone this is all I would want to learn and use it for.\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu61mbg\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOddly if I could learn to play the Sousaphone this is all I would want to learn and use it for.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61mbg/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439831114.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439831114.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu62mvj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"IamSparticles\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tnfu\", \"score\": 2, \"author_fullname\": \"t2_4jq2f\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"The switch to Flight of the Valkyries really makes this.\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu62mvj\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe switch to Flight of the Valkyries really makes this.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu62mvj/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439832696.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439832696.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu66xjq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"Deven247\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tnfu\", \"score\": 4, \"author_fullname\": \"t2_9wh3g\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I was laughing so hard, but the old woman's commentary ruins the comedy. \\n\\nSHOW, DON'T TELL!\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu66xjq\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was laughing so hard, but the old woman\\u0026#39;s commentary ruins the comedy. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESHOW, DON\\u0026#39;T TELL!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu66xjq/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439839153.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439839153.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6pi0z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"annekat\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tnfu\", \"score\": 2, \"author_fullname\": \"t2_jm8w\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"He is a goddamn hero for playing the sousaphone to ridicule the KKK. I'm being very clear so that nobody mistakes me for saying the KKK members are heroes or anything. Fuck them.\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu6pi0z\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe is a goddamn hero for playing the sousaphone to ridicule the KKK. I\\u0026#39;m being very clear so that nobody mistakes me for saying the KKK members are heroes or anything. Fuck them.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6pi0z/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439870891.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439870891.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tnfu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"wwoodrum\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tlz5\", \"score\": 119, \"author_fullname\": \"t2_gyugy\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Reminds me of [this](https://www.youtube.com/watch?v=Rs4P1kKK-5k) guy\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5tnfu\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EReminds me of \\u003Ca href=\\\"https://www.youtube.com/watch?v=Rs4P1kKK-5k\\\"\\u003Ethis\\u003C/a\\u003E guy\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tnfu/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439816746.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439816746.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 119}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vxe6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"MajorNarsilion\", \"can_mod_post\": false, \"created_utc\": 1439821552.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uibp\", \"score\": 1, \"author_fullname\": \"t2_adcca\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Not sure what would be funniest, the person chasing them with a jug of milk or the guy running with a tuba. \", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5vxe6\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENot sure what would be funniest, the person chasing them with a jug of milk or the guy running with a tuba. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vxe6/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821552.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wop7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"xFoeHammer\", \"can_mod_post\": false, \"created_utc\": 1439822931.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uibp\", \"score\": 2, \"author_fullname\": \"t2_a09m6\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"He could just casually pull it out and pretend he's gonna drink it. They'd think it's funny and let their guard down. Then he could just pour away.\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5wop7\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe could just casually pull it out and pretend he\\u0026#39;s gonna drink it. They\\u0026#39;d think it\\u0026#39;s funny and let their guard down. Then he could just pour away.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wop7/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439822931.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu61jgk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"IAmNotNathaniel\", \"can_mod_post\": false, \"created_utc\": 1439830989.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uibp\", \"score\": 1, \"author_fullname\": \"t2_gvej1\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Little shit was getting pretty close. Even fat people can move fast in short bursts.\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu61jgk\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELittle shit was getting pretty close. Even fat people can move fast in short bursts.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61jgk/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439830989.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uibp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"_Larry_Love_\", \"can_mod_post\": false, \"created_utc\": 1439818729.0, \"send_replies\": true, \"parent_id\": \"t1_cu5ufip\", \"score\": 19, \"author_fullname\": \"t2_lmtg3\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"He would have to catch them first :(\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5uibp\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe would have to catch them first :(\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uibp/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818729.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 19}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vv0k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"kahrahtay\", \"can_mod_post\": false, \"created_utc\": 1439821429.0, \"send_replies\": true, \"parent_id\": \"t1_cu5ufip\", \"score\": 6, \"author_fullname\": \"t2_49d38\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Aim for the valve pads. They are vulnerable to liquids.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5vv0k\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAim for the valve pads. They are vulnerable to liquids.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vv0k/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821429.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 6}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5ufip\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"IAmNotNathaniel\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uat1\", \"score\": 8, \"author_fullname\": \"t2_gvej1\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"seriously. \\n\\nif I was that guy I would have gotten a jug of milk and poured it right into the bell\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5ufip\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eseriously. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eif I was that guy I would have gotten a jug of milk and poured it right into the bell\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ufip/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818554.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818554.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 8}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ujm2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"kalitarios\", \"can_mod_post\": false, \"created_utc\": 1439818803.0, \"send_replies\": true, \"parent_id\": \"t1_cu5ug2h\", \"score\": 2, \"author_fullname\": \"t2_9i2gb\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"found the saxophone player\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5ujm2\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Efound the saxophone player\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ujm2/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818803.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uxoh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"monnii99\", \"can_mod_post\": false, \"created_utc\": 1439819625.0, \"send_replies\": true, \"parent_id\": \"t1_cu5unth\", \"score\": 8, \"author_fullname\": \"t2_niiwp\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Nah, it's just an example don't worry.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5uxoh\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENah, it\\u0026#39;s just an example don\\u0026#39;t worry.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uxoh/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819625.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 8}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"more\", \"data\": {\"count\": 0, \"name\": \"t1__\", \"id\": \"_\", \"parent_id\": \"t1_cu5uyz1\", \"depth\": 10, \"children\": []}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uyz1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Fresh_Bulgarian_Miak\", \"can_mod_post\": false, \"created_utc\": 1439819694.0, \"send_replies\": true, \"parent_id\": \"t1_cu5unth\", \"score\": 3, \"author_fullname\": \"t2_lyjdc\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"TIL\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5uyz1\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETIL\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uyz1/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819694.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5unth\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"chumothy\", \"can_mod_post\": false, \"created_utc\": 1439819056.0, \"send_replies\": true, \"parent_id\": \"t1_cu5ukqd\", \"score\": 8, \"author_fullname\": \"t2_ou6xu\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"So...killing people in real life is bad, then? \", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5unth\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo...killing people in real life is bad, then? \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5unth/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819056.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 8}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5ukqd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"TheGrimGuardian\", \"can_mod_post\": false, \"created_utc\": 1439818870.0, \"send_replies\": true, \"parent_id\": \"t1_cu5ug2h\", \"score\": 10, \"author_fullname\": \"t2_oxl0c\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"\\u003E oh so if family guy does it its funny.\\n\\nYeah. It's a cartoon.\\n\\n\\u003Ebut if someone mimics it. Noooooooooo un-cool TRIGGER TRIGGER ALERT.\\n\\nBecause that's effecting actual people.\\n\\nYour argument sounds completely ignorant.\\n\\nIt's like saying \\\"Killing people in a video game is widely accepted, so killing people in real life should be totally cool!\\\"\\n\\n\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5ukqd\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Eoh so if family guy does it its funny.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EYeah. It\\u0026#39;s a cartoon.\\u003C/p\\u003E\\n\\n\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ebut if someone mimics it. Noooooooooo un-cool TRIGGER TRIGGER ALERT.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EBecause that\\u0026#39;s effecting actual people.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EYour argument sounds completely ignorant.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt\\u0026#39;s like saying \\u0026quot;Killing people in a video game is widely accepted, so killing people in real life should be totally cool!\\u0026quot;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ukqd/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818870.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 10}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uldk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"Daloure\", \"can_mod_post\": false, \"created_utc\": 1439818909.0, \"send_replies\": true, \"parent_id\": \"t1_cu5ug2h\", \"score\": 5, \"author_fullname\": \"t2_8r8qj\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"You really can't see the difference? Making fun of fat people in general in a cartoon is not the same as following and harassing people in real life. \", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5uldk\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou really can\\u0026#39;t see the difference? Making fun of fat people in general in a cartoon is not the same as following and harassing people in real life. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uldk/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818909.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5zuhv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"BOWBOWBOWBOW\", \"can_mod_post\": false, \"created_utc\": 1439828290.0, \"send_replies\": true, \"parent_id\": \"t1_cu5z7ht\", \"score\": 2, \"author_fullname\": \"t2_bmzc5\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Eh, fuck that sub. Everyone has a right to an opinion but it only existed to take the piss out of people that obviously have some issue. The whole idea that a group of people gathered together to have a mutual masturbation session over how terrible people are who, yes, probably don't control their diets etc is fucking weird especially since they probably don't affect your own life much.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5zuhv\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EEh, fuck that sub. Everyone has a right to an opinion but it only existed to take the piss out of people that obviously have some issue. The whole idea that a group of people gathered together to have a mutual masturbation session over how terrible people are who, yes, probably don\\u0026#39;t control their diets etc is fucking weird especially since they probably don\\u0026#39;t affect your own life much.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5zuhv/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439828290.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6e2sn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"DrunkenPadawan\", \"can_mod_post\": false, \"created_utc\": 1439850119.0, \"send_replies\": true, \"parent_id\": \"t1_cu5z7ht\", \"score\": 2, \"author_fullname\": \"t2_4j1q3\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Yeah, cuz that'll make them not fat. Clearly they'll feel better and not go to the stress coping behavior they've clearly already been utilizing. Eating. You and all those people are just so fuckin' dumb, man, and the worst part is you don't even see who fucking dumb you are! Its so sad at every level!\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu6e2sn\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYeah, cuz that\\u0026#39;ll make them not fat. Clearly they\\u0026#39;ll feel better and not go to the stress coping behavior they\\u0026#39;ve clearly already been utilizing. Eating. You and all those people are just so fuckin\\u0026#39; dumb, man, and the worst part is you don\\u0026#39;t even see who fucking dumb you are! Its so sad at every level!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6e2sn/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439850119.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5z7ht\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"opieopi\", \"can_mod_post\": false, \"created_utc\": 1439827244.0, \"send_replies\": true, \"parent_id\": \"t1_cu5unuk\", \"score\": 1, \"author_fullname\": \"t2_p6252\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"fat people should be ridiculed, this is why we need the return of r/fatpeoplehate\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5z7ht\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Efat people should be ridiculed, this is why we need the return of \\u003Ca href=\\\"/r/fatpeoplehate\\\"\\u003Er/fatpeoplehate\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5z7ht/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439827244.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5unuk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"BOWBOWBOWBOW\", \"can_mod_post\": false, \"created_utc\": 1439819058.0, \"send_replies\": true, \"parent_id\": \"t1_cu5ug2h\", \"score\": 10, \"author_fullname\": \"t2_bmzc5\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Fuck you dude, not fat and I did laugh. But there's a huge difference between a fucking cartoon displaying a theoretical situation and finding that funny and humiliating a dude out in public for internet grins. And the fact you can't distinguish that means you're probably a little bit ass backward. Sometimes the \\\"triggered\\\" shit is warranted even if not in those words. I'm definitely no SJW but sometimes uncool shit is uncool.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5unuk\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFuck you dude, not fat and I did laugh. But there\\u0026#39;s a huge difference between a fucking cartoon displaying a theoretical situation and finding that funny and humiliating a dude out in public for internet grins. And the fact you can\\u0026#39;t distinguish that means you\\u0026#39;re probably a little bit ass backward. Sometimes the \\u0026quot;triggered\\u0026quot; shit is warranted even if not in those words. I\\u0026#39;m definitely no SJW but sometimes uncool shit is uncool.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5unuk/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819058.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 10}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5ug2h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"opieopi\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uat1\", \"score\": -31, \"author_fullname\": \"t2_p6252\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"oh so if family guy does it its funny.\\n\\nbut if someone mimics it. Noooooooooo un-cool TRIGGER TRIGGER ALERT.\\n\\nEat shit\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5ug2h\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eoh so if family guy does it its funny.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ebut if someone mimics it. Noooooooooo un-cool TRIGGER TRIGGER ALERT.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEat shit\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ug2h/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818588.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818588.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -31}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu63uky\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"jokerman170\", \"can_mod_post\": false, \"created_utc\": 1439834539.0, \"send_replies\": true, \"parent_id\": \"t1_cu5wcur\", \"score\": -4, \"author_fullname\": \"t2_8aokl\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"nope, u are just part of the fat army that can't restrain themselves from stuffing their fat mouths\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu63uky\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Enope, u are just part of the fat army that can\\u0026#39;t restrain themselves from stuffing their fat mouths\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu63uky/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439834539.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu68k2p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5wcur\", \"score\": 1, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Guy, /u/jokerman170 is probably joking. His comment karma is only 116. Almost all of his recent comments are in the negatives.\\n\\nOr, alternatively, he just has *really bad opinions.*\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGuy, \\u003Ca href=\\\"/u/jokerman170\\\"\\u003E/u/jokerman170\\u003C/a\\u003E is probably joking. His comment karma is only 116. Almost all of his recent comments are in the negatives.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EOr, alternatively, he just has \\u003Cem\\u003Ereally bad opinions.\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu68k2p/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu68k2p\", \"created\": 1439841559.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439841559.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5wcur\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"intarwebzWINNAR\", \"can_mod_post\": false, \"created_utc\": 1439822337.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uz8s\", \"score\": 7, \"author_fullname\": \"t2_4du8w\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"You're just a cunt and a half, aren't you\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5wcur\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou\\u0026#39;re just a cunt and a half, aren\\u0026#39;t you\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wcur/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439822337.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 7}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uz8s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"jokerman170\", \"can_mod_post\": false, \"created_utc\": 1439819711.0, \"send_replies\": true, \"parent_id\": \"t1_cu5ugrd\", \"score\": -19, \"author_fullname\": \"t2_8aokl\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"they should think of their insecurities before every bite of pizza they stuff in their faces\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5uz8s\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ethey should think of their insecurities before every bite of pizza they stuff in their faces\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uz8s/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819711.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -19}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5ugrd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"JayCut\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uat1\", \"score\": 8, \"author_fullname\": \"t2_b5tyw\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Yeah. I don't think they realize that those are actual people they're bullying and that those people are probably insecure because of assholes like them. Fuckin' pisses me off \", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5ugrd\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYeah. I don\\u0026#39;t think they realize that those are actual people they\\u0026#39;re bullying and that those people are probably insecure because of assholes like them. Fuckin\\u0026#39; pisses me off \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ugrd/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818630.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818630.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 8}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uh3a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"teknogeek1\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uat1\", \"score\": 1, \"author_fullname\": \"t2_63xyx\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"probably they do\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5uh3a\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eprobably they do\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uh3a/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818651.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818651.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5umzt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"chumothy\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uat1\", \"score\": -1, \"author_fullname\": \"t2_ou6xu\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"I hope they get fat.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5umzt\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI hope they get fat.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5umzt/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819007.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819007.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uvq3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Taugis\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uat1\", \"score\": -4, \"author_fullname\": \"t2_9wpdn\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Fat butt hurt?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5uvq3\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFat butt hurt?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uvq3/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819517.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819517.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -4}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uxqk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"ratesyourtits1\", \"can_mod_post\": false, \"created_utc\": 1439819628.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uvuw\", \"score\": -4, \"author_fullname\": \"t2_j8l5o\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I highly fucking doubt a person that large would be motivated enough to do all that work. \", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5uxqk\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI highly fucking doubt a person that large would be motivated enough to do all that work. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uxqk/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819628.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -4}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vi2z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"lohkey\", \"can_mod_post\": false, \"created_utc\": 1439820746.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uvuw\", \"score\": 8, \"author_fullname\": \"t2_dcz63\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Then they will make a show out of it and get someone like Colin Farrell to do that\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5vi2z\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThen they will make a show out of it and get someone like Colin Farrell to do that\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vi2z/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820746.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 8}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 9, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xisk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"yourmansconnect\", \"can_mod_post\": false, \"created_utc\": 1439824410.0, \"send_replies\": true, \"parent_id\": \"t1_cu5viz4\", \"score\": 1, \"author_fullname\": \"t2_6twfb\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Colin was great this season\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5xisk\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EColin was great this season\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xisk/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439824410.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5y839\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"dragontail\", \"can_mod_post\": false, \"created_utc\": 1439825625.0, \"send_replies\": true, \"parent_id\": \"t1_cu5viz4\", \"score\": 5, \"author_fullname\": \"t2_70mhh\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"[Relevant](https://www.youtube.com/watch?v=mkBli19MSG4\\u0026t=4m45s)\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5y839\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=mkBli19MSG4\\u0026amp;t=4m45s\\\"\\u003ERelevant\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5y839/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439825625.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 5}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5viz4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uvuw\", \"score\": 9, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"\\\"If you ever bully another kid again, I'll come back and butt fuck your father with your mother's headless corpse on this god damned lawn\\\"\", \"edited\": false, \"author_flair_css_class\": null, \"collapsed\": false, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026quot;If you ever bully another kid again, I\\u0026#39;ll come back and butt fuck your father with your mother\\u0026#39;s headless corpse on this god damned lawn\\u0026quot;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5viz4/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5viz4\", \"created\": 1439820794.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820794.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vu4l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"semperfi3\", \"can_mod_post\": false, \"created_utc\": 1439821384.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uvuw\", \"score\": 2, \"author_fullname\": \"t2_l4equ\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Right.. not gonna play tuba near you that's for sure lol\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5vu4l\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERight.. not gonna play tuba near you that\\u0026#39;s for sure lol\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vu4l/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821384.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uvuw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"wakeupwill\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uat1\", \"score\": 17, \"author_fullname\": \"t2_6epsf\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Nah. Someone's gonna show up at their house and beat the shit out of their dad. Then threaten to skull fuck him with their mom's severed head if he keeps that shit up.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5uvuw\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENah. Someone\\u0026#39;s gonna show up at their house and beat the shit out of their dad. Then threaten to skull fuck him with their mom\\u0026#39;s severed head if he keeps that shit up.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uvuw/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819524.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819524.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 17}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vq5m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"iMurd\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uat1\", \"score\": 2, \"author_fullname\": \"t2_frp9p\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"I thought I heard somewhere they knew the guy and he was just acting. \", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5vq5m\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI thought I heard somewhere they knew the guy and he was just acting. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vq5m/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821180.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821180.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5x2qp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"ScottWalkerSucks\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uat1\", \"score\": 1, \"author_fullname\": \"t2_m1xwn\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"I think it's pretty hilarious. Heh.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5x2qp\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think it\\u0026#39;s pretty hilarious. Heh.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5x2qp/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439823620.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439823620.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu65oiw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Do_Whatever_You_Like\", \"can_mod_post\": false, \"created_utc\": 1439837298.0, \"send_replies\": true, \"parent_id\": \"t1_cu65lvx\", \"score\": -1, \"author_fullname\": \"t2_i1o2i\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Their intention was to harass someone. It's a prank and that's what a prank is. You fuck off old timer, this is what kids do don't get your panties in a twist...\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu65oiw\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETheir intention was to harass someone. It\\u0026#39;s a prank and that\\u0026#39;s what a prank is. You fuck off old timer, this is what kids do don\\u0026#39;t get your panties in a twist...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu65oiw/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439837298.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu65lvx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"zil_zil\", \"can_mod_post\": false, \"created_utc\": 1439837187.0, \"send_replies\": true, \"parent_id\": \"t1_cu637g6\", \"score\": 4, \"author_fullname\": \"t2_cyz55\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Yes, because their intention was to play an instrument and not harass anyone while doing it. Fuck off.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu65lvx\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes, because their intention was to play an instrument and not harass anyone while doing it. Fuck off.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu65lvx/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439837187.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 4}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu637g6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Do_Whatever_You_Like\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uat1\", \"score\": -2, \"author_fullname\": \"t2_i1o2i\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Such pieces of shit they are to try to pull off a prank as dangerous as playing an instrument near someone /s\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu637g6\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESuch pieces of shit they are to try to pull off a prank as dangerous as playing an instrument near someone /s\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu637g6/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439833579.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439833579.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -2}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uat1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"zil_zil\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5txtm\", \"score\": 49, \"author_fullname\": \"t2_cyz55\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Wow those kids are total dicks. Hopefully they get their shit knocked in one day\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5uat1\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWow those kids are total dicks. Hopefully they get their shit knocked in one day\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uat1/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818251.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818251.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 49}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 7, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uzoz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Fresh_Bulgarian_Miak\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uluj\", \"score\": -4, \"author_fullname\": \"t2_lyjdc\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Are you overweight?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5uzoz\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAre you overweight?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uzoz/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819734.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819734.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wjc9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uluj\", \"score\": 1, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"\\u003E just that occasionally assholes can be pretty funny.\\n\\nYeah, my asshole cracks me up.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003Ejust that occasionally assholes can be pretty funny.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EYeah, my asshole cracks me up.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wjc9/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wjc9\", \"created\": 1439822667.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822667.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cumy29e\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decalance\", \"can_mod_post\": false, \"created_utc\": 1441111286.0, \"send_replies\": true, \"parent_id\": \"t1_cu5wqhq\", \"score\": 1, \"author_fullname\": \"t2_6vglx\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"You do know humour is subjective \", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cumy29e\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou do know humour is subjective \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cumy29e/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1441111286.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5wqhq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"xFoeHammer\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uluj\", \"score\": 10, \"author_fullname\": \"t2_a09m6\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Jackass teenagers *copying a family guy episode* and doing it in a way that negatively affects real people really isn't that funny.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5wqhq\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJackass teenagers \\u003Cem\\u003Ecopying a family guy episode\\u003C/em\\u003E and doing it in a way that negatively affects real people really isn\\u0026#39;t that funny.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wqhq/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439823018.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439823018.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 10}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uluj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"[deleted]\", \"can_mod_post\": false, \"created_utc\": 1439818937.0, \"send_replies\": true, \"parent_id\": \"t1_cu5txtm\", \"score\": 7, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[deleted]\", \"edited\": 1633229104.0, \"author_flair_css_class\": null, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[deleted]\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uluj/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uluj\", \"created\": 1439818937.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6lwmn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"litadoggie\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uyrg\", \"score\": 1, \"author_fullname\": \"t2_gyurv\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"It's real; I know the drummer!\\n\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu6lwmn\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u0026#39;s real; I know the drummer!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6lwmn/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439864085.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439864085.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uyrg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"areolaisland\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5txtm\", \"score\": 18, \"author_fullname\": \"t2_ivuhv\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Looks fake to me, but if it is actually real, then I hope the dude smashed the kid's sax at least.\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5uyrg\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELooks fake to me, but if it is actually real, then I hope the dude smashed the kid\\u0026#39;s sax at least.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uyrg/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819684.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819684.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 18}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vibj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"senorbolsa\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5txtm\", \"score\": 2, \"author_fullname\": \"t2_8a2ug\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Oh god, I love that he just continues walking like he is trying to pretend he isn't following the guy.\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5vibj\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh god, I love that he just continues walking like he is trying to pretend he isn\\u0026#39;t following the guy.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vibj/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820759.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820759.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vjvq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"pessimistic_platypus\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5txtm\", \"score\": 5, \"author_fullname\": \"t2_lekw8\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"The comments on that thing are awful.\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5vjvq\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe comments on that thing are awful.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vjvq/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820843.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820843.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 5}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5txtm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"joavim\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tlz5\", \"score\": 25, \"author_fullname\": \"t2_bw3kg\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"[Now in real life](https://www.youtube.com/watch?v=Y5zCVlNuuO4)\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5txtm\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=Y5zCVlNuuO4\\\"\\u003ENow in real life\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5txtm/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817436.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439817436.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 25}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu694c2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"EdwardBola\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tlz5\", \"score\": -7, \"author_fullname\": \"t2_ice8x\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"\\\"That'll be sixty dolla-\\\"\\n\\nCouldn't edit in that last 1/4 of a second?\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu694c2\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026quot;That\\u0026#39;ll be sixty dolla-\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ECouldn\\u0026#39;t edit in that last 1/4 of a second?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu694c2/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439842400.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439842400.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -7}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tlz5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"avboden\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tgzu\", \"score\": 182, \"author_fullname\": \"t2_6ekji\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"[BRRRHRGHRGHHH](https://www.youtube.com/watch?v=d0aIqx1McVI)\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5tlz5\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=d0aIqx1McVI\\\"\\u003EBRRRHRGHRGHHH\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tlz5/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439816644.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816644.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 182}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u1co\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"PM_ME_YA_BEWBS\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tzj5\", \"score\": 15, \"author_fullname\": \"t2_g768s\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Found the fatty\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5u1co\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFound the fatty\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u1co/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817664.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439817664.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 15}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u1lw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"lingh0e\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tzj5\", \"score\": 26, \"author_fullname\": \"t2_5i57j\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"No, it's reddit making a reference to a joke on Family Guy, but nice try anyways fatty. \", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5u1lw\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo, it\\u0026#39;s reddit making a reference to a joke on Family Guy, but nice try anyways fatty. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u1lw/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817680.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439817680.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 26}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u33d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"marnches\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tzj5\", \"score\": 3, \"author_fullname\": \"t2_9xjxm\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Yes. They should learn to control themselves.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5u33d\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes. They should learn to control themselves.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u33d/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817773.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439817773.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u3xi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"Hara-Kiri\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tzj5\", \"score\": 9, \"author_fullname\": \"t2_4nr5t\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Well that was more making fun of people who think they are fat because they have a glandular problem rather than that they eat too much. \", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5u3xi\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWell that was more making fun of people who think they are fat because they have a glandular problem rather than that they eat too much. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u3xi/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817824.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439817824.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 9}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u5pa\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Hansen301\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tzj5\", \"score\": 3, \"author_fullname\": \"t2_7g6jn\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Well get thin then lol \", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5u5pa\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWell get thin then lol \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u5pa/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817937.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439817937.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uct8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"myrptaway\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ub32\", \"score\": 0, \"author_fullname\": \"t2_gpf0f\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I think you can say n\\u00efgg\\u0113r here. \", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5uct8\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI think you can say n\\u00efgg\\u0113r here. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uct8/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818378.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818378.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5ub32\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"mcampo84\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tzj5\", \"score\": -1, \"author_fullname\": \"t2_7a8ak\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Well, considering I *am* an overweight person, I guess it's sort of like a black guy saying ni-- you know what, I'm gonna stop there.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5ub32\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWell, considering I \\u003Cem\\u003Eam\\u003C/em\\u003E an overweight person, I guess it\\u0026#39;s sort of like a black guy saying ni-- you know what, I\\u0026#39;m gonna stop there.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ub32/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818268.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439818268.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uzzx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"myrptaway\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5utfs\", \"score\": 1, \"author_fullname\": \"t2_gpf0f\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Das de joke. Doh...\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5uzzx\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDas de joke. Doh...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uzzx/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819750.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819750.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5utfs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"profoundWHALE\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tzj5\", \"score\": 1, \"author_fullname\": \"t2_bgi9o\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"You're calling other people dumb because you can't write something without it sounding sarcastic... K.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5utfs\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou\\u0026#39;re calling other people dumb because you can\\u0026#39;t write something without it sounding sarcastic... K.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5utfs/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819386.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439819386.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tzj5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"myrptaway\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tgzu\", \"score\": -34, \"author_fullname\": \"t2_gpf0f\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Wow Reddit making fun of overweight people...again.\\n\\nGood.\\n\\nEdit: you dumb mother fuckers. I said \\\"good\\\" as in keep up the good work. \", \"edited\": 1439818971.0, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5tzj5\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWow Reddit making fun of overweight people...again.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGood.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: you dumb mother fuckers. I said \\u0026quot;good\\u0026quot; as in keep up the good work. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tzj5/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817549.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817549.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -34}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu638nc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Thundercats_Hoooo\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tgzu\", \"score\": 1, \"author_fullname\": \"t2_mofxd\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Then stop eating glandulars!\\n\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu638nc\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThen stop eating glandulars!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu638nc/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439833628.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439833628.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tgzu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"mcampo84\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5sye5\", \"score\": 231, \"author_fullname\": \"t2_7a8ak\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"\\u003EI have a glandular problem! \", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5tgzu\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EI have a glandular problem! \\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tgzu/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439816297.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816297.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 231}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu638w9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Do_Whatever_You_Like\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5wzc7\", \"score\": 1, \"author_fullname\": \"t2_i1o2i\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"The guy says \\\"tuba\\\" so call out OP\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu638w9\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe guy says \\u0026quot;tuba\\u0026quot; so call out OP\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu638w9/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439833639.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439833639.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5wzc7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Logiconaut\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5w3gc\", \"score\": 4, \"author_fullname\": \"t2_8ctxc\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I didn't see anyone with a tuba but maybe the guy with the sax knows him.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5wzc7\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI didn\\u0026#39;t see anyone with a tuba but maybe the guy with the sax knows him.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wzc7/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439823458.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439823458.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu69cxf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"rimalp\", \"can_mod_post\": false, \"created_utc\": 1439842761.0, \"send_replies\": true, \"parent_id\": \"t1_cu65kd1\", \"score\": 2, \"author_fullname\": \"t2_d2n5p\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"\\u003E So never play a prank on anyone basically because what if they don't laugh at it?\\n\\nThat's not what I said. The asshole sax player and his buddy made a video of the situation and put it on youtube. The guy, that they are making \\\"fun\\\" of, has no chance of preventing this. It's not like they asked him \\\"hey can we put this on youtube?\\\". That's just a really really cowardly move by the asshat playing the sax and his asshole buddy secretly recording the situation. It would be a different thing, if the guy would have laughed and/or agreed to be put on Youtube.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu69cxf\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ESo never play a prank on anyone basically because what if they don\\u0026#39;t laugh at it?\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EThat\\u0026#39;s not what I said. The asshole sax player and his buddy made a video of the situation and put it on youtube. The guy, that they are making \\u0026quot;fun\\u0026quot; of, has no chance of preventing this. It\\u0026#39;s not like they asked him \\u0026quot;hey can we put this on youtube?\\u0026quot;. That\\u0026#39;s just a really really cowardly move by the asshat playing the sax and his asshole buddy secretly recording the situation. It would be a different thing, if the guy would have laughed and/or agreed to be put on Youtube.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu69cxf/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439842761.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu65kd1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Do_Whatever_You_Like\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu65d4u\", \"score\": -3, \"author_fullname\": \"t2_i1o2i\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"That's so stupid. So never play a prank on anyone basically because what if they don't laugh at it? Am I supposed to check and make sure all my friends are in a good mood first? and never prank a stranger? \\n\\nNo you're just adding the \\\"bro\\\" dialog to try to lump him into the same category as people who call the SWAT on other people and do other dumb shit. Yeah he would say \\\"it's just a prank\\\" because it fucking is, he's playing music next to someone who the fuck cares? Of course it's filmed, that's the whole fucking point. Prank shows are filmed too but you don't bitch about those..\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu65kd1\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u0026#39;s so stupid. So never play a prank on anyone basically because what if they don\\u0026#39;t laugh at it? Am I supposed to check and make sure all my friends are in a good mood first? and never prank a stranger? \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENo you\\u0026#39;re just adding the \\u0026quot;bro\\u0026quot; dialog to try to lump him into the same category as people who call the SWAT on other people and do other dumb shit. Yeah he would say \\u0026quot;it\\u0026#39;s just a prank\\u0026quot; because it fucking is, he\\u0026#39;s playing music next to someone who the fuck cares? Of course it\\u0026#39;s filmed, that\\u0026#39;s the whole fucking point. Prank shows are filmed too but you don\\u0026#39;t bitch about those..\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu65kd1/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439837123.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439837123.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -3}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu65d4u\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"rimalp\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu639m7\", \"score\": 1, \"author_fullname\": \"t2_d2n5p\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"It's only fun if the pranked person can laugh about it too. This sax player idiot is more like \\\"It's just a prank, bro. Let's make fun of a stranger and put him on display on youtube, bro. He doesn't know we're filming this, bro.\\\"\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu65d4u\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u0026#39;s only fun if the pranked person can laugh about it too. This sax player idiot is more like \\u0026quot;It\\u0026#39;s just a prank, bro. Let\\u0026#39;s make fun of a stranger and put him on display on youtube, bro. He doesn\\u0026#39;t know we\\u0026#39;re filming this, bro.\\u0026quot;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu65d4u/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439836816.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439836816.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu639m7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Do_Whatever_You_Like\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5w3gc\", \"score\": -1, \"author_fullname\": \"t2_i1o2i\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"not really. take a fucking joke. not everyone who pulls a prank deserves to get punched...\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu639m7\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Enot really. take a fucking joke. not everyone who pulls a prank deserves to get punched...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu639m7/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439833670.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439833670.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5w3gc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"xf-\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tyhz\", \"score\": -2, \"author_fullname\": \"t2_nhm84\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"That little dipshit with the ~~tuba~~ sax deserves a punch to the face.\\n\\nedit: I'm not a musician.\", \"edited\": 1439825571.0, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5w3gc\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat little dipshit with the \\u003Cdel\\u003Etuba\\u003C/del\\u003E sax deserves a punch to the face.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Eedit: I\\u0026#39;m not a musician.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w3gc/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821858.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821858.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -2}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tyhz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"pizzafest\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5sye5\", \"score\": 12, \"author_fullname\": \"t2_bf2it\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"[Poor Guy](https://www.youtube.com/watch?v=QBjf8T5k6Mk)\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5tyhz\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=QBjf8T5k6Mk\\\"\\u003EPoor Guy\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tyhz/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817481.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817481.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 12}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5udrw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"DingyWarehouse\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5sye5\", \"score\": 13, \"author_fullname\": \"t2_ax11y\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Blow me like one of your french horns.\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5udrw\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBlow me like one of your french horns.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5udrw/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818437.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818437.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 13}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5udsa\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"-zimms-\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5sye5\", \"score\": 2, \"author_fullname\": \"t2_6jx9c\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"[Like this?](https://www.youtube.com/watch?v=Rs4P1kKK-5k)\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5udsa\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=Rs4P1kKK-5k\\\"\\u003ELike this?\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5udsa/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818437.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818437.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v6cc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"regular_lurker\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5sye5\", \"score\": 18, \"author_fullname\": \"t2_nk8au\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Thought you guys would appreciate this. Inspired by the guy at the KKK rally, the TV Show \\\"The Last Leg\\\" has started following people around, that the public doesn't like, with a Sousaphone and titled the section [Tubular Bellend](https://www.youtube.com/watch?v=7QosyPyUTag)\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5v6cc\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThought you guys would appreciate this. Inspired by the guy at the KKK rally, the TV Show \\u0026quot;The Last Leg\\u0026quot; has started following people around, that the public doesn\\u0026#39;t like, with a Sousaphone and titled the section \\u003Ca href=\\\"https://www.youtube.com/watch?v=7QosyPyUTag\\\"\\u003ETubular Bellend\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v6cc/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820103.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820103.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 18}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 2, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5zo4i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"created_utc\": 1439828003.0, \"send_replies\": true, \"parent_id\": \"t1_cu5sye5\", \"score\": 2, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"\\\"I want all the ham.\\\"\", \"edited\": false, \"author_flair_css_class\": null, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026quot;I want all the ham.\\u0026quot;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5zo4i/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5zo4i\", \"created\": 1439828003.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5sye5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"Lommo97\", \"can_mod_post\": false, \"created_utc\": 1439814908.0, \"send_replies\": true, \"parent_id\": \"t1_cu5pebp\", \"score\": 692, \"author_fullname\": \"t2_g6ttp\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Better than being a fat guy and getting followed around with a Tuba all day.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5sye5\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBetter than being a fat guy and getting followed around with a Tuba all day.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5sye5/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439814908.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 692}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 11, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6brig\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"rarely-sarcastic\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tovd\", \"score\": 1, \"author_fullname\": \"t2_9xren\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I fell off my chair today. I wasn't even moving around too much. I just kind of kept on sliding lower and lower and then when I tried to sit back up the chair just slid all the way back and I was on the floor. \", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu6brig\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI fell off my chair today. I wasn\\u0026#39;t even moving around too much. I just kind of kept on sliding lower and lower and then when I tried to sit back up the chair just slid all the way back and I was on the floor. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6brig/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439846362.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439846362.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tovd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pebp\", \"score\": 11, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[deleted]\", \"edited\": 1462414186.0, \"author_flair_css_class\": null, \"collapsed\": false, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[deleted]\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tovd/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tovd\", \"created\": 1439816844.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816844.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu616jd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"omnilynx\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tzum\", \"score\": 3, \"author_fullname\": \"t2_3fiym\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I thought so too at first but looking carefully, he only steps with one foot, and the foot he's not stepping with is actually the first to slide. So he would have had to be already on a treadmill, which started up as he took the step. The simpler explanation is that he's on a slippery surface.\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu616jd\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI thought so too at first but looking carefully, he only steps with one foot, and the foot he\\u0026#39;s not stepping with is actually the first to slide. So he would have had to be already on a treadmill, which started up as he took the step. The simpler explanation is that he\\u0026#39;s on a slippery surface.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu616jd/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439830420.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439830420.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tzum\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"kosh56\", \"can_mod_post\": false, \"created_utc\": 1439817568.0, \"send_replies\": true, \"parent_id\": \"t1_cu5pebp\", \"score\": 1, \"author_fullname\": \"t2_ausz6\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"It looks like he purposefully stepped on a running treadmill.This looks staged to me.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5tzum\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt looks like he purposefully stepped on a running treadmill.This looks staged to me.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tzum/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817568.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ujqr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"uncleawesome\", \"can_mod_post\": false, \"created_utc\": 1439818810.0, \"send_replies\": true, \"parent_id\": \"t1_cu5pebp\", \"score\": 0, \"author_fullname\": \"t2_3cbg9\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"http://instantrimshot.com/classic/?sound=rimshot is there for you.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5ujqr\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://instantrimshot.com/classic/?sound=rimshot\\\"\\u003Ehttp://instantrimshot.com/classic/?sound=rimshot\\u003C/a\\u003E is there for you.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ujqr/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818810.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6dave\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Borkach\", \"can_mod_post\": false, \"created_utc\": 1439848815.0, \"send_replies\": true, \"parent_id\": \"t1_cu5pebp\", \"score\": 1, \"author_fullname\": \"t2_pjyg1\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"That kid saw **25 cents** on the floor. Quick reaction yo\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu6dave\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat kid saw \\u003Cstrong\\u003E25 cents\\u003C/strong\\u003E on the floor. Quick reaction yo\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6dave/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439848815.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5pebp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"johnnwho\", \"can_mod_post\": false, \"created_utc\": 1439801151.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1134, \"author_fullname\": \"t2_ay7a7\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Man I am glad there isn't someone on a drum set every time I fall over.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5pebp\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMan I am glad there isn\\u0026#39;t someone on a drum set every time I fall over.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5pebp/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439801151.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1134}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u550\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"Hara-Kiri\", \"can_mod_post\": false, \"created_utc\": 1439817901.0, \"send_replies\": true, \"parent_id\": \"t1_cu5twsd\", \"score\": 4, \"author_fullname\": \"t2_4nr5t\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"What the hell are you doing here?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5u550\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat the hell are you doing here?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u550/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817901.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u9ks\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"CplCucumber\", \"can_mod_post\": false, \"created_utc\": 1439818176.0, \"send_replies\": true, \"parent_id\": \"t1_cu5u7sm\", \"score\": 3, \"author_fullname\": \"t2_6h5ln\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"https://youtu.be/PZCq_G6m6Iw?t=353\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5u9ks\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://youtu.be/PZCq_G6m6Iw?t=353\\\"\\u003Ehttps://youtu.be/PZCq_G6m6Iw?t=353\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u9ks/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818176.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5u7sm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"xKillaBeex\", \"can_mod_post\": false, \"created_utc\": 1439818064.0, \"send_replies\": true, \"parent_id\": \"t1_cu5twsd\", \"score\": 3, \"author_fullname\": \"t2_5bb9f\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"You okay dude?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5u7sm\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou okay dude?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u7sm/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818064.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5twsd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"CplCucumber\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tc84\", \"score\": -2, \"author_fullname\": \"t2_6h5ln\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"eat me dick reddit person that suddenly thinks I am a spammer. Eat my dick. you know what, nows my chance to talk, and I have nothing to say so f you that reddit asshole that made it so I couldnt post anymore. eat my weiner.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5twsd\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eeat me dick reddit person that suddenly thinks I am a spammer. Eat my dick. you know what, nows my chance to talk, and I have nothing to say so f you that reddit asshole that made it so I couldnt post anymore. eat my weiner.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5twsd/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817369.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817369.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -2}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tc84\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"CplCucumber\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5srsk\", \"score\": -4, \"author_fullname\": \"t2_6h5ln\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"nobody every believes you when you have aoraphobia, since you are usually drunk as fuck when you tell people you have it.\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5tc84\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Enobody every believes you when you have aoraphobia, since you are usually drunk as fuck when you tell people you have it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tc84/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439815950.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439815950.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -4}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5srsk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"CplCucumber\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ruv0\", \"score\": -15, \"author_fullname\": \"t2_6h5ln\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I actually have agoraphobia, sorry.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5srsk\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI actually have agoraphobia, sorry.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5srsk/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439814388.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439814388.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -15}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5te48\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"justincase_2008\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ruv0\", \"score\": 6, \"author_fullname\": \"t2_blpxv\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Shit I use my phone over pc for Reddit just cause I'm so use to the app. When I go on the pc I'm lost for a good 3 minutes. \", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5te48\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EShit I use my phone over pc for Reddit just cause I\\u0026#39;m so use to the app. When I go on the pc I\\u0026#39;m lost for a good 3 minutes. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5te48/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439816092.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439816092.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 6}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5ruv0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"Arrager\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5rnda\", \"score\": 36, \"author_fullname\": \"t2_lf97z\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Maybe the dude(tte) is not at home? You do realize there is a world out that front door, right? \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5ruv0\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMaybe the dude(tte) is not at home? You do realize there is a world out that front door, right? \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ruv0/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439811460.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439811460.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 36}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5rzz6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Palpable_Hate\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5rv36\", \"score\": 3, \"author_fullname\": \"t2_jc9ul\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Specially while on the subway to his mother's house.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5rzz6\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESpecially while on the subway to his mother\\u0026#39;s house.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5rzz6/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439811945.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439811945.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5rv36\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"downhillcarver\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5rnda\", \"score\": 16, \"author_fullname\": \"t2_66636\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"We have a computer at home, but we're also browsing from work, lunch, our parents house, the subway, your mom's house, etc. So we're spending a lot of time on mobile. \\n\\nAt this point, I don't even go to reddit on my computer, I'll have reddit up on my phone, and be doing something else on the computer. \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5rv36\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWe have a computer at home, but we\\u0026#39;re also browsing from work, lunch, our parents house, the subway, your mom\\u0026#39;s house, etc. So we\\u0026#39;re spending a lot of time on mobile. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAt this point, I don\\u0026#39;t even go to reddit on my computer, I\\u0026#39;ll have reddit up on my phone, and be doing something else on the computer. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5rv36/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439811481.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439811481.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 16}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6kor4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"burnbrown\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5rnda\", \"score\": 1, \"author_fullname\": \"t2_96acb\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Yes.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu6kor4\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6kor4/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439861913.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439861913.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5rnda\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"CplCucumber\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5qhfy\", \"score\": -43, \"author_fullname\": \"t2_6h5ln\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"you say mobile user like you don't have a pc, or laptop at home... wait is this how things are becoming? Is it gonna be phone over pc in the future? \", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5rnda\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eyou say mobile user like you don\\u0026#39;t have a pc, or laptop at home... wait is this how things are becoming? Is it gonna be phone over pc in the future? \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5rnda/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439810710.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439810710.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -43}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 11, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"more\", \"data\": {\"count\": 0, \"name\": \"t1__\", \"id\": \"_\", \"parent_id\": \"t1_cu5x40j\", \"depth\": 10, \"children\": []}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5x40j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"nahfoo\", \"can_mod_post\": false, \"created_utc\": 1439823683.0, \"send_replies\": true, \"parent_id\": \"t1_cu5wfv0\", \"score\": 1, \"author_fullname\": \"t2_bbgle\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"How do you like it so far? I like reddit is fun but it's the only one I know, people reccomented relay for reddit but I couldn't get into it. Some things were more complicated than they should be\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5x40j\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow do you like it so far? I like reddit is fun but it\\u0026#39;s the only one I know, people reccomented relay for reddit but I couldn\\u0026#39;t get into it. Some things were more complicated than they should be\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5x40j/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439823683.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xhrg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"FMAlfonse\", \"can_mod_post\": false, \"created_utc\": 1439824358.0, \"send_replies\": true, \"parent_id\": \"t1_cu5wfv0\", \"score\": 1, \"author_fullname\": \"t2_b8f6e\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"It will also do that for YouTube videos. I hope you have an enjoyable experience. \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5xhrg\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt will also do that for YouTube videos. I hope you have an enjoyable experience. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xhrg/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439824358.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xw3s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Lifecoachingis50\", \"can_mod_post\": false, \"created_utc\": 1439825063.0, \"send_replies\": true, \"parent_id\": \"t1_cu5wfv0\", \"score\": 1, \"author_fullname\": \"t2_c49f9\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Just a tip that I just figured out, you need to set off the NSFW filter to see any NSFW posts. \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5xw3s\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust a tip that I just figured out, you need to set off the NSFW filter to see any NSFW posts. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xw3s/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439825063.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5wfv0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"imhooks\", \"can_mod_post\": false, \"created_utc\": 1439822491.0, \"send_replies\": true, \"parent_id\": \"t1_cu5w67h\", \"score\": 1, \"author_fullname\": \"t2_i19in\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Just installed it. I like how it looks, and the floating window gifs open in is what im looking for. \", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5wfv0\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJust installed it. I like how it looks, and the floating window gifs open in is what im looking for. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wfv0/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439822491.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5w67h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"FMAlfonse\", \"can_mod_post\": false, \"created_utc\": 1439821998.0, \"send_replies\": true, \"parent_id\": \"t1_cu5tuy4\", \"score\": 1, \"author_fullname\": \"t2_b8f6e\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Sync for reddit\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5w67h\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESync for reddit\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w67h/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821998.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wczp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"JollyRancherReminder\", \"can_mod_post\": false, \"created_utc\": 1439822344.0, \"send_replies\": true, \"parent_id\": \"t1_cu5tuy4\", \"score\": 1, \"author_fullname\": \"t2_5tist\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Bacon Reader\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5wczp\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBacon Reader\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wczp/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439822344.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tuy4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"imhooks\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tsc2\", \"score\": 3, \"author_fullname\": \"t2_i19in\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Gracias\\n\\nEdit: Dammit! I'm not an apple guy. Need an android option...\", \"edited\": 1439819793.0, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5tuy4\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGracias\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEdit: Dammit! I\\u0026#39;m not an apple guy. Need an android option...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tuy4/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817249.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817249.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u0f7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Official_Legacy\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tsc2\", \"score\": 2, \"author_fullname\": \"t2_e1hws\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"But YouTube videos run inside the Alien Blue app....\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5u0f7\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBut YouTube videos run inside the Alien Blue app....\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u0f7/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817605.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817605.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tsc2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"[deleted]\", \"can_mod_post\": false, \"created_utc\": 1439817077.0, \"send_replies\": true, \"parent_id\": \"t1_cu5to9q\", \"score\": 11, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[deleted]\", \"edited\": 1526589245.0, \"author_flair_css_class\": null, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[deleted]\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tsc2/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tsc2\", \"created\": 1439817077.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"more\", \"data\": {\"count\": 0, \"name\": \"t1__\", \"id\": \"_\", \"parent_id\": \"t1_cu5w5nv\", \"depth\": 10, \"children\": []}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5w5nv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bigted41\", \"can_mod_post\": false, \"created_utc\": 1439821970.0, \"send_replies\": true, \"parent_id\": \"t1_cu5vnzj\", \"score\": 1, \"author_fullname\": \"t2_5ww00\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"were you using night time mode with reddit is fun? turns background black and text white. easier to look at.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5w5nv\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewere you using night time mode with reddit is fun? turns background black and text white. easier to look at.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w5nv/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821970.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5vnzj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"imhooks\", \"can_mod_post\": false, \"created_utc\": 1439821062.0, \"send_replies\": true, \"parent_id\": \"t1_cu5v63q\", \"score\": 1, \"author_fullname\": \"t2_i19in\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"OHHH, within reddit is fun. Blah, I guess I just wasn't looking for another window to open up. I just installed 'reddit sync' and it's just about what im looking for. Gifs open in a floating window and the thread view of comment sections is easier on the eyes and shows guilded comments. It's going to take time to get used to though. \\n\\n\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5vnzj\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOHHH, within reddit is fun. Blah, I guess I just wasn\\u0026#39;t looking for another window to open up. I just installed \\u0026#39;reddit sync\\u0026#39; and it\\u0026#39;s just about what im looking for. Gifs open in a floating window and the thread view of comment sections is easier on the eyes and shows guilded comments. It\\u0026#39;s going to take time to get used to though. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vnzj/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821062.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5v63q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bigted41\", \"can_mod_post\": false, \"created_utc\": 1439820089.0, \"send_replies\": true, \"parent_id\": \"t1_cu5v1pe\", \"score\": 1, \"author_fullname\": \"t2_5ww00\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"in my reddit is fun app, i click over on the right where the thumbnail is, not the text title. when you click the thumbnail (or question mark thumbnail) it opens the link within reddit is fun. maybe that's what you are doing wrong???\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5v63q\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ein my reddit is fun app, i click over on the right where the thumbnail is, not the text title. when you click the thumbnail (or question mark thumbnail) it opens the link within reddit is fun. maybe that\\u0026#39;s what you are doing wrong???\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v63q/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820089.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5v1pe\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"imhooks\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tz3i\", \"score\": 1, \"author_fullname\": \"t2_i19in\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"It's just a blue hyperlink for me, so I have to click it, then I get a dialogue to copy, share, open. It's a real headache. Is there a setting im missing?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5v1pe\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u0026#39;s just a blue hyperlink for me, so I have to click it, then I get a dialogue to copy, share, open. It\\u0026#39;s a real headache. Is there a setting im missing?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v1pe/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819845.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819845.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tz3i\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bigted41\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5to9q\", \"score\": 2, \"author_fullname\": \"t2_5ww00\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"my gifs stay within reddit is fun...\\n\\nvideos go out to youtubes, but one hit of the previous button sends me back to reddit is fun\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5tz3i\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Emy gifs stay within reddit is fun...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Evideos go out to youtubes, but one hit of the previous button sends me back to reddit is fun\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tz3i/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817520.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817520.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wmwb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"StinkyS\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5to9q\", \"score\": 1, \"author_fullname\": \"t2_9rg9a\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I use \\\"Relay\\\" for Reddit. I like it alot, opens all videos and gifs in app\\n\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5wmwb\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI use \\u0026quot;Relay\\u0026quot; for Reddit. I like it alot, opens all videos and gifs in app\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wmwb/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439822843.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822843.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6c00w\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"RPGX400\", \"can_mod_post\": false, \"created_utc\": 1439846723.0, \"send_replies\": true, \"parent_id\": \"t1_cu6419n\", \"score\": 1, \"author_fullname\": \"t2_9tf81\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I mean that one time I clicked on a link and it played a video with audio. It looked like a gif but sounded like a video. \\n\\nSorry if I mislead anybody. I do not like the integrated YouTube video player and instead use the actual YouTube app. \", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu6c00w\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI mean that one time I clicked on a link and it played a video with audio. It looked like a gif but sounded like a video. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESorry if I mislead anybody. I do not like the integrated YouTube video player and instead use the actual YouTube app. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6c00w/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439846723.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu6419n\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"imhooks\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu62h2m\", \"score\": 1, \"author_fullname\": \"t2_i19in\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"What do you mean 1% videos are formatted properly? In Sync?\\n\\nWhen I click on a video in Sync it opens up the youtube app, or the Viral app that I use in place of youtube.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu6419n\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat do you mean 1% videos are formatted properly? In Sync?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWhen I click on a video in Sync it opens up the youtube app, or the Viral app that I use in place of youtube.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6419n/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439834823.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439834823.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu62h2m\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"RPGX400\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5to9q\", \"score\": 1, \"author_fullname\": \"t2_9tf81\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Gifs and pictures work fine. 1-5% of the time gifs don't load. And 1% of the time videos (not youtube videos) are formated properly and play in Reddit sync with no borders (like a gif)\\n\\nKeep in mind I disabled YouTube cus that player sucks.. (App is better)\", \"edited\": 1439846752.0, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu62h2m\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGifs and pictures work fine. 1-5% of the time gifs don\\u0026#39;t load. And 1% of the time videos (not youtube videos) are formated properly and play in Reddit sync with no borders (like a gif)\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EKeep in mind I disabled YouTube cus that player sucks.. (App is better)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu62h2m/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439832444.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439832444.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5to9q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"imhooks\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5sxxf\", \"score\": 5, \"author_fullname\": \"t2_i19in\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"So do gifs. What am I missing? On my phone using \\\"reddit is fun\\\" It still opens in a new window.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5to9q\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo do gifs. What am I missing? On my phone using \\u0026quot;reddit is fun\\u0026quot; It still opens in a new window.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5to9q/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439816803.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439816803.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 5}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5sxxf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"RPGX400\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5s3ui\", \"score\": 7, \"author_fullname\": \"t2_9tf81\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Unfortunately 99% of the videos require a new browser page. (Not talking about YouTube videos, sorry)\", \"edited\": 1439846809.0, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5sxxf\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUnfortunately 99% of the videos require a new browser page. (Not talking about YouTube videos, sorry)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5sxxf/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439814871.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439814871.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 7}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u0wx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"inno_func\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tsw0\", \"score\": 1, \"author_fullname\": \"t2_8gles\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Strange, youtube videos open like gifs for me. I don't need to exit the app to see them, maybe our settings are different. Check settings, go to link handling and check all the boxes and try again.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5u0wx\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EStrange, youtube videos open like gifs for me. I don\\u0026#39;t need to exit the app to see them, maybe our settings are different. Check settings, go to link handling and check all the boxes and try again.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u0wx/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817636.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439817636.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u65l\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"HowieGaming\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tsw0\", \"score\": 4, \"author_fullname\": \"t2_61aru\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I have no idea what you are doing wrong, but Sync opens all videos, gifs and pictures in app. \", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5u65l\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI have no idea what you are doing wrong, but Sync opens all videos, gifs and pictures in app. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u65l/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817965.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439817965.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uztl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"jarquafelmu\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tsw0\", \"score\": 1, \"author_fullname\": \"t2_7gkou\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Go to settings, link handing, then change YouTube so it opens them in app.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5uztl\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGo to settings, link handing, then change YouTube so it opens them in app.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uztl/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819741.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439819741.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tsw0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"VoraciousGhost\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5s3ui\", \"score\": 1, \"author_fullname\": \"t2_gbyu4\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"What? I'm using sync, and YouTube videos definitely open in the separate YouTube app\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5tsw0\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat? I\\u0026#39;m using sync, and YouTube videos definitely open in the separate YouTube app\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tsw0/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817113.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817113.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5s3ui\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"inno_func\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5qhfy\", \"score\": 10, \"author_fullname\": \"t2_8gles\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Use redditsync, the videos open just like gifs on the app.\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5s3ui\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUse redditsync, the videos open just like gifs on the app.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5s3ui/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439812308.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439812308.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 10}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vcu1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"karrachr000\", \"can_mod_post\": false, \"created_utc\": 1439820468.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uth8\", \"score\": 1, \"author_fullname\": \"t2_bfnlf\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Nope; like I said streams are blocked... I had to get updates from one of the people who work in our *command center* as they have a tv on in there that is always showing news.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5vcu1\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENope; like I said streams are blocked... I had to get updates from one of the people who work in our \\u003Cem\\u003Ecommand center\\u003C/em\\u003E as they have a tv on in there that is always showing news.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vcu1/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820468.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uth8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"thecheat420\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uamk\", \"score\": 6, \"author_fullname\": \"t2_c0p4s\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Were you at least able to watch a live stream of the action on your work computer?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5uth8\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWere you at least able to watch a live stream of the action on your work computer?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uth8/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819388.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819388.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 6}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6fea2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"FalseAD\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uamk\", \"score\": 1, \"author_fullname\": \"t2_cv6yv\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Well excuse me for having no idea of a past experience in your lifetime.\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu6fea2\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWell excuse me for having no idea of a past experience in your lifetime.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6fea2/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439852386.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439852386.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uamk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"karrachr000\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5u0ci\", \"score\": 5, \"author_fullname\": \"t2_bfnlf\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Don't even joke about that... Over a month ago there was a police detective shot less than a mile from my building and the police were swarming the rest of the day looking for the shooter.\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5uamk\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDon\\u0026#39;t even joke about that... Over a month ago there was a police detective shot less than a mile from my building and the police were swarming the rest of the day looking for the shooter.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uamk/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818240.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818240.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 5}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5u0ci\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"FalseAD\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tqhn\", \"score\": 16, \"author_fullname\": \"t2_cv6yv\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"*\\\"Gunner on their way to local office building\\\"*\\n\\nWouldn't want to miss that\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5u0ci\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cem\\u003E\\u0026quot;Gunner on their way to local office building\\u0026quot;\\u003C/em\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EWouldn\\u0026#39;t want to miss that\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u0ci/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817601.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439817601.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 16}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tqhn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"karrachr000\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5t1uw\", \"score\": 14, \"author_fullname\": \"t2_bfnlf\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"At least your work computers allow videos... Mine blocks all videos and streams of any kind, even news.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5tqhn\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAt least your work computers allow videos... Mine blocks all videos and streams of any kind, even news.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tqhn/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439816954.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816954.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 14}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tz31\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"i_reddited_it\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5t1uw\", \"score\": 5, \"author_fullname\": \"t2_aeny6\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"\\u003E As far as anyone knows I'm doing something productive over here.\\n\\n... Said everyone, always. \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5tz31\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003EAs far as anyone knows I\\u0026#39;m doing something productive over here.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003E... Said everyone, always. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tz31/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817519.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817519.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wcp3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"OyleSlyck\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5u3du\", \"score\": 6, \"author_fullname\": \"t2_58gzf\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"In your browser window, hit spacebar to scroll down, shift + spacebar to scroll up.\\n\\nNo more hyper scroll wheel activity to give you away.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5wcp3\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn your browser window, hit spacebar to scroll down, shift + spacebar to scroll up.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENo more hyper scroll wheel activity to give you away.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wcp3/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439822329.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439822329.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 6}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ze1k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5u3du\", \"score\": 1, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Get a nicer mouse!\", \"edited\": false, \"author_flair_css_class\": null, \"collapsed\": false, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGet a nicer mouse!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ze1k/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ze1k\", \"created\": 1439827546.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439827546.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5u3du\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"StillEnjoyLegos\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5t1uw\", \"score\": 6, \"author_fullname\": \"t2_guore\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Yes it does. My co-worker sitting one cube over apparently could hear me scrolling all the time... the scroll wheel on the middle of my mouse makes a bit of noise when I'm scrolling through comments like something fierce.\\n\\nNever know what's gonna give you up, be safe out there guys. \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5u3du\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes it does. My co-worker sitting one cube over apparently could hear me scrolling all the time... the scroll wheel on the middle of my mouse makes a bit of noise when I\\u0026#39;m scrolling through comments like something fierce.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ENever know what\\u0026#39;s gonna give you up, be safe out there guys. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u3du/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817793.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817793.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 6}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v6dh\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Disgruntled__Goat\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5t1uw\", \"score\": 0, \"author_fullname\": \"t2_4ucug\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Wow, strange that you don't have a volume control on your computer.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5v6dh\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWow, strange that you don\\u0026#39;t have a volume control on your computer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v6dh/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820105.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820105.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5w3f3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"jrworthy\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5t1uw\", \"score\": 1, \"author_fullname\": \"t2_4tjht\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"http://www.amazon.com/s/ref=nb_sb_noss_2?url=search-alias%3Daps\\u0026field-keywords=headphones\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5w3f3\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://www.amazon.com/s/ref=nb_sb_noss_2?url=search-alias%3Daps\\u0026amp;field-keywords=headphones\\\"\\u003Ehttp://www.amazon.com/s/ref=nb_sb_noss_2?url=search-alias%3Daps\\u0026amp;field-keywords=headphones\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w3f3/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821856.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821856.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cvdz0ux\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"iceman78772\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5t1uw\", \"score\": 1, \"author_fullname\": \"t2_6bcyb\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Why not just mute your PC?\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cvdz0ux\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhy not just mute your PC?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cvdz0ux/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1443203205.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1443203205.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5t1uw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"full-of-grace\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5qhfy\", \"score\": 245, \"author_fullname\": \"t2_eexw9\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Also, videos make noise. As far as anyone knows I'm doing something productive over here. Noise attracts attention. \", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5t1uw\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAlso, videos make noise. As far as anyone knows I\\u0026#39;m doing something productive over here. Noise attracts attention. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5t1uw/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439815174.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439815174.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 245}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5w02a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"grahamsimmons\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5u1zy\", \"score\": 2, \"author_fullname\": \"t2_7mt1x\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Relay is the best Reddit app\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5w02a\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERelay is the best Reddit app\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w02a/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821686.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821686.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5u1zy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"UnexpectedCroissant\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5qhfy\", \"score\": 4, \"author_fullname\": \"t2_lk9r2\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"On Relay for Reddit, videos never need a new page, they open right on top of the other content\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5u1zy\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOn Relay for Reddit, videos never need a new page, they open right on top of the other content\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u1zy/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817705.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817705.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u748\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"created_utc\": 1439818025.0, \"send_replies\": true, \"parent_id\": \"t1_cu5qhfy\", \"score\": 1, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Yup. This is very accurate\\n\\nSource: in the DMV number G15 and they're only in fucking F89 on a fucking Monday morning when they said it would be good because no one would fucking be here. There are people here. \", \"edited\": false, \"author_flair_css_class\": null, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYup. This is very accurate\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESource: in the DMV number G15 and they\\u0026#39;re only in fucking F89 on a fucking Monday morning when they said it would be good because no one would fucking be here. There are people here. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u748/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5u748\", \"created\": 1439818025.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ub5c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"tangoshukudai\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5qhfy\", \"score\": -1, \"author_fullname\": \"t2_46xop\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"As a mobile user, videos are optimized for my device and use my hardware decoder. I much much prefer videos. \", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5ub5c\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs a mobile user, videos are optimized for my device and use my hardware decoder. I much much prefer videos. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ub5c/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818272.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818272.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ueic\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"0whodidyousay0\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5qhfy\", \"score\": 0, \"author_fullname\": \"t2_gkbeq\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I'm on my phone and the videos load in-app, what are you using to browse Reddit? \", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5ueic\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m on my phone and the videos load in-app, what are you using to browse Reddit? \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ueic/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818490.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818490.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wtvl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"created_utc\": 1439823188.0, \"send_replies\": true, \"parent_id\": \"t1_cu5qhfy\", \"score\": 1, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Yep. I can't look at videos at work or I'd be busted. Everyone thinks I'm just working on spreadsheets.\", \"edited\": false, \"author_flair_css_class\": null, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYep. I can\\u0026#39;t look at videos at work or I\\u0026#39;d be busted. Everyone thinks I\\u0026#39;m just working on spreadsheets.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wtvl/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wtvl\", \"created\": 1439823188.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5y5cz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Pelpid\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5qhfy\", \"score\": 1, \"author_fullname\": \"t2_932cx\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"gif's load slower than youtube.\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5y5cz\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Egif\\u0026#39;s load slower than youtube.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5y5cz/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439825496.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439825496.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5qhfy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"Graffy\", \"can_mod_post\": false, \"created_utc\": 1439805937.0, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 405, \"author_fullname\": \"t2_b6q4a\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"As a mobile user I seldom open videos as it has to open in a new page and load.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5qhfy\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs a mobile user I seldom open videos as it has to open in a new page and load.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5qhfy/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439805937.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 405}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5s36w\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"Jeffslot\", \"can_mod_post\": false, \"created_utc\": 1439812246.0, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 31, \"author_fullname\": \"t2_apqgw\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"So where is the actual video with sound? Anyone has a source? \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5s36w\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo where is the actual video with sound? Anyone has a source? \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5s36w/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439812246.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 31}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5txma\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"abc123shutthefuckup\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5spid\", \"score\": 4, \"author_fullname\": \"t2_b4sqh\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Yeah, there is NO WAY the real sound is anywhere near as good as the sound I heard in my head\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5txma\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYeah, there is NO WAY the real sound is anywhere near as good as the sound I heard in my head\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5txma/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817424.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817424.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 4}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5spid\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"pragmatic_duck\", \"can_mod_post\": false, \"created_utc\": 1439814206.0, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 20, \"author_fullname\": \"t2_frdq0\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I'd agree with you for many gifs, but for this one i think part of what makes it funny is that you can hear the sounds in your head.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5spid\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;d agree with you for many gifs, but for this one i think part of what makes it funny is that you can hear the sounds in your head.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5spid/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439814206.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 20}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5t3t8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"Victory33\", \"can_mod_post\": false, \"created_utc\": 1439815321.0, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 3, \"author_fullname\": \"t2_4aywp\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I can't view Youtube at work. Imgur is still allowed. \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5t3t8\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can\\u0026#39;t view Youtube at work. Imgur is still allowed. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5t3t8/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439815321.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tccw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Roscoe_King\", \"can_mod_post\": false, \"created_utc\": 1439815960.0, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 0, \"author_fullname\": \"t2_ajbdb\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"For me it's a work related thing. I don't want everyone to know I'm looking at Reddit in the office. With GIFs like this, I can easily imagine the sound that goes with it, it's easy to open, watch and close and it doesn't make any noise so I can quickly watch it and then close it without disturbing anyone and go back to work. If I want to watch the video anyway, I check out the comments and there's usually a source. \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5tccw\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFor me it\\u0026#39;s a work related thing. I don\\u0026#39;t want everyone to know I\\u0026#39;m looking at Reddit in the office. With GIFs like this, I can easily imagine the sound that goes with it, it\\u0026#39;s easy to open, watch and close and it doesn\\u0026#39;t make any noise so I can quickly watch it and then close it without disturbing anyone and go back to work. If I want to watch the video anyway, I check out the comments and there\\u0026#39;s usually a source. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tccw/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439815960.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5w8lp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Grumpy_Kong\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5vmsa\", \"score\": 2, \"author_fullname\": \"t2_5nphu\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Holy crap! You have to be a doctor to be a rapist nowadays?!\\n\\nThe higher education requirement for careers is getting a little ridiculous...\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5w8lp\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHoly crap! You have to be a doctor to be a rapist nowadays?!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe higher education requirement for careers is getting a little ridiculous...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w8lp/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439822119.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822119.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5vmsa\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"ender1108\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5totl\", \"score\": 1, \"author_fullname\": \"t2_ecgoo\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"And when you are done. There is a great practice just down the road called rapist and racist. I'm told you won't have to wait log as they are very fast to get to you. However they don't have the best rep for listening. But you can be sure they will give you a very thorough physical. \\n \\nAs long as you're white. \", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5vmsa\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAnd when you are done. There is a great practice just down the road called rapist and racist. I\\u0026#39;m told you won\\u0026#39;t have to wait log as they are very fast to get to you. However they don\\u0026#39;t have the best rep for listening. But you can be sure they will give you a very thorough physical. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAs long as you\\u0026#39;re white. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vmsa/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821000.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439821000.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5totl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Grumpy_Kong\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tmeu\", \"score\": 3, \"author_fullname\": \"t2_5nphu\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Maybe I'll just save the money and see a evangelist then.\\n\\nI wonder what part of the body the 'evangel' is...\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5totl\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMaybe I\\u0026#39;ll just save the money and see a evangelist then.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI wonder what part of the body the \\u0026#39;evangel\\u0026#39; is...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5totl/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439816840.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816840.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wqaf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"CplCucumber\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5wo7b\", \"score\": 1, \"author_fullname\": \"t2_6h5ln\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"rap ist, like dr dre.\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5wqaf\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Erap ist, like dr dre.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wqaf/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439823008.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439823008.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5wo7b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Rockyrambo\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tmeu\", \"score\": 1, \"author_fullname\": \"t2_6b9lp\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Rapist\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5wo7b\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERapist\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wo7b/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439822908.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822908.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tmeu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"CplCucumber\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tjhp\", \"score\": 1, \"author_fullname\": \"t2_6h5ln\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"go for it, I mean if it ends with ist, it must be a doctor.\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5tmeu\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ego for it, I mean if it ends with ist, it must be a doctor.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tmeu/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439816674.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816674.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tjhp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Grumpy_Kong\", \"can_mod_post\": false, \"created_utc\": 1439816467.0, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 3, \"author_fullname\": \"t2_5nphu\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I don't know about you, but I heard it anyway.\\n\\nMaybe I should go see an otolaryngologist...\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5tjhp\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t know about you, but I heard it anyway.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EMaybe I should go see an otolaryngologist...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tjhp/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439816467.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u0o9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"PleaseBanShen\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tmej\", \"score\": 2, \"author_fullname\": \"t2_ckc7l\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"adblock?\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5u0o9\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eadblock?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u0o9/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817621.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817621.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tmej\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"GravyMcBiscuits\", \"can_mod_post\": false, \"created_utc\": 1439816673.0, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 5, \"author_fullname\": \"t2_3g86m\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"No ads for one.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5tmej\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo ads for one.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tmej/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439816673.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 5}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tp6z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"musicalisthenicsweed\", \"can_mod_post\": false, \"created_utc\": 1439816865.0, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 1, \"author_fullname\": \"t2_nm63y\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"its your imagination that makes the difference\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5tp6z\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eits your imagination that makes the difference\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tp6z/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439816865.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tpa3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 1, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"I agree with this. Sauce, please.\", \"edited\": false, \"author_flair_css_class\": null, \"collapsed\": false, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI agree with this. Sauce, please.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tpa3/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tpa3\", \"created\": 1439816872.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439816872.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uvp8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"streetscornetto\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tz8g\", \"score\": 1, \"author_fullname\": \"t2_exs1w\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"EXACTLY \", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5uvp8\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EEXACTLY \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uvp8/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819515.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819515.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tz8g\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"lorchard\", \"can_mod_post\": false, \"created_utc\": 1439817530.0, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 11, \"author_fullname\": \"t2_c2kgg\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Where's the actual video?\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5tz8g\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhere\\u0026#39;s the actual video?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tz8g/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817530.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 11}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u78k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"polish_niceguy\", \"can_mod_post\": false, \"created_utc\": 1439818031.0, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 2, \"author_fullname\": \"t2_99kg7\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Because videos require clicking and take almost 10 seconds to load and start. Gifs start immediately.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5u78k\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBecause videos require clicking and take almost 10 seconds to load and start. Gifs start immediately.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u78k/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818031.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u8se\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"jago81\", \"can_mod_post\": false, \"created_utc\": 1439818128.0, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 3, \"author_fullname\": \"t2_79jwr\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I'm at work. I prefer not having to risk those annoyingly loud videos. I appreciate the video links in comments. \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5u8se\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m at work. I prefer not having to risk those annoyingly loud videos. I appreciate the video links in comments. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u8se/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818128.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ukr6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"kalitarios\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uafs\", \"score\": 1, \"author_fullname\": \"t2_9i2gb\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"\\u003E Risk of YouTube Aids.\\n\\nFTFY\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5ukr6\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003ERisk of YouTube Aids.\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\n\\u003Cp\\u003EFTFY\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ukr6/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818871.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818871.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v7wd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"caseycoold\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uafs\", \"score\": 8, \"author_fullname\": \"t2_8jg1v\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"And we go over these every time. I feel like an explanation should be in the reddiquette so we could just link it.\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5v7wd\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAnd we go over these every time. I feel like an explanation should be in the reddiquette so we could just link it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v7wd/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820193.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820193.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 8}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uafs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"Hollowsong\", \"can_mod_post\": false, \"created_utc\": 1439818229.0, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 17, \"author_fullname\": \"t2_9j7jd\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Lots of reasons:\\n\\n- Takes longer to load video than imgur.\\n\\n- Risk of YouTube Ads.\\n\\n- I'm at work; can't listen to sound anyway unless I dig out headphones.\\n\\n- Gifs are usually shorter. Easier on my attention span.\\n\\n- Many companies block YouTube (or other video sites) but not direct link to hosted gif.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5uafs\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELots of reasons:\\u003C/p\\u003E\\n\\n\\u003Cul\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ETakes longer to load video than imgur.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003ERisk of YouTube Ads.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EI\\u0026#39;m at work; can\\u0026#39;t listen to sound anyway unless I dig out headphones.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EGifs are usually shorter. Easier on my attention span.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003Cli\\u003E\\u003Cp\\u003EMany companies block YouTube (or other video sites) but not direct link to hosted gif.\\u003C/p\\u003E\\u003C/li\\u003E\\n\\u003C/ul\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uafs/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818229.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 17}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5udj0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"TheLastSparten\", \"can_mod_post\": false, \"created_utc\": 1439818422.0, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 1, \"author_fullname\": \"t2_a1v6j\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I don't bother looking at videos unless the title has me very interested because gifs are easier to view and rarely last more than 10 or 15 seconds. Having sounds isn't worth the extras effort for me to watch a video.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5udj0\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t bother looking at videos unless the title has me very interested because gifs are easier to view and rarely last more than 10 or 15 seconds. Having sounds isn\\u0026#39;t worth the extras effort for me to watch a video.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5udj0/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818422.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ujvq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"CplCucumber\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ufrj\", \"score\": -1, \"author_fullname\": \"t2_6h5ln\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I know right? it's fucking stupid that you have to title something \\\"ba dum tiss\\\" in order for it to be a good post, but apparently gifs are the way of the future, so FUCK YOUTUBE.\\n\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5ujvq\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI know right? it\\u0026#39;s fucking stupid that you have to title something \\u0026quot;ba dum tiss\\u0026quot; in order for it to be a good post, but apparently gifs are the way of the future, so FUCK YOUTUBE.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ujvq/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818818.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818818.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5ufrj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"0whodidyousay0\", \"can_mod_post\": false, \"created_utc\": 1439818568.0, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": -1, \"author_fullname\": \"t2_gkbeq\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"The only thing that's annoying me in this thread, is that nobody seems to have found the source...Almost every other gif I see on here has a source in the comments \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5ufrj\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe only thing that\\u0026#39;s annoying me in this thread, is that nobody seems to have found the source...Almost every other gif I see on here has a source in the comments \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ufrj/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818568.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ui2r\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"Masterreefer420\", \"can_mod_post\": false, \"created_utc\": 1439818714.0, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 6, \"author_fullname\": \"t2_j2eea\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Because subconsciously clicking a gif link is just like clicking a normal picture. Clicking on a video usually requires a bit more commitment so people only view what sounds really interesting. More people click it, more people upvote it.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5ui2r\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBecause subconsciously clicking a gif link is just like clicking a normal picture. Clicking on a video usually requires a bit more commitment so people only view what sounds really interesting. More people click it, more people upvote it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ui2r/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818714.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 6}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uwdi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"mr_lab_rat\", \"can_mod_post\": false, \"created_utc\": 1439819554.0, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 2, \"author_fullname\": \"t2_bo3d2\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"To be honest I think the lack of sound made it funnier. Kinda like a joke you have to think about a bit. \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5uwdi\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETo be honest I think the lack of sound made it funnier. Kinda like a joke you have to think about a bit. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uwdi/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819554.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5waqp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"nonrg1\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5vhtr\", \"score\": 13, \"author_fullname\": \"t2_hm9h8\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"https://www.youtube.com/watch?v=BdsQBqN7bCw\\u0026feature=youtu.be\\u0026t=15s\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5waqp\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=BdsQBqN7bCw\\u0026amp;feature=youtu.be\\u0026amp;t=15s\\\"\\u003Ehttps://www.youtube.com/watch?v=BdsQBqN7bCw\\u0026amp;feature=youtu.be\\u0026amp;t=15s\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5waqp/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439822231.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822231.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 13}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5vhtr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"kevinc69\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uwfx\", \"score\": 1, \"author_fullname\": \"t2_3gp7u\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I really wanted this one to be real. \\n\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5vhtr\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI really wanted this one to be real. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vhtr/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820733.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820733.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wwkd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Maclimes\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5wlip\", \"score\": 3, \"author_fullname\": \"t2_4jy9f\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"https://www.youtube.com/watch?v=BdsQBqN7bCw\\u0026amp;feature=youtu.be\\u0026amp;t=15s\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5wwkd\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=BdsQBqN7bCw\\u0026amp;amp;feature=youtu.be\\u0026amp;amp;t=15s\\\"\\u003Ehttps://www.youtube.com/watch?v=BdsQBqN7bCw\\u0026amp;amp;feature=youtu.be\\u0026amp;amp;t=15s\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wwkd/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439823320.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439823320.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5z1s8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Judo_Guy07\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5xrk4\", \"score\": 3, \"author_fullname\": \"t2_d56mi\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Hmm, maybe the reason the video looks so fake or off to me is that it was filmed with an old camcorder that couldn't capture all the frames of the kid falling which makes it look unnatural.\\n\\nI am now skeptical of my skepticism\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5z1s8\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHmm, maybe the reason the video looks so fake or off to me is that it was filmed with an old camcorder that couldn\\u0026#39;t capture all the frames of the kid falling which makes it look unnatural.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI am now skeptical of my skepticism\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5z1s8/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439826985.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439826985.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5xrk4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"yourmansconnect\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5wlip\", \"score\": 1, \"author_fullname\": \"t2_6twfb\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"This was on afv. \", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5xrk4\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis was on afv. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xrk4/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439824842.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439824842.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5wlip\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Judo_Guy07\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5whjj\", \"score\": 1, \"author_fullname\": \"t2_d56mi\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Been looking and have not found anything yet.\\nHowever I can ask the same to you, please find the source video for the gif.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5wlip\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBeen looking and have not found anything yet.\\nHowever I can ask the same to you, please find the source video for the gif.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wlip/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439822775.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822775.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5whjj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Maclimes\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uwfx\", \"score\": 1, \"author_fullname\": \"t2_4jy9f\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Show me the source. \", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5whjj\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EShow me the source. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5whjj/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439822576.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822576.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xh76\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"OkeyDokieArtichokie\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uwfx\", \"score\": 1, \"author_fullname\": \"t2_oivmv\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Pretty sure it's real. There are shadows off the drum kit, and even a reflection in the metal above the bass drum. That's a LOT of effort to photoshop.\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5xh76\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPretty sure it\\u0026#39;s real. There are shadows off the drum kit, and even a reflection in the metal above the bass drum. That\\u0026#39;s a LOT of effort to photoshop.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xh76/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439824331.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439824331.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uwfx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Judo_Guy07\", \"can_mod_post\": false, \"created_utc\": 1439819557.0, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": -2, \"author_fullname\": \"t2_d56mi\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Video doesn't exist because it was edited.\\n\\nTake a look at his hand on the microphone, the speed at which he falls, and the placement of the body in relation to the microphone stand. Also, note the slight wobble of the microphone stand itself when it is not being touched.\\n\\nThese are two separate videos, one of a kid playing the drums and another of a kid with a microphone falling.\\n\\nEDIT: video could actually be legit\", \"edited\": 1439827214.0, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5uwfx\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EVideo doesn\\u0026#39;t exist because it was edited.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETake a look at his hand on the microphone, the speed at which he falls, and the placement of the body in relation to the microphone stand. Also, note the slight wobble of the microphone stand itself when it is not being touched.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThese are two separate videos, one of a kid playing the drums and another of a kid with a microphone falling.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: video could actually be legit\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uwfx/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819557.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v1f0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"paradoxofchoice\", \"can_mod_post\": false, \"created_utc\": 1439819828.0, \"send_replies\": true, \"parent_id\": \"t1_cu5pr4y\", \"score\": 0, \"author_fullname\": \"t2_4t16t\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"/r/funny does not promote videos. gifs are preferred for the majority that is somewhere they should not be watching things like videos. \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5v1f0\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/funny\\\"\\u003E/r/funny\\u003C/a\\u003E does not promote videos. gifs are preferred for the majority that is somewhere they should not be watching things like videos. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v1f0/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819828.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5pr4y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"CplCucumber\", \"can_mod_post\": false, \"created_utc\": 1439802709.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 128, \"author_fullname\": \"t2_6h5ln\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"why do gifs always get more upvotes than the actual video, even in situations like this where sound would make it amazing?\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5pr4y\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewhy do gifs always get more upvotes than the actual video, even in situations like this where sound would make it amazing?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5pr4y/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439802709.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 128}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 7, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu61te3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5u49t\", \"score\": 7, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Drummers are just that cool. \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDrummers are just that cool. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61te3/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu61te3\", \"created\": 1439831427.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439831427.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5u49t\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"brucetwarzen\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tq8c\", \"score\": 33, \"author_fullname\": \"t2_6mdzv\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Look at the drummer, he wasn't surprised at all. He did that many times before\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5u49t\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELook at the drummer, he wasn\\u0026#39;t surprised at all. He did that many times before\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u49t/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817845.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439817845.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 33}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ugwp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Judo_Guy07\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tq8c\", \"score\": -12, \"author_fullname\": \"t2_d56mi\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I'm not... because its not real. To me it looks obviously photoshopped or manipulated.\\n\\nTake a look at his hand on the microphone, the speed at which he falls, and the placement of the body in relation to the microphone stand. Also, note the slight wobble of the microphone stand itself when it is not being touched.\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5ugwp\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not... because its not real. To me it looks obviously photoshopped or manipulated.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETake a look at his hand on the microphone, the speed at which he falls, and the placement of the body in relation to the microphone stand. Also, note the slight wobble of the microphone stand itself when it is not being touched.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ugwp/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818640.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818640.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -12}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tq8c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"8bit_Planet\", \"can_mod_post\": false, \"created_utc\": 1439816936.0, \"send_replies\": true, \"parent_id\": \"t1_cu5q4m5\", \"score\": 52, \"author_fullname\": \"t2_cse9k\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I'm just impressed he managed not to knock anything over. \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5tq8c\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m just impressed he managed not to knock anything over. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tq8c/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439816936.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 52}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uhi6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"conwaytwt\", \"can_mod_post\": false, \"created_utc\": 1439818677.0, \"send_replies\": true, \"parent_id\": \"t1_cu5q4m5\", \"score\": 6, \"author_fullname\": \"t2_cmyk9\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"It looks like someone yanked his legs out from under him... THEN the earth opened up and swallowed him whole.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5uhi6\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt looks like someone yanked his legs out from under him... THEN the earth opened up and swallowed him whole.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uhi6/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818677.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 6}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ukar\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"mattmck90\", \"can_mod_post\": false, \"created_utc\": 1439818844.0, \"send_replies\": true, \"parent_id\": \"t1_cu5q4m5\", \"score\": 18, \"author_fullname\": \"t2_kjnrm\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"It's almost as if he stepped on to a treadmill.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5ukar\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u0026#39;s almost as if he stepped on to a treadmill.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ukar/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818844.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 18}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v16a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"marmo518\", \"can_mod_post\": false, \"created_utc\": 1439819815.0, \"send_replies\": true, \"parent_id\": \"t1_cu5q4m5\", \"score\": 7, \"author_fullname\": \"t2_5k6ql\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"http://www.reddit.com/r/funny/comments/3hahrw/ba_dum_tsss/cu5uwfx\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5v16a\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://www.reddit.com/r/funny/comments/3hahrw/ba_dum_tsss/cu5uwfx\\\"\\u003Ehttp://www.reddit.com/r/funny/comments/3hahrw/ba_dum_tsss/cu5uwfx\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v16a/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819815.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 7}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6a2ar\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Huldr3f0lk\", \"can_mod_post\": false, \"created_utc\": 1439843807.0, \"send_replies\": true, \"parent_id\": \"t1_cu5q4m5\", \"score\": 1, \"author_fullname\": \"t2_p5tgu\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Stepped on a drumstick is my guess. Source: I've done that on cement and it hurts.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu6a2ar\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EStepped on a drumstick is my guess. Source: I\\u0026#39;ve done that on cement and it hurts.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6a2ar/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439843807.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5q4m5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"FrostyAce81\", \"can_mod_post\": false, \"created_utc\": 1439804346.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 201, \"author_fullname\": \"t2_ilbug\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"After watching 25+ times, I'm not yet convinced that the earth didn't open and swallow him whole. \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5q4m5\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAfter watching 25+ times, I\\u0026#39;m not yet convinced that the earth didn\\u0026#39;t open and swallow him whole. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5q4m5/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439804346.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 201}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5q78q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"ThoreJordan\", \"can_mod_post\": false, \"created_utc\": 1439804668.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_p65dn\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"good\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5q78q\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Egood\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5q78q/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439804668.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5rrdt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"CSI_am_Sam\", \"can_mod_post\": false, \"created_utc\": 1439811115.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_p4f9m\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"So can we get a video source on this or what?\\n\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5rrdt\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo can we get a video source on this or what?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5rrdt/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439811115.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5rxpy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"ryanb-\", \"can_mod_post\": false, \"created_utc\": 1439811730.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -20, \"author_fullname\": \"t2_izx02\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"i can has dilicious sauce [ploz?\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5rxpy\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ei can has dilicious sauce [ploz?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5rxpy/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439811730.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -20}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 193, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xmm0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"yourmansconnect\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5w3e6\", \"score\": 1, \"author_fullname\": \"t2_6twfb\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"/r/spaceclop\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu5xmm0\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/spaceclop\\\"\\u003E/r/spaceclop\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xmm0/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439824599.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439824599.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6btjt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"rarely-sarcastic\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5w3e6\", \"score\": 1, \"author_fullname\": \"t2_9xren\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Is that sub for Meek Mill?\", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu6btjt\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs that sub for Meek Mill?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6btjt/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439846450.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439846450.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5w3e6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"Qazfuel\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5v9nb\", \"score\": 9, \"author_fullname\": \"t2_nups4\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"/r/watchpeopledie \", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5w3e6\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/watchpeopledie\\\"\\u003E/r/watchpeopledie\\u003C/a\\u003E \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w3e6/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821855.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821855.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 9}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wgck\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"Maclimes\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5v9nb\", \"score\": 8, \"author_fullname\": \"t2_4jy9f\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"/r/subredditsashashbrowns\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5wgck\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/subredditsashashbrowns\\\"\\u003E/r/subredditsashashbrowns\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wgck/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439822514.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822514.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 8}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5v9nb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"Sodomy-Clown\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5v6r4\", \"score\": 28, \"author_fullname\": \"t2_ovur9\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"/r/subredditsarehashtags\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5v9nb\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/subredditsarehashtags\\\"\\u003E/r/subredditsarehashtags\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v9nb/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820290.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439820290.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 28}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5v6r4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"uptwolait\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uu41\", \"score\": 17, \"author_fullname\": \"t2_36vh9\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"/r/howlongwillthiscontinue\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5v6r4\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/howlongwillthiscontinue\\\"\\u003E/r/howlongwillthiscontinue\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v6r4/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820126.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820126.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 17}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu61vkg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Bitey_the_Squirrel\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uu41\", \"score\": 2, \"author_fullname\": \"t2_p42iz\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"/r/unnecessaryexplosions \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu61vkg\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/unnecessaryexplosions\\\"\\u003E/r/unnecessaryexplosions\\u003C/a\\u003E \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61vkg/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439831520.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439831520.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uu41\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"usernamenottakenwooh\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uluu\", \"score\": 20, \"author_fullname\": \"t2_8aomb\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"/r/ofcoursethatsathing \", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5uu41\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/ofcoursethatsathing\\\"\\u003E/r/ofcoursethatsathing\\u003C/a\\u003E \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uu41/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819425.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819425.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 20}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uluu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"Antrikshy\", \"can_mod_post\": false, \"created_utc\": 1439818938.0, \"send_replies\": true, \"parent_id\": \"t1_cu5s3hd\", \"score\": 47, \"author_fullname\": \"t2_4i3x1\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"/r/childrenfallingover\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5uluu\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/childrenfallingover\\\"\\u003E/r/childrenfallingover\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uluu/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818938.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 47}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wg0v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"The_Punniest\", \"can_mod_post\": false, \"created_utc\": 1439822499.0, \"send_replies\": true, \"parent_id\": \"t1_cu5s3hd\", \"score\": 3, \"author_fullname\": \"t2_acwan\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"/r/shouldjustbeavideo\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5wg0v\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/shouldjustbeavideo\\\"\\u003E/r/shouldjustbeavideo\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wg0v/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439822499.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu65raf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Muntberg\", \"can_mod_post\": false, \"created_utc\": 1439837415.0, \"send_replies\": true, \"parent_id\": \"t1_cu5s3hd\", \"score\": 1, \"author_fullname\": \"t2_8erx2\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Wait... that didn't have sound? \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu65raf\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWait... that didn\\u0026#39;t have sound? \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu65raf/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439837415.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5s3hd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 193, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"/r/noisygifs \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/noisygifs\\\"\\u003E/r/noisygifs\\u003C/a\\u003E \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5s3hd/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5s3hd\", \"created\": 1439812275.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439812275.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5si45\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"brechtvdh\", \"can_mod_post\": false, \"created_utc\": 1439813590.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 11, \"author_fullname\": \"t2_jbnaq\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"source plzzz :)\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5si45\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Esource plzzz :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5si45/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439813590.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 11}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5skqs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"incredulous_bee\", \"can_mod_post\": false, \"created_utc\": 1439813809.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 3, \"author_fullname\": \"t2_ip6gj\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Kids got great comedic timing.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5skqs\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EKids got great comedic timing.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5skqs/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439813809.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5sl6a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"heebert\", \"can_mod_post\": false, \"created_utc\": 1439813845.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 0, \"author_fullname\": \"t2_5717q\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"First post to make me literally laugh out loud this week. Thanks\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5sl6a\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFirst post to make me literally laugh out loud this week. Thanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5sl6a/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439813845.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5snd8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"RicardoLovesYou\", \"can_mod_post\": false, \"created_utc\": 1439814033.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_h4mml\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"He already knows the number one rule in comedy.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5snd8\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe already knows the number one rule in comedy.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5snd8/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439814033.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vbyu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Drift_Pig\", \"can_mod_post\": false, \"created_utc\": 1439820421.0, \"send_replies\": true, \"parent_id\": \"t1_cu5spl9\", \"score\": -12, \"author_fullname\": \"t2_bb8h0\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"http://i.imgur.com/eoF76hj.gifv\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5vbyu\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://i.imgur.com/eoF76hj.gifv\\\"\\u003Ehttp://i.imgur.com/eoF76hj.gifv\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vbyu/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820421.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -12}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 2, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu63ror\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ym3r\", \"score\": 2, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"The music ruins it completely, that and the complete lack of buildup. \", \"edited\": false, \"author_flair_css_class\": null, \"collapsed\": false, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe music ruins it completely, that and the complete lack of buildup. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu63ror/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu63ror\", \"created\": 1439834419.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439834419.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5ym3r\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"InquisitaB\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5x0y7\", \"score\": 33, \"author_fullname\": \"t2_dljs4\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Perhaps it was the freaking clown music playing through the video.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5ym3r\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPerhaps it was the freaking clown music playing through the video.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ym3r/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439826266.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439826266.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 33}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu63crv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Do_Whatever_You_Like\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5x0y7\", \"score\": 1, \"author_fullname\": \"t2_i1o2i\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"what were you expecting? I was expecting it to be like the gif but with an audible \\\"Ba Dum Tsss\\\" so I was quite happy with it...\\n\\n\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu63crv\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewhat were you expecting? I was expecting it to be like the gif but with an audible \\u0026quot;Ba Dum Tsss\\u0026quot; so I was quite happy with it...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu63crv/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439833797.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439833797.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5x0y7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"ShowtimeCA\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5w5tg\", \"score\": 27, \"author_fullname\": \"t2_d5hm1\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Well that was way less satisfying than I expected, no aftermath no laugh nothing :/\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5x0y7\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWell that was way less satisfying than I expected, no aftermath no laugh nothing :/\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5x0y7/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439823534.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439823534.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 27}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cz9hu6w\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"svds\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5zzgp\", \"score\": 1, \"author_fullname\": \"t2_9o0gp\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"I hope his tongue was in the right place..\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cz9hu6w\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI hope his tongue was in the right place..\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cz9hu6w/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1453595658.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1453595658.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5zzgp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"Deviant_Legion\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5w5tg\", \"score\": 7, \"author_fullname\": \"t2_ilrmm\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"[FML](https://imgur.com/7ONpGM9)\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5zzgp\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://imgur.com/7ONpGM9\\\"\\u003EFML\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5zzgp/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439828512.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439828512.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 7}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6ofeg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"twixcow\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5w5tg\", \"score\": 1, \"author_fullname\": \"t2_8lstq\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"The one where he bumped his chin on the table looked like it hurt.\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu6ofeg\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe one where he bumped his chin on the table looked like it hurt.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6ofeg/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439868664.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439868664.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5w5tg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"Terranoch\", \"can_mod_post\": false, \"created_utc\": 1439821978.0, \"send_replies\": true, \"parent_id\": \"t1_cu5spl9\", \"score\": 54, \"author_fullname\": \"t2_m9k0k\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"https://www.youtube.com/watch?v=BdsQBqN7bCw\\u0026feature=youtu.be\\u0026t=15s\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5w5tg\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=BdsQBqN7bCw\\u0026amp;feature=youtu.be\\u0026amp;t=15s\\\"\\u003Ehttps://www.youtube.com/watch?v=BdsQBqN7bCw\\u0026amp;feature=youtu.be\\u0026amp;t=15s\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w5tg/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821978.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 54}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5spl9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"Trixzy\", \"can_mod_post\": false, \"created_utc\": 1439814213.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 66, \"author_fullname\": \"t2_7oa8b\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Source?\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5spl9\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESource?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5spl9/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439814213.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 66}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5sqp4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"zman122333\", \"can_mod_post\": false, \"created_utc\": 1439814303.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_j74oi\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"No hesitation. Brilliant. \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5sqp4\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENo hesitation. Brilliant. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5sqp4/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439814303.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": -2, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5srn0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -2, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"It's there a video\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt\\u0026#39;s there a video\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5srn0/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5srn0\", \"created\": 1439814375.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439814375.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uc0p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Kruse\", \"can_mod_post\": false, \"created_utc\": 1439818328.0, \"send_replies\": true, \"parent_id\": \"t1_cu5swgs\", \"score\": 1, \"author_fullname\": \"t2_4812l\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"https://youtu.be/BVGi7h2NTOg?t=1m19s\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5uc0p\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://youtu.be/BVGi7h2NTOg?t=1m19s\\\"\\u003Ehttps://youtu.be/BVGi7h2NTOg?t=1m19s\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uc0p/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818328.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5swgs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Cold as ice.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECold as ice.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5swgs/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5swgs\", \"created\": 1439814762.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439814762.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5t14q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"Stenas\", \"can_mod_post\": false, \"created_utc\": 1439815117.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 3, \"author_fullname\": \"t2_4ysed\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"That kid didnt miss a beat!\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5t14q\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat kid didnt miss a beat!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5t14q/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439815117.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5t2m2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Froggy_hop\", \"can_mod_post\": false, \"created_utc\": 1439815229.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 2, \"author_fullname\": \"t2_64nt5\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Everything about this gif is perfect. I mean, how often are you around a drum set when something funny happens?\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5t2m2\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EEverything about this gif is perfect. I mean, how often are you around a drum set when something funny happens?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5t2m2/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439815229.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cyfte2v\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"JacP123\", \"can_mod_post\": false, \"created_utc\": 1451450570.0, \"send_replies\": true, \"parent_id\": \"t1_cu5t8kq\", \"score\": 1, \"author_fullname\": \"t2_pos5p\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Trust me, it's better without sound\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cyfte2v\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETrust me, it\\u0026#39;s better without sound\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cyfte2v/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1451450570.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5t8kq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"imortality\", \"can_mod_post\": false, \"created_utc\": 1439815675.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 4, \"author_fullname\": \"t2_9rljz\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"I need sound. Why doesn't this have sound? webms can have sound\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5t8kq\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI need sound. Why doesn\\u0026#39;t this have sound? webms can have sound\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5t8kq/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439815675.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5t92s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"TheTrampRO\", \"can_mod_post\": false, \"created_utc\": 1439815712.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -8, \"author_fullname\": \"t2_6k3go\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"I actually laughed out loud at something on r/funny. Somebody check Hell and see if it has frozen over. \\n\\nAll my upvotes!\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5t92s\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI actually laughed out loud at something on \\u003Ca href=\\\"/r/funny\\\"\\u003Er/funny\\u003C/a\\u003E. Somebody check Hell and see if it has frozen over. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EAll my upvotes!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5t92s/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439815712.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -8}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 22, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 15, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wnt5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Richard70nl\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ujk8\", \"score\": 0, \"author_fullname\": \"t2_ili0d\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I had the exact same thought. It's like his legs are pulled under him.\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5wnt5\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI had the exact same thought. It\\u0026#39;s like his legs are pulled under him.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wnt5/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439822887.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822887.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu61215\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"lebanese_redditor\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ujk8\", \"score\": 1, \"author_fullname\": \"t2_4vebs\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"kids on treadmills... gives me \\\"Dexter\\\" flashbacks\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu61215\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ekids on treadmills... gives me \\u0026quot;Dexter\\u0026quot; flashbacks\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61215/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439830221.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439830221.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5ujk8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tcm9\", \"score\": 15, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"A treadmill? \", \"edited\": false, \"author_flair_css_class\": null, \"collapsed\": false, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA treadmill? \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ujk8/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ujk8\", \"created\": 1439818800.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818800.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v2e6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"inajeep\", \"can_mod_post\": false, \"created_utc\": 1439819883.0, \"send_replies\": true, \"parent_id\": \"t1_cu5tcm9\", \"score\": 9, \"author_fullname\": \"t2_3bpji\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Banana Jedi stage trick.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5v2e6\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBanana Jedi stage trick.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v2e6/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819883.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 9}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 0, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5w8g9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tcm9\", \"score\": 0, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Probably video editing software. That's my vote.\", \"edited\": false, \"author_flair_css_class\": null, \"collapsed\": false, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EProbably video editing software. That\\u0026#39;s my vote.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w8g9/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5w8g9\", \"created\": 1439822112.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822112.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu62420\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"CarTarget\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5wwg7\", \"score\": 2, \"author_fullname\": \"t2_6bk47\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Oh! That kid must be Peter Pan!\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu62420\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh! That kid must be Peter Pan!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu62420/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439831884.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439831884.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5wwg7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"OyleSlyck\", \"can_mod_post\": false, \"created_utc\": 1439823315.0, \"send_replies\": true, \"parent_id\": \"t1_cu5tcm9\", \"score\": 1, \"author_fullname\": \"t2_58gzf\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"An odd shadow on the lower half of the right wall appears right before the kid falls. So the shadow swept the kid's legs.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5wwg7\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAn odd shadow on the lower half of the right wall appears right before the kid falls. So the shadow swept the kid\\u0026#39;s legs.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wwg7/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439823315.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu600u7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"sergelo\", \"can_mod_post\": false, \"created_utc\": 1439828575.0, \"send_replies\": true, \"parent_id\": \"t1_cu5tcm9\", \"score\": 2, \"author_fullname\": \"t2_a0rrq\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"He was probably standing on something that tipped over. Much like the little girl later on in the same [source video](https://youtu.be/BdsQBqN7bCw?t=43s).\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu600u7\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe was probably standing on something that tipped over. Much like the little girl later on in the same \\u003Ca href=\\\"https://youtu.be/BdsQBqN7bCw?t=43s\\\"\\u003Esource video\\u003C/a\\u003E.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu600u7/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439828575.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu68vnd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Backflip_into_a_star\", \"can_mod_post\": false, \"created_utc\": 1439842039.0, \"send_replies\": false, \"parent_id\": \"t1_cu5tcm9\", \"score\": 1, \"author_fullname\": \"t2_altpx\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"People keep saying treadmill, but you can get the same effect with a skateboard. He is standing on it and steps forward too close to the nose(or tail) which shifts his weight and the wheels shoot the board out from under him. Plus that seems like a weird place to shove a treadmill, and it would probably be big enough to see.\\n\\n\", \"edited\": 1439842258.0, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu68vnd\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPeople keep saying treadmill, but you can get the same effect with a skateboard. He is standing on it and steps forward too close to the nose(or tail) which shifts his weight and the wheels shoot the board out from under him. Plus that seems like a weird place to shove a treadmill, and it would probably be big enough to see.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu68vnd/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439842039.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu696sc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Wolferines\", \"can_mod_post\": false, \"created_utc\": 1439842503.0, \"send_replies\": true, \"parent_id\": \"t1_cu5tcm9\", \"score\": 1, \"author_fullname\": \"t2_fxl07\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Maybe someone was moving a wire and it was wrapped on his foot.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu696sc\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMaybe someone was moving a wire and it was wrapped on his foot.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu696sc/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439842503.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tcm9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 22, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Wtf that kid slip on? He fell with such force.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWtf that kid slip on? He fell with such force.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tcm9/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5tcm9\", \"created\": 1439815979.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439815979.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tead\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"lava1o\", \"can_mod_post\": false, \"created_utc\": 1439816104.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -2, \"author_fullname\": \"t2_8khta\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"He saw the chance and he took it, this kid is going places\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5tead\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe saw the chance and he took it, this kid is going places\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tead/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439816104.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tik2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"esmith972\", \"can_mod_post\": false, \"created_utc\": 1439816405.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 2, \"author_fullname\": \"t2_3w93e\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Source? Tineye didn't pull anything.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5tik2\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESource? Tineye didn\\u0026#39;t pull anything.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tik2/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439816405.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 20, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5y07w\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"[deleted]\", \"can_mod_post\": false, \"created_utc\": 1439825255.0, \"send_replies\": true, \"parent_id\": \"t1_cu5wm3n\", \"score\": 20, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"A rare instance where the GIF is funnier\", \"edited\": false, \"author_flair_css_class\": null, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EA rare instance where the GIF is funnier\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5y07w/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5y07w\", \"created\": 1439825255.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5wm3n\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Swiftraven\", \"can_mod_post\": false, \"created_utc\": 1439822804.0, \"send_replies\": true, \"parent_id\": \"t1_cu5tj94\", \"score\": 3, \"author_fullname\": \"t2_38ahi\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"\\u003E https://www.youtube.com/watch?v=BdsQBqN7bCw\\u0026feature=youtu.be\\u0026t=15s\\n\\n\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5wm3n\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=BdsQBqN7bCw\\u0026amp;feature=youtu.be\\u0026amp;t=15s\\\"\\u003Ehttps://www.youtube.com/watch?v=BdsQBqN7bCw\\u0026amp;feature=youtu.be\\u0026amp;t=15s\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wm3n/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439822804.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tj94\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"mrskeetskeeter\", \"can_mod_post\": false, \"created_utc\": 1439816452.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 23, \"author_fullname\": \"t2_4ipfj\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Anyone have the actual video? I'm sure it's way funnier. \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5tj94\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAnyone have the actual video? I\\u0026#39;m sure it\\u0026#39;s way funnier. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tj94/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439816452.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 23}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xhkq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"umjammerlammy\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5u6mu\", \"score\": 2, \"author_fullname\": \"t2_5x8to\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"And the gif is better\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5xhkq\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAnd the gif is better\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xhkq/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439824348.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439824348.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5u6mu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"Wetbung\", \"can_mod_post\": false, \"created_utc\": 1439817994.0, \"send_replies\": true, \"parent_id\": \"t1_cu5tkvm\", \"score\": 56, \"author_fullname\": \"t2_bcan2\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Recorded direct to GIF\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5u6mu\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ERecorded direct to GIF\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u6mu/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817994.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 56}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 0, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu61rpx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5tkvm\", \"score\": 0, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[deleted]\", \"edited\": false, \"author_flair_css_class\": null, \"collapsed\": false, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[deleted]\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61rpx/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu61rpx\", \"created\": 1439831353.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439831353.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tkvm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"blaizedm\", \"can_mod_post\": false, \"created_utc\": 1439816565.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 18, \"author_fullname\": \"t2_6enob\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"5 hours old and no one has posted the source?\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5tkvm\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E5 hours old and no one has posted the source?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": true, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tkvm/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439816565.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 18}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 2, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v7rv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Always_smooth\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uk2x\", \"score\": 2, \"author_fullname\": \"t2_62bxn\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Mine says breathe, eat, and reproduce. \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5v7rv\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMine says breathe, eat, and reproduce. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v7rv/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820185.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820185.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uk2x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"created_utc\": 1439818831.0, \"send_replies\": true, \"parent_id\": \"t1_cu5ufz0\", \"score\": 2, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Mine says treadmill. \", \"edited\": false, \"author_flair_css_class\": null, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMine says treadmill. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uk2x/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uk2x\", \"created\": 1439818831.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5ufz0\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"beetroot_miscarriage\", \"can_mod_post\": false, \"created_utc\": 1439818581.0, \"send_replies\": true, \"parent_id\": \"t1_cu5tln5\", \"score\": 3, \"author_fullname\": \"t2_adcxp\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"my brain says skateboard.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5ufz0\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Emy brain says skateboard.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ufz0/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818581.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tln5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"emdave\", \"can_mod_post\": false, \"created_utc\": 1439816620.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 3, \"author_fullname\": \"t2_98w4e\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Did someone (or something?!) grab the kids ankle? How did he fall like that?\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5tln5\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDid someone (or something?!) grab the kids ankle? How did he fall like that?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tln5/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439816620.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tohz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"PeterFnet\", \"can_mod_post\": false, \"created_utc\": 1439816818.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 3, \"author_fullname\": \"t2_382vt\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Totally not planned.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5tohz\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETotally not planned.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tohz/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439816818.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tpet\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"yaboproductions\", \"can_mod_post\": false, \"created_utc\": 1439816879.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 2, \"author_fullname\": \"t2_f4mav\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"What did the guy slip on?\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5tpet\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat did the guy slip on?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tpet/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439816879.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ts0s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"johnny_cicala\", \"can_mod_post\": false, \"created_utc\": 1439817057.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 17, \"author_fullname\": \"t2_gbo08\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"[http://i.imgur.com/sPwgpLj.gif](http://i.imgur.com/sPwgpLj.gif)\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5ts0s\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://i.imgur.com/sPwgpLj.gif\\\"\\u003Ehttp://i.imgur.com/sPwgpLj.gif\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ts0s/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817057.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 17}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tskf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"danbh\", \"can_mod_post\": false, \"created_utc\": 1439817092.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_9frjc\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"I can almost hear it\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5tskf\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI can almost hear it\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tskf/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817092.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tt8h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"microdon23\", \"can_mod_post\": false, \"created_utc\": 1439817138.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -2, \"author_fullname\": \"t2_ki3aa\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Good timing. Kids got a future. \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5tt8h\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGood timing. Kids got a future. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tt8h/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817138.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5twf5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"sighunzips\", \"can_mod_post\": false, \"created_utc\": 1439817345.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -2, \"author_fullname\": \"t2_pkw9t\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"I get the feeling this kid is someone who rises to the occasion.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5twf5\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI get the feeling this kid is someone who rises to the occasion.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5twf5/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817345.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5twta\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Haroldholt\", \"can_mod_post\": false, \"created_utc\": 1439817371.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_74y6u\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Any one got the original sauce or video?\\n\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5twta\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAny one got the original sauce or video?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5twta/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817371.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u961\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"pibroch\", \"can_mod_post\": false, \"created_utc\": 1439818151.0, \"send_replies\": true, \"parent_id\": \"t1_cu5tx53\", \"score\": 1, \"author_fullname\": \"t2_5ymxz\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Was at least with you until you brought up the ride. He could have muted the crash, but there are plenty of examples that I can think of to merit using the crash in a rimshot.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5u961\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWas at least with you until you brought up the ride. He could have muted the crash, but there are plenty of examples that I can think of to merit using the crash in a rimshot.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u961/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818151.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5tx53\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Doonie\", \"can_mod_post\": false, \"created_utc\": 1439817392.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -13, \"author_fullname\": \"t2_6dz1w\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Ugh, I'm sorry Reddit in advance. But I have to be this guy. That's not a proper rimshot. Right tom, left tom, crash? would sound more like: \\\"Bom Bum KSHHHHHH\\\" (read aloud). A proper rimshot should be snare, snare, hi-hat. or snare, snare, ride.\\n\\nSo, to everyone saying the gif is better with sound.. You're wrong. It's better that you play your own rimshot in your head.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5tx53\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUgh, I\\u0026#39;m sorry Reddit in advance. But I have to be this guy. That\\u0026#39;s not a proper rimshot. Right tom, left tom, crash? would sound more like: \\u0026quot;Bom Bum KSHHHHHH\\u0026quot; (read aloud). A proper rimshot should be snare, snare, hi-hat. or snare, snare, ride.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo, to everyone saying the gif is better with sound.. You\\u0026#39;re wrong. It\\u0026#39;s better that you play your own rimshot in your head.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tx53/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817392.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -13}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5tzjl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"RawRoots\", \"can_mod_post\": false, \"created_utc\": 1439817549.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_hx9kl\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"OK. Am I the only one trying to turn up te volume? Heard it crystal clear in my head the first time tho.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5tzjl\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOK. Am I the only one trying to turn up te volume? Heard it crystal clear in my head the first time tho.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5tzjl/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817549.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v7cs\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Judo_Guy07\", \"can_mod_post\": false, \"created_utc\": 1439820160.0, \"send_replies\": true, \"parent_id\": \"t1_cu5u0sv\", \"score\": -1, \"author_fullname\": \"t2_d56mi\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Yep, this is shopped. But don't let anyone else here hear you say that or you'll be downvoted into oblivion by people who don't care.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5v7cs\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYep, this is shopped. But don\\u0026#39;t let anyone else here hear you say that or you\\u0026#39;ll be downvoted into oblivion by people who don\\u0026#39;t care.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v7cs/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820160.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xhu8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Geerat5\", \"can_mod_post\": false, \"created_utc\": 1439824361.0, \"send_replies\": true, \"parent_id\": \"t1_cu5u0sv\", \"score\": 2, \"author_fullname\": \"t2_6028j\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"He was probably just acting\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5xhu8\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe was probably just acting\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xhu8/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439824361.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5u0sv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"ObviouslyHatesSuarez\", \"can_mod_post\": false, \"created_utc\": 1439817629.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 6, \"author_fullname\": \"t2_lnomy\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"I'm not saying that everyone should grab their torches, but doesn't this look like it's photoshopped? It just seems very unnatural and nobody has posted the source.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5u0sv\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m not saying that everyone should grab their torches, but doesn\\u0026#39;t this look like it\\u0026#39;s photoshopped? It just seems very unnatural and nobody has posted the source.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u0sv/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817629.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 6}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u1vm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"TOYLTH\", \"can_mod_post\": false, \"created_utc\": 1439817698.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_pc7ik\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Am I the only one that hears the clash sound when he hits the crash?\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5u1vm\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAm I the only one that hears the clash sound when he hits the crash?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u1vm/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817698.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u5wq\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"JustinMagill\", \"can_mod_post\": false, \"created_utc\": 1439817949.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 2, \"author_fullname\": \"t2_d3023\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"This video isn't very funny without sound.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5u5wq\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis video isn\\u0026#39;t very funny without sound.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u5wq/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817949.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u64d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"caseymae3\", \"can_mod_post\": false, \"created_utc\": 1439817963.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_k7e1s\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"He saw the opportunity and he took it. Smart kid.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5u64d\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe saw the opportunity and he took it. Smart kid.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u64d/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439817963.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5u7ft\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"SugarBear4Real\", \"can_mod_post\": false, \"created_utc\": 1439818043.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_5z518\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Comedy is all about timing\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5u7ft\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EComedy is all about timing\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5u7ft/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818043.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ubt8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Kid's got great comedic instincts \", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EKid\\u0026#39;s got great comedic instincts \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ubt8/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5ubt8\", \"created\": 1439818314.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439818314.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ubuu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"ryanthecoliflower\", \"can_mod_post\": false, \"created_utc\": 1439818317.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 0, \"author_fullname\": \"t2_pmf82\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"HAHAHAHAHA YES VERY GOOD VERY NICE VERY WOW\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5ubuu\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHAHAHAHAHA YES VERY GOOD VERY NICE VERY WOW\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ubuu/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818317.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ubza\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Red-Jester\", \"can_mod_post\": false, \"created_utc\": 1439818325.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 0, \"author_fullname\": \"t2_8v0z8\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Im glad this is a gif and not a video because hearing that drum would have been so crap.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5ubza\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIm glad this is a gif and not a video because hearing that drum would have been so crap.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ubza/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818325.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uca3\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"thescariestbear\", \"can_mod_post\": false, \"created_utc\": 1439818344.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_8ti4s\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Now that's fucking talent\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5uca3\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENow that\\u0026#39;s fucking talent\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uca3/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818344.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ucw9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"happyself\", \"can_mod_post\": false, \"created_utc\": 1439818383.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 2, \"author_fullname\": \"t2_mvumo\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Anyone else check if their mute was on while watching this clip?\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5ucw9\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAnyone else check if their mute was on while watching this clip?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ucw9/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818383.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5udi4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"DaNubIzHere\", \"can_mod_post\": false, \"created_utc\": 1439818421.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 0, \"author_fullname\": \"t2_brg54\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"http://i.imgur.com/gP0zuQg.gifv\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5udi4\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://i.imgur.com/gP0zuQg.gifv\\\"\\u003Ehttp://i.imgur.com/gP0zuQg.gifv\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5udi4/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818421.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ue9c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"icu_\", \"can_mod_post\": false, \"created_utc\": 1439818471.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 0, \"author_fullname\": \"t2_3bog9\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"I didn't realize they were still teaching *Ba Dum Tsss* in schools.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5ue9c\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI didn\\u0026#39;t realize they were still teaching \\u003Cem\\u003EBa Dum Tsss\\u003C/em\\u003E in schools.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ue9c/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818471.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uekc\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"hehehe979797\", \"can_mod_post\": false, \"created_utc\": 1439818494.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 0, \"author_fullname\": \"t2_hsqjr\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"*funny drum sound*\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5uekc\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cem\\u003Efunny drum sound\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uekc/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818494.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uhuf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Crash665\", \"can_mod_post\": false, \"created_utc\": 1439818698.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_7na85\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"I'm assuming these are brothers. Only brothers can have such little regard for the well being of each other.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5uhuf\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI\\u0026#39;m assuming these are brothers. Only brothers can have such little regard for the well being of each other.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uhuf/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818698.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uj4y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"IGrowAcorns\", \"can_mod_post\": false, \"created_utc\": 1439818776.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 2, \"author_fullname\": \"t2_9gyad\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Hey I have an idea. Let's turn this video, that the funniest part is a sound, into a gif. \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5uj4y\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHey I have an idea. Let\\u0026#39;s turn this video, that the funniest part is a sound, into a gif. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uj4y/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818776.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": -2, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"distinguished\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"more\", \"data\": {\"count\": 0, \"name\": \"t1__\", \"id\": \"_\", \"parent_id\": \"t1_cu61tk1\", \"depth\": 10, \"children\": []}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu61tk1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu61nnl\", \"score\": 1, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[deleted]\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[deleted]\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61tk1/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu61tk1\", \"created\": 1439831434.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439831434.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 9, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu61nnl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"yourmansconnect\", \"can_mod_post\": false, \"created_utc\": 1439831175.0, \"send_replies\": true, \"parent_id\": \"t1_cu61dgb\", \"score\": 1, \"author_fullname\": \"t2_6twfb\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Because he picks up the drumsticks that means its shopped? Even the parent commented who said it was shopped now thinks it was just an old camcorder\", \"edited\": false, \"gildings\": {}, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu61nnl\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBecause he picks up the drumsticks that means its shopped? Even the parent commented who said it was shopped now thinks it was just an old camcorder\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61nnl/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439831175.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 8, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu61dgb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu6138g\", \"score\": 1, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[deleted]\", \"edited\": false, \"author_flair_css_class\": null, \"collapsed\": false, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[deleted]\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61dgb/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu61dgb\", \"created\": 1439830723.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439830723.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 7, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu6138g\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"yourmansconnect\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu60yyr\", \"score\": 1, \"author_fullname\": \"t2_6twfb\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"The shadow on the drumset I mean. Or is that flash of the kids arm falling shopped too? The other things don't mean that it's shopped. \", \"edited\": false, \"gildings\": {}, \"author_flair_css_class\": null, \"name\": \"t1_cu6138g\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe shadow on the drumset I mean. Or is that flash of the kids arm falling shopped too? The other things don\\u0026#39;t mean that it\\u0026#39;s shopped. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6138g/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439830275.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439830275.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 6, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu60yyr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"created_utc\": 1439830089.0, \"send_replies\": true, \"parent_id\": \"t1_cu5yghg\", \"score\": 1, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[deleted]\", \"edited\": false, \"author_flair_css_class\": null, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[deleted]\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu60yyr/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu60yyr\", \"created\": 1439830089.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 5, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5yghg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"yourmansconnect\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5y4ro\", \"score\": 1, \"author_fullname\": \"t2_6twfb\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"But wee see a shadow on the drum when he falls. I don't really see what the guy is talking about with the mic. Can you explain\", \"edited\": false, \"author_flair_css_class\": null, \"name\": \"t1_cu5yghg\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBut wee see a shadow on the drum when he falls. I don\\u0026#39;t really see what the guy is talking about with the mic. Can you explain\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"link_id\": \"t3_3hahrw\", \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"treatment_tags\": [], \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5yghg/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439826008.0, \"author_flair_text\": null, \"collapsed\": false, \"created_utc\": 1439826008.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 4, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5y4ro\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5xs69\", \"score\": 1, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[deleted]\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[deleted]\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5y4ro/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5y4ro\", \"created\": 1439825469.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439825469.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 3, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5xs69\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"yourmansconnect\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5w5hz\", \"score\": 1, \"author_fullname\": \"t2_6twfb\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"This was a video on Americas funniest home videos. It's not shopped\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5xs69\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis was a video on Americas funniest home videos. It\\u0026#39;s not shopped\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xs69/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439824871.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439824871.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5w5hz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5ujg2\", \"score\": -2, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[deleted]\", \"edited\": false, \"author_flair_css_class\": null, \"collapsed\": false, \"downs\": 0, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[deleted]\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w5hz/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5w5hz\", \"created\": 1439821962.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821962.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 1, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5x0hr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"dkey1983\", \"can_mod_post\": false, \"created_utc\": 1439823512.0, \"send_replies\": true, \"parent_id\": \"t1_cu5ujg2\", \"score\": 1, \"author_fullname\": \"t2_5t9wr\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"He doesn't cast a shadow on the drum equipment, but there's definitely a reflection of him bouncing off of the kit. That could have been shopped, but someone did a decent job at thinking to do that if that's the case. I'm not certain if this is a shop or not.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5x0hr\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe doesn\\u0026#39;t cast a shadow on the drum equipment, but there\\u0026#39;s definitely a reflection of him bouncing off of the kit. That could have been shopped, but someone did a decent job at thinking to do that if that\\u0026#39;s the case. I\\u0026#39;m not certain if this is a shop or not.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5x0hr/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439823512.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xkfj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"ILovePopPunk\", \"can_mod_post\": false, \"created_utc\": 1439824491.0, \"send_replies\": true, \"parent_id\": \"t1_cu5ujg2\", \"score\": 1, \"author_fullname\": \"t2_77jw9\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Judging by the shadows the drums are casting, I would say the main source of light is above the drummer, hence there is no visible shadow being cast by the falling kid. He does fall abnormally quickly but it doesn't really seem that is was edited.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5xkfj\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EJudging by the shadows the drums are casting, I would say the main source of light is above the drummer, hence there is no visible shadow being cast by the falling kid. He does fall abnormally quickly but it doesn\\u0026#39;t really seem that is was edited.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xkfj/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439824491.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5ujg2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"Judo_Guy07\", \"can_mod_post\": false, \"created_utc\": 1439818794.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 9, \"author_fullname\": \"t2_d56mi\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Hate to break it to you all but the kid falling has shopped onto the video of the kid with the drum kit.\\n\\nTake a look at his hand on the microphone, the speed at which he falls, and the placement of the body in relation to the microphone stand. Also, note the slight wobble of the microphone stand itself when it is not being touched. The falling kid also does not cast a shadow on the drum equipment at all and is inconsistent with the lighting in the room (you can see shadows on the walls of the drum equipment).\\n\\nThe kid on the drum kit doesn't react at all for a reason.\\n\\nEDIT: It has been pointed out by another redditor that he/she has seen this on AFV. Potentially the video seems fake to me because the camcorders at the time could not capture all of the frames of the kid falling and makes it look edited.\\nOf course this is also a guess but I am now skeptical of my previous skepticism. Could be legit.\", \"edited\": 1439827161.0, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5ujg2\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHate to break it to you all but the kid falling has shopped onto the video of the kid with the drum kit.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ETake a look at his hand on the microphone, the speed at which he falls, and the placement of the body in relation to the microphone stand. Also, note the slight wobble of the microphone stand itself when it is not being touched. The falling kid also does not cast a shadow on the drum equipment at all and is inconsistent with the lighting in the room (you can see shadows on the walls of the drum equipment).\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThe kid on the drum kit doesn\\u0026#39;t react at all for a reason.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EEDIT: It has been pointed out by another redditor that he/she has seen this on AFV. Potentially the video seems fake to me because the camcorders at the time could not capture all of the frames of the kid falling and makes it look edited.\\nOf course this is also a guess but I am now skeptical of my previous skepticism. Could be legit.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ujg2/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818794.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 9}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ulo5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"The_Withheld_Name\", \"can_mod_post\": false, \"created_utc\": 1439818927.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 0, \"author_fullname\": \"t2_ft57l\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"*tap tap crash\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5ulo5\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E*tap tap crash\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ulo5/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439818927.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5un6h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Sketchables\", \"can_mod_post\": false, \"created_utc\": 1439819019.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_iguwd\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"What did that kid step on a treadmill?\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5un6h\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat did that kid step on a treadmill?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5un6h/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819019.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5unfj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Casparilla\", \"can_mod_post\": false, \"created_utc\": 1439819033.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_9ahap\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"This is making laugh unreasonably hard on a Monday morning.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5unfj\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis is making laugh unreasonably hard on a Monday morning.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5unfj/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819033.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5unrv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Ormusn2o\", \"can_mod_post\": false, \"created_utc\": 1439819054.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -1, \"author_fullname\": \"t2_80nsh\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"I cant belive he's done that.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5unrv\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI cant belive he\\u0026#39;s done that.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5unrv/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819054.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5uq8q\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"peter-bone\", \"can_mod_post\": false, \"created_utc\": 1439819199.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_7t3ox\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Why do people not just post the video? This would be much better with sound.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5uq8q\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhy do people not just post the video? This would be much better with sound.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uq8q/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819199.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ux4d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Say_Whatt\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uvb1\", \"score\": 1, \"author_fullname\": \"t2_is7nr\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Thanks! It wasn't easy, it's a really small channel with very few subscribers.\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5ux4d\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThanks! It wasn\\u0026#39;t easy, it\\u0026#39;s a really small channel with very few subscribers.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ux4d/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819595.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819595.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uvb1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"theitgrunt\", \"can_mod_post\": false, \"created_utc\": 1439819493.0, \"send_replies\": true, \"parent_id\": \"t1_cu5usjd\", \"score\": 0, \"author_fullname\": \"t2_4foyh\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Great Job! ;-)\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5uvb1\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGreat Job! ;-)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uvb1/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819493.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v65g\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"WinterFresh04\", \"can_mod_post\": false, \"created_utc\": 1439820092.0, \"send_replies\": true, \"parent_id\": \"t1_cu5usjd\", \"score\": 4, \"author_fullname\": \"t2_7fndy\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Nice try but that link was already purple.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5v65g\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENice try but that link was already purple.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v65g/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820092.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 4}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5whnb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"myblindy\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5vam9\", \"score\": 1, \"author_fullname\": \"t2_93z9x\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Pff like stupid ever stopped being in style. \", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5whnb\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPff like stupid ever stopped being in style. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5whnb/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439822582.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822582.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5vam9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"caseycoold\", \"can_mod_post\": false, \"created_utc\": 1439820346.0, \"send_replies\": true, \"parent_id\": \"t1_cu5usjd\", \"score\": 3, \"author_fullname\": \"t2_8jg1v\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Youtube and downvotes, must be rickroll. Yay for stupid making a come back.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5vam9\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYoutube and downvotes, must be rickroll. Yay for stupid making a come back.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vam9/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820346.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5usjd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Say_Whatt\", \"can_mod_post\": false, \"created_utc\": 1439819334.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -8, \"author_fullname\": \"t2_is7nr\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"[Found it!](https://www.youtube.com/watch?v=dQw4w9WgXcQ)\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5usjd\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=dQw4w9WgXcQ\\\"\\u003EFound it!\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5usjd/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819334.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 1, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -8}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v1jt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Kill3rKin3\", \"can_mod_post\": false, \"created_utc\": 1439819835.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_5gtr3\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Sharp kid. \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5v1jt\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESharp kid. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v1jt/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819835.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v2x8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"underwatr_cheestrain\", \"can_mod_post\": false, \"created_utc\": 1439819912.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_9bpzv\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"That kid fell so fast it looks like his legs were teleported away from under him\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5v2x8\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat kid fell so fast it looks like his legs were teleported away from under him\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v2x8/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819912.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v5l4\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"larenardemaigre\", \"can_mod_post\": false, \"created_utc\": 1439820059.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_olqec\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"You can see genuine concern flash across his face for a moment, then it's taken over by the \\\"oh my god, this is my chance\\\" realization.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5v5l4\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou can see genuine concern flash across his face for a moment, then it\\u0026#39;s taken over by the \\u0026quot;oh my god, this is my chance\\u0026quot; realization.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v5l4/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820059.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cumy3vj\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Decalance\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5w0qp\", \"score\": 1, \"author_fullname\": \"t2_6vglx\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Oh noess\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cumy3vj\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh noess\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cumy3vj/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1441111411.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1441111411.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5w0qp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"britboy3456\", \"can_mod_post\": false, \"created_utc\": 1439821722.0, \"send_replies\": true, \"parent_id\": \"t1_cu5v77p\", \"score\": -9, \"author_fullname\": \"t2_asvkk\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Wow, Reddit takes content from BuzzFeed now. What is this place coming to?!\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5w0qp\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWow, Reddit takes content from BuzzFeed now. What is this place coming to?!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w0qp/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821722.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -9}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5v77p\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"LokiBartleby\", \"can_mod_post\": false, \"created_utc\": 1439820152.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 46, \"author_fullname\": \"t2_696zk\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Source (kind of, it's a BuzzFeed video, couldn't find the original video yet): https://youtu.be/BdsQBqN7bCw?t=15s\\n\\nGot the Youtube link from another Imgur post that has a \\\"created from\\\" in the header: http://imgur.com/gallery/DZwKzyF\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5v77p\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESource (kind of, it\\u0026#39;s a BuzzFeed video, couldn\\u0026#39;t find the original video yet): \\u003Ca href=\\\"https://youtu.be/BdsQBqN7bCw?t=15s\\\"\\u003Ehttps://youtu.be/BdsQBqN7bCw?t=15s\\u003C/a\\u003E\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EGot the Youtube link from another Imgur post that has a \\u0026quot;created from\\u0026quot; in the header: \\u003Ca href=\\\"http://imgur.com/gallery/DZwKzyF\\\"\\u003Ehttp://imgur.com/gallery/DZwKzyF\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v77p/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820152.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 46}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v93f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"twashereandthere\", \"can_mod_post\": false, \"created_utc\": 1439820260.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 0, \"author_fullname\": \"t2_odw7l\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Didn't miss a beat. \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5v93f\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDidn\\u0026#39;t miss a beat. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v93f/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820260.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v9rk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Cajunbot\", \"can_mod_post\": false, \"created_utc\": 1439820297.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_4i2zb\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Am I the only one that was looking for the sheep and the snake?\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5v9rk\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAm I the only one that was looking for the sheep and the snake?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v9rk/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820297.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v9yd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"idosillythings\", \"can_mod_post\": false, \"created_utc\": 1439820308.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -2, \"author_fullname\": \"t2_6o7wd\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"In case anyone is interested, this drum action is referred to as a [rimshot.](http://instantrimshot.com/)\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5v9yd\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn case anyone is interested, this drum action is referred to as a \\u003Ca href=\\\"http://instantrimshot.com/\\\"\\u003Erimshot.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v9yd/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820308.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5va4c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"kwid\", \"can_mod_post\": false, \"created_utc\": 1439820317.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 0, \"author_fullname\": \"t2_4taax\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Two drums and symbol fall off a cliff...\\n\\n\\nBa Dum Tsss\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5va4c\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETwo drums and symbol fall off a cliff...\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EBa Dum Tsss\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5va4c/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820317.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5x6r5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Windowlicker79\", \"can_mod_post\": false, \"created_utc\": 1439823817.0, \"send_replies\": true, \"parent_id\": \"t1_cu5vc4a\", \"score\": 1, \"author_fullname\": \"t2_g84bq\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Like a tiny black hole opened up in the floor in front of him for a split second.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5x6r5\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELike a tiny black hole opened up in the floor in front of him for a split second.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5x6r5/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439823817.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5vc4a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Trewper-\", \"can_mod_post\": false, \"created_utc\": 1439820430.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 2, \"author_fullname\": \"t2_9j2p0\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"It looks like an unnatural force of gravity just slammed that kid.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5vc4a\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIt looks like an unnatural force of gravity just slammed that kid.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vc4a/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820430.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wmd1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"fort_wendy\", \"can_mod_post\": false, \"created_utc\": 1439822816.0, \"send_replies\": true, \"parent_id\": \"t1_cu5vf4x\", \"score\": 1, \"author_fullname\": \"t2_fz6ou\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Username checks out\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5wmd1\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EUsername checks out\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wmd1/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439822816.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5vf4x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"badum_tsss\", \"can_mod_post\": false, \"created_utc\": 1439820593.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_azu89\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"\\u003E\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5vf4x\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cblockquote\\u003E\\n\\u003C/blockquote\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vf4x/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820593.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vl9j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"match6969\", \"can_mod_post\": false, \"created_utc\": 1439820917.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 0, \"author_fullname\": \"t2_phnih\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"http://i.imgur.com/gP0zuQg.gifv\\n\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5vl9j\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://i.imgur.com/gP0zuQg.gifv\\\"\\u003Ehttp://i.imgur.com/gP0zuQg.gifv\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vl9j/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820917.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5voyp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"per_mare_per_terras\", \"can_mod_post\": false, \"created_utc\": 1439821115.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_mlxxo\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Sound please.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5voyp\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESound please.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5voyp/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821115.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vq0k\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"load231\", \"can_mod_post\": false, \"created_utc\": 1439821172.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_9sz3f\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Gif? Wheres the video? \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5vq0k\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EGif? Wheres the video? \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vq0k/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821172.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vqto\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Khaki_Steve\", \"can_mod_post\": false, \"created_utc\": 1439821215.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_liu48\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Did you touch my drumset? \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5vqto\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDid you touch my drumset? \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vqto/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821215.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vryn\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"eyeaim2missbehave\", \"can_mod_post\": false, \"created_utc\": 1439821274.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_5qhac\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"That kid's timing is on point.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5vryn\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat kid\\u0026#39;s timing is on point.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vryn/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821274.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vrz5\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"iamRambo88\", \"can_mod_post\": false, \"created_utc\": 1439821274.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -1, \"author_fullname\": \"t2_oc1j1\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"when your new to reddit and it says submit links to other reddit stories? does that mean video links to stuff i wanna post?\\n\\ne.g \\nhttps://www.youtube.com/watch?v=MQgP96uTLTU\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5vrz5\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewhen your new to reddit and it says submit links to other reddit stories? does that mean video links to stuff i wanna post?\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Ee.g \\n\\u003Ca href=\\\"https://www.youtube.com/watch?v=MQgP96uTLTU\\\"\\u003Ehttps://www.youtube.com/watch?v=MQgP96uTLTU\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vrz5/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821274.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vsjk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"cocobear13\", \"can_mod_post\": false, \"created_utc\": 1439821304.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 0, \"author_fullname\": \"t2_bxxfa\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"I laughed harder than I should have at that kid falling. Thanks!!!!!! :)\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5vsjk\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI laughed harder than I should have at that kid falling. Thanks!!!!!! :)\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vsjk/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821304.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vv3o\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"ass_drough_not\", \"can_mod_post\": false, \"created_utc\": 1439821434.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_mio9n\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"What caused the kid to fall, I wonder? Looks like his foot got yanked out from under him. \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5vv3o\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat caused the kid to fall, I wonder? Looks like his foot got yanked out from under him. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vv3o/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821434.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vvba\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"A_Rim_Shot_For_You\", \"can_mod_post\": false, \"created_utc\": 1439821444.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_77dzw\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"[I'll allow it.](http://instantrimshot.com/classic/?sound=rimshot\\u0026play=true)\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5vvba\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://instantrimshot.com/classic/?sound=rimshot\\u0026amp;play=true\\\"\\u003EI\\u0026#39;ll allow it.\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vvba/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821444.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5vysm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Rens1997\", \"can_mod_post\": false, \"created_utc\": 1439821623.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_bx99o\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"/r/noisygifs\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5vysm\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/noisygifs\\\"\\u003E/r/noisygifs\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vysm/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821623.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5w3qk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"ljman\", \"can_mod_post\": false, \"created_utc\": 1439821872.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_emake\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Am I the only one that can, almost, hear the sound of the drums by only watching this. \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5w3qk\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAm I the only one that can, almost, hear the sound of the drums by only watching this. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w3qk/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821872.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5w7za\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": false, \"author\": \"greaseleg\", \"can_mod_post\": false, \"created_utc\": 1439822089.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 23, \"author_fullname\": \"t2_5on0p\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"As a drummer and an asshole, this fills my heart with more joy than I can put into words. I have a new spirit animal.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5w7za\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs a drummer and an asshole, this fills my heart with more joy than I can put into words. I have a new spirit animal.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w7za/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439822089.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 23}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wium\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"DANNYonPC\", \"can_mod_post\": false, \"created_utc\": 1439822643.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_7w12q\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Oh my god, something that actually made me laugh in /r/funny!\\n\\ntn for that /u/your_local_librarian\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5wium\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh my god, something that actually made me laugh in \\u003Ca href=\\\"/r/funny\\\"\\u003E/r/funny\\u003C/a\\u003E!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003Etn for that \\u003Ca href=\\\"/u/your_local_librarian\\\"\\u003E/u/your_local_librarian\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wium/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439822643.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wlpi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"neverbeen1\", \"can_mod_post\": false, \"created_utc\": 1439822785.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_nhepo\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"100% going places\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5wlpi\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E100% going places\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wlpi/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439822785.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wn87\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"genghisruled\", \"can_mod_post\": false, \"created_utc\": 1439822859.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_c4h4t\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"without missing a beat\\n\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5wn87\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewithout missing a beat\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wn87/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439822859.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wo2z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"kerred\", \"can_mod_post\": false, \"created_utc\": 1439822902.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_5d6sw\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Eh not quite my tempo\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5wo2z\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EEh not quite my tempo\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wo2z/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439822902.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wohm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"dragoonjefy\", \"can_mod_post\": false, \"created_utc\": 1439822921.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_a24zm\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"The drummer has a split-second reaction, in which I can almost guarantee, the following ran through his head:\\n\\n\\\"Oh my god!! He fell.. WAIT!! This is it! This is the PERFECT moment.. All my training is about to pay off!!! DO IT!\\\"\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5wohm\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThe drummer has a split-second reaction, in which I can almost guarantee, the following ran through his head:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E\\u0026quot;Oh my god!! He fell.. WAIT!! This is it! This is the PERFECT moment.. All my training is about to pay off!!! DO IT!\\u0026quot;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wohm/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439822921.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wpss\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"Christ he went down with some speed. Almost free fall. \\n\\n\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EChrist he went down with some speed. Almost free fall. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wpss/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wpss\", \"created\": 1439822985.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822985.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xgyd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"caitlinisgreatlin\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5x3nm\", \"score\": 2, \"author_fullname\": \"t2_cw4ao\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Maybe. \\r\\rI'm a teacher, so I see a lot of kids. They all wear the same damn clothes.\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5xgyd\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMaybe. \\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI\\u0026#39;m a teacher, so I see a lot of kids. They all wear the same damn clothes.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xgyd/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439824319.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439824319.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5x3nm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Windowlicker79\", \"can_mod_post\": false, \"created_utc\": 1439823665.0, \"send_replies\": true, \"parent_id\": \"t1_cu5wqkv\", \"score\": 0, \"author_fullname\": \"t2_g84bq\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I don't track and note the clothing habits of enough 12 year old boys to give an educated answer to your question.\\n\\nSo maybe it is just you?\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5x3nm\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI don\\u0026#39;t track and note the clothing habits of enough 12 year old boys to give an educated answer to your question.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003ESo maybe it is just you?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5x3nm/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439823665.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5wqkv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"caitlinisgreatlin\", \"can_mod_post\": false, \"created_utc\": 1439823023.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_cw4ao\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Is it just me or does every boy under the age of 12 have that dark gray/lime green hoodie??\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5wqkv\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs it just me or does every boy under the age of 12 have that dark gray/lime green hoodie??\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wqkv/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439823023.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wt45\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"zammalad\", \"can_mod_post\": false, \"created_utc\": 1439823151.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_e06nc\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Someone needs to add sound to this\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5wt45\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESomeone needs to add sound to this\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wt45/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439823151.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wttg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Fartikus\", \"can_mod_post\": false, \"created_utc\": 1439823186.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_6z5ky\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Man if this was staged any more than it was, they'd be at a concert.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5wttg\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EMan if this was staged any more than it was, they\\u0026#39;d be at a concert.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wttg/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439823186.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5x7xp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"RoseL123\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5x0zo\", \"score\": 1, \"author_fullname\": \"t2_gqqxe\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"But it's only when he hits the brass thingy.\\n\\nIt sounds really far-off in my right ear.\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5x7xp\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBut it\\u0026#39;s only when he hits the brass thingy.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EIt sounds really far-off in my right ear.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5x7xp/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439823878.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439823878.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5x0zo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Windowlicker79\", \"can_mod_post\": false, \"created_utc\": 1439823536.0, \"send_replies\": true, \"parent_id\": \"t1_cu5wtzp\", \"score\": 1, \"author_fullname\": \"t2_g84bq\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"That might be tinnitus. \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5x0zo\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat might be tinnitus. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5x0zo/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439823536.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5wtzp\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"RoseL123\", \"can_mod_post\": false, \"created_utc\": 1439823195.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 0, \"author_fullname\": \"t2_gqqxe\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Am I the only one that heard the 'tsss'?\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5wtzp\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAm I the only one that heard the \\u0026#39;tsss\\u0026#39;?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wtzp/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439823195.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wwq8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Instincts\", \"can_mod_post\": false, \"created_utc\": 1439823328.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_5lfbj\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"That's actually some great showmanship, especially for his age.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5wwq8\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat\\u0026#39;s actually some great showmanship, especially for his age.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wwq8/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439823328.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5x1ih\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Jmersh\", \"can_mod_post\": false, \"created_utc\": 1439823562.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_4u9be\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"You can't teach that kind of comedic timing \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5x1ih\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYou can\\u0026#39;t teach that kind of comedic timing \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5x1ih/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439823562.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5x49x\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"amolad\", \"can_mod_post\": false, \"created_utc\": 1439823696.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_697uq\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Future *Tonight Show* band drummer.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5x49x\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EFuture \\u003Cem\\u003ETonight Show\\u003C/em\\u003E band drummer.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5x49x/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439823696.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5x4gu\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"nahfoo\", \"can_mod_post\": false, \"created_utc\": 1439823705.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_bbgle\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Did he step on a skateboard?\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5x4gu\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EDid he step on a skateboard?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5x4gu/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439823705.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xb47\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"1003rp\", \"can_mod_post\": false, \"created_utc\": 1439824035.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_juma4\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"/r/loudgifs \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5xb47\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/loudgifs\\\"\\u003E/r/loudgifs\\u003C/a\\u003E \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xb47/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439824035.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xd08\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Count_Awesome\", \"can_mod_post\": false, \"created_utc\": 1439824129.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_fg8bb\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Nope, not my tempo. \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5xd08\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ENope, not my tempo. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xd08/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439824129.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xl0c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"exclaimdi1000\", \"can_mod_post\": false, \"created_utc\": 1439824520.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -1, \"author_fullname\": \"t2_ot6ak\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Why do people not just post the video? This would be much better with sound.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5xl0c\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhy do people not just post the video? This would be much better with sound.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xl0c/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439824520.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ye1s\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Kugel\", \"can_mod_post\": false, \"created_utc\": 1439825895.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_8dedb\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"[had to be done](https://gifsound.com/?gifv=eoF76hj\\u0026v=6zXDo4dL7SU\\u0026s=2)\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5ye1s\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://gifsound.com/?gifv=eoF76hj\\u0026amp;v=6zXDo4dL7SU\\u0026amp;s=2\\\"\\u003Ehad to be done\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ye1s/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439825895.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5ynq2\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Lowgarr\", \"can_mod_post\": false, \"created_utc\": 1439826339.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_fjxvl\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"https://www.youtube.com/watch?v=BdsQBqN7bCw\\u0026feature=youtu.be\\u0026t=15s\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5ynq2\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=BdsQBqN7bCw\\u0026amp;feature=youtu.be\\u0026amp;t=15s\\\"\\u003Ehttps://www.youtube.com/watch?v=BdsQBqN7bCw\\u0026amp;feature=youtu.be\\u0026amp;t=15s\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5ynq2/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439826339.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5zia9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"SonOfTK421\", \"can_mod_post\": false, \"created_utc\": 1439827740.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_798fz\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Cheeky little bastard. He makes me so happy.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5zia9\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ECheeky little bastard. He makes me so happy.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5zia9/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439827740.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5zm42\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"soonpls\", \"can_mod_post\": false, \"created_utc\": 1439827912.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_h9m65\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"This kid is going places\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5zm42\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis kid is going places\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5zm42/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439827912.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5zw1h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"ljs009\", \"can_mod_post\": false, \"created_utc\": 1439828360.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_mv3f0\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"https://www.youtube.com/watch?v=6zXDo4dL7SU\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5zw1h\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"https://www.youtube.com/watch?v=6zXDo4dL7SU\\\"\\u003Ehttps://www.youtube.com/watch?v=6zXDo4dL7SU\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5zw1h/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439828360.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu60csr\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"thorhyphenaxe\", \"can_mod_post\": false, \"created_utc\": 1439829115.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_nd9uj\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Oh. My god. It's perfect.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu60csr\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EOh. My god. It\\u0026#39;s perfect.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu60csr/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439829115.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu60ivx\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"DishinDimes\", \"can_mod_post\": false, \"created_utc\": 1439829387.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_f9zp2\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"That kid is on point. Perfect timing.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu60ivx\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat kid is on point. Perfect timing.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu60ivx/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439829387.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu60xnz\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"TheRealBabyCave\", \"can_mod_post\": false, \"created_utc\": 1439830031.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 0, \"author_fullname\": \"t2_a2j8k\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"PSA:\\n\\nThis is not called a \\\"rimshot.\\\"\\n\\nThis is called a \\\"sting.\\\"\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu60xnz\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPSA:\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is not called a \\u0026quot;rimshot.\\u0026quot;\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EThis is called a \\u0026quot;sting.\\u0026quot;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu60xnz/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439830031.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 0}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu61po6\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"H00NER\", \"can_mod_post\": false, \"created_utc\": 1439831261.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_grw2y\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"[Rimshot!](http://instantrimshot.com/classic/?sound=rimshot\\u0026play=true)\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu61po6\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://instantrimshot.com/classic/?sound=rimshot\\u0026amp;play=true\\\"\\u003ERimshot!\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61po6/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439831261.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu61qj1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"problatikal\", \"can_mod_post\": false, \"created_utc\": 1439831301.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_b0t3d\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Bad Pun Tsss\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu61qj1\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EBad Pun Tsss\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61qj1/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439831301.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu61t06\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Gravelord-_Nito\", \"can_mod_post\": false, \"created_utc\": 1439831411.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_aulvp\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"How come every little boy ever ALWAYS is wearing that exact same hoodie\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu61t06\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow come every little boy ever ALWAYS is wearing that exact same hoodie\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61t06/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439831411.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu64k2r\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"andhe1000\", \"can_mod_post\": false, \"created_utc\": 1439835605.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_p7ktd\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Comedy is all about timing\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu64k2r\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EComedy is all about timing\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu64k2r/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439835605.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu64n5o\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bryandenny71\", \"can_mod_post\": false, \"created_utc\": 1439835730.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_5zbh2\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"That kid was on point!\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu64n5o\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat kid was on point!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu64n5o/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439835730.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu64opo\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"NOVA_OWL\", \"can_mod_post\": false, \"created_utc\": 1439835795.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 2, \"author_fullname\": \"t2_e8mud\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"As a fellow drummer, I should say it is our duty to always have a *ba dum chh* ready. This kid is honoring the brethren of the boom\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu64opo\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EAs a fellow drummer, I should say it is our duty to always have a \\u003Cem\\u003Eba dum chh\\u003C/em\\u003E ready. This kid is honoring the brethren of the boom\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu64opo/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439835795.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6568d\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"The_Celtic_Chemist\", \"can_mod_post\": false, \"created_utc\": 1439836525.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_5elnq\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Without missing a beat..\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu6568d\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWithout missing a beat..\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6568d/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439836525.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu67blf\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"mindtrapped\", \"can_mod_post\": false, \"created_utc\": 1439839726.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_93tls\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"This kids going places.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu67blf\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis kids going places.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu67blf/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439839726.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu67zs9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"SkylarMelody\", \"can_mod_post\": false, \"created_utc\": 1439840732.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_pljhg\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"LOL\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu67zs9\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ELOL\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu67zs9/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439840732.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu68ke1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"__z__z__\", \"can_mod_post\": false, \"created_utc\": 1439841572.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_gi470\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Is that Jake Lloyd?\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu68ke1\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIs that Jake Lloyd?\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu68ke1/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439841572.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu68z7z\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"gingerninja361\", \"can_mod_post\": false, \"created_utc\": 1439842188.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_mho2y\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Kid's like \\\"My time has come.\\\"\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu68z7z\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EKid\\u0026#39;s like \\u0026quot;My time has come.\\u0026quot;\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu68z7z/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439842188.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu69jlk\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"DDAAMMNN\", \"can_mod_post\": false, \"created_utc\": 1439843036.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 2, \"author_fullname\": \"t2_8luo1\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"*NOT MY FUCKING TEMPO*\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu69jlk\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Cem\\u003ENOT MY FUCKING TEMPO\\u003C/em\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu69jlk/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439843036.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6a3l7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"He'll be hear all week, folks!\\n\\n...because he broke his ankle and the only thing that little drummer boy can pick up is a decent beat.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe\\u0026#39;ll be hear all week, folks!\\u003C/p\\u003E\\n\\n\\u003Cp\\u003E...because he broke his ankle and the only thing that little drummer boy can pick up is a decent beat.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6a3l7/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6a3l7\", \"created\": 1439843862.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439843862.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6a8w9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Wsnjr\", \"can_mod_post\": false, \"created_utc\": 1439844078.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_lbq20\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"\\\"Sorry, not quite my tempo\\\" - Terence Fletcher \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu6a8w9\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u0026quot;Sorry, not quite my tempo\\u0026quot; - Terence Fletcher \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6a8w9/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439844078.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6c6tm\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"CallmeFree\", \"can_mod_post\": false, \"created_utc\": 1439847011.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_cggnv\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"This kid is going places in life\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu6c6tm\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis kid is going places in life\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6c6tm/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439847011.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6e11e\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"vHAL_9000\", \"can_mod_post\": false, \"created_utc\": 1439850038.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_hwpa8\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"He will remember this moment forever. Soo smooth...\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu6e11e\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe will remember this moment forever. Soo smooth...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6e11e/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439850038.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6g16b\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"MrSpof\", \"can_mod_post\": false, \"created_utc\": 1439853546.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_3e96d\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Truly a gif for the ages.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu6g16b\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETruly a gif for the ages.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6g16b/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439853546.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6hgi9\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"DoxBox\", \"can_mod_post\": false, \"created_utc\": 1439856137.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_5fkoh\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"That kid is going places. Possibly even college places.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu6hgi9\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat kid is going places. Possibly even college places.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6hgi9/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439856137.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6iocg\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"swordsman3000\", \"can_mod_post\": false, \"created_utc\": 1439858307.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_5b5pc\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Having a brother must be fun. \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu6iocg\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHaving a brother must be fun. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6iocg/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439858307.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6kf6y\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Tracy_Ray\", \"can_mod_post\": false, \"created_utc\": 1439861434.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_phfub\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"drum is cool\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu6kf6y\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Edrum is cool\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6kf6y/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439861434.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6lknl\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"/r/noisygifs\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"/r/noisygifs\\\"\\u003E/r/noisygifs\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": false, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6lknl/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6lknl\", \"created\": 1439863509.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439863509.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6pfhw\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"annekat\", \"can_mod_post\": false, \"created_utc\": 1439870738.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_jm8w\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"What's the difference between a pizza and a drummer? A drummer can't feed a family of 4.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu6pfhw\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EWhat\\u0026#39;s the difference between a pizza and a drummer? A drummer can\\u0026#39;t feed a family of 4.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6pfhw/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439870738.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6rlqv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Reason_to_Smile\", \"can_mod_post\": false, \"created_utc\": 1439875975.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": -1, \"author_fullname\": \"t2_pldh1\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"http://i.imgur.com/luKjJ0o.gifv\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu6rlqv\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E\\u003Ca href=\\\"http://i.imgur.com/luKjJ0o.gifv\\\"\\u003Ehttp://i.imgur.com/luKjJ0o.gifv\\u003C/a\\u003E\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6rlqv/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439875975.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": -1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu737kd\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bcruz3\", \"can_mod_post\": false, \"created_utc\": 1439910355.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_dqnlt\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Comedy is all about timing.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu737kd\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EComedy is all about timing.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu737kd/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439910355.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cuau8wb\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"djones0305\", \"can_mod_post\": false, \"created_utc\": 1440176231.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_7sz0i\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"That looks like CARRRLRLLLLLLRLRLRL\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cuau8wb\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThat looks like CARRRLRLLLLLLRLRLRL\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cuau8wb/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1440176231.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cuqtc08\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Revenant38\", \"can_mod_post\": false, \"created_utc\": 1441397165.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_d2sy2\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"He saw his chance, and he took it!\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cuqtc08\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe saw his chance, and he took it!\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cuqtc08/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1441397165.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cwtrkl1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"keepcalmandswagon\", \"can_mod_post\": false, \"created_utc\": 1447045240.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_rqjne\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"savage alert\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cwtrkl1\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Esavage alert\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cwtrkl1/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1447045240.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cxxubk8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"thebageljew\", \"can_mod_post\": false, \"created_utc\": 1450039261.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 2, \"author_fullname\": \"t2_bszmd\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"In Soviet Russia, mic drops you\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cxxubk8\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EIn Soviet Russia, mic drops you\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cxxubk8/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1450039261.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cy6jjhy\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Verithos\", \"can_mod_post\": false, \"created_utc\": 1450704267.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_9ex2i\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"This was amazing. \", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cy6jjhy\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EThis was amazing. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cy6jjhy/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1450704267.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}, {\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"czi61ft\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Romero1993\", \"can_mod_post\": false, \"created_utc\": 1454206653.0, \"send_replies\": true, \"parent_id\": \"t3_3hahrw\", \"score\": 1, \"author_fullname\": \"t2_b3afo\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"He saw a opportunity and he took it\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_czi61ft\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHe saw a opportunity and he took it\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/czi61ft/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1454206653.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}]" }, "headers": { "Accept-Ranges": "bytes", - "Cache-Control": "private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate", "Connection": "keep-alive", - "Content-Encoding": "gzip", - "Content-Length": "74489", + "Content-Length": "80349", "Content-Type": "application/json; charset=UTF-8", - "Date": "Sat, 04 Jul 2020 23:15:52 GMT", - "Expires": "-1", + "Date": "Fri, 05 Nov 2021 17:40:02 GMT", "Server": "snooserv", "Set-Cookie": "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-Cache": "MISS", - "X-Cache-Hits": "0", + "X-Clacks-Overhead": "GNU Terry Pratchett", "X-Moose": "majestic", - "X-Served-By": "cache-mci5940-MCI", - "X-Timer": "S1593904549.507532,VS0,VE3534", + "cache-control": "private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate", + "content-encoding": "gzip", + "expires": "-1", "x-content-type-options": "nosniff", "x-frame-options": "SAMEORIGIN", - "x-ratelimit-remaining": "252.0", - "x-ratelimit-reset": "252", - "x-ratelimit-used": "348", + "x-ratelimit-remaining": "598.0", + "x-ratelimit-reset": "600", + "x-ratelimit-used": "2", "x-ua-compatible": "IE=edge", "x-xss-protection": "1; mode=block" }, @@ -112,7 +109,7 @@ "code": 200, "message": "OK" }, - "url": "https://oauth.reddit.com/comments/3hahrw/?limit=2048&sort=confidence&raw_json=1" + "url": "https://oauth.reddit.com/comments/3hahrw/?limit=2048&sort=old&raw_json=1" } }, { @@ -126,40 +123,37 @@ "bearer " ], "User-Agent": [ - " Async PRAW/7.1.1.dev0 asyncprawcore/1.4.0.post1" + " Async PRAW/7.4.1.dev0 asyncprawcore/2.3.1.dev0" ] }, "method": "GET", - "uri": "https://oauth.reddit.com/comments/3hahrw/_/cu61zil?limit=2048&sort=old&raw_json=1" + "uri": "https://oauth.reddit.com/comments/3hahrw/_/cu5v5h7?limit=2048&sort=old&raw_json=1" }, "response": { "body": { - "string": "[{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 1, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"funny\", \"selftext\": \"\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Ba Dum Tsss\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/funny\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"top_awarded_type\": null, \"parent_whitelist_status\": \"all_ads\", \"hide_score\": false, \"name\": \"t3_3hahrw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.94, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 29784, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_oh64a\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 29784, \"approved_by\": null, \"author_premium\": true, \"thumbnail\": \"https://b.thumbs.redditmedia.com/5e3u8ceMZN0CYelVW2cPTp-R2o_lRGgIrFUCqN-p-pE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1439826280.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.imgur.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"http://i.imgur.com/eoF76hj.gifv\", \"view_count\": null, \"archived\": true, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?format=png8\\u0026s=8fce0e240021fae6057e6e9d0bc6d01e55c8d8be\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=0043d5d451641f59d83957debb5c2d5debbffe6a\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=8c6193562e873cad671f8be0cc1ded20cf8e4e40\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=fdc55cdb3f665ea544d0016c80251f67172c75f2\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026crop=smart\\u0026format=png8\\u0026s=b6a454102e2e35ee91634a3970a0b1946d51667b\", \"width\": 640, \"height\": 360}], \"variants\": {\"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?s=63556b2af71b62a2c6349aad5b058320301bc5d8\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026crop=smart\\u0026s=5d45ebe65c5b794b092185f83bf26d204a8dc3cd\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026crop=smart\\u0026s=9792339b06b9446433cd0b96643f3e34344d9eea\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026crop=smart\\u0026s=88703ea358f721aa004b9a53ffad705ff75ec297\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026crop=smart\\u0026s=05d76587afce21bcab664ce75f8dd28262e19820\", \"width\": 640, \"height\": 360}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?format=mp4\\u0026s=33e82bc7191fc664e87b3024b8b7668c2e2d9912\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026format=mp4\\u0026s=12a22c0f2b96a8839e3dafe719386935d125bea5\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026format=mp4\\u0026s=b8ca79735d3686d3fb19a2eb85b497a309693977\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026format=mp4\\u0026s=5235abf63a2395c43fc5696fa2d37766ea81deaf\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026format=mp4\\u0026s=418110d4a11d29ef741cac5d463bf552385902b4\", \"width\": 640, \"height\": 360}]}}, \"id\": \"TWpgQy5a3ucVCvWlwGPDbYeZk6FAbbk-f2WKWBi7pVY\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh33\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"3hahrw\", \"is_robot_indexable\": true, \"num_duplicates\": 9, \"report_reasons\": null, \"author\": \"your_local_librarian\", \"discussion_type\": null, \"num_comments\": 532, \"send_replies\": true, \"media\": null, \"contest_mode\": false, \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/\", \"whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://i.imgur.com/eoF76hj.gifv\", \"subreddit_subscribers\": 31469211, \"created_utc\": 1439797480.0, \"num_crossposts\": 0, \"mod_reports\": [], \"is_video\": false}}], \"after\": null, \"before\": null}}, {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 2, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu620o8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"kgbanarchy\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu61zil\", \"score\": 2, \"author_fullname\": \"t2_fyczk\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"open 5 windows and just let it play\\n\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eopen 5 windows and just let it play\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu620o8/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu620o8\", \"created\": 1439860537.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439831737.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu61zil\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"kgbanarchy\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5xgzb\", \"score\": 1, \"author_fullname\": \"t2_fyczk\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"not enough was said of this\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Enot enough was said of this\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61zil/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu61zil\", \"created\": 1439860488.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439831688.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}]" + "string": "[{\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": 1, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"funny\", \"selftext\": \"\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Ba Dum Tsss\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/funny\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"top_awarded_type\": null, \"parent_whitelist_status\": \"all_ads\", \"hide_score\": false, \"name\": \"t3_3hahrw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.94, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 29788, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_oh64a\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 29788, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/5e3u8ceMZN0CYelVW2cPTp-R2o_lRGgIrFUCqN-p-pE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1439797480.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.imgur.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"http://i.imgur.com/eoF76hj.gifv\", \"view_count\": null, \"archived\": true, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?format=png8\\u0026s=8fce0e240021fae6057e6e9d0bc6d01e55c8d8be\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=0043d5d451641f59d83957debb5c2d5debbffe6a\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=8c6193562e873cad671f8be0cc1ded20cf8e4e40\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=fdc55cdb3f665ea544d0016c80251f67172c75f2\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026crop=smart\\u0026format=png8\\u0026s=b6a454102e2e35ee91634a3970a0b1946d51667b\", \"width\": 640, \"height\": 360}], \"variants\": {\"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?s=63556b2af71b62a2c6349aad5b058320301bc5d8\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026crop=smart\\u0026s=5d45ebe65c5b794b092185f83bf26d204a8dc3cd\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026crop=smart\\u0026s=9792339b06b9446433cd0b96643f3e34344d9eea\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026crop=smart\\u0026s=88703ea358f721aa004b9a53ffad705ff75ec297\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026crop=smart\\u0026s=05d76587afce21bcab664ce75f8dd28262e19820\", \"width\": 640, \"height\": 360}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?format=mp4\\u0026s=33e82bc7191fc664e87b3024b8b7668c2e2d9912\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026format=mp4\\u0026s=12a22c0f2b96a8839e3dafe719386935d125bea5\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026format=mp4\\u0026s=b8ca79735d3686d3fb19a2eb85b497a309693977\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026format=mp4\\u0026s=5235abf63a2395c43fc5696fa2d37766ea81deaf\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026format=mp4\\u0026s=418110d4a11d29ef741cac5d463bf552385902b4\", \"width\": 640, \"height\": 360}]}}, \"id\": \"TWpgQy5a3ucVCvWlwGPDbYeZk6FAbbk-f2WKWBi7pVY\"}], \"reddit_video_preview\": {\"bitrate_kbps\": 800, \"fallback_url\": \"https://v.redd.it/vxahemsz24i71/DASH_360.mp4\", \"height\": 360, \"width\": 639, \"scrubber_media_url\": \"https://v.redd.it/vxahemsz24i71/DASH_96.mp4\", \"dash_url\": \"https://v.redd.it/vxahemsz24i71/DASHPlaylist.mpd\", \"duration\": 3, \"hls_url\": \"https://v.redd.it/vxahemsz24i71/HLSPlaylist.m3u8\", \"is_gif\": true, \"transcoding_status\": \"completed\"}, \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh33\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"3hahrw\", \"is_robot_indexable\": true, \"num_duplicates\": 9, \"report_reasons\": null, \"author\": \"your_local_librarian\", \"discussion_type\": null, \"num_comments\": 529, \"send_replies\": true, \"media\": null, \"contest_mode\": false, \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/\", \"whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://i.imgur.com/eoF76hj.gifv\", \"subreddit_subscribers\": 37829697, \"created_utc\": 1439797480.0, \"num_crossposts\": 0, \"mod_reports\": [], \"is_video\": false}}], \"before\": null}}, {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5w1ko\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Emerly_Nickel\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5vad7\", \"score\": 1, \"author_fullname\": \"t2_7ca4u\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"L\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5w1ko\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EL\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w1ko/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821765.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821765.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5vad7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bedintruder\", \"can_mod_post\": false, \"created_utc\": 1439820331.0, \"send_replies\": true, \"parent_id\": \"t1_cu5v5h7\", \"score\": 1, \"author_fullname\": \"t2_4f7fe\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"F\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5vad7\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EF\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vad7/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439820331.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5v5h7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5v4if\", \"score\": 1, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[deleted]\", \"edited\": 1502205193.0, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[deleted]\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v5h7/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v5h7\", \"created\": 1439820053.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820053.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"before\": null}}]" }, "headers": { "Accept-Ranges": "bytes", - "Cache-Control": "private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate", "Connection": "keep-alive", - "Content-Encoding": "gzip", - "Content-Length": "2458", + "Content-Length": "2786", "Content-Type": "application/json; charset=UTF-8", - "Date": "Sat, 04 Jul 2020 23:15:52 GMT", - "Expires": "-1", + "Date": "Fri, 05 Nov 2021 17:40:03 GMT", "Server": "snooserv", - "Set-Cookie": "session_tracker=gidehqiifdlaacmmil.0.1593904552347.Z0FBQUFBQmZBUTJvYzJqUWxYYVpiRDFfN2Q5M2pYRHZhNnJuYkROb0tqdHJETmtnNWZsSUxSanByYkJXd3d6Szh0WGZSOWtSSXpZTE9USjhZeWdMaDVmc3FzOE5DTVhFckxaTS13N29JWjNDZVdBNVFXODU4RGNPcmJSdzZxSXlRSHJMamVyZzBrMFc; Domain=reddit.com; Max-Age=7199; Path=/; expires=Sun, 05-Jul-2020 01:15:52 GMT; secure; SameSite=None; Secure", + "Set-Cookie": "session_tracker=jeglebflbprqnkbail.0.1636134003277.Z0FBQUFBQmhoV3h6SzRCLXFlQUdpZTFzNjRNdkFzWFdoLWp6bmxNTFlKbDBJUXhKbVJNTlZzblVpTEt1Zzk1M1dydnZDa2swb1ZVVmRnbXN5LTRJVlFtdXhjNDYtQnZYQ2pqbFdCSkoxdUxOM0kzaG9HRE1lMUVUNjhGZzNfemJ3dFZ1TkhDR2QyNUM; Domain=reddit.com; Max-Age=7199; Path=/; expires=Fri, 05-Nov-2021 19:40:03 GMT; secure; SameSite=None; Secure", "Strict-Transport-Security": "max-age=15552000; includeSubDomains; preload", "Vary": "accept-encoding", "Via": "1.1 varnish", - "X-Cache": "MISS", - "X-Cache-Hits": "0", + "X-Clacks-Overhead": "GNU Terry Pratchett", "X-Moose": "majestic", - "X-Served-By": "cache-mci5940-MCI", - "X-Timer": "S1593904552.283800,VS0,VE237", + "cache-control": "private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate", + "content-encoding": "gzip", + "expires": "-1", "x-content-type-options": "nosniff", "x-frame-options": "SAMEORIGIN", - "x-ratelimit-remaining": "251.0", - "x-ratelimit-reset": "248", - "x-ratelimit-used": "349", + "x-ratelimit-remaining": "596.0", + "x-ratelimit-reset": "597", + "x-ratelimit-used": "4", "x-ua-compatible": "IE=edge", "x-xss-protection": "1; mode=block" }, @@ -167,7 +161,7 @@ "code": 200, "message": "OK" }, - "url": "https://oauth.reddit.com/comments/3hahrw/_/cu61zil?limit=2048&sort=old&raw_json=1" + "url": "https://oauth.reddit.com/comments/3hahrw/_/cu5v5h7?limit=2048&sort=old&raw_json=1" } }, { @@ -181,7 +175,7 @@ "bearer " ], "User-Agent": [ - " Async PRAW/7.1.1.dev0 asyncprawcore/1.4.0.post1" + " Async PRAW/7.4.1.dev0 asyncprawcore/2.3.1.dev0" ] }, "method": "GET", @@ -189,32 +183,29 @@ }, "response": { "body": { - "string": "[{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 1, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"funny\", \"selftext\": \"\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Ba Dum Tsss\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/funny\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"top_awarded_type\": null, \"parent_whitelist_status\": \"all_ads\", \"hide_score\": false, \"name\": \"t3_3hahrw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.94, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 29785, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_oh64a\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 29785, \"approved_by\": null, \"author_premium\": true, \"thumbnail\": \"https://b.thumbs.redditmedia.com/5e3u8ceMZN0CYelVW2cPTp-R2o_lRGgIrFUCqN-p-pE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1439826280.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.imgur.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"http://i.imgur.com/eoF76hj.gifv\", \"view_count\": null, \"archived\": true, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?format=png8\\u0026s=8fce0e240021fae6057e6e9d0bc6d01e55c8d8be\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=0043d5d451641f59d83957debb5c2d5debbffe6a\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=8c6193562e873cad671f8be0cc1ded20cf8e4e40\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=fdc55cdb3f665ea544d0016c80251f67172c75f2\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026crop=smart\\u0026format=png8\\u0026s=b6a454102e2e35ee91634a3970a0b1946d51667b\", \"width\": 640, \"height\": 360}], \"variants\": {\"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?s=63556b2af71b62a2c6349aad5b058320301bc5d8\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026crop=smart\\u0026s=5d45ebe65c5b794b092185f83bf26d204a8dc3cd\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026crop=smart\\u0026s=9792339b06b9446433cd0b96643f3e34344d9eea\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026crop=smart\\u0026s=88703ea358f721aa004b9a53ffad705ff75ec297\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026crop=smart\\u0026s=05d76587afce21bcab664ce75f8dd28262e19820\", \"width\": 640, \"height\": 360}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?format=mp4\\u0026s=33e82bc7191fc664e87b3024b8b7668c2e2d9912\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026format=mp4\\u0026s=12a22c0f2b96a8839e3dafe719386935d125bea5\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026format=mp4\\u0026s=b8ca79735d3686d3fb19a2eb85b497a309693977\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026format=mp4\\u0026s=5235abf63a2395c43fc5696fa2d37766ea81deaf\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026format=mp4\\u0026s=418110d4a11d29ef741cac5d463bf552385902b4\", \"width\": 640, \"height\": 360}]}}, \"id\": \"TWpgQy5a3ucVCvWlwGPDbYeZk6FAbbk-f2WKWBi7pVY\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh33\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"3hahrw\", \"is_robot_indexable\": true, \"num_duplicates\": 9, \"report_reasons\": null, \"author\": \"your_local_librarian\", \"discussion_type\": null, \"num_comments\": 532, \"send_replies\": true, \"media\": null, \"contest_mode\": false, \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/\", \"whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://i.imgur.com/eoF76hj.gifv\", \"subreddit_subscribers\": 31469211, \"created_utc\": 1439797480.0, \"num_crossposts\": 0, \"mod_reports\": [], \"is_video\": false}}], \"after\": null, \"before\": null}}, {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 3, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v1tt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"chumothy\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5uyz1\", \"score\": 1, \"author_fullname\": \"t2_ou6xu\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Reddit has been helping me in so many ways, honestly.\\n\\nFirst watermelon tequila shots and now this. That's probably about it.\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EReddit has been helping me in so many ways, honestly.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst watermelon tequila shots and now this. That\\u0026#39;s probably about it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v1tt/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v1tt\", \"created\": 1439848651.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819851.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uyz1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Fresh_Bulgarian_Miak\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5unth\", \"score\": 3, \"author_fullname\": \"t2_lyjdc\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"TIL\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETIL\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uyz1/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5uyz1\", \"created\": 1439848494.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439819694.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}]" + "string": "[{\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": 1, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"funny\", \"selftext\": \"\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Ba Dum Tsss\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/funny\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"top_awarded_type\": null, \"parent_whitelist_status\": \"all_ads\", \"hide_score\": false, \"name\": \"t3_3hahrw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.94, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 29786, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_oh64a\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 29786, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/5e3u8ceMZN0CYelVW2cPTp-R2o_lRGgIrFUCqN-p-pE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1439797480.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.imgur.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"http://i.imgur.com/eoF76hj.gifv\", \"view_count\": null, \"archived\": true, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?format=png8\\u0026s=8fce0e240021fae6057e6e9d0bc6d01e55c8d8be\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=0043d5d451641f59d83957debb5c2d5debbffe6a\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=8c6193562e873cad671f8be0cc1ded20cf8e4e40\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=fdc55cdb3f665ea544d0016c80251f67172c75f2\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026crop=smart\\u0026format=png8\\u0026s=b6a454102e2e35ee91634a3970a0b1946d51667b\", \"width\": 640, \"height\": 360}], \"variants\": {\"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?s=63556b2af71b62a2c6349aad5b058320301bc5d8\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026crop=smart\\u0026s=5d45ebe65c5b794b092185f83bf26d204a8dc3cd\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026crop=smart\\u0026s=9792339b06b9446433cd0b96643f3e34344d9eea\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026crop=smart\\u0026s=88703ea358f721aa004b9a53ffad705ff75ec297\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026crop=smart\\u0026s=05d76587afce21bcab664ce75f8dd28262e19820\", \"width\": 640, \"height\": 360}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?format=mp4\\u0026s=33e82bc7191fc664e87b3024b8b7668c2e2d9912\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026format=mp4\\u0026s=12a22c0f2b96a8839e3dafe719386935d125bea5\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026format=mp4\\u0026s=b8ca79735d3686d3fb19a2eb85b497a309693977\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026format=mp4\\u0026s=5235abf63a2395c43fc5696fa2d37766ea81deaf\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026format=mp4\\u0026s=418110d4a11d29ef741cac5d463bf552385902b4\", \"width\": 640, \"height\": 360}]}}, \"id\": \"TWpgQy5a3ucVCvWlwGPDbYeZk6FAbbk-f2WKWBi7pVY\"}], \"reddit_video_preview\": {\"bitrate_kbps\": 800, \"fallback_url\": \"https://v.redd.it/vxahemsz24i71/DASH_360.mp4\", \"height\": 360, \"width\": 639, \"scrubber_media_url\": \"https://v.redd.it/vxahemsz24i71/DASH_96.mp4\", \"dash_url\": \"https://v.redd.it/vxahemsz24i71/DASHPlaylist.mpd\", \"duration\": 3, \"hls_url\": \"https://v.redd.it/vxahemsz24i71/HLSPlaylist.m3u8\", \"is_gif\": true, \"transcoding_status\": \"completed\"}, \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh33\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"3hahrw\", \"is_robot_indexable\": true, \"num_duplicates\": 9, \"report_reasons\": null, \"author\": \"your_local_librarian\", \"discussion_type\": null, \"num_comments\": 529, \"send_replies\": true, \"media\": null, \"contest_mode\": false, \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/\", \"whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://i.imgur.com/eoF76hj.gifv\", \"subreddit_subscribers\": 37829697, \"created_utc\": 1439797480.0, \"num_crossposts\": 0, \"mod_reports\": [], \"is_video\": false}}], \"before\": null}}, {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5v1tt\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"chumothy\", \"can_mod_post\": false, \"created_utc\": 1439819851.0, \"send_replies\": true, \"parent_id\": \"t1_cu5uyz1\", \"score\": 1, \"author_fullname\": \"t2_ou6xu\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Reddit has been helping me in so many ways, honestly.\\n\\nFirst watermelon tequila shots and now this. That's probably about it.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5v1tt\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EReddit has been helping me in so many ways, honestly.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EFirst watermelon tequila shots and now this. That\\u0026#39;s probably about it.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v1tt/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819851.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5uyz1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"Fresh_Bulgarian_Miak\", \"can_mod_post\": false, \"created_utc\": 1439819694.0, \"send_replies\": true, \"parent_id\": \"t1_cu5unth\", \"score\": 3, \"author_fullname\": \"t2_lyjdc\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"TIL\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5uyz1\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ETIL\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5uyz1/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439819694.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 3}}], \"before\": null}}]" }, "headers": { "Accept-Ranges": "bytes", - "Cache-Control": "private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate", "Connection": "keep-alive", - "Content-Encoding": "gzip", - "Content-Length": "2549", + "Content-Length": "2758", "Content-Type": "application/json; charset=UTF-8", - "Date": "Sat, 04 Jul 2020 23:15:52 GMT", - "Expires": "-1", + "Date": "Fri, 05 Nov 2021 17:40:03 GMT", "Server": "snooserv", - "Set-Cookie": "session_tracker=gidehqiifdlaacmmil.0.1593904552704.Z0FBQUFBQmZBUTJvVzExdEdWcVdwM3c3Ml9Bdi05TDNJcGdTcUtyOVIxU2I2RWk1RmFGSlQwUldGMUdGRnIwZFNqWG9mb1dNWUlZYUJVaUIwWFF3NDF0eFNvUGdyNHVRYThiMlVBcHhoTXgxZFhOQjEwc0t0Q1lMMXZRV2JQTEthZHRUd3J2bmpKSnE; Domain=reddit.com; Max-Age=7199; Path=/; expires=Sun, 05-Jul-2020 01:15:52 GMT; secure; SameSite=None; Secure", + "Set-Cookie": "session_tracker=jeglebflbprqnkbail.0.1636134003573.Z0FBQUFBQmhoV3h6WDlKcWdXTlJKbF81T0gwWFhDSXIzZkdVSDV3al9lN0FyYWI3Q2RvT1R4SmFjZDRxV2NmR2h5SnVwNnRaa1haWENZd3FIeEpFSWhrTkhza0ZPcTNnSlNWb0ZWTF95cHJZR01TUGhWT05TbUN6d2xublplXy1EYmlFdUhGb1ppVV8; Domain=reddit.com; Max-Age=7199; Path=/; expires=Fri, 05-Nov-2021 19:40:03 GMT; secure; SameSite=None; Secure", "Strict-Transport-Security": "max-age=15552000; includeSubDomains; preload", "Vary": "accept-encoding", "Via": "1.1 varnish", - "X-Cache": "MISS", - "X-Cache-Hits": "0", + "X-Clacks-Overhead": "GNU Terry Pratchett", "X-Moose": "majestic", - "X-Served-By": "cache-mci5940-MCI", - "X-Timer": "S1593904553.647967,VS0,VE295", + "cache-control": "private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate", + "content-encoding": "gzip", + "expires": "-1", "x-content-type-options": "nosniff", "x-frame-options": "SAMEORIGIN", - "x-ratelimit-remaining": "249.0", - "x-ratelimit-reset": "248", - "x-ratelimit-used": "351", + "x-ratelimit-remaining": "594.0", + "x-ratelimit-reset": "597", + "x-ratelimit-used": "6", "x-ua-compatible": "IE=edge", "x-xss-protection": "1; mode=block" }, @@ -236,7 +227,7 @@ "bearer " ], "User-Agent": [ - " Async PRAW/7.1.1.dev0 asyncprawcore/1.4.0.post1" + " Async PRAW/7.4.1.dev0 asyncprawcore/2.3.1.dev0" ] }, "method": "GET", @@ -244,32 +235,29 @@ }, "response": { "body": { - "string": "[{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 1, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"funny\", \"selftext\": \"\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Ba Dum Tsss\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/funny\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"top_awarded_type\": null, \"parent_whitelist_status\": \"all_ads\", \"hide_score\": false, \"name\": \"t3_3hahrw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.94, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 29786, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_oh64a\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 29786, \"approved_by\": null, \"author_premium\": true, \"thumbnail\": \"https://b.thumbs.redditmedia.com/5e3u8ceMZN0CYelVW2cPTp-R2o_lRGgIrFUCqN-p-pE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1439826280.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.imgur.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"http://i.imgur.com/eoF76hj.gifv\", \"view_count\": null, \"archived\": true, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?format=png8\\u0026s=8fce0e240021fae6057e6e9d0bc6d01e55c8d8be\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=0043d5d451641f59d83957debb5c2d5debbffe6a\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=8c6193562e873cad671f8be0cc1ded20cf8e4e40\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=fdc55cdb3f665ea544d0016c80251f67172c75f2\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026crop=smart\\u0026format=png8\\u0026s=b6a454102e2e35ee91634a3970a0b1946d51667b\", \"width\": 640, \"height\": 360}], \"variants\": {\"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?s=63556b2af71b62a2c6349aad5b058320301bc5d8\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026crop=smart\\u0026s=5d45ebe65c5b794b092185f83bf26d204a8dc3cd\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026crop=smart\\u0026s=9792339b06b9446433cd0b96643f3e34344d9eea\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026crop=smart\\u0026s=88703ea358f721aa004b9a53ffad705ff75ec297\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026crop=smart\\u0026s=05d76587afce21bcab664ce75f8dd28262e19820\", \"width\": 640, \"height\": 360}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?format=mp4\\u0026s=33e82bc7191fc664e87b3024b8b7668c2e2d9912\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026format=mp4\\u0026s=12a22c0f2b96a8839e3dafe719386935d125bea5\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026format=mp4\\u0026s=b8ca79735d3686d3fb19a2eb85b497a309693977\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026format=mp4\\u0026s=5235abf63a2395c43fc5696fa2d37766ea81deaf\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026format=mp4\\u0026s=418110d4a11d29ef741cac5d463bf552385902b4\", \"width\": 640, \"height\": 360}]}}, \"id\": \"TWpgQy5a3ucVCvWlwGPDbYeZk6FAbbk-f2WKWBi7pVY\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh33\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"3hahrw\", \"is_robot_indexable\": true, \"num_duplicates\": 9, \"report_reasons\": null, \"author\": \"your_local_librarian\", \"discussion_type\": null, \"num_comments\": 532, \"send_replies\": true, \"media\": null, \"contest_mode\": false, \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/\", \"whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://i.imgur.com/eoF76hj.gifv\", \"subreddit_subscribers\": 31469211, \"created_utc\": 1439797480.0, \"num_crossposts\": 0, \"mod_reports\": [], \"is_video\": false}}], \"after\": null, \"before\": null}}, {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6236a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"yourmansconnect\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu61tk1\", \"score\": 1, \"author_fullname\": \"t2_6twfb\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"Parent commentor meaning the guy who originally said it was shopped...\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EParent commentor meaning the guy who originally said it was shopped...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6236a/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu6236a\", \"created\": 1439860647.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439831847.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu61tk1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu61nnl\", \"score\": 1, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[deleted]\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[deleted]\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61tk1/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu61tk1\", \"created\": 1439860234.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439831434.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}]" + "string": "[{\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": 1, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"funny\", \"selftext\": \"\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Ba Dum Tsss\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/funny\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"top_awarded_type\": null, \"parent_whitelist_status\": \"all_ads\", \"hide_score\": false, \"name\": \"t3_3hahrw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.94, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 29779, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_oh64a\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 29779, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/5e3u8ceMZN0CYelVW2cPTp-R2o_lRGgIrFUCqN-p-pE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1439797480.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.imgur.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"http://i.imgur.com/eoF76hj.gifv\", \"view_count\": null, \"archived\": true, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?format=png8\\u0026s=8fce0e240021fae6057e6e9d0bc6d01e55c8d8be\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=0043d5d451641f59d83957debb5c2d5debbffe6a\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=8c6193562e873cad671f8be0cc1ded20cf8e4e40\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=fdc55cdb3f665ea544d0016c80251f67172c75f2\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026crop=smart\\u0026format=png8\\u0026s=b6a454102e2e35ee91634a3970a0b1946d51667b\", \"width\": 640, \"height\": 360}], \"variants\": {\"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?s=63556b2af71b62a2c6349aad5b058320301bc5d8\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026crop=smart\\u0026s=5d45ebe65c5b794b092185f83bf26d204a8dc3cd\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026crop=smart\\u0026s=9792339b06b9446433cd0b96643f3e34344d9eea\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026crop=smart\\u0026s=88703ea358f721aa004b9a53ffad705ff75ec297\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026crop=smart\\u0026s=05d76587afce21bcab664ce75f8dd28262e19820\", \"width\": 640, \"height\": 360}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?format=mp4\\u0026s=33e82bc7191fc664e87b3024b8b7668c2e2d9912\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026format=mp4\\u0026s=12a22c0f2b96a8839e3dafe719386935d125bea5\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026format=mp4\\u0026s=b8ca79735d3686d3fb19a2eb85b497a309693977\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026format=mp4\\u0026s=5235abf63a2395c43fc5696fa2d37766ea81deaf\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026format=mp4\\u0026s=418110d4a11d29ef741cac5d463bf552385902b4\", \"width\": 640, \"height\": 360}]}}, \"id\": \"TWpgQy5a3ucVCvWlwGPDbYeZk6FAbbk-f2WKWBi7pVY\"}], \"reddit_video_preview\": {\"bitrate_kbps\": 800, \"fallback_url\": \"https://v.redd.it/vxahemsz24i71/DASH_360.mp4\", \"height\": 360, \"width\": 639, \"scrubber_media_url\": \"https://v.redd.it/vxahemsz24i71/DASH_96.mp4\", \"dash_url\": \"https://v.redd.it/vxahemsz24i71/DASHPlaylist.mpd\", \"duration\": 3, \"hls_url\": \"https://v.redd.it/vxahemsz24i71/HLSPlaylist.m3u8\", \"is_gif\": true, \"transcoding_status\": \"completed\"}, \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh33\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"3hahrw\", \"is_robot_indexable\": true, \"num_duplicates\": 9, \"report_reasons\": null, \"author\": \"your_local_librarian\", \"discussion_type\": null, \"num_comments\": 529, \"send_replies\": true, \"media\": null, \"contest_mode\": false, \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/\", \"whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://i.imgur.com/eoF76hj.gifv\", \"subreddit_subscribers\": 37829697, \"created_utc\": 1439797480.0, \"num_crossposts\": 0, \"mod_reports\": [], \"is_video\": false}}], \"before\": null}}, {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"ups\": 1, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu6236a\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"yourmansconnect\", \"can_mod_post\": false, \"created_utc\": 1439831847.0, \"send_replies\": true, \"parent_id\": \"t1_cu61tk1\", \"score\": 1, \"author_fullname\": \"t2_6twfb\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Parent commentor meaning the guy who originally said it was shopped...\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu6236a\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EParent commentor meaning the guy who originally said it was shopped...\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu6236a/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439831847.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu61tk1\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu61nnl\", \"score\": 1, \"approved_by\": null, \"report_reasons\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[deleted]\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[deleted]\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61tk1/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu61tk1\", \"created\": 1439831434.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439831434.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"before\": null}}]" }, "headers": { "Accept-Ranges": "bytes", - "Cache-Control": "private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate", "Connection": "keep-alive", - "Content-Encoding": "gzip", - "Content-Length": "2483", + "Content-Length": "2713", "Content-Type": "application/json; charset=UTF-8", - "Date": "Sat, 04 Jul 2020 23:15:53 GMT", - "Expires": "-1", + "Date": "Fri, 05 Nov 2021 17:40:04 GMT", "Server": "snooserv", - "Set-Cookie": "session_tracker=gidehqiifdlaacmmil.0.1593904553106.Z0FBQUFBQmZBUTJwZUFLazBpcS1sVnJlUFdNdy0zMFg0ZkdpZVZqd1JkZktka05DVV8tQkdpTXJQYmN2LXhLWC1WS3hnbVhhRWl6MzQ2bldFcFlSMlk1RmlLaElCLV9HanlSdlZqdzVMRGpLQ2NHX1F1VzUzeFpFUnVROUJqdEZjbHI3OWNKcExYcGw; Domain=reddit.com; Max-Age=7199; Path=/; expires=Sun, 05-Jul-2020 01:15:53 GMT; secure; SameSite=None; Secure", + "Set-Cookie": "session_tracker=jeglebflbprqnkbail.0.1636134003935.Z0FBQUFBQmhoV3gwNTJUYnYwU2lmZXJBSEhKaFhKb1JPVVJWNFNnX0NuUUlYUVJCS1FIanlWQko4Ylh6OFFjY0VvUE9WaFUtTXQ3SUJmd3JfcGhHdVFfcmw2RzhiUm9NY2h5TzYtVjh2ckwxbmFuWW1haU9HUUxoalBpOEFxVjZMOHNtWmdZRHJBU24; Domain=reddit.com; Max-Age=7199; Path=/; expires=Fri, 05-Nov-2021 19:40:04 GMT; secure; SameSite=None; Secure", "Strict-Transport-Security": "max-age=15552000; includeSubDomains; preload", "Vary": "accept-encoding", "Via": "1.1 varnish", - "X-Cache": "MISS", - "X-Cache-Hits": "0", + "X-Clacks-Overhead": "GNU Terry Pratchett", "X-Moose": "majestic", - "X-Served-By": "cache-mci5940-MCI", - "X-Timer": "S1593904553.058678,VS0,VE242", + "cache-control": "private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate", + "content-encoding": "gzip", + "expires": "-1", "x-content-type-options": "nosniff", "x-frame-options": "SAMEORIGIN", - "x-ratelimit-remaining": "248.0", - "x-ratelimit-reset": "247", - "x-ratelimit-used": "352", + "x-ratelimit-remaining": "593.0", + "x-ratelimit-reset": "597", + "x-ratelimit-used": "7", "x-ua-compatible": "IE=edge", "x-xss-protection": "1; mode=block" }, @@ -291,7 +279,7 @@ "bearer " ], "User-Agent": [ - " Async PRAW/7.1.1.dev0 asyncprawcore/1.4.0.post1" + " Async PRAW/7.4.1.dev0 asyncprawcore/2.3.1.dev0" ] }, "method": "GET", @@ -299,32 +287,29 @@ }, "response": { "body": { - "string": "[{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 1, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"funny\", \"selftext\": \"\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Ba Dum Tsss\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/funny\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"top_awarded_type\": null, \"parent_whitelist_status\": \"all_ads\", \"hide_score\": false, \"name\": \"t3_3hahrw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.94, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 29785, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_oh64a\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 29785, \"approved_by\": null, \"author_premium\": true, \"thumbnail\": \"https://b.thumbs.redditmedia.com/5e3u8ceMZN0CYelVW2cPTp-R2o_lRGgIrFUCqN-p-pE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1439826280.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.imgur.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"http://i.imgur.com/eoF76hj.gifv\", \"view_count\": null, \"archived\": true, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?format=png8\\u0026s=8fce0e240021fae6057e6e9d0bc6d01e55c8d8be\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=0043d5d451641f59d83957debb5c2d5debbffe6a\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=8c6193562e873cad671f8be0cc1ded20cf8e4e40\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=fdc55cdb3f665ea544d0016c80251f67172c75f2\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026crop=smart\\u0026format=png8\\u0026s=b6a454102e2e35ee91634a3970a0b1946d51667b\", \"width\": 640, \"height\": 360}], \"variants\": {\"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?s=63556b2af71b62a2c6349aad5b058320301bc5d8\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026crop=smart\\u0026s=5d45ebe65c5b794b092185f83bf26d204a8dc3cd\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026crop=smart\\u0026s=9792339b06b9446433cd0b96643f3e34344d9eea\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026crop=smart\\u0026s=88703ea358f721aa004b9a53ffad705ff75ec297\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026crop=smart\\u0026s=05d76587afce21bcab664ce75f8dd28262e19820\", \"width\": 640, \"height\": 360}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?format=mp4\\u0026s=33e82bc7191fc664e87b3024b8b7668c2e2d9912\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026format=mp4\\u0026s=12a22c0f2b96a8839e3dafe719386935d125bea5\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026format=mp4\\u0026s=b8ca79735d3686d3fb19a2eb85b497a309693977\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026format=mp4\\u0026s=5235abf63a2395c43fc5696fa2d37766ea81deaf\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026format=mp4\\u0026s=418110d4a11d29ef741cac5d463bf552385902b4\", \"width\": 640, \"height\": 360}]}}, \"id\": \"TWpgQy5a3ucVCvWlwGPDbYeZk6FAbbk-f2WKWBi7pVY\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh33\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"3hahrw\", \"is_robot_indexable\": true, \"num_duplicates\": 9, \"report_reasons\": null, \"author\": \"your_local_librarian\", \"discussion_type\": null, \"num_comments\": 532, \"send_replies\": true, \"media\": null, \"contest_mode\": false, \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/\", \"whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://i.imgur.com/eoF76hj.gifv\", \"subreddit_subscribers\": 31469211, \"created_utc\": 1439797480.0, \"num_crossposts\": 0, \"mod_reports\": [], \"is_video\": false}}], \"after\": null, \"before\": null}}, {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wgsi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"bigted41\", \"can_mod_post\": false, \"created_utc\": 1439822537.0, \"send_replies\": true, \"parent_id\": \"t1_cu5wf0c\", \"score\": 1, \"author_fullname\": \"t2_5ww00\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"it's under Settings -\\u003E theme -\\u003E dark\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eit\\u0026#39;s under Settings -\\u0026gt; theme -\\u0026gt; dark\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wgsi/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wgsi\", \"created\": 1439851337.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5wf0c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"imhooks\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5w5nv\", \"score\": 1, \"author_fullname\": \"t2_i19in\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"I was not. I'll give it a look. Thanks\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was not. I\\u0026#39;ll give it a look. Thanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wf0c/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5wf0c\", \"created\": 1439851248.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822448.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5w5nv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"bigted41\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5vnzj\", \"score\": 1, \"author_fullname\": \"t2_5ww00\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"were you using night time mode with reddit is fun? turns background black and text white. easier to look at.\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewere you using night time mode with reddit is fun? turns background black and text white. easier to look at.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w5nv/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5w5nv\", \"created\": 1439850770.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439821970.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}]" + "string": "[{\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": 1, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"funny\", \"selftext\": \"\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Ba Dum Tsss\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/funny\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"top_awarded_type\": null, \"parent_whitelist_status\": \"all_ads\", \"hide_score\": false, \"name\": \"t3_3hahrw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.94, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 29783, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_oh64a\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 29783, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/5e3u8ceMZN0CYelVW2cPTp-R2o_lRGgIrFUCqN-p-pE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1439797480.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.imgur.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"http://i.imgur.com/eoF76hj.gifv\", \"view_count\": null, \"archived\": true, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?format=png8\\u0026s=8fce0e240021fae6057e6e9d0bc6d01e55c8d8be\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=0043d5d451641f59d83957debb5c2d5debbffe6a\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=8c6193562e873cad671f8be0cc1ded20cf8e4e40\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=fdc55cdb3f665ea544d0016c80251f67172c75f2\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026crop=smart\\u0026format=png8\\u0026s=b6a454102e2e35ee91634a3970a0b1946d51667b\", \"width\": 640, \"height\": 360}], \"variants\": {\"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?s=63556b2af71b62a2c6349aad5b058320301bc5d8\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026crop=smart\\u0026s=5d45ebe65c5b794b092185f83bf26d204a8dc3cd\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026crop=smart\\u0026s=9792339b06b9446433cd0b96643f3e34344d9eea\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026crop=smart\\u0026s=88703ea358f721aa004b9a53ffad705ff75ec297\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026crop=smart\\u0026s=05d76587afce21bcab664ce75f8dd28262e19820\", \"width\": 640, \"height\": 360}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?format=mp4\\u0026s=33e82bc7191fc664e87b3024b8b7668c2e2d9912\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026format=mp4\\u0026s=12a22c0f2b96a8839e3dafe719386935d125bea5\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026format=mp4\\u0026s=b8ca79735d3686d3fb19a2eb85b497a309693977\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026format=mp4\\u0026s=5235abf63a2395c43fc5696fa2d37766ea81deaf\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026format=mp4\\u0026s=418110d4a11d29ef741cac5d463bf552385902b4\", \"width\": 640, \"height\": 360}]}}, \"id\": \"TWpgQy5a3ucVCvWlwGPDbYeZk6FAbbk-f2WKWBi7pVY\"}], \"reddit_video_preview\": {\"bitrate_kbps\": 800, \"fallback_url\": \"https://v.redd.it/vxahemsz24i71/DASH_360.mp4\", \"height\": 360, \"width\": 639, \"scrubber_media_url\": \"https://v.redd.it/vxahemsz24i71/DASH_96.mp4\", \"dash_url\": \"https://v.redd.it/vxahemsz24i71/DASHPlaylist.mpd\", \"duration\": 3, \"hls_url\": \"https://v.redd.it/vxahemsz24i71/HLSPlaylist.m3u8\", \"is_gif\": true, \"transcoding_status\": \"completed\"}, \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh33\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"3hahrw\", \"is_robot_indexable\": true, \"num_duplicates\": 9, \"report_reasons\": null, \"author\": \"your_local_librarian\", \"discussion_type\": null, \"num_comments\": 529, \"send_replies\": true, \"media\": null, \"contest_mode\": false, \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/\", \"whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://i.imgur.com/eoF76hj.gifv\", \"subreddit_subscribers\": 37829697, \"created_utc\": 1439797480.0, \"num_crossposts\": 0, \"mod_reports\": [], \"is_video\": false}}], \"before\": null}}, {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5wgsi\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bigted41\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5wf0c\", \"score\": 1, \"author_fullname\": \"t2_5ww00\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"it's under Settings -\\u003E theme -\\u003E dark\", \"edited\": false, \"top_awarded_type\": null, \"downs\": 0, \"author_flair_css_class\": null, \"name\": \"t1_cu5wgsi\", \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eit\\u0026#39;s under Settings -\\u0026gt; theme -\\u0026gt; dark\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wgsi/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439822537.0, \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439822537.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5wf0c\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"imhooks\", \"can_mod_post\": false, \"created_utc\": 1439822448.0, \"send_replies\": true, \"parent_id\": \"t1_cu5w5nv\", \"score\": 1, \"author_fullname\": \"t2_i19in\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"I was not. I'll give it a look. Thanks\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5wf0c\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EI was not. I\\u0026#39;ll give it a look. Thanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5wf0c/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439822448.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5w5nv\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bigted41\", \"can_mod_post\": false, \"created_utc\": 1439821970.0, \"send_replies\": true, \"parent_id\": \"t1_cu5vnzj\", \"score\": 1, \"author_fullname\": \"t2_5ww00\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"were you using night time mode with reddit is fun? turns background black and text white. easier to look at.\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5w5nv\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Ewere you using night time mode with reddit is fun? turns background black and text white. easier to look at.\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w5nv/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439821970.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}]" }, "headers": { "Accept-Ranges": "bytes", - "Cache-Control": "private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate", "Connection": "keep-alive", - "Content-Encoding": "gzip", - "Content-Length": "2640", + "Content-Length": "2875", "Content-Type": "application/json; charset=UTF-8", - "Date": "Sat, 04 Jul 2020 23:15:53 GMT", - "Expires": "-1", + "Date": "Fri, 05 Nov 2021 17:40:04 GMT", "Server": "snooserv", - "Set-Cookie": "session_tracker=gidehqiifdlaacmmil.0.1593904553427.Z0FBQUFBQmZBUTJwSFBMekZuRWFXTXk0ck8wNHNpUjhoR2ZXdzB4cXhFVi1aZ1AzVVdfVUJSc3Z5a3VHU05HMi1Pajc0MjdDUkFsX2NOYmZVTTJ3WjE2TkhWZjM3RHpOWmZEUEVqalJWMTlIeGpuYklmYTVLWTBmUlNEQ0xYanhfTFdaRkVWYXNfZXI; Domain=reddit.com; Max-Age=7199; Path=/; expires=Sun, 05-Jul-2020 01:15:53 GMT; secure; SameSite=None; Secure", + "Set-Cookie": "session_tracker=jeglebflbprqnkbail.0.1636134004237.Z0FBQUFBQmhoV3gwNUJEM0Nid2duZVNHUFg2NkE0UmdveVJTb2s4S0t2cWw2WlNHOU1HX0pYekpHaklvOFBmMS1qWEtRb3JZMTVzNmhGOEZDV01JZ0tMQ0NQcDZxRno5aVZwSksydl9VM2tFRG5qVGhnOWFaSFFQZk81UjA0SlhUcHVya0szMmpnekM; Domain=reddit.com; Max-Age=7199; Path=/; expires=Fri, 05-Nov-2021 19:40:04 GMT; secure; SameSite=None; Secure", "Strict-Transport-Security": "max-age=15552000; includeSubDomains; preload", "Vary": "accept-encoding", "Via": "1.1 varnish", - "X-Cache": "MISS", - "X-Cache-Hits": "0", + "X-Clacks-Overhead": "GNU Terry Pratchett", "X-Moose": "majestic", - "X-Served-By": "cache-mci5940-MCI", - "X-Timer": "S1593904553.367568,VS0,VE247", + "cache-control": "private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate", + "content-encoding": "gzip", + "expires": "-1", "x-content-type-options": "nosniff", "x-frame-options": "SAMEORIGIN", - "x-ratelimit-remaining": "247.0", - "x-ratelimit-reset": "247", - "x-ratelimit-used": "353", + "x-ratelimit-remaining": "592.0", + "x-ratelimit-reset": "596", + "x-ratelimit-used": "8", "x-ua-compatible": "IE=edge", "x-xss-protection": "1; mode=block" }, @@ -346,40 +331,37 @@ "bearer " ], "User-Agent": [ - " Async PRAW/7.1.1.dev0 asyncprawcore/1.4.0.post1" + " Async PRAW/7.4.1.dev0 asyncprawcore/2.3.1.dev0" ] }, "method": "GET", - "uri": "https://oauth.reddit.com/comments/3hahrw/_/cu5v5h7?limit=2048&sort=old&raw_json=1" + "uri": "https://oauth.reddit.com/comments/3hahrw/_/cu61zil?limit=2048&sort=old&raw_json=1" }, "response": { "body": { - "string": "[{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 1, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"funny\", \"selftext\": \"\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Ba Dum Tsss\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/funny\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"top_awarded_type\": null, \"parent_whitelist_status\": \"all_ads\", \"hide_score\": false, \"name\": \"t3_3hahrw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.94, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 29788, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_oh64a\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 29788, \"approved_by\": null, \"author_premium\": true, \"thumbnail\": \"https://b.thumbs.redditmedia.com/5e3u8ceMZN0CYelVW2cPTp-R2o_lRGgIrFUCqN-p-pE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1439826280.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.imgur.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"http://i.imgur.com/eoF76hj.gifv\", \"view_count\": null, \"archived\": true, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?format=png8\\u0026s=8fce0e240021fae6057e6e9d0bc6d01e55c8d8be\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=0043d5d451641f59d83957debb5c2d5debbffe6a\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=8c6193562e873cad671f8be0cc1ded20cf8e4e40\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=fdc55cdb3f665ea544d0016c80251f67172c75f2\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026crop=smart\\u0026format=png8\\u0026s=b6a454102e2e35ee91634a3970a0b1946d51667b\", \"width\": 640, \"height\": 360}], \"variants\": {\"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?s=63556b2af71b62a2c6349aad5b058320301bc5d8\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026crop=smart\\u0026s=5d45ebe65c5b794b092185f83bf26d204a8dc3cd\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026crop=smart\\u0026s=9792339b06b9446433cd0b96643f3e34344d9eea\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026crop=smart\\u0026s=88703ea358f721aa004b9a53ffad705ff75ec297\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026crop=smart\\u0026s=05d76587afce21bcab664ce75f8dd28262e19820\", \"width\": 640, \"height\": 360}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?format=mp4\\u0026s=33e82bc7191fc664e87b3024b8b7668c2e2d9912\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026format=mp4\\u0026s=12a22c0f2b96a8839e3dafe719386935d125bea5\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026format=mp4\\u0026s=b8ca79735d3686d3fb19a2eb85b497a309693977\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026format=mp4\\u0026s=5235abf63a2395c43fc5696fa2d37766ea81deaf\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026format=mp4\\u0026s=418110d4a11d29ef741cac5d463bf552385902b4\", \"width\": 640, \"height\": 360}]}}, \"id\": \"TWpgQy5a3ucVCvWlwGPDbYeZk6FAbbk-f2WKWBi7pVY\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh33\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"3hahrw\", \"is_robot_indexable\": true, \"num_duplicates\": 9, \"report_reasons\": null, \"author\": \"your_local_librarian\", \"discussion_type\": null, \"num_comments\": 532, \"send_replies\": true, \"media\": null, \"contest_mode\": false, \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/\", \"whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://i.imgur.com/eoF76hj.gifv\", \"subreddit_subscribers\": 31469211, \"created_utc\": 1439797480.0, \"num_crossposts\": 0, \"mod_reports\": [], \"is_video\": false}}], \"after\": null, \"before\": null}}, {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"no_follow\": true, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5w1ko\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"Emerly_Nickel\", \"can_mod_post\": false, \"created_utc\": 1439821765.0, \"send_replies\": true, \"parent_id\": \"t1_cu5vad7\", \"score\": 1, \"author_fullname\": \"t2_7ca4u\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"L\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EL\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5w1ko/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5w1ko\", \"created\": 1439850565.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 2, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5vad7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"bedintruder\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5v5h7\", \"score\": 1, \"author_fullname\": \"t2_4f7fe\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"F\", \"edited\": false, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EF\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5vad7/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5vad7\", \"created\": 1439849131.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820331.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5v5h7\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"report_reasons\": null, \"author\": \"[deleted]\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5v4if\", \"score\": 1, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"[deleted]\", \"edited\": 1502205193.0, \"downs\": 0, \"author_flair_css_class\": null, \"collapsed\": false, \"is_submitter\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003E[deleted]\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5v5h7/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5v5h7\", \"created\": 1439848853.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439820053.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}]" + "string": "[{\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": 1, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"funny\", \"selftext\": \"\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Ba Dum Tsss\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/funny\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"top_awarded_type\": null, \"parent_whitelist_status\": \"all_ads\", \"hide_score\": false, \"name\": \"t3_3hahrw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.94, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 29780, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_oh64a\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 29780, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/5e3u8ceMZN0CYelVW2cPTp-R2o_lRGgIrFUCqN-p-pE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1439797480.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.imgur.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"http://i.imgur.com/eoF76hj.gifv\", \"view_count\": null, \"archived\": true, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?format=png8\\u0026s=8fce0e240021fae6057e6e9d0bc6d01e55c8d8be\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=0043d5d451641f59d83957debb5c2d5debbffe6a\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=8c6193562e873cad671f8be0cc1ded20cf8e4e40\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=fdc55cdb3f665ea544d0016c80251f67172c75f2\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026crop=smart\\u0026format=png8\\u0026s=b6a454102e2e35ee91634a3970a0b1946d51667b\", \"width\": 640, \"height\": 360}], \"variants\": {\"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?s=63556b2af71b62a2c6349aad5b058320301bc5d8\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026crop=smart\\u0026s=5d45ebe65c5b794b092185f83bf26d204a8dc3cd\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026crop=smart\\u0026s=9792339b06b9446433cd0b96643f3e34344d9eea\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026crop=smart\\u0026s=88703ea358f721aa004b9a53ffad705ff75ec297\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026crop=smart\\u0026s=05d76587afce21bcab664ce75f8dd28262e19820\", \"width\": 640, \"height\": 360}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?format=mp4\\u0026s=33e82bc7191fc664e87b3024b8b7668c2e2d9912\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026format=mp4\\u0026s=12a22c0f2b96a8839e3dafe719386935d125bea5\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026format=mp4\\u0026s=b8ca79735d3686d3fb19a2eb85b497a309693977\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026format=mp4\\u0026s=5235abf63a2395c43fc5696fa2d37766ea81deaf\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026format=mp4\\u0026s=418110d4a11d29ef741cac5d463bf552385902b4\", \"width\": 640, \"height\": 360}]}}, \"id\": \"TWpgQy5a3ucVCvWlwGPDbYeZk6FAbbk-f2WKWBi7pVY\"}], \"reddit_video_preview\": {\"bitrate_kbps\": 800, \"fallback_url\": \"https://v.redd.it/vxahemsz24i71/DASH_360.mp4\", \"height\": 360, \"width\": 639, \"scrubber_media_url\": \"https://v.redd.it/vxahemsz24i71/DASH_96.mp4\", \"dash_url\": \"https://v.redd.it/vxahemsz24i71/DASHPlaylist.mpd\", \"duration\": 3, \"hls_url\": \"https://v.redd.it/vxahemsz24i71/HLSPlaylist.m3u8\", \"is_gif\": true, \"transcoding_status\": \"completed\"}, \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh33\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"3hahrw\", \"is_robot_indexable\": true, \"num_duplicates\": 9, \"report_reasons\": null, \"author\": \"your_local_librarian\", \"discussion_type\": null, \"num_comments\": 529, \"send_replies\": true, \"media\": null, \"contest_mode\": false, \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/\", \"whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://i.imgur.com/eoF76hj.gifv\", \"subreddit_subscribers\": 37829697, \"created_utc\": 1439797480.0, \"num_crossposts\": 0, \"mod_reports\": [], \"is_video\": false}}], \"before\": null}}, {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu620o8\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"kgbanarchy\", \"can_mod_post\": false, \"created_utc\": 1439831737.0, \"send_replies\": true, \"parent_id\": \"t1_cu61zil\", \"score\": 2, \"author_fullname\": \"t2_fyczk\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"open 5 windows and just let it play\\n\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu620o8\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Eopen 5 windows and just let it play\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu620o8/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439831737.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 2}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu61zil\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"kgbanarchy\", \"can_mod_post\": false, \"created_utc\": 1439831688.0, \"send_replies\": true, \"parent_id\": \"t1_cu5xgzb\", \"score\": 1, \"author_fullname\": \"t2_fyczk\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"not enough was said of this\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu61zil\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003Enot enough was said of this\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu61zil/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439831688.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}]" }, "headers": { "Accept-Ranges": "bytes", - "Cache-Control": "private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate", "Connection": "keep-alive", - "Content-Encoding": "gzip", - "Content-Length": "2540", + "Content-Length": "2666", "Content-Type": "application/json; charset=UTF-8", - "Date": "Sat, 04 Jul 2020 23:15:53 GMT", - "Expires": "-1", + "Date": "Fri, 05 Nov 2021 17:40:04 GMT", "Server": "snooserv", - "Set-Cookie": "session_tracker=gidehqiifdlaacmmil.0.1593904553738.Z0FBQUFBQmZBUTJwbFhSOGdvcmloMk8tLWNZdm9KamR6YmJ4VTV4YkN1NHJockplcEswTHM1WDczZVdyVm1uYmJFLWJvRXZxSzRSQ1p1MmdHLUd1NWtNNkdXdnFoOXpMTWU4Y1lSN1I0Nkc1dTJqeERwMkFDU05HWUt4dWIySU40d3RkMk1DTVhYamY; Domain=reddit.com; Max-Age=7199; Path=/; expires=Sun, 05-Jul-2020 01:15:53 GMT; secure; SameSite=None; Secure", + "Set-Cookie": "session_tracker=jeglebflbprqnkbail.0.1636134004596.Z0FBQUFBQmhoV3gwZURjNlFTbDh3M3FrbExnQS1ka0ZYYkYzTnh5RTMwbzBVTDAzLWNnNXFRcnA4cFBST0hoWVlOOE9ITGJGSkVHQWpjV0d1WG5XQ1A2d3A4MDZKbVN6YzlkTEN0LUdoeTE0YjE5R1hxTzNEbWxFcnNXWDBLdzNCWVhCVklSS1V1Z3Q; Domain=reddit.com; Max-Age=7199; Path=/; expires=Fri, 05-Nov-2021 19:40:04 GMT; secure; SameSite=None; Secure", "Strict-Transport-Security": "max-age=15552000; includeSubDomains; preload", "Vary": "accept-encoding", "Via": "1.1 varnish", - "X-Cache": "MISS", - "X-Cache-Hits": "0", + "X-Clacks-Overhead": "GNU Terry Pratchett", "X-Moose": "majestic", - "X-Served-By": "cache-mci5940-MCI", - "X-Timer": "S1593904554.674365,VS0,VE275", + "cache-control": "private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate", + "content-encoding": "gzip", + "expires": "-1", "x-content-type-options": "nosniff", "x-frame-options": "SAMEORIGIN", - "x-ratelimit-remaining": "246.0", - "x-ratelimit-reset": "247", - "x-ratelimit-used": "354", + "x-ratelimit-remaining": "591.0", + "x-ratelimit-reset": "596", + "x-ratelimit-used": "9", "x-ua-compatible": "IE=edge", "x-xss-protection": "1; mode=block" }, @@ -387,7 +369,7 @@ "code": 200, "message": "OK" }, - "url": "https://oauth.reddit.com/comments/3hahrw/_/cu5v5h7?limit=2048&sort=old&raw_json=1" + "url": "https://oauth.reddit.com/comments/3hahrw/_/cu61zil?limit=2048&sort=old&raw_json=1" } }, { @@ -401,7 +383,7 @@ "bearer " ], "User-Agent": [ - " Async PRAW/7.1.1.dev0 asyncprawcore/1.4.0.post1" + " Async PRAW/7.4.1.dev0 asyncprawcore/2.3.1.dev0" ] }, "method": "GET", @@ -409,32 +391,29 @@ }, "response": { "body": { - "string": "[{\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": 1, \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"funny\", \"selftext\": \"\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Ba Dum Tsss\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/funny\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"top_awarded_type\": null, \"parent_whitelist_status\": \"all_ads\", \"hide_score\": false, \"name\": \"t3_3hahrw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.94, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 29789, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_oh64a\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 29789, \"approved_by\": null, \"author_premium\": true, \"thumbnail\": \"https://b.thumbs.redditmedia.com/5e3u8ceMZN0CYelVW2cPTp-R2o_lRGgIrFUCqN-p-pE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1439826280.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.imgur.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"http://i.imgur.com/eoF76hj.gifv\", \"view_count\": null, \"archived\": true, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?format=png8\\u0026s=8fce0e240021fae6057e6e9d0bc6d01e55c8d8be\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=0043d5d451641f59d83957debb5c2d5debbffe6a\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=8c6193562e873cad671f8be0cc1ded20cf8e4e40\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=fdc55cdb3f665ea544d0016c80251f67172c75f2\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026crop=smart\\u0026format=png8\\u0026s=b6a454102e2e35ee91634a3970a0b1946d51667b\", \"width\": 640, \"height\": 360}], \"variants\": {\"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?s=63556b2af71b62a2c6349aad5b058320301bc5d8\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026crop=smart\\u0026s=5d45ebe65c5b794b092185f83bf26d204a8dc3cd\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026crop=smart\\u0026s=9792339b06b9446433cd0b96643f3e34344d9eea\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026crop=smart\\u0026s=88703ea358f721aa004b9a53ffad705ff75ec297\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026crop=smart\\u0026s=05d76587afce21bcab664ce75f8dd28262e19820\", \"width\": 640, \"height\": 360}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?format=mp4\\u0026s=33e82bc7191fc664e87b3024b8b7668c2e2d9912\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026format=mp4\\u0026s=12a22c0f2b96a8839e3dafe719386935d125bea5\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026format=mp4\\u0026s=b8ca79735d3686d3fb19a2eb85b497a309693977\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026format=mp4\\u0026s=5235abf63a2395c43fc5696fa2d37766ea81deaf\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026format=mp4\\u0026s=418110d4a11d29ef741cac5d463bf552385902b4\", \"width\": 640, \"height\": 360}]}}, \"id\": \"TWpgQy5a3ucVCvWlwGPDbYeZk6FAbbk-f2WKWBi7pVY\"}], \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh33\", \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"3hahrw\", \"is_robot_indexable\": true, \"num_duplicates\": 9, \"report_reasons\": null, \"author\": \"your_local_librarian\", \"discussion_type\": null, \"num_comments\": 532, \"send_replies\": true, \"media\": null, \"contest_mode\": false, \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/\", \"whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://i.imgur.com/eoF76hj.gifv\", \"subreddit_subscribers\": 31469211, \"created_utc\": 1439797480.0, \"num_crossposts\": 0, \"mod_reports\": [], \"is_video\": false}}], \"after\": null, \"before\": null}}, {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"modhash\": null, \"dist\": null, \"children\": [{\"kind\": \"t1\", \"data\": {\"total_awards_received\": 0, \"approved_at_utc\": null, \"ups\": 1, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"removal_reason\": null, \"link_id\": \"t3_3hahrw\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xn0h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"imhooks\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5x40j\", \"score\": 1, \"author_fullname\": \"t2_i19in\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"collapsed\": false, \"body\": \"So far so good. I especially like the comment section. The thread view is a lot easier on the eyes. The gifs and videos open in a floating window instead of opening an external window.\\n\\nETA: I actually prefer the way the front page of subreddits look on 'reddit is fun'. \", \"edited\": 1439825115.0, \"author_flair_css_class\": null, \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo far so good. I especially like the comment section. The thread view is a lot easier on the eyes. The gifs and videos open in a floating window instead of opening an external window.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EETA: I actually prefer the way the front page of subreddits look on \\u0026#39;reddit is fun\\u0026#39;. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xn0h/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5xn0h\", \"created\": 1439853418.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439824618.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5x40j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"no_follow\": true, \"author\": \"nahfoo\", \"can_mod_post\": false, \"send_replies\": true, \"parent_id\": \"t1_cu5wfv0\", \"score\": 1, \"author_fullname\": \"t2_bbgle\", \"report_reasons\": null, \"approved_by\": null, \"all_awardings\": [], \"subreddit_id\": \"t5_2qh33\", \"body\": \"How do you like it so far? I like reddit is fun but it's the only one I know, people reccomented relay for reddit but I couldn't get into it. Some things were more complicated than they should be\", \"edited\": false, \"downs\": 0, \"author_flair_css_class\": null, \"is_submitter\": false, \"collapsed\": false, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow do you like it so far? I like reddit is fun but it\\u0026#39;s the only one I know, people reccomented relay for reddit but I couldn\\u0026#39;t get into it. Some things were more complicated than they should be\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"subreddit_type\": \"public\", \"can_gild\": true, \"top_awarded_type\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5x40j/\", \"num_reports\": null, \"locked\": false, \"name\": \"t1_cu5x40j\", \"created\": 1439852483.0, \"subreddit\": \"funny\", \"author_flair_text\": null, \"treatment_tags\": [], \"created_utc\": 1439823683.0, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"mod_note\": null, \"distinguished\": null}}], \"after\": null, \"before\": null}}]" + "string": "[{\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": 1, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"funny\", \"selftext\": \"\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 0, \"clicked\": false, \"title\": \"Ba Dum Tsss\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/funny\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": 78, \"top_awarded_type\": null, \"parent_whitelist_status\": \"all_ads\", \"hide_score\": false, \"name\": \"t3_3hahrw\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.94, \"author_flair_background_color\": null, \"subreddit_type\": \"public\", \"ups\": 29779, \"total_awards_received\": 0, \"media_embed\": {}, \"thumbnail_width\": 140, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_oh64a\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": null, \"can_mod_post\": false, \"score\": 29779, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"https://b.thumbs.redditmedia.com/5e3u8ceMZN0CYelVW2cPTp-R2o_lRGgIrFUCqN-p-pE.jpg\", \"edited\": false, \"author_flair_css_class\": null, \"author_flair_richtext\": [], \"gildings\": {}, \"post_hint\": \"link\", \"content_categories\": null, \"is_self\": false, \"mod_note\": null, \"created\": 1439797480.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"i.imgur.com\", \"allow_live_comments\": false, \"selftext_html\": null, \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"url_overridden_by_dest\": \"http://i.imgur.com/eoF76hj.gifv\", \"view_count\": null, \"archived\": true, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"preview\": {\"images\": [{\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?format=png8\\u0026s=8fce0e240021fae6057e6e9d0bc6d01e55c8d8be\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026crop=smart\\u0026format=png8\\u0026s=0043d5d451641f59d83957debb5c2d5debbffe6a\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026crop=smart\\u0026format=png8\\u0026s=8c6193562e873cad671f8be0cc1ded20cf8e4e40\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026crop=smart\\u0026format=png8\\u0026s=fdc55cdb3f665ea544d0016c80251f67172c75f2\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026crop=smart\\u0026format=png8\\u0026s=b6a454102e2e35ee91634a3970a0b1946d51667b\", \"width\": 640, \"height\": 360}], \"variants\": {\"gif\": {\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?s=63556b2af71b62a2c6349aad5b058320301bc5d8\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026crop=smart\\u0026s=5d45ebe65c5b794b092185f83bf26d204a8dc3cd\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026crop=smart\\u0026s=9792339b06b9446433cd0b96643f3e34344d9eea\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026crop=smart\\u0026s=88703ea358f721aa004b9a53ffad705ff75ec297\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026crop=smart\\u0026s=05d76587afce21bcab664ce75f8dd28262e19820\", \"width\": 640, \"height\": 360}]}, \"mp4\": {\"source\": {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?format=mp4\\u0026s=33e82bc7191fc664e87b3024b8b7668c2e2d9912\", \"width\": 718, \"height\": 404}, \"resolutions\": [{\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=108\\u0026format=mp4\\u0026s=12a22c0f2b96a8839e3dafe719386935d125bea5\", \"width\": 108, \"height\": 60}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=216\\u0026format=mp4\\u0026s=b8ca79735d3686d3fb19a2eb85b497a309693977\", \"width\": 216, \"height\": 121}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=320\\u0026format=mp4\\u0026s=5235abf63a2395c43fc5696fa2d37766ea81deaf\", \"width\": 320, \"height\": 180}, {\"url\": \"https://external-preview.redd.it/RBchVMlvRgZugwJNnFY_T4dcrfKSf1boU2a7sCsqoYE.gif?width=640\\u0026format=mp4\\u0026s=418110d4a11d29ef741cac5d463bf552385902b4\", \"width\": 640, \"height\": 360}]}}, \"id\": \"TWpgQy5a3ucVCvWlwGPDbYeZk6FAbbk-f2WKWBi7pVY\"}], \"reddit_video_preview\": {\"bitrate_kbps\": 800, \"fallback_url\": \"https://v.redd.it/vxahemsz24i71/DASH_360.mp4\", \"height\": 360, \"width\": 639, \"scrubber_media_url\": \"https://v.redd.it/vxahemsz24i71/DASH_96.mp4\", \"dash_url\": \"https://v.redd.it/vxahemsz24i71/DASHPlaylist.mpd\", \"duration\": 3, \"hls_url\": \"https://v.redd.it/vxahemsz24i71/HLSPlaylist.m3u8\", \"is_gif\": true, \"transcoding_status\": \"completed\"}, \"enabled\": true}, \"all_awardings\": [], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": null, \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qh33\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"3hahrw\", \"is_robot_indexable\": true, \"num_duplicates\": 9, \"report_reasons\": null, \"author\": \"your_local_librarian\", \"discussion_type\": null, \"num_comments\": 529, \"send_replies\": true, \"media\": null, \"contest_mode\": false, \"author_patreon_flair\": false, \"author_flair_text_color\": null, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/\", \"whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"http://i.imgur.com/eoF76hj.gifv\", \"subreddit_subscribers\": 37829698, \"created_utc\": 1439797480.0, \"num_crossposts\": 0, \"mod_reports\": [], \"is_video\": false}}], \"before\": null}}, {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qh33\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"funny\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cu5xn0h\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"imhooks\", \"can_mod_post\": false, \"created_utc\": 1439824618.0, \"send_replies\": true, \"parent_id\": \"t1_cu5x40j\", \"score\": 1, \"author_fullname\": \"t2_i19in\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"So far so good. I especially like the comment section. The thread view is a lot easier on the eyes. The gifs and videos open in a floating window instead of opening an external window.\\n\\nETA: I actually prefer the way the front page of subreddits look on 'reddit is fun'. \", \"edited\": 1439825115.0, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5xn0h\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003ESo far so good. I especially like the comment section. The thread view is a lot easier on the eyes. The gifs and videos open in a floating window instead of opening an external window.\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EETA: I actually prefer the way the front page of subreddits look on \\u0026#39;reddit is fun\\u0026#39;. \\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_3hahrw\", \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5xn0h/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439824618.0, \"author_flair_text\": null, \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cu5x40j\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": true, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"nahfoo\", \"can_mod_post\": false, \"created_utc\": 1439823683.0, \"send_replies\": true, \"parent_id\": \"t1_cu5wfv0\", \"score\": 1, \"author_fullname\": \"t2_bbgle\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"How do you like it so far? I like reddit is fun but it's the only one I know, people reccomented relay for reddit but I couldn't get into it. Some things were more complicated than they should be\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cu5x40j\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EHow do you like it so far? I like reddit is fun but it\\u0026#39;s the only one I know, people reccomented relay for reddit but I couldn\\u0026#39;t get into it. Some things were more complicated than they should be\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/funny/comments/3hahrw/ba_dum_tsss/cu5x40j/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1439823683.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_3hahrw\", \"subreddit_name_prefixed\": \"r/funny\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}]" }, "headers": { "Accept-Ranges": "bytes", - "Cache-Control": "private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate", "Connection": "keep-alive", - "Content-Encoding": "gzip", - "Content-Length": "2740", + "Content-Length": "2947", "Content-Type": "application/json; charset=UTF-8", - "Date": "Sat, 04 Jul 2020 23:15:54 GMT", - "Expires": "-1", + "Date": "Fri, 05 Nov 2021 17:40:05 GMT", "Server": "snooserv", - "Set-Cookie": "session_tracker=gidehqiifdlaacmmil.0.1593904554537.Z0FBQUFBQmZBUTJxakRpSTdyTUdsQlV5enBNVnhQOW1qTFU4eXc2OEN3V0REWlJGdDM0bjN0ZEwzbFpOSG1nMjMzNGJOdS12LUZUaW5LdzQ0UzMzcDdfdkxTZm5hNHhZaGFtdlJvQWN0ZVNhWXIzRFpSUkNTTTg2dGZ0X2VxLTlycTNsdUFDejhBSW4; Domain=reddit.com; Max-Age=7199; Path=/; expires=Sun, 05-Jul-2020 01:15:54 GMT; secure; SameSite=None; Secure", + "Set-Cookie": "session_tracker=jeglebflbprqnkbail.0.1636134004861.Z0FBQUFBQmhoV3gxaElZZzJBLUtKdVlNTFVVelAtc1ZZcGZDN2E0RU9BNGlKdFNkc2hYN3N4WWFZd1dtSGZRWV9mdE1HQlVvOUVSVWIzN2k4UUhMcEd2aWdpVDhkbkpTR0dTRnRJQ01SMjdyMWVjOEQ3WDFJc3BmWl84cDh5ZkdPNHh1NTJ6TU9KUTQ; Domain=reddit.com; Max-Age=7199; Path=/; expires=Fri, 05-Nov-2021 19:40:05 GMT; secure; SameSite=None; Secure", "Strict-Transport-Security": "max-age=15552000; includeSubDomains; preload", "Vary": "accept-encoding", "Via": "1.1 varnish", - "X-Cache": "MISS", - "X-Cache-Hits": "0", + "X-Clacks-Overhead": "GNU Terry Pratchett", "X-Moose": "majestic", - "X-Served-By": "cache-mci5940-MCI", - "X-Timer": "S1593904554.485895,VS0,VE214", + "cache-control": "private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate", + "content-encoding": "gzip", + "expires": "-1", "x-content-type-options": "nosniff", "x-frame-options": "SAMEORIGIN", - "x-ratelimit-remaining": "245.0", - "x-ratelimit-reset": "246", - "x-ratelimit-used": "355", + "x-ratelimit-remaining": "590.0", + "x-ratelimit-reset": "596", + "x-ratelimit-used": "10", "x-ua-compatible": "IE=edge", "x-xss-protection": "1; mode=block" }, @@ -446,6 +425,6 @@ } } ], - "recorded_at": "2020-07-04T18:15:54", + "recorded_at": "2021-11-05T12:40:04", "version": 1 } diff --git a/tests/integration/cassettes/TestSubmission.test_comments__fetch_async_call.json b/tests/integration/cassettes/TestSubmission.test_comments__fetch_async_call.json new file mode 100644 index 00000000..ee1c7152 --- /dev/null +++ b/tests/integration/cassettes/TestSubmission.test_comments__fetch_async_call.json @@ -0,0 +1,117 @@ +{ + "interactions": [ + { + "request": { + "body": [ + [ + "grant_type", + "refresh_token" + ], + [ + "refresh_token", + "" + ] + ], + "headers": { + "AUTHORIZATION": [ + "Basic " + ], + "Accept-Encoding": [ + "identity" + ], + "Connection": [ + "close" + ], + "User-Agent": [ + " Async PRAW/7.4.1.dev0 asyncprawcore/2.3.1.dev0" + ] + }, + "method": "POST", + "uri": "https://www.reddit.com/api/v1/access_token" + }, + "response": { + "body": { + "string": "{\"access_token\": \"\", \"token_type\": \"bearer\", \"expires_in\": 3600, \"refresh_token\": \"\", \"scope\": \"account creddits edit flair history identity livemanage modconfig modcontributors modflair modlog modmail modothers modposts modself modtraffic modwiki mysubreddits privatemessages read report save structuredstyles submit subscribe vote wikiedit wikiread\"}" + }, + "headers": { + "Accept-Ranges": "bytes", + "Connection": "close", + "Content-Length": "427", + "Content-Type": "application/json; charset=UTF-8", + "Date": "Fri, 05 Nov 2021 23:50:35 GMT", + "Server": "snooserv", + "Set-Cookie": "edgebucket=fe4VM1fdP77UK8yIvq; 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": "565", + "x-ratelimit-used": "1", + "x-xss-protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://www.reddit.com/api/v1/access_token" + } + }, + { + "request": { + "body": null, + "headers": { + "Accept-Encoding": [ + "identity" + ], + "Authorization": [ + "bearer " + ], + "User-Agent": [ + " Async PRAW/7.4.1.dev0 asyncprawcore/2.3.1.dev0" + ] + }, + "method": "GET", + "uri": "https://oauth.reddit.com/comments/2gmzqe/?limit=2048&sort=confidence&raw_json=1" + }, + "response": { + "body": { + "string": "[{\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": 1, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t3\", \"data\": {\"approved_at_utc\": null, \"subreddit\": \"redditdev\", \"selftext\": \"PRAW client developers,\\n\\nI have made a PRAW branch to test using only HTTPS over the API. This change requires some testers to see if there any issues that did not come up from our set of unit tests. This is the first of a few improvements that will (hopefully soon) be released with PRAW version 3. If you want to start using HTTPS exclusively through PRAW please update via the following:\\n\\n pip install git+git://github.com/praw-dev/praw.git@praw3\\n\\nIf you experience any issues feel free to report them here, however filing a bug on github (https://github.com/praw-dev/praw/issues) would be ideal. Thanks!\", \"user_reports\": [], \"saved\": false, \"mod_reason_title\": null, \"gilded\": 1, \"clicked\": false, \"title\": \"[PRAW] HTTPS enabled PRAW testing needed\", \"link_flair_richtext\": [], \"subreddit_name_prefixed\": \"r/redditdev\", \"hidden\": false, \"pwls\": 6, \"link_flair_css_class\": null, \"downs\": 0, \"thumbnail_height\": null, \"top_awarded_type\": null, \"parent_whitelist_status\": \"all_ads\", \"hide_score\": false, \"name\": \"t3_2gmzqe\", \"quarantine\": false, \"link_flair_text_color\": \"dark\", \"upvote_ratio\": 0.93, \"author_flair_background_color\": \"\", \"subreddit_type\": \"public\", \"ups\": 11, \"total_awards_received\": 1, \"media_embed\": {}, \"thumbnail_width\": null, \"author_flair_template_id\": null, \"is_original_content\": false, \"author_fullname\": \"t2_3pz6e\", \"secure_media\": null, \"is_reddit_media_domain\": false, \"is_meta\": false, \"category\": null, \"secure_media_embed\": {}, \"link_flair_text\": \"PRAW\", \"can_mod_post\": false, \"score\": 11, \"approved_by\": null, \"is_created_from_ads_ui\": false, \"author_premium\": false, \"thumbnail\": \"self\", \"edited\": false, \"author_flair_css_class\": \"\", \"author_flair_richtext\": [], \"gildings\": {\"gid_2\": 1}, \"content_categories\": null, \"is_self\": true, \"mod_note\": null, \"created\": 1410935671.0, \"link_flair_type\": \"text\", \"wls\": 6, \"removed_by_category\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"domain\": \"self.redditdev\", \"allow_live_comments\": false, \"selftext_html\": \"\\u003C!-- SC_OFF --\\u003E\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EPRAW client developers,\\u003C/p\\u003E\\n\\n\\u003Cp\\u003EI have made a PRAW branch to test using only HTTPS over the API. This change requires some testers to see if there any issues that did not come up from our set of unit tests. This is the first of a few improvements that will (hopefully soon) be released with PRAW version 3. If you want to start using HTTPS exclusively through PRAW please update via the following:\\u003C/p\\u003E\\n\\n\\u003Cpre\\u003E\\u003Ccode\\u003Epip install git+git://github.com/praw-dev/praw.git@praw3\\n\\u003C/code\\u003E\\u003C/pre\\u003E\\n\\n\\u003Cp\\u003EIf you experience any issues feel free to report them here, however filing a bug on github (\\u003Ca href=\\\"https://github.com/praw-dev/praw/issues\\\"\\u003Ehttps://github.com/praw-dev/praw/issues\\u003C/a\\u003E) would be ideal. Thanks!\\u003C/p\\u003E\\n\\u003C/div\\u003E\\u003C!-- SC_ON --\\u003E\", \"likes\": null, \"suggested_sort\": null, \"banned_at_utc\": null, \"view_count\": null, \"archived\": false, \"no_follow\": false, \"is_crosspostable\": true, \"pinned\": false, \"over_18\": false, \"all_awardings\": [{\"giver_coin_reward\": null, \"subreddit_id\": null, \"is_new\": false, \"days_of_drip_extension\": 0, \"coin_price\": 500, \"id\": \"gid_2\", \"penny_donate\": null, \"coin_reward\": 100, \"icon_url\": \"https://www.redditstatic.com/gold/awards/icon/gold_512.png\", \"days_of_premium\": 7, \"icon_height\": 512, \"tiers_by_required_awardings\": null, \"resized_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_128.png\", \"width\": 128, \"height\": 128}], \"icon_width\": 512, \"static_icon_width\": 512, \"start_date\": null, \"is_enabled\": true, \"awardings_required_to_grant_benefits\": null, \"description\": \"Gives 100 Reddit Coins and a week of r/lounge access and ad-free browsing.\", \"end_date\": null, \"subreddit_coin_reward\": 0, \"count\": 1, \"static_icon_height\": 512, \"name\": \"Gold\", \"resized_static_icons\": [{\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_16.png\", \"width\": 16, \"height\": 16}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_32.png\", \"width\": 32, \"height\": 32}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_48.png\", \"width\": 48, \"height\": 48}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_64.png\", \"width\": 64, \"height\": 64}, {\"url\": \"https://www.redditstatic.com/gold/awards/icon/gold_128.png\", \"width\": 128, \"height\": 128}], \"icon_format\": null, \"award_sub_type\": \"GLOBAL\", \"penny_price\": null, \"award_type\": \"global\", \"static_icon_url\": \"https://www.redditstatic.com/gold/awards/icon/gold_512.png\"}], \"awarders\": [], \"media_only\": false, \"can_gild\": true, \"spoiler\": false, \"locked\": false, \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"visited\": false, \"removed_by\": null, \"num_reports\": null, \"distinguished\": null, \"subreddit_id\": \"t5_2qizd\", \"author_is_blocked\": false, \"mod_reason_by\": null, \"removal_reason\": null, \"link_flair_background_color\": \"\", \"id\": \"2gmzqe\", \"is_robot_indexable\": true, \"num_duplicates\": 0, \"report_reasons\": null, \"author\": \"bboe\", \"discussion_type\": null, \"num_comments\": 2, \"send_replies\": true, \"media\": null, \"contest_mode\": false, \"author_patreon_flair\": false, \"author_flair_text_color\": \"dark\", \"permalink\": \"/r/redditdev/comments/2gmzqe/praw_https_enabled_praw_testing_needed/\", \"whitelist_status\": \"all_ads\", \"stickied\": false, \"url\": \"https://www.reddit.com/r/redditdev/comments/2gmzqe/praw_https_enabled_praw_testing_needed/\", \"subreddit_subscribers\": 63339, \"created_utc\": 1410935671.0, \"num_crossposts\": 0, \"mod_reports\": [], \"is_video\": false}}], \"before\": null}}, {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": {\"kind\": \"Listing\", \"data\": {\"after\": null, \"dist\": null, \"modhash\": null, \"geo_filter\": \"\", \"children\": [{\"kind\": \"t1\", \"data\": {\"subreddit_id\": \"t5_2qizd\", \"approved_at_utc\": null, \"author_is_blocked\": false, \"comment_type\": null, \"awarders\": [], \"mod_reason_by\": null, \"banned_by\": null, \"author_flair_type\": \"text\", \"total_awards_received\": 0, \"subreddit\": \"redditdev\", \"author_flair_template_id\": null, \"likes\": null, \"replies\": \"\", \"user_reports\": [], \"saved\": false, \"id\": \"cklhv0f\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"bboe\", \"can_mod_post\": false, \"created_utc\": 1411010034.0, \"send_replies\": true, \"parent_id\": \"t1_cklfmye\", \"score\": 1, \"author_fullname\": \"t2_3pz6e\", \"removal_reason\": null, \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"body\": \"Yes it does. That fix is also in the master branch, we just haven't made a release for it (and we probably won't until 3.0).\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": \"\", \"name\": \"t1_cklhv0f\", \"is_submitter\": true, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EYes it does. That fix is also in the master branch, we just haven\\u0026#39;t made a release for it (and we probably won\\u0026#39;t until 3.0).\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"gildings\": {}, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"link_id\": \"t3_2gmzqe\", \"unrepliable_reason\": null, \"author_flair_text_color\": \"dark\", \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/2gmzqe/praw_https_enabled_praw_testing_needed/cklhv0f/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1411010034.0, \"author_flair_text\": \"PRAW Author\", \"treatment_tags\": [], \"collapsed\": false, \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 1, \"author_flair_background_color\": \"\", \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}, \"user_reports\": [], \"saved\": false, \"id\": \"cklfmye\", \"banned_at_utc\": null, \"mod_reason_title\": null, \"gilded\": 0, \"archived\": false, \"collapsed_reason_code\": null, \"no_follow\": true, \"author\": \"paneer_burrito\", \"can_mod_post\": false, \"created_utc\": 1411005112.0, \"send_replies\": true, \"parent_id\": \"t3_2gmzqe\", \"score\": 1, \"author_fullname\": \"t2_gy2i1\", \"approved_by\": null, \"mod_note\": null, \"all_awardings\": [], \"collapsed\": false, \"body\": \"Quick question: I remember reading about an issue where the proxy settings for https requests were not getting picked up from the environment variables. Does this branch have that fix? Thanks\", \"edited\": false, \"top_awarded_type\": null, \"author_flair_css_class\": null, \"name\": \"t1_cklfmye\", \"is_submitter\": false, \"downs\": 0, \"author_flair_richtext\": [], \"author_patreon_flair\": false, \"body_html\": \"\\u003Cdiv class=\\\"md\\\"\\u003E\\u003Cp\\u003EQuick question: I remember reading about an issue where the proxy settings for https requests were not getting picked up from the environment variables. Does this branch have that fix? Thanks\\u003C/p\\u003E\\n\\u003C/div\\u003E\", \"removal_reason\": null, \"collapsed_reason\": null, \"distinguished\": null, \"associated_award\": null, \"stickied\": false, \"author_premium\": false, \"can_gild\": true, \"gildings\": {}, \"unrepliable_reason\": null, \"author_flair_text_color\": null, \"score_hidden\": false, \"permalink\": \"/r/redditdev/comments/2gmzqe/praw_https_enabled_praw_testing_needed/cklfmye/\", \"subreddit_type\": \"public\", \"locked\": false, \"report_reasons\": null, \"created\": 1411005112.0, \"author_flair_text\": null, \"treatment_tags\": [], \"link_id\": \"t3_2gmzqe\", \"subreddit_name_prefixed\": \"r/redditdev\", \"controversiality\": 0, \"depth\": 0, \"author_flair_background_color\": null, \"collapsed_because_crowd_control\": null, \"mod_reports\": [], \"num_reports\": null, \"ups\": 1}}], \"before\": null}}]" + }, + "headers": { + "Accept-Ranges": "bytes", + "Connection": "keep-alive", + "Content-Length": "10682", + "Content-Type": "application/json; charset=UTF-8", + "Date": "Fri, 05 Nov 2021 23:50:35 GMT", + "Server": "snooserv", + "Set-Cookie": "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", + "cache-control": "private, s-maxage=0, max-age=0, must-revalidate, no-store, max-age=0, must-revalidate", + "expires": "-1", + "x-content-type-options": "nosniff", + "x-frame-options": "SAMEORIGIN", + "x-ratelimit-remaining": "567.0", + "x-ratelimit-reset": "565", + "x-ratelimit-used": "33", + "x-ua-compatible": "IE=edge", + "x-xss-protection": "1; mode=block" + }, + "status": { + "code": 200, + "message": "OK" + }, + "url": "https://oauth.reddit.com/comments/2gmzqe/?limit=2048&sort=confidence&raw_json=1" + } + } + ], + "recorded_at": "2021-11-05T18:50:35", + "version": 1 +} diff --git a/tests/integration/models/reddit/test_comment.py b/tests/integration/models/reddit/test_comment.py index 607ffb89..651927ba 100644 --- a/tests/integration/models/reddit/test_comment.py +++ b/tests/integration/models/reddit/test_comment.py @@ -147,9 +147,8 @@ async def test_parent__chain(self): async def test_parent__comment_from_forest(self): with self.use_cassette(): submission = await self.reddit.submission("2gmzqe") - comments = await submission.comments() - comment = comments[0].replies[0] - parent = await comment.parent() + comment = submission.comments[0].replies[0] + parent = await comment.parent() assert comment in parent.replies assert isinstance(parent, Comment) assert parent.fullname == comment.parent_id @@ -167,8 +166,8 @@ async def test_parent__submission(self): comment = Comment(self.reddit, "cklfmye") with self.use_cassette(): parent = await comment.parent() - parent_comments = await parent.comments() - assert comment in parent_comments + await parent.load() + assert comment in parent.comments assert isinstance(parent, Submission) assert parent.fullname == comment.parent_id diff --git a/tests/integration/models/reddit/test_more.py b/tests/integration/models/reddit/test_more.py index 3fc9c6ae..75e272a3 100644 --- a/tests/integration/models/reddit/test_more.py +++ b/tests/integration/models/reddit/test_more.py @@ -30,8 +30,7 @@ async def test_comments(self): with self.use_cassette(): more = MoreComments(self.reddit, data) more.submission = await self.reddit.submission("3hahrw") - comments = await more.comments() - assert len(comments) == 7 + assert len((await more.comments())) == 7 async def test_comments__continue_thread_type(self): data = { @@ -44,5 +43,4 @@ async def test_comments__continue_thread_type(self): with self.use_cassette(): more = MoreComments(self.reddit, data) more.submission = await self.reddit.submission("3hahrw") - comments = await more.comments() - assert len(comments) == 1 + assert len((await more.comments())) == 1 diff --git a/tests/integration/models/reddit/test_submission.py b/tests/integration/models/reddit/test_submission.py index 6185584f..0d7db29e 100644 --- a/tests/integration/models/reddit/test_submission.py +++ b/tests/integration/models/reddit/test_submission.py @@ -11,10 +11,18 @@ class TestSubmission(IntegrationTest): async def test_comments(self): with self.use_cassette(): submission = await self.reddit.submission("2gmzqe") - comments = await submission.comments() - assert len(comments) == 1 - assert isinstance(comments[0], Comment) - assert isinstance(comments[0].replies[0], Comment) + assert len(submission.comments) == 1 + assert isinstance(submission.comments[0], Comment) + assert isinstance(submission.comments[0].replies[0], Comment) + + async def test_comments__fetch_async_call(self): + self.reddit.read_only = False + with self.use_cassette(): + submission = await self.reddit.submission("2gmzqe", fetch=False) + with pytest.deprecated_call(): + await submission.comments() + assert submission._fetched + assert submission.comments async def test_clear_vote(self): self.reddit.read_only = False diff --git a/tests/integration/models/test_comment_forest.py b/tests/integration/models/test_comment_forest.py index 745c0cd7..559baab6 100644 --- a/tests/integration/models/test_comment_forest.py +++ b/tests/integration/models/test_comment_forest.py @@ -3,7 +3,7 @@ from asynctest import mock from asyncpraw.exceptions import DuplicateReplaceException -from asyncpraw.models import Comment, MoreComments, Submission +from asyncpraw.models import Comment, MoreComments from .. import IntegrationTest @@ -17,106 +17,94 @@ def setUp(self): async def test_replace__all(self): with self.use_cassette(): submission = await self.reddit.submission("3hahrw") - comments = await submission.comments() - before_count = len(await comments.list()) - skipped = await comments.replace_more(None, threshold=0) + before_count = len(submission.comments.list()) + skipped = await submission.comments.replace_more(None, threshold=0) assert len(skipped) == 0 - assert all([isinstance(x, Comment) for x in await comments.list()]) - assert all([x.submission == submission for x in await comments.list()]) - assert before_count < len(await comments.list()) + assert all(isinstance(x, Comment) for x in submission.comments.list()) + assert all(x.submission == submission for x in submission.comments.list()) + assert before_count < len(submission.comments.list()) async def test_replace__all_large(self): with self.use_cassette(): - submission = Submission(self.reddit, "n49rw") - comments = await submission.comments() - skipped = await comments.replace_more(None, threshold=0) + submission = await self.reddit.submission("n49rw") + skipped = await submission.comments.replace_more(None, threshold=0) assert len(skipped) == 0 - assert all([isinstance(x, Comment) for x in await comments.list()]) - assert len(await comments.list()) > 1000 - assert len(await comments.list()) == len(submission._comments_by_id) + assert all(isinstance(x, Comment) for x in submission.comments.list()) + assert len(submission.comments.list()) > 1000 + assert len(submission.comments.list()) == len(submission._comments_by_id) async def test_replace__all_with_comment_limit(self): with self.use_cassette(): submission = await self.reddit.submission("3hahrw") submission.comment_limit = 10 - comments = await submission.comments() - skipped = await comments.replace_more(None, threshold=0) + skipped = await submission.comments.replace_more(None, threshold=0) assert len(skipped) == 0 - assert len(await comments.list()) >= 500 + assert len(submission.comments.list()) >= 500 @mock.patch("asyncio.sleep", return_value=None) async def test_replace__all_with_comment_sort(self, _): with self.use_cassette(): - submission = await self.reddit.submission("3hahrw") + submission = await self.reddit.submission("3hahrw", fetch=False) submission.comment_sort = "old" - comments = await submission.comments() - skipped = await comments.replace_more(None, threshold=0) + await submission.load() + skipped = await submission.comments.replace_more(None, threshold=0) assert len(skipped) == 0 - assert len(await comments.list()) >= 500 + assert len(submission.comments.list()) >= 500 async def test_replace__skip_at_limit(self): with self.use_cassette(): submission = await self.reddit.submission("3hahrw") - comments = await submission.comments() - skipped = await comments.replace_more(1) + skipped = await submission.comments.replace_more(1) assert len(skipped) == 5 - # async def test_replace__skip_below_threshold(self): # FIXME: not currently working; same with praw + # def test_replace__skip_below_threshold(self): # FIXME: not currently working; same with praw # with self.use_cassette(): - # submission = Submission(self.reddit, "hkwbo0") - # comments = await submission.comments() - # before_count = len(await comments.list()) - # skipped = await comments.replace_more(16, 5) - # assert len(skipped) == 6 + # submission = await self.reddit.submission("3hahrw") + # before_count = len(submission.comments.list()) + # skipped = submission.comments.replace_more(16, 5) + # assert len(skipped) == 13 # assert all(x.count < 5 for x in skipped) # assert all(x.submission == submission for x in skipped) - # assert before_count < len(await comments.list()) + # assert before_count < len(submission.comments.list()) async def test_replace__skip_all(self): with self.use_cassette(): submission = await self.reddit.submission("3hahrw") - comments = await submission.comments() - before_count = len(await comments.list()) - skipped = await comments.replace_more(limit=0) + before_count = len(submission.comments.list()) + skipped = await submission.comments.replace_more(limit=0) assert len(skipped) == 6 assert all(x.submission == submission for x in skipped) - after_count = len(await comments.list()) + after_count = len(submission.comments.list()) assert before_count == after_count + len(skipped) @mock.patch("asyncio.sleep", return_value=None) async def test_replace__on_comment_from_submission(self, _): with self.use_cassette(): submission = await self.reddit.submission("3hahrw") - comments = await submission.comments() - types = [type(x) for x in await comments.list()] + types = [type(x) for x in submission.comments.list()] assert types.count(Comment) == 527 assert types.count(MoreComments) == 6 - new_comments = await submission.comments() - replace_more = await new_comments[0].replies.replace_more() - assert replace_more == [] - types = [type(x) for x in await comments.list()] + assert (await submission.comments[0].replies.replace_more()) == [] + types = [type(x) for x in submission.comments.list()] assert types.count(Comment) == 531 assert types.count(MoreComments) == 3 @mock.patch("asyncio.sleep", return_value=None) async def test_replace__on_direct_comment(self, _): with self.use_cassette(): - comment = await self.reddit.comment("d8r4im1") + comment = await self.reddit.comment("d8r4im1", fetch=False) await comment.refresh() - assert any( - [isinstance(x, MoreComments) for x in await comment.replies.list()] - ) + assert any(isinstance(x, MoreComments) for x in comment.replies.list()) await comment.replies.replace_more() - assert all([isinstance(x, Comment) for x in await comment.replies.list()]) + assert all(isinstance(x, Comment) for x in comment.replies.list()) @mock.patch("asyncio.sleep", return_value=None) async def test_comment_forest_refresh_error(self, _): self.reddit.read_only = False with self.use_cassette(): submission = await self.async_next(self.reddit.front.top()) - # await submission._fetch() submission.comment_limit = 1 - comments = await submission.comments() - await comments[1].comments() + await submission.load() + await submission.comments[1].comments() with pytest.raises(DuplicateReplaceException): - await comments.replace_more(limit=1) + await submission.comments.replace_more(limit=1) diff --git a/tests/unit/models/reddit/test_submission.py b/tests/unit/models/reddit/test_submission.py index 8b1b153e..bc10455f 100644 --- a/tests/unit/models/reddit/test_submission.py +++ b/tests/unit/models/reddit/test_submission.py @@ -68,6 +68,11 @@ async def test_comment_sort_warning__disabled(self, caplog): submission.comment_sort = "new" assert caplog.records == [] + async def test_comment_unfetched(self): + with pytest.raises(TypeError): + submission = await self.reddit.submission("1234", fetch=False) + submission.comments.list() + def test_construct_from_url(self): assert Submission(self.reddit, url="http://my.it/2gmzqe") == "2gmzqe" diff --git a/tests/unit/test_deprecations.py b/tests/unit/test_deprecations.py index 6f05acb1..27de18bf 100644 --- a/tests/unit/test_deprecations.py +++ b/tests/unit/test_deprecations.py @@ -4,7 +4,7 @@ from asyncpraw import Reddit from asyncpraw.exceptions import APIException, AsyncPRAWException, WebSocketException -from asyncpraw.models import Subreddit +from asyncpraw.models import Comment, Subreddit from asyncpraw.models.reddit.user_subreddit import UserSubreddit from asyncpraw.util.token_manager import FileTokenManager @@ -26,6 +26,21 @@ def test_api_exception(self): with pytest.raises(DeprecationWarning): exc.field + async def test_comment_forest_async_iterator(self): + submission = await self.reddit.submission("1234", fetch=False) + submission._fetched = True + submission.comments._comments = [Comment(None, id="1234")] + with pytest.deprecated_call(): + async for comment in submission.comments: + assert isinstance(comment, Comment) + + async def test_comment_forest_list_async(self): + submission = await self.reddit.submission("1234", fetch=False) + submission._fetched = True + submission.comments._comments = [] + with pytest.deprecated_call(): + await submission.comments.list() + async def test_gild_method(self): with pytest.raises(DeprecationWarning) as excinfo: submission = await self.reddit.submission("1234", fetch=False) @@ -81,6 +96,12 @@ async def test_reddit_user_me_read_only(self): with pytest.raises(DeprecationWarning): await self.reddit.user.me() + async def test_submission_comments_async(self): + submission = await self.reddit.submission("1234", fetch=False) + submission._fetched = True + with pytest.deprecated_call(): + await submission.comments() + async def test_subreddit_rules_call(self): with pytest.raises(DeprecationWarning) as excinfo: subreddit = Subreddit(self.reddit, display_name="test")