> ## Documentation Index
> Fetch the complete documentation index at: https://help.decodo.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Reddit Subreddit

> Web Scraping API Reddit subreddit Template

<Danger>
  Core and Advanced plans are no longer available for purchase. Please consider migrating to the all-in-one Web Scraper API; check out the guide [here](https://help.decodo.com/docs/web-scraping-api-migration-guide).
</Danger>

The `reddit_subreddit` template is built to obtain Reddit Subreddit information.

<Note>
  ### Useful Links

  * This target is available with **Web API Advanced plans**.
  * [**Real-time**](https://help.decodo.com/docs/web-scraping-api-real-time-requests) and [**Asynchronous**](https://help.decodo.com/docs/web-scraping-api-asynchronous-requests) integration methods are available for this template.
  * [**Batch**](https://help.decodo.com/docs/web-scraping-api-asynchronous-requests#queue-multiple-tasks) requests are also supported.
</Note>

## Input Parameters

Request parameters available for the Reddit Subreddit template:

| Parameter | Type   | Required | Description                                                    |
| --------- | ------ | -------- | -------------------------------------------------------------- |
| `target`  | string | ✅        | Target type must be set to `reddit_post`.                      |
| `url`     | string | ✅        | Reddit subreddit URL.                                          |
| `geo`     | string |          | Set the country to use when submitting the query.              |
| `locale`  | string |          | Set the value to change your post page web interface language. |

<Note>
  Parsing is set to "true" by default for this source - it is required to successfully scrape the results.
</Note>

### Request Examples

<CodeGroup>
  ```shellscript cURL theme={null}
  # update 'TOKEN VALUE' with your authorization token
  curl --request 'POST' \
          --url 'https://scraper-api.decodo.com/v2/scrape' \
          --header 'Accept: application/json' \
          --header 'Authorization: Basic TOKEN VALUE' \
          --header 'Content-Type: application/json' \
          --data '
      {
        "target": "reddit_subreddit",
        "url": "https://www.reddit.com/r/nba/"
      }
  '
  ```

  ```javascript Node theme={null}
  const scrape = async() => {
    const response = await fetch("https://scraper-api.decodo.com/v2/scrape", {
      method: "POST",
      body: JSON.stringify({
        "target": "reddit_subreddit",
        "url": "https://www.reddit.com/r/nba/"
      }),
      headers: {
        "Content-Type": "application/json",
        "Authorization": "Basic TOKEN VALUE" // update with your authorization token
      },
    }).catch(error => console.log(error));

    console.log(await response.json())
  }

  scrape()
  ```

  ```python Python theme={null}
  import requests
    
  url = "https://scraper-api.decodo.com/v2/scrape"
    
  payload = {
        "target": "reddit_subreddit",
        "url": "https://www.reddit.com/r/nba/"
  }
    
  headers = {
      "accept": "application/json",
      "content-type": "application/json",
      "authorization": "Basic TOKEN VALUE" # update with your authorization token
  }
    
  response = requests.post(url, json=payload, headers=headers)
    
  print(response.text)
  ```
</CodeGroup>

## Output

#### Response Example

<CodeGroup>
  ```json JSON expandable theme={null}
  {
      "kind": "Listing",
      "data": {
          "after": "t3_1p0wr69",
          "dist": 25,
          "modhash": "",
          "geo_filter": null,
          "children": [
              {
                  "kind": "t3",
                  "data": {
                      "approved_at_utc": null,
                      "subreddit": "nba",
                      "selftext": "# Game Threads Index (November 18, 2025):\n\n|Tip-off|GDT|Away|Score|Home|PGT|\n|:--|:--:|:--|:-:|:--|:--:|\n|07:00 pm ET|[Link](https://www.reddit.com/r/nba/comments/1p0qve3/game_thread_golden_state_warriors_96_orlando/)|[Golden State Warriors](/r/warriors)|FINAL &gt;!113 to 121!&lt;|[Orlando Magic](/r/orlandomagic)|[Link](https://www.reddit.com/r/nba/comments/1p0vq0p/post_game_thread_the_orlando_magic_87_defeat_the/)|\n|07:30 pm ET|[Link](https://www.reddit.com/r/nba/comments/1p0rlm0/game_thread_boston_celtics_77_brooklyn_nets_211/)|[Boston Celtics](/r/bostonceltics)|FINAL &gt;!113 to 99!&lt;|[Brooklyn Nets](/r/gonets)|[Link](https://www.reddit.com/r/nba/comments/1p0x62d/post_game_thread_the_boston_celtics_87_defeat_the/)|\n|07:30 pm ET|[Link](https://www.reddit.com/r/nba/comments/1p0rlm7/game_thread_detroit_pistons_122_atlanta_hawks_95/)|[Detroit Pistons](/r/detroitpistons)|FINAL &gt;!120 to 112!&lt;|[Atlanta Hawks](/r/atlantahawks)|[Link](https://www.reddit.com/r/nba/comments/1p0w9cl/post_game_thread_the_detroit_pistons_132_defeat/)|\n|08:00 pm ET|[Link](https://www.reddit.com/r/nba/comments/1p0salp/game_thread_memphis_grizzlies_410_san_antonio/)|[Memphis Grizzlies](/r/memphisgrizzlies)|FINAL &gt;!101 to 111!&lt;|[San Antonio Spurs](/r/nbaspurs)|[Link](https://www.reddit.com/r/nba/comments/1p0wsqc/post_game_thread_the_san_antonio_spurs_104_defeat/)|\n|10:30 pm ET|[Link](https://www.reddit.com/r/nba/comments/1p0vlez/game_thread_utah_jazz_58_los_angeles_lakers_104/)|[Utah Jazz](/r/utahjazz)|FINAL &gt;!126 to 140!&lt;|[Los Angeles Lakers](/r/lakers)|[Link](https://www.reddit.com/r/nba/comments/1p0zsrc/post_game_thread_the_los_angeles_lakers_114/)|\n|11:00 pm ET|[Link](https://www.reddit.com/r/nba/comments/1p0w83t/game_thread_phoenix_suns_86_portland_trail/)|[Phoenix Suns](/r/suns)|FINAL &gt;!127 to 110!&lt;|[Portland Trail Blazers](/r/ripcity)|[Link](https://www.reddit.com/r/nba/comments/1p107wn/post_game_thread_the_phoenix_suns_96_defeat_the/)|",
                      "author_fullname": "t2_6vjwa",
                      "saved": false,
                      "mod_reason_title": null,
                      "gilded": 0,
                      "clicked": false,
                      "title": "Daily Discussion Thread + Game Thread Index",
                      "link_flair_richtext": [
                          {
                              "e": "text",
                              "t": "Index Thread"
                          }
                      ],
                      "subreddit_name_prefixed": "r/nba",
                      "hidden": false,
                      "pwls": 6,
                      "link_flair_css_class": "index",
                      "downs": 0,
                      "thumbnail_height": null,
                      "top_awarded_type": null,
                      "hide_score": false,
                      "name": "t3_1p0klky",
                      "quarantine": false,
                      "link_flair_text_color": "light",
                      "upvote_ratio": 0.84,
                      "author_flair_background_color": "#edeff1",
                      "subreddit_type": "public",
                      "ups": 15,
                      "total_awards_received": 0,
                      "media_embed": {},
                      "thumbnail_width": null,
                      "author_flair_template_id": "e5aa3fb6-3feb-11e8-8409-0ef728aaae7a",
                      "is_original_content": false,
                      "user_reports": [],
                      "secure_media": null,
                      "is_reddit_media_domain": false,
                      "is_meta": false,
                      "category": null,
                      "secure_media_embed": {},
                      "link_flair_text": "Index Thread",
                      "can_mod_post": false,
                      "score": 15,
                      "approved_by": null,
                      "is_created_from_ads_ui": false,
                      "author_premium": false,
                      "thumbnail": "self",
                      "edited": 1763538900,
                      "author_flair_css_class": "NBA",
                      "author_flair_richtext": [
                          {
                              "e": "text",
                              "t": " r/NBA"
                          }
                      ],
                      "gildings": {},
                      "content_categories": null,
                      "is_self": true,
                      "mod_note": null,
                      "created": 1763492403,
                      "link_flair_type": "richtext",
                      "wls": 6,
                      "removed_by_category": null,
                      "banned_by": null,
                      "author_flair_type": "richtext",
                      "domain": "self.nba",
                      "allow_live_comments": false,
                      "selftext_html": "&lt;!-- SC_OFF --&gt;&lt;div class=\"md\"&gt;&lt;h1&gt;Game Threads Index (November 18, 2025):&lt;/h1&gt;\n\n&lt;table&gt;&lt;thead&gt;\n&lt;tr&gt;\n&lt;th align=\"left\"&gt;Tip-off&lt;/th&gt;\n&lt;th align=\"center\"&gt;GDT&lt;/th&gt;\n&lt;th align=\"left\"&gt;Away&lt;/th&gt;\n&lt;th align=\"center\"&gt;Score&lt;/th&gt;\n&lt;th align=\"left\"&gt;Home&lt;/th&gt;\n&lt;th align=\"center\"&gt;PGT&lt;/th&gt;\n&lt;/tr&gt;\n&lt;/thead&gt;&lt;tbody&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;07:00 pm ET&lt;/td&gt;\n&lt;td align=\"center\"&gt;&lt;a href=\"https://www.reddit.com/r/nba/comments/1p0qve3/game_thread_golden_state_warriors_96_orlando/\"&gt;Link&lt;/a&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;a href=\"/r/warriors\"&gt;Golden State Warriors&lt;/a&gt;&lt;/td&gt;\n&lt;td align=\"center\"&gt;FINAL &lt;span class=\"md-spoiler-text\"&gt;113 to 121&lt;/span&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;a href=\"/r/orlandomagic\"&gt;Orlando Magic&lt;/a&gt;&lt;/td&gt;\n&lt;td align=\"center\"&gt;&lt;a href=\"https://www.reddit.com/r/nba/comments/1p0vq0p/post_game_thread_the_orlando_magic_87_defeat_the/\"&gt;Link&lt;/a&gt;&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;07:30 pm ET&lt;/td&gt;\n&lt;td align=\"center\"&gt;&lt;a href=\"https://www.reddit.com/r/nba/comments/1p0rlm0/game_thread_boston_celtics_77_brooklyn_nets_211/\"&gt;Link&lt;/a&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;a href=\"/r/bostonceltics\"&gt;Boston Celtics&lt;/a&gt;&lt;/td&gt;\n&lt;td align=\"center\"&gt;FINAL &lt;span class=\"md-spoiler-text\"&gt;113 to 99&lt;/span&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;a href=\"/r/gonets\"&gt;Brooklyn Nets&lt;/a&gt;&lt;/td&gt;\n&lt;td align=\"center\"&gt;&lt;a href=\"https://www.reddit.com/r/nba/comments/1p0x62d/post_game_thread_the_boston_celtics_87_defeat_the/\"&gt;Link&lt;/a&gt;&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;07:30 pm ET&lt;/td&gt;\n&lt;td align=\"center\"&gt;&lt;a href=\"https://www.reddit.com/r/nba/comments/1p0rlm7/game_thread_detroit_pistons_122_atlanta_hawks_95/\"&gt;Link&lt;/a&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;a href=\"/r/detroitpistons\"&gt;Detroit Pistons&lt;/a&gt;&lt;/td&gt;\n&lt;td align=\"center\"&gt;FINAL &lt;span class=\"md-spoiler-text\"&gt;120 to 112&lt;/span&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;a href=\"/r/atlantahawks\"&gt;Atlanta Hawks&lt;/a&gt;&lt;/td&gt;\n&lt;td align=\"center\"&gt;&lt;a href=\"https://www.reddit.com/r/nba/comments/1p0w9cl/post_game_thread_the_detroit_pistons_132_defeat/\"&gt;Link&lt;/a&gt;&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;08:00 pm ET&lt;/td&gt;\n&lt;td align=\"center\"&gt;&lt;a href=\"https://www.reddit.com/r/nba/comments/1p0salp/game_thread_memphis_grizzlies_410_san_antonio/\"&gt;Link&lt;/a&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;a href=\"/r/memphisgrizzlies\"&gt;Memphis Grizzlies&lt;/a&gt;&lt;/td&gt;\n&lt;td align=\"center\"&gt;FINAL &lt;span class=\"md-spoiler-text\"&gt;101 to 111&lt;/span&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;a href=\"/r/nbaspurs\"&gt;San Antonio Spurs&lt;/a&gt;&lt;/td&gt;\n&lt;td align=\"center\"&gt;&lt;a href=\"https://www.reddit.com/r/nba/comments/1p0wsqc/post_game_thread_the_san_antonio_spurs_104_defeat/\"&gt;Link&lt;/a&gt;&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;10:30 pm ET&lt;/td&gt;\n&lt;td align=\"center\"&gt;&lt;a href=\"https://www.reddit.com/r/nba/comments/1p0vlez/game_thread_utah_jazz_58_los_angeles_lakers_104/\"&gt;Link&lt;/a&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;a href=\"/r/utahjazz\"&gt;Utah Jazz&lt;/a&gt;&lt;/td&gt;\n&lt;td align=\"center\"&gt;FINAL &lt;span class=\"md-spoiler-text\"&gt;126 to 140&lt;/span&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;a href=\"/r/lakers\"&gt;Los Angeles Lakers&lt;/a&gt;&lt;/td&gt;\n&lt;td align=\"center\"&gt;&lt;a href=\"https://www.reddit.com/r/nba/comments/1p0zsrc/post_game_thread_the_los_angeles_lakers_114/\"&gt;Link&lt;/a&gt;&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;11:00 pm ET&lt;/td&gt;\n&lt;td align=\"center\"&gt;&lt;a href=\"https://www.reddit.com/r/nba/comments/1p0w83t/game_thread_phoenix_suns_86_portland_trail/\"&gt;Link&lt;/a&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;a href=\"/r/suns\"&gt;Phoenix Suns&lt;/a&gt;&lt;/td&gt;\n&lt;td align=\"center\"&gt;FINAL &lt;span class=\"md-spoiler-text\"&gt;127 to 110&lt;/span&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;a href=\"/r/ripcity\"&gt;Portland Trail Blazers&lt;/a&gt;&lt;/td&gt;\n&lt;td align=\"center\"&gt;&lt;a href=\"https://www.reddit.com/r/nba/comments/1p107wn/post_game_thread_the_phoenix_suns_96_defeat_the/\"&gt;Link&lt;/a&gt;&lt;/td&gt;\n&lt;/tr&gt;\n&lt;/tbody&gt;&lt;/table&gt;\n&lt;/div&gt;&lt;!-- SC_ON --&gt;",
                      "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": [],
                      "awarders": [],
                      "media_only": false,
                      "link_flair_template_id": "0a662acc-0504-11e8-a550-0e84efa39ed0",
                      "can_gild": false,
                      "spoiler": false,
                      "locked": false,
                      "author_flair_text": " r/NBA",
                      "treatment_tags": [],
                      "visited": false,
                      "removed_by": null,
                      "num_reports": null,
                      "distinguished": null,
                      "subreddit_id": "t5_2qo4s",
                      "author_is_blocked": false,
                      "mod_reason_by": null,
                      "removal_reason": null,
                      "link_flair_background_color": "#264184",
                      "id": "1p0klky",
                      "is_robot_indexable": true,
                      "report_reasons": null,
                      "author": "NBA_MOD",
                      "discussion_type": null,
                      "num_comments": 19,
                      "send_replies": false,
                      "contest_mode": false,
                      "mod_reports": [],
                      "author_patreon_flair": false,
                      "author_flair_text_color": "dark",
                      "permalink": "/r/nba/comments/1p0klky/daily_discussion_thread_game_thread_index/",
                      "stickied": true,
                      "url": "https://www.reddit.com/r/nba/comments/1p0klky/daily_discussion_thread_game_thread_index/",
                      "subreddit_subscribers": 16893176,
                      "created_utc": 1763492403,
                      "num_crossposts": 0,
                      "media": null,
                      "is_video": false
                  }
              },
              {
                  "kind": "t3",
                  "data": {
                      "approved_at_utc": null,
                      "subreddit": "nba",
                      "selftext": "Here is a place to have in depth, x's and o's, discussions on yesterday's games. Post-game discussions are linked in the table, keep your memes and reactions there.\n\nPlease keep your discussion of a particular game in the respective comment thread. **All direct replies to this post will be removed.**\n\n\n|Away|Home|Score|GT|PGT|\n|:--|:--|:-:|:-:|:-:|\n|[](/GSW) Golden State Warriors |[](/ORL) Orlando Magic | 113 - 121 | [Link](https://www.reddit.com/r/nba/comments/1p0qve3/game_thread_golden_state_warriors_96_orlando/) | [Link](https://www.reddit.com/r/nba/comments/1p0vq0p/post_game_thread_the_orlando_magic_87_defeat_the/) |\n|[](/BOS) Boston Celtics |[](/BKN) Brooklyn Nets | 113 - 99 | [Link](https://www.reddit.com/r/nba/comments/1p0rlm0/game_thread_boston_celtics_77_brooklyn_nets_211/) | [Link](https://www.reddit.com/r/nba/comments/1p0x62d/post_game_thread_the_boston_celtics_87_defeat_the/) |\n|[](/DET) Detroit Pistons |[](/ATL) Atlanta Hawks | 120 - 112 | [Link](https://www.reddit.com/r/nba/comments/1p0rlm7/game_thread_detroit_pistons_122_atlanta_hawks_95/) | [Link](https://www.reddit.com/r/nba/comments/1p0w9cl/post_game_thread_the_detroit_pistons_132_defeat/) |\n|[](/MEM) Memphis Grizzlies |[](/SAS) San Antonio Spurs | 101 - 111 | [Link](https://www.reddit.com/r/nba/comments/1p0salp/game_thread_memphis_grizzlies_410_san_antonio/) | [Link](https://www.reddit.com/r/nba/comments/1p0wsqc/post_game_thread_the_san_antonio_spurs_104_defeat/) |\n|[](/UTA) Utah Jazz |[](/LAL) Los Angeles Lakers | 126 - 140 | [Link](https://www.reddit.com/r/nba/comments/1p0vlez/game_thread_utah_jazz_58_los_angeles_lakers_104/) | [Link](https://www.reddit.com/r/nba/comments/1p0zsrc/post_game_thread_the_los_angeles_lakers_114/) |\n|[](/PHX) Phoenix Suns |[](/POR) Portland Trail Blazers | 127 - 110 | [Link](https://www.reddit.com/r/nba/comments/1p0w83t/game_thread_phoenix_suns_86_portland_trail/) | [Link](https://www.reddit.com/r/nba/comments/1p107wn/post_game_thread_the_phoenix_suns_96_defeat_the/) |\n\n    \n    \n\n--------------------------------------------------\nLooking for another place to talk ball besides the subreddit? We have a thriving and active community over at [discord.gg/rNBA](https://discord.gg/rNBA) and we'd love to have you check it out.\n\nWith almost 13,000 members, we are one of the largest NBA chat servers. It's not only basketball. There are 2K sims that are run by community members and much more. \n\nLike football, soccer, F1, baseball, and other sports? You're bound to find like-minded people to talk about that as well. \n\nCome stop by and say hi.",
                      "author_fullname": "t2_6vjwa",
                      "saved": false,
                      "mod_reason_title": null,
                      "gilded": 0,
                      "clicked": false,
                      "title": "[SERIOUS NEXT DAY THREAD] Post-Game Discussion (November 18, 2025)",
                      "link_flair_richtext": [
                          {
                              "e": "text",
                              "t": "Discussion"
                          }
                      ],
                      "subreddit_name_prefixed": "r/nba",
                      "hidden": false,
                      "pwls": 6,
                      "link_flair_css_class": "discussion",
                      "downs": 0,
                      "thumbnail_height": null,
                      "top_awarded_type": null,
                      "hide_score": false,
                      "name": "t3_1p15tef",
                      "quarantine": false,
                      "link_flair_text_color": "light",
                      "upvote_ratio": 0.7,
                      "author_flair_background_color": "#edeff1",
                      "subreddit_type": "public",
                      "ups": 4,
                      "total_awards_received": 0,
                      "media_embed": {},
                      "thumbnail_width": null,
                      "author_flair_template_id": "e5aa3fb6-3feb-11e8-8409-0ef728aaae7a",
                      "is_original_content": false,
                      "user_reports": [],
                      "secure_media": null,
                      "is_reddit_media_domain": false,
                      "is_meta": false,
                      "category": null,
                      "secure_media_embed": {},
                      "link_flair_text": "Discussion",
                      "can_mod_post": false,
                      "score": 4,
                      "approved_by": null,
                      "is_created_from_ads_ui": false,
                      "author_premium": false,
                      "thumbnail": "self",
                      "edited": false,
                      "author_flair_css_class": "NBA",
                      "author_flair_richtext": [
                          {
                              "e": "text",
                              "t": " r/NBA"
                          }
                      ],
                      "gildings": {},
                      "post_hint": "self",
                      "content_categories": null,
                      "is_self": true,
                      "mod_note": null,
                      "created": 1763553602,
                      "link_flair_type": "richtext",
                      "wls": 6,
                      "removed_by_category": null,
                      "banned_by": null,
                      "author_flair_type": "richtext",
                      "domain": "self.nba",
                      "allow_live_comments": false,
                      "selftext_html": "&lt;!-- SC_OFF --&gt;&lt;div class=\"md\"&gt;&lt;p&gt;Here is a place to have in depth, x&amp;#39;s and o&amp;#39;s, discussions on yesterday&amp;#39;s games. Post-game discussions are linked in the table, keep your memes and reactions there.&lt;/p&gt;\n\n&lt;p&gt;Please keep your discussion of a particular game in the respective comment thread. &lt;strong&gt;All direct replies to this post will be removed.&lt;/strong&gt;&lt;/p&gt;\n\n&lt;table&gt;&lt;thead&gt;\n&lt;tr&gt;\n&lt;th align=\"left\"&gt;Away&lt;/th&gt;\n&lt;th align=\"left\"&gt;Home&lt;/th&gt;\n&lt;th align=\"center\"&gt;Score&lt;/th&gt;\n&lt;th align=\"center\"&gt;GT&lt;/th&gt;\n&lt;th align=\"center\"&gt;PGT&lt;/th&gt;\n&lt;/tr&gt;\n&lt;/thead&gt;&lt;tbody&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;&lt;a href=\"/GSW\"&gt;&lt;/a&gt; Golden State Warriors&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;a href=\"/ORL\"&gt;&lt;/a&gt; Orlando Magic&lt;/td&gt;\n&lt;td align=\"center\"&gt;113 - 121&lt;/td&gt;\n&lt;td align=\"center\"&gt;&lt;a href=\"https://www.reddit.com/r/nba/comments/1p0qve3/game_thread_golden_state_warriors_96_orlando/\"&gt;Link&lt;/a&gt;&lt;/td&gt;\n&lt;td align=\"center\"&gt;&lt;a href=\"https://www.reddit.com/r/nba/comments/1p0vq0p/post_game_thread_the_orlando_magic_87_defeat_the/\"&gt;Link&lt;/a&gt;&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;&lt;a href=\"/BOS\"&gt;&lt;/a&gt; Boston Celtics&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;a href=\"/BKN\"&gt;&lt;/a&gt; Brooklyn Nets&lt;/td&gt;\n&lt;td align=\"center\"&gt;113 - 99&lt;/td&gt;\n&lt;td align=\"center\"&gt;&lt;a href=\"https://www.reddit.com/r/nba/comments/1p0rlm0/game_thread_boston_celtics_77_brooklyn_nets_211/\"&gt;Link&lt;/a&gt;&lt;/td&gt;\n&lt;td align=\"center\"&gt;&lt;a href=\"https://www.reddit.com/r/nba/comments/1p0x62d/post_game_thread_the_boston_celtics_87_defeat_the/\"&gt;Link&lt;/a&gt;&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;&lt;a href=\"/DET\"&gt;&lt;/a&gt; Detroit Pistons&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;a href=\"/ATL\"&gt;&lt;/a&gt; Atlanta Hawks&lt;/td&gt;\n&lt;td align=\"center\"&gt;120 - 112&lt;/td&gt;\n&lt;td align=\"center\"&gt;&lt;a href=\"https://www.reddit.com/r/nba/comments/1p0rlm7/game_thread_detroit_pistons_122_atlanta_hawks_95/\"&gt;Link&lt;/a&gt;&lt;/td&gt;\n&lt;td align=\"center\"&gt;&lt;a href=\"https://www.reddit.com/r/nba/comments/1p0w9cl/post_game_thread_the_detroit_pistons_132_defeat/\"&gt;Link&lt;/a&gt;&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;&lt;a href=\"/MEM\"&gt;&lt;/a&gt; Memphis Grizzlies&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;a href=\"/SAS\"&gt;&lt;/a&gt; San Antonio Spurs&lt;/td&gt;\n&lt;td align=\"center\"&gt;101 - 111&lt;/td&gt;\n&lt;td align=\"center\"&gt;&lt;a href=\"https://www.reddit.com/r/nba/comments/1p0salp/game_thread_memphis_grizzlies_410_san_antonio/\"&gt;Link&lt;/a&gt;&lt;/td&gt;\n&lt;td align=\"center\"&gt;&lt;a href=\"https://www.reddit.com/r/nba/comments/1p0wsqc/post_game_thread_the_san_antonio_spurs_104_defeat/\"&gt;Link&lt;/a&gt;&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;&lt;a href=\"/UTA\"&gt;&lt;/a&gt; Utah Jazz&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;a href=\"/LAL\"&gt;&lt;/a&gt; Los Angeles Lakers&lt;/td&gt;\n&lt;td align=\"center\"&gt;126 - 140&lt;/td&gt;\n&lt;td align=\"center\"&gt;&lt;a href=\"https://www.reddit.com/r/nba/comments/1p0vlez/game_thread_utah_jazz_58_los_angeles_lakers_104/\"&gt;Link&lt;/a&gt;&lt;/td&gt;\n&lt;td align=\"center\"&gt;&lt;a href=\"https://www.reddit.com/r/nba/comments/1p0zsrc/post_game_thread_the_los_angeles_lakers_114/\"&gt;Link&lt;/a&gt;&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;&lt;a href=\"/PHX\"&gt;&lt;/a&gt; Phoenix Suns&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;a href=\"/POR\"&gt;&lt;/a&gt; Portland Trail Blazers&lt;/td&gt;\n&lt;td align=\"center\"&gt;127 - 110&lt;/td&gt;\n&lt;td align=\"center\"&gt;&lt;a href=\"https://www.reddit.com/r/nba/comments/1p0w83t/game_thread_phoenix_suns_86_portland_trail/\"&gt;Link&lt;/a&gt;&lt;/td&gt;\n&lt;td align=\"center\"&gt;&lt;a href=\"https://www.reddit.com/r/nba/comments/1p107wn/post_game_thread_the_phoenix_suns_96_defeat_the/\"&gt;Link&lt;/a&gt;&lt;/td&gt;\n&lt;/tr&gt;\n&lt;/tbody&gt;&lt;/table&gt;\n\n&lt;hr/&gt;\n\n&lt;p&gt;Looking for another place to talk ball besides the subreddit? We have a thriving and active community over at &lt;a href=\"https://discord.gg/rNBA\"&gt;discord.gg/rNBA&lt;/a&gt; and we&amp;#39;d love to have you check it out.&lt;/p&gt;\n\n&lt;p&gt;With almost 13,000 members, we are one of the largest NBA chat servers. It&amp;#39;s not only basketball. There are 2K sims that are run by community members and much more. &lt;/p&gt;\n\n&lt;p&gt;Like football, soccer, F1, baseball, and other sports? You&amp;#39;re bound to find like-minded people to talk about that as well. &lt;/p&gt;\n\n&lt;p&gt;Come stop by and say hi.&lt;/p&gt;\n&lt;/div&gt;&lt;!-- SC_ON --&gt;",
                      "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,
                      "preview": {
                          "images": [
                              {
                                  "source": {
                                      "url": "https://external-preview.redd.it/dalPcCXNRqjGku9yGYAfvW_DfMojJPGABrNOkiH2NR4.jpeg?auto=webp&amp;s=427a3827dde32234ad9c823d801980ab0edee6f7",
                                      "width": 512,
                                      "height": 288
                                  },
                                  "resolutions": [
                                      {
                                          "url": "https://external-preview.redd.it/dalPcCXNRqjGku9yGYAfvW_DfMojJPGABrNOkiH2NR4.jpeg?width=108&amp;crop=smart&amp;auto=webp&amp;s=44fa5e2c74872b35fc7ad56b526f056a4d90f508",
                                          "width": 108,
                                          "height": 60
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/dalPcCXNRqjGku9yGYAfvW_DfMojJPGABrNOkiH2NR4.jpeg?width=216&amp;crop=smart&amp;auto=webp&amp;s=c0d8fd4049a51cf720d922477877cb8ae54dd8da",
                                          "width": 216,
                                          "height": 121
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/dalPcCXNRqjGku9yGYAfvW_DfMojJPGABrNOkiH2NR4.jpeg?width=320&amp;crop=smart&amp;auto=webp&amp;s=cb02050e2e662a9e77ff2a4948843b9a196af557",
                                          "width": 320,
                                          "height": 180
                                      }
                                  ],
                                  "variants": {},
                                  "id": "dalPcCXNRqjGku9yGYAfvW_DfMojJPGABrNOkiH2NR4"
                              }
                          ],
                          "enabled": false
                      },
                      "all_awardings": [],
                      "awarders": [],
                      "media_only": false,
                      "link_flair_template_id": "e454879a-ff45-11ea-b58e-0ea6879ad6a7",
                      "can_gild": false,
                      "spoiler": false,
                      "locked": false,
                      "author_flair_text": " r/NBA",
                      "treatment_tags": [],
                      "visited": false,
                      "removed_by": null,
                      "num_reports": null,
                      "distinguished": "moderator",
                      "subreddit_id": "t5_2qo4s",
                      "author_is_blocked": false,
                      "mod_reason_by": null,
                      "removal_reason": null,
                      "link_flair_background_color": "#264184",
                      "id": "1p15tef",
                      "is_robot_indexable": true,
                      "report_reasons": null,
                      "author": "NBA_MOD",
                      "discussion_type": null,
                      "num_comments": 11,
                      "send_replies": false,
                      "contest_mode": false,
                      "mod_reports": [],
                      "author_patreon_flair": false,
                      "author_flair_text_color": "dark",
                      "permalink": "/r/nba/comments/1p15tef/serious_next_day_thread_postgame_discussion/",
                      "stickied": true,
                      "url": "https://www.reddit.com/r/nba/comments/1p15tef/serious_next_day_thread_postgame_discussion/",
                      "subreddit_subscribers": 16893176,
                      "created_utc": 1763553602,
                      "num_crossposts": 0,
                      "media": null,
                      "is_video": false
                  }
              },
              {
                  "kind": "t3",
                  "data": {
                      "approved_at_utc": null,
                      "subreddit": "nba",
                      "selftext": "",
                      "author_fullname": "t2_axhcoe6e",
                      "saved": false,
                      "mod_reason_title": null,
                      "gilded": 0,
                      "clicked": false,
                      "title": "Ayton on playing his first game with LeBron James: “He threw me an alley-oop and I told him, ‘That’s my 2nd alley-oop from you. The 1st one was when I was in 8th grade at your camp.’”",
                      "link_flair_richtext": [],
                      "subreddit_name_prefixed": "r/nba",
                      "hidden": false,
                      "pwls": 6,
                      "link_flair_css_class": null,
                      "downs": 0,
                      "thumbnail_height": 78,
                      "top_awarded_type": null,
                      "hide_score": false,
                      "name": "t3_1p11n39",
                      "quarantine": false,
                      "link_flair_text_color": "dark",
                      "upvote_ratio": 0.98,
                      "author_flair_background_color": "#edeff1",
                      "subreddit_type": "public",
                      "ups": 6315,
                      "total_awards_received": 0,
                      "media_embed": {
                          "content": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2Fdrq6tc&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2Fdrq6tc&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2Fdrq6tc.jpg%3FExpires%3D1763798304389%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DASO7kXJZkqPdGiMl4iP4zTnCnhs2mgKPePW1BHWiSmUmYNF%7E-4KWz4CBYEakLoPfgEriajuR0giqRxqb67NV1l%7E12VpW-JUURVs6QiXJW7LYOYZvuV7oO9Q2B11EFSiTO0bUGuiEHGSgTwHsqn-kS%7EteVI1Fqu22Cz%7EFFHXjniyNAoUdCD-hAYwoEnAj60-%7EzsRMCOL9eZLBaTQTaKuDiiger2fcrzLT2LZzmK6BAhQVxfMnj7t2Q1kEONymU33rdRrA9m-kfxnp2cKKfuDRd6QzJK9jkD9sclbgsQn7c7nHj5v-OkHWFqIK4vUGNn9mnAwRk0cUxRRdr7o-sKhpig__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                          "width": 600,
                          "scrolling": false,
                          "height": 338
                      },
                      "thumbnail_width": 140,
                      "author_flair_template_id": "d6b0f054-3feb-11e8-96d1-0ea4bf1137fc",
                      "is_original_content": false,
                      "user_reports": [],
                      "secure_media": {
                          "oembed": {
                              "provider_url": "https://streamable.com",
                              "description": "Watch \"Streamable video #vhrur6\" on Streamable.",
                              "title": "Streamable video #vhrur6",
                              "thumbnail_width": 1280,
                              "height": 338,
                              "width": 600,
                              "html": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2Fdrq6tc&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2Fdrq6tc&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2Fdrq6tc.jpg%3FExpires%3D1763798304389%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DASO7kXJZkqPdGiMl4iP4zTnCnhs2mgKPePW1BHWiSmUmYNF%7E-4KWz4CBYEakLoPfgEriajuR0giqRxqb67NV1l%7E12VpW-JUURVs6QiXJW7LYOYZvuV7oO9Q2B11EFSiTO0bUGuiEHGSgTwHsqn-kS%7EteVI1Fqu22Cz%7EFFHXjniyNAoUdCD-hAYwoEnAj60-%7EzsRMCOL9eZLBaTQTaKuDiiger2fcrzLT2LZzmK6BAhQVxfMnj7t2Q1kEONymU33rdRrA9m-kfxnp2cKKfuDRd6QzJK9jkD9sclbgsQn7c7nHj5v-OkHWFqIK4vUGNn9mnAwRk0cUxRRdr7o-sKhpig__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                              "version": "1.0",
                              "provider_name": "Streamable",
                              "thumbnail_url": "https://cdn-cf-east.streamable.com/image/drq6tc.jpg?Expires=1763798304389&amp;Key-Pair-Id=APKAIEYUVEN4EVB2OKEQ&amp;Signature=ASO7kXJZkqPdGiMl4iP4zTnCnhs2mgKPePW1BHWiSmUmYNF~-4KWz4CBYEakLoPfgEriajuR0giqRxqb67NV1l~12VpW-JUURVs6QiXJW7LYOYZvuV7oO9Q2B11EFSiTO0bUGuiEHGSgTwHsqn-kS~teVI1Fqu22Cz~FFHXjniyNAoUdCD-hAYwoEnAj60-~zsRMCOL9eZLBaTQTaKuDiiger2fcrzLT2LZzmK6BAhQVxfMnj7t2Q1kEONymU33rdRrA9m-kfxnp2cKKfuDRd6QzJK9jkD9sclbgsQn7c7nHj5v-OkHWFqIK4vUGNn9mnAwRk0cUxRRdr7o-sKhpig__",
                              "type": "video",
                              "thumbnail_height": 720
                          },
                          "type": "streamable.com"
                      },
                      "is_reddit_media_domain": false,
                      "is_meta": false,
                      "category": null,
                      "secure_media_embed": {
                          "content": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2Fdrq6tc&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2Fdrq6tc&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2Fdrq6tc.jpg%3FExpires%3D1763798304389%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DASO7kXJZkqPdGiMl4iP4zTnCnhs2mgKPePW1BHWiSmUmYNF%7E-4KWz4CBYEakLoPfgEriajuR0giqRxqb67NV1l%7E12VpW-JUURVs6QiXJW7LYOYZvuV7oO9Q2B11EFSiTO0bUGuiEHGSgTwHsqn-kS%7EteVI1Fqu22Cz%7EFFHXjniyNAoUdCD-hAYwoEnAj60-%7EzsRMCOL9eZLBaTQTaKuDiiger2fcrzLT2LZzmK6BAhQVxfMnj7t2Q1kEONymU33rdRrA9m-kfxnp2cKKfuDRd6QzJK9jkD9sclbgsQn7c7nHj5v-OkHWFqIK4vUGNn9mnAwRk0cUxRRdr7o-sKhpig__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                          "width": 600,
                          "scrolling": false,
                          "media_domain_url": "https://www.redditmedia.com/mediaembed/1p11n39",
                          "height": 338
                      },
                      "link_flair_text": null,
                      "can_mod_post": false,
                      "score": 6315,
                      "approved_by": null,
                      "is_created_from_ads_ui": false,
                      "author_premium": false,
                      "thumbnail": "https://external-preview.redd.it/gEAiX4PVPcPI8pyOAmpZVfsB9FcjWuKUYaCyruqAI2s.jpeg?width=140&amp;height=78&amp;auto=webp&amp;s=5590bf19f8bcfde4afdb6f3d990e3d03a02cb208",
                      "edited": false,
                      "author_flair_css_class": "Thunder1",
                      "author_flair_richtext": [
                          {
                              "a": ":okc-1:",
                              "e": "emoji",
                              "u": "https://emoji.redditmedia.com/5129sp3cw4r81_t5_2qo4s/okc-1"
                          },
                          {
                              "e": "text",
                              "t": " Thunder"
                          }
                      ],
                      "gildings": {},
                      "post_hint": "rich:video",
                      "content_categories": null,
                      "is_self": false,
                      "mod_note": null,
                      "created": 1763539104,
                      "link_flair_type": "text",
                      "wls": 6,
                      "removed_by_category": null,
                      "banned_by": null,
                      "author_flair_type": "richtext",
                      "domain": "streamable.com",
                      "allow_live_comments": false,
                      "selftext_html": null,
                      "likes": null,
                      "suggested_sort": null,
                      "banned_at_utc": null,
                      "url_overridden_by_dest": "https://streamable.com/drq6tc",
                      "view_count": null,
                      "archived": false,
                      "no_follow": false,
                      "is_crosspostable": false,
                      "pinned": false,
                      "over_18": false,
                      "preview": {
                          "images": [
                              {
                                  "source": {
                                      "url": "https://external-preview.redd.it/gEAiX4PVPcPI8pyOAmpZVfsB9FcjWuKUYaCyruqAI2s.jpeg?auto=webp&amp;s=f0f1aff774564b67c6d74b8004845c53c2ded044",
                                      "width": 1280,
                                      "height": 720
                                  },
                                  "resolutions": [
                                      {
                                          "url": "https://external-preview.redd.it/gEAiX4PVPcPI8pyOAmpZVfsB9FcjWuKUYaCyruqAI2s.jpeg?width=108&amp;crop=smart&amp;auto=webp&amp;s=22f8aca2774b5b7a32cbdb5df4d7154008cb38c6",
                                          "width": 108,
                                          "height": 60
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/gEAiX4PVPcPI8pyOAmpZVfsB9FcjWuKUYaCyruqAI2s.jpeg?width=216&amp;crop=smart&amp;auto=webp&amp;s=3a501e243e1cad50f0f6a9c49681b146aa3346b8",
                                          "width": 216,
                                          "height": 121
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/gEAiX4PVPcPI8pyOAmpZVfsB9FcjWuKUYaCyruqAI2s.jpeg?width=320&amp;crop=smart&amp;auto=webp&amp;s=15331541fec2711479ab999e8206905cc80032d4",
                                          "width": 320,
                                          "height": 180
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/gEAiX4PVPcPI8pyOAmpZVfsB9FcjWuKUYaCyruqAI2s.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=372c3d2e136292df2fa84799c4577be264200583",
                                          "width": 640,
                                          "height": 360
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/gEAiX4PVPcPI8pyOAmpZVfsB9FcjWuKUYaCyruqAI2s.jpeg?width=960&amp;crop=smart&amp;auto=webp&amp;s=f865c0f029a95bc145fcd0532f8cb2844e6048d7",
                                          "width": 960,
                                          "height": 540
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/gEAiX4PVPcPI8pyOAmpZVfsB9FcjWuKUYaCyruqAI2s.jpeg?width=1080&amp;crop=smart&amp;auto=webp&amp;s=703a31912bd4a5e47934dd9b7ddd678ab3f6637a",
                                          "width": 1080,
                                          "height": 607
                                      }
                                  ],
                                  "variants": {},
                                  "id": "gEAiX4PVPcPI8pyOAmpZVfsB9FcjWuKUYaCyruqAI2s"
                              }
                          ],
                          "enabled": false
                      },
                      "all_awardings": [],
                      "awarders": [],
                      "media_only": false,
                      "can_gild": false,
                      "spoiler": false,
                      "locked": false,
                      "author_flair_text": ":okc-1: Thunder",
                      "treatment_tags": [],
                      "visited": false,
                      "removed_by": null,
                      "num_reports": null,
                      "distinguished": null,
                      "subreddit_id": "t5_2qo4s",
                      "author_is_blocked": false,
                      "mod_reason_by": null,
                      "removal_reason": null,
                      "link_flair_background_color": "",
                      "id": "1p11n39",
                      "is_robot_indexable": true,
                      "report_reasons": null,
                      "author": "aingenevalostatrade",
                      "discussion_type": null,
                      "num_comments": 166,
                      "send_replies": true,
                      "contest_mode": false,
                      "mod_reports": [],
                      "author_patreon_flair": false,
                      "author_flair_text_color": "dark",
                      "permalink": "/r/nba/comments/1p11n39/ayton_on_playing_his_first_game_with_lebron_james/",
                      "stickied": false,
                      "url": "https://streamable.com/drq6tc",
                      "subreddit_subscribers": 16893176,
                      "created_utc": 1763539104,
                      "num_crossposts": 0,
                      "media": {
                          "oembed": {
                              "provider_url": "https://streamable.com",
                              "description": "Watch \"Streamable video #vhrur6\" on Streamable.",
                              "title": "Streamable video #vhrur6",
                              "thumbnail_width": 1280,
                              "height": 338,
                              "width": 600,
                              "html": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2Fdrq6tc&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2Fdrq6tc&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2Fdrq6tc.jpg%3FExpires%3D1763798304389%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DASO7kXJZkqPdGiMl4iP4zTnCnhs2mgKPePW1BHWiSmUmYNF%7E-4KWz4CBYEakLoPfgEriajuR0giqRxqb67NV1l%7E12VpW-JUURVs6QiXJW7LYOYZvuV7oO9Q2B11EFSiTO0bUGuiEHGSgTwHsqn-kS%7EteVI1Fqu22Cz%7EFFHXjniyNAoUdCD-hAYwoEnAj60-%7EzsRMCOL9eZLBaTQTaKuDiiger2fcrzLT2LZzmK6BAhQVxfMnj7t2Q1kEONymU33rdRrA9m-kfxnp2cKKfuDRd6QzJK9jkD9sclbgsQn7c7nHj5v-OkHWFqIK4vUGNn9mnAwRk0cUxRRdr7o-sKhpig__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                              "version": "1.0",
                              "provider_name": "Streamable",
                              "thumbnail_url": "https://cdn-cf-east.streamable.com/image/drq6tc.jpg?Expires=1763798304389&amp;Key-Pair-Id=APKAIEYUVEN4EVB2OKEQ&amp;Signature=ASO7kXJZkqPdGiMl4iP4zTnCnhs2mgKPePW1BHWiSmUmYNF~-4KWz4CBYEakLoPfgEriajuR0giqRxqb67NV1l~12VpW-JUURVs6QiXJW7LYOYZvuV7oO9Q2B11EFSiTO0bUGuiEHGSgTwHsqn-kS~teVI1Fqu22Cz~FFHXjniyNAoUdCD-hAYwoEnAj60-~zsRMCOL9eZLBaTQTaKuDiiger2fcrzLT2LZzmK6BAhQVxfMnj7t2Q1kEONymU33rdRrA9m-kfxnp2cKKfuDRd6QzJK9jkD9sclbgsQn7c7nHj5v-OkHWFqIK4vUGNn9mnAwRk0cUxRRdr7o-sKhpig__",
                              "type": "video",
                              "thumbnail_height": 720
                          },
                          "type": "streamable.com"
                      },
                      "is_video": false
                  }
              },
              {
                  "kind": "t3",
                  "data": {
                      "approved_at_utc": null,
                      "subreddit": "nba",
                      "selftext": "",
                      "author_fullname": "t2_izmtc",
                      "saved": false,
                      "mod_reason_title": null,
                      "gilded": 0,
                      "clicked": false,
                      "title": "LeBron talks about Bronny moving out: \"He's not a resident anymore, so we don't talk as much\"",
                      "link_flair_richtext": [],
                      "subreddit_name_prefixed": "r/nba",
                      "hidden": false,
                      "pwls": 6,
                      "link_flair_css_class": null,
                      "downs": 0,
                      "thumbnail_height": 78,
                      "top_awarded_type": null,
                      "hide_score": true,
                      "name": "t3_1p1azui",
                      "quarantine": false,
                      "link_flair_text_color": "dark",
                      "upvote_ratio": 0.96,
                      "author_flair_background_color": "#edeff1",
                      "subreddit_type": "public",
                      "ups": 1062,
                      "total_awards_received": 0,
                      "media_embed": {
                          "content": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2F0kgxeg&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2F0kgxeg&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2F0kgxeg_1.jpg%3FExpires%3D1763826025516%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3Dfgzixhu7s-ho5CiDfMQ52nP82Nf%7E2MDBZpj8Ssa3GDd-BJTscCOyIaMZ9Kb6NXQj2WKfxdtSAH2uELpS8Zu6gao4tKh8Jw0zYeq5uRg8NthqnrYjrjaaUxlkxui-MiOHrRAW0l4f3cGHLwrWxVymTmNo%7Ek91XLsyhdgvOrK-lEBb3GyW98FsYJI2i3p%7ESJs%7E%7Eddf6WE4K9-E7sUjw6yeIQYvs5Obm9wFuBuyex8SWG8-6YNNQCQzS6iUuPugqARgsmBleaXPbqVLQx%7EYl7C1AVyh2LsPRPYib5lnOFQ1iX85tei1UhJpKB%7ETfj168FA-7InsPl5BTJw0%7Espflz-ucg__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                          "width": 600,
                          "scrolling": false,
                          "height": 338
                      },
                      "thumbnail_width": 140,
                      "author_flair_template_id": "cc0d49ae-3feb-11e8-8327-0e3e867879aa",
                      "is_original_content": false,
                      "user_reports": [],
                      "secure_media": {
                          "oembed": {
                              "provider_url": "https://streamable.com",
                              "description": "Watch \"LeBron talks about Bronny moving out: \"He's not a resident anymore, so we don't talk as much\"\" on Streamable.",
                              "title": "LeBron talks about Bronny moving out: \"He's not a resident anymore, so we don't talk as much\"",
                              "thumbnail_width": 1920,
                              "height": 338,
                              "width": 600,
                              "html": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2F0kgxeg&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2F0kgxeg&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2F0kgxeg_1.jpg%3FExpires%3D1763826025516%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3Dfgzixhu7s-ho5CiDfMQ52nP82Nf%7E2MDBZpj8Ssa3GDd-BJTscCOyIaMZ9Kb6NXQj2WKfxdtSAH2uELpS8Zu6gao4tKh8Jw0zYeq5uRg8NthqnrYjrjaaUxlkxui-MiOHrRAW0l4f3cGHLwrWxVymTmNo%7Ek91XLsyhdgvOrK-lEBb3GyW98FsYJI2i3p%7ESJs%7E%7Eddf6WE4K9-E7sUjw6yeIQYvs5Obm9wFuBuyex8SWG8-6YNNQCQzS6iUuPugqARgsmBleaXPbqVLQx%7EYl7C1AVyh2LsPRPYib5lnOFQ1iX85tei1UhJpKB%7ETfj168FA-7InsPl5BTJw0%7Espflz-ucg__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                              "version": "1.0",
                              "provider_name": "Streamable",
                              "thumbnail_url": "https://cdn-cf-east.streamable.com/image/0kgxeg_1.jpg?Expires=1763826025516&amp;Key-Pair-Id=APKAIEYUVEN4EVB2OKEQ&amp;Signature=fgzixhu7s-ho5CiDfMQ52nP82Nf~2MDBZpj8Ssa3GDd-BJTscCOyIaMZ9Kb6NXQj2WKfxdtSAH2uELpS8Zu6gao4tKh8Jw0zYeq5uRg8NthqnrYjrjaaUxlkxui-MiOHrRAW0l4f3cGHLwrWxVymTmNo~k91XLsyhdgvOrK-lEBb3GyW98FsYJI2i3p~SJs~~ddf6WE4K9-E7sUjw6yeIQYvs5Obm9wFuBuyex8SWG8-6YNNQCQzS6iUuPugqARgsmBleaXPbqVLQx~Yl7C1AVyh2LsPRPYib5lnOFQ1iX85tei1UhJpKB~Tfj168FA-7InsPl5BTJw0~spflz-ucg__",
                              "type": "video",
                              "thumbnail_height": 1080
                          },
                          "type": "streamable.com"
                      },
                      "is_reddit_media_domain": false,
                      "is_meta": false,
                      "category": null,
                      "secure_media_embed": {
                          "content": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2F0kgxeg&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2F0kgxeg&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2F0kgxeg_1.jpg%3FExpires%3D1763826025516%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3Dfgzixhu7s-ho5CiDfMQ52nP82Nf%7E2MDBZpj8Ssa3GDd-BJTscCOyIaMZ9Kb6NXQj2WKfxdtSAH2uELpS8Zu6gao4tKh8Jw0zYeq5uRg8NthqnrYjrjaaUxlkxui-MiOHrRAW0l4f3cGHLwrWxVymTmNo%7Ek91XLsyhdgvOrK-lEBb3GyW98FsYJI2i3p%7ESJs%7E%7Eddf6WE4K9-E7sUjw6yeIQYvs5Obm9wFuBuyex8SWG8-6YNNQCQzS6iUuPugqARgsmBleaXPbqVLQx%7EYl7C1AVyh2LsPRPYib5lnOFQ1iX85tei1UhJpKB%7ETfj168FA-7InsPl5BTJw0%7Espflz-ucg__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                          "width": 600,
                          "scrolling": false,
                          "media_domain_url": "https://www.redditmedia.com/mediaembed/1p1azui",
                          "height": 338
                      },
                      "link_flair_text": null,
                      "can_mod_post": false,
                      "score": 1062,
                      "approved_by": null,
                      "is_created_from_ads_ui": false,
                      "author_premium": false,
                      "thumbnail": "https://external-preview.redd.it/KB7cBYc34McfD6KtmQd1eadBDNrjyCwJDjUz2qYQYIY.jpeg?width=140&amp;height=78&amp;auto=webp&amp;s=b67ec7a9bc0150a766b03898bc27ccd854250051",
                      "edited": false,
                      "author_flair_css_class": "Lakers1",
                      "author_flair_richtext": [
                          {
                              "a": ":lal-1:",
                              "e": "emoji",
                              "u": "https://emoji.redditmedia.com/rwysqekrs4r81_t5_2qo4s/lal-1"
                          },
                          {
                              "e": "text",
                              "t": " Lakers"
                          }
                      ],
                      "gildings": {},
                      "post_hint": "rich:video",
                      "content_categories": null,
                      "is_self": false,
                      "mod_note": null,
                      "created": 1763566869,
                      "link_flair_type": "text",
                      "wls": 6,
                      "removed_by_category": null,
                      "banned_by": null,
                      "author_flair_type": "richtext",
                      "domain": "streamable.com",
                      "allow_live_comments": false,
                      "selftext_html": null,
                      "likes": null,
                      "suggested_sort": null,
                      "banned_at_utc": null,
                      "url_overridden_by_dest": "https://streamable.com/0kgxeg",
                      "view_count": null,
                      "archived": false,
                      "no_follow": false,
                      "is_crosspostable": false,
                      "pinned": false,
                      "over_18": false,
                      "preview": {
                          "images": [
                              {
                                  "source": {
                                      "url": "https://external-preview.redd.it/KB7cBYc34McfD6KtmQd1eadBDNrjyCwJDjUz2qYQYIY.jpeg?auto=webp&amp;s=f1e49ad06e00415ca87fde2f5e85dfb270d81f25",
                                      "width": 1920,
                                      "height": 1080
                                  },
                                  "resolutions": [
                                      {
                                          "url": "https://external-preview.redd.it/KB7cBYc34McfD6KtmQd1eadBDNrjyCwJDjUz2qYQYIY.jpeg?width=108&amp;crop=smart&amp;auto=webp&amp;s=6bba0954270e155a87a9c13ed5203c17d215f5b7",
                                          "width": 108,
                                          "height": 60
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/KB7cBYc34McfD6KtmQd1eadBDNrjyCwJDjUz2qYQYIY.jpeg?width=216&amp;crop=smart&amp;auto=webp&amp;s=961b10abe84a9226ea9323aa6c51af20cc788697",
                                          "width": 216,
                                          "height": 121
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/KB7cBYc34McfD6KtmQd1eadBDNrjyCwJDjUz2qYQYIY.jpeg?width=320&amp;crop=smart&amp;auto=webp&amp;s=9f9fba1ef5c3a93b03ffaa52dc29f65d297ee37d",
                                          "width": 320,
                                          "height": 180
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/KB7cBYc34McfD6KtmQd1eadBDNrjyCwJDjUz2qYQYIY.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=c45abad0be50f180dc40cb71eaf331317da80b74",
                                          "width": 640,
                                          "height": 360
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/KB7cBYc34McfD6KtmQd1eadBDNrjyCwJDjUz2qYQYIY.jpeg?width=960&amp;crop=smart&amp;auto=webp&amp;s=2f73a1e04548aaab9ba253fdff5149caac7e15d1",
                                          "width": 960,
                                          "height": 540
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/KB7cBYc34McfD6KtmQd1eadBDNrjyCwJDjUz2qYQYIY.jpeg?width=1080&amp;crop=smart&amp;auto=webp&amp;s=da05fe029ba24cdd91833c679741435a20ccb08c",
                                          "width": 1080,
                                          "height": 607
                                      }
                                  ],
                                  "variants": {},
                                  "id": "KB7cBYc34McfD6KtmQd1eadBDNrjyCwJDjUz2qYQYIY"
                              }
                          ],
                          "enabled": false
                      },
                      "all_awardings": [],
                      "awarders": [],
                      "media_only": false,
                      "can_gild": false,
                      "spoiler": false,
                      "locked": false,
                      "author_flair_text": ":lal-1: Lakers",
                      "treatment_tags": [],
                      "visited": false,
                      "removed_by": null,
                      "num_reports": null,
                      "distinguished": null,
                      "subreddit_id": "t5_2qo4s",
                      "author_is_blocked": false,
                      "mod_reason_by": null,
                      "removal_reason": null,
                      "link_flair_background_color": "",
                      "id": "1p1azui",
                      "is_robot_indexable": true,
                      "report_reasons": null,
                      "author": "Jayveesac",
                      "discussion_type": null,
                      "num_comments": 121,
                      "send_replies": false,
                      "contest_mode": false,
                      "mod_reports": [],
                      "author_patreon_flair": false,
                      "author_flair_text_color": "dark",
                      "permalink": "/r/nba/comments/1p1azui/lebron_talks_about_bronny_moving_out_hes_not_a/",
                      "stickied": false,
                      "url": "https://streamable.com/0kgxeg",
                      "subreddit_subscribers": 16893176,
                      "created_utc": 1763566869,
                      "num_crossposts": 0,
                      "media": {
                          "oembed": {
                              "provider_url": "https://streamable.com",
                              "description": "Watch \"LeBron talks about Bronny moving out: \"He's not a resident anymore, so we don't talk as much\"\" on Streamable.",
                              "title": "LeBron talks about Bronny moving out: \"He's not a resident anymore, so we don't talk as much\"",
                              "thumbnail_width": 1920,
                              "height": 338,
                              "width": 600,
                              "html": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2F0kgxeg&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2F0kgxeg&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2F0kgxeg_1.jpg%3FExpires%3D1763826025516%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3Dfgzixhu7s-ho5CiDfMQ52nP82Nf%7E2MDBZpj8Ssa3GDd-BJTscCOyIaMZ9Kb6NXQj2WKfxdtSAH2uELpS8Zu6gao4tKh8Jw0zYeq5uRg8NthqnrYjrjaaUxlkxui-MiOHrRAW0l4f3cGHLwrWxVymTmNo%7Ek91XLsyhdgvOrK-lEBb3GyW98FsYJI2i3p%7ESJs%7E%7Eddf6WE4K9-E7sUjw6yeIQYvs5Obm9wFuBuyex8SWG8-6YNNQCQzS6iUuPugqARgsmBleaXPbqVLQx%7EYl7C1AVyh2LsPRPYib5lnOFQ1iX85tei1UhJpKB%7ETfj168FA-7InsPl5BTJw0%7Espflz-ucg__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                              "version": "1.0",
                              "provider_name": "Streamable",
                              "thumbnail_url": "https://cdn-cf-east.streamable.com/image/0kgxeg_1.jpg?Expires=1763826025516&amp;Key-Pair-Id=APKAIEYUVEN4EVB2OKEQ&amp;Signature=fgzixhu7s-ho5CiDfMQ52nP82Nf~2MDBZpj8Ssa3GDd-BJTscCOyIaMZ9Kb6NXQj2WKfxdtSAH2uELpS8Zu6gao4tKh8Jw0zYeq5uRg8NthqnrYjrjaaUxlkxui-MiOHrRAW0l4f3cGHLwrWxVymTmNo~k91XLsyhdgvOrK-lEBb3GyW98FsYJI2i3p~SJs~~ddf6WE4K9-E7sUjw6yeIQYvs5Obm9wFuBuyex8SWG8-6YNNQCQzS6iUuPugqARgsmBleaXPbqVLQx~Yl7C1AVyh2LsPRPYib5lnOFQ1iX85tei1UhJpKB~Tfj168FA-7InsPl5BTJw0~spflz-ucg__",
                              "type": "video",
                              "thumbnail_height": 1080
                          },
                          "type": "streamable.com"
                      },
                      "is_video": false
                  }
              },
              {
                  "kind": "t3",
                  "data": {
                      "approved_at_utc": null,
                      "subreddit": "nba",
                      "selftext": "",
                      "author_fullname": "t2_8lemz",
                      "saved": false,
                      "mod_reason_title": null,
                      "gilded": 0,
                      "clicked": false,
                      "title": "[Highlight] Lebron comes up with another assist, under the basket to Laravia",
                      "link_flair_richtext": [
                          {
                              "e": "text",
                              "t": "Highlight"
                          }
                      ],
                      "subreddit_name_prefixed": "r/nba",
                      "hidden": false,
                      "pwls": 6,
                      "link_flair_css_class": "highlights",
                      "downs": 0,
                      "thumbnail_height": 78,
                      "top_awarded_type": null,
                      "hide_score": false,
                      "name": "t3_1p0zfb3",
                      "quarantine": false,
                      "link_flair_text_color": "light",
                      "upvote_ratio": 0.95,
                      "author_flair_background_color": null,
                      "ups": 5832,
                      "total_awards_received": 0,
                      "media_embed": {
                          "content": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2Ft7uaht&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2Ft7uaht&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2Ft7uaht.jpg%3FExpires%3D1763790286181%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DPf1d%7ESX93DJUrqOOkHqox5fpBFZnI-AbLf8p1Ru4%7E8Y4O%7EXMNE0yXtMwQvDll4Y1EVkNjjUBJnRwouV2jC86tTCcdz6hGeaCA3R1ghlEgpzBFX27MTSjhFGz2uTuiN0ilBHujWAexvVZflHBIq7L7vllKW7dW8Kwe6%7EFXPGkJ0eXptbJOmYiP4Ufkz3wniJ4AqjDc01WdeiEgP88UrWzJwLVFNhMxBScwSl%7ENiH8%7E5Xlq4cIh2H0h9NjqnwVNBZZcGg5yqHZOJqdo5SYm1QiDvDi%7EUZXFavkszZGBoZbHBVXUuCTKDrdPcLNpeQwzuhftbZchBCFJF5HLIwdmET75w__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                          "width": 600,
                          "scrolling": false,
                          "height": 338
                      },
                      "thumbnail_width": 140,
                      "author_flair_template_id": null,
                      "is_original_content": false,
                      "user_reports": [],
                      "secure_media": {
                          "oembed": {
                              "provider_url": "https://streamable.com",
                              "description": "Watch \"[Highlight] Lebron comes up with another assist, under the basket to Laravia\" on Streamable.",
                              "title": "[Highlight] Lebron comes up with another assist, under the basket to Laravia",
                              "thumbnail_width": 1920,
                              "height": 338,
                              "width": 600,
                              "html": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2Ft7uaht&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2Ft7uaht&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2Ft7uaht.jpg%3FExpires%3D1763790286181%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DPf1d%7ESX93DJUrqOOkHqox5fpBFZnI-AbLf8p1Ru4%7E8Y4O%7EXMNE0yXtMwQvDll4Y1EVkNjjUBJnRwouV2jC86tTCcdz6hGeaCA3R1ghlEgpzBFX27MTSjhFGz2uTuiN0ilBHujWAexvVZflHBIq7L7vllKW7dW8Kwe6%7EFXPGkJ0eXptbJOmYiP4Ufkz3wniJ4AqjDc01WdeiEgP88UrWzJwLVFNhMxBScwSl%7ENiH8%7E5Xlq4cIh2H0h9NjqnwVNBZZcGg5yqHZOJqdo5SYm1QiDvDi%7EUZXFavkszZGBoZbHBVXUuCTKDrdPcLNpeQwzuhftbZchBCFJF5HLIwdmET75w__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                              "version": "1.0",
                              "provider_name": "Streamable",
                              "thumbnail_url": "https://cdn-cf-east.streamable.com/image/t7uaht.jpg?Expires=1763790286181&amp;Key-Pair-Id=APKAIEYUVEN4EVB2OKEQ&amp;Signature=Pf1d~SX93DJUrqOOkHqox5fpBFZnI-AbLf8p1Ru4~8Y4O~XMNE0yXtMwQvDll4Y1EVkNjjUBJnRwouV2jC86tTCcdz6hGeaCA3R1ghlEgpzBFX27MTSjhFGz2uTuiN0ilBHujWAexvVZflHBIq7L7vllKW7dW8Kwe6~FXPGkJ0eXptbJOmYiP4Ufkz3wniJ4AqjDc01WdeiEgP88UrWzJwLVFNhMxBScwSl~NiH8~5Xlq4cIh2H0h9NjqnwVNBZZcGg5yqHZOJqdo5SYm1QiDvDi~UZXFavkszZGBoZbHBVXUuCTKDrdPcLNpeQwzuhftbZchBCFJF5HLIwdmET75w__",
                              "type": "video",
                              "thumbnail_height": 1080
                          },
                          "type": "streamable.com"
                      },
                      "is_reddit_media_domain": false,
                      "is_meta": false,
                      "category": null,
                      "secure_media_embed": {
                          "content": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2Ft7uaht&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2Ft7uaht&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2Ft7uaht.jpg%3FExpires%3D1763790286181%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DPf1d%7ESX93DJUrqOOkHqox5fpBFZnI-AbLf8p1Ru4%7E8Y4O%7EXMNE0yXtMwQvDll4Y1EVkNjjUBJnRwouV2jC86tTCcdz6hGeaCA3R1ghlEgpzBFX27MTSjhFGz2uTuiN0ilBHujWAexvVZflHBIq7L7vllKW7dW8Kwe6%7EFXPGkJ0eXptbJOmYiP4Ufkz3wniJ4AqjDc01WdeiEgP88UrWzJwLVFNhMxBScwSl%7ENiH8%7E5Xlq4cIh2H0h9NjqnwVNBZZcGg5yqHZOJqdo5SYm1QiDvDi%7EUZXFavkszZGBoZbHBVXUuCTKDrdPcLNpeQwzuhftbZchBCFJF5HLIwdmET75w__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                          "width": 600,
                          "scrolling": false,
                          "media_domain_url": "https://www.redditmedia.com/mediaembed/1p0zfb3",
                          "height": 338
                      },
                      "link_flair_text": "Highlight",
                      "can_mod_post": false,
                      "score": 5832,
                      "approved_by": null,
                      "is_created_from_ads_ui": false,
                      "author_premium": false,
                      "thumbnail": "https://external-preview.redd.it/zGX2UjG1vJxuGVfo4pcsV2h9-pEBMltdo5N9TzW8fWw.jpeg?width=140&amp;height=78&amp;auto=webp&amp;s=81442f4b9d4394474b5d970ec7ccceb482dac68d",
                      "edited": false,
                      "author_flair_css_class": null,
                      "author_flair_richtext": [],
                      "gildings": {},
                      "post_hint": "rich:video",
                      "content_categories": null,
                      "is_self": false,
                      "subreddit_type": "public",
                      "created": 1763531063,
                      "link_flair_type": "richtext",
                      "wls": 6,
                      "removed_by_category": null,
                      "banned_by": null,
                      "author_flair_type": "text",
                      "domain": "streamable.com",
                      "allow_live_comments": false,
                      "selftext_html": null,
                      "likes": null,
                      "suggested_sort": null,
                      "banned_at_utc": null,
                      "url_overridden_by_dest": "https://streamable.com/t7uaht",
                      "view_count": null,
                      "archived": false,
                      "no_follow": false,
                      "is_crosspostable": false,
                      "pinned": false,
                      "over_18": false,
                      "preview": {
                          "images": [
                              {
                                  "source": {
                                      "url": "https://external-preview.redd.it/zGX2UjG1vJxuGVfo4pcsV2h9-pEBMltdo5N9TzW8fWw.jpeg?auto=webp&amp;s=6d77bc26df12c618ea70505691d4a2d95d12e30c",
                                      "width": 1920,
                                      "height": 1080
                                  },
                                  "resolutions": [
                                      {
                                          "url": "https://external-preview.redd.it/zGX2UjG1vJxuGVfo4pcsV2h9-pEBMltdo5N9TzW8fWw.jpeg?width=108&amp;crop=smart&amp;auto=webp&amp;s=eb17570fe1223c14f0e0c19f08f8ccc3bd4a670d",
                                          "width": 108,
                                          "height": 60
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/zGX2UjG1vJxuGVfo4pcsV2h9-pEBMltdo5N9TzW8fWw.jpeg?width=216&amp;crop=smart&amp;auto=webp&amp;s=551950e162041025ff2d2d8bcd2f95c0b7d4f0c9",
                                          "width": 216,
                                          "height": 121
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/zGX2UjG1vJxuGVfo4pcsV2h9-pEBMltdo5N9TzW8fWw.jpeg?width=320&amp;crop=smart&amp;auto=webp&amp;s=aa24275970826c2326b65841f91988b097909ed5",
                                          "width": 320,
                                          "height": 180
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/zGX2UjG1vJxuGVfo4pcsV2h9-pEBMltdo5N9TzW8fWw.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=e31f88959a63233447f5255a33936f40a8492aec",
                                          "width": 640,
                                          "height": 360
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/zGX2UjG1vJxuGVfo4pcsV2h9-pEBMltdo5N9TzW8fWw.jpeg?width=960&amp;crop=smart&amp;auto=webp&amp;s=03f0d58190ca2ad06a38c16eea5a0be0dd792634",
                                          "width": 960,
                                          "height": 540
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/zGX2UjG1vJxuGVfo4pcsV2h9-pEBMltdo5N9TzW8fWw.jpeg?width=1080&amp;crop=smart&amp;auto=webp&amp;s=bd8c64010b68e3103fa5975c4bf1d6803690b108",
                                          "width": 1080,
                                          "height": 607
                                      }
                                  ],
                                  "variants": {},
                                  "id": "zGX2UjG1vJxuGVfo4pcsV2h9-pEBMltdo5N9TzW8fWw"
                              }
                          ],
                          "enabled": false
                      },
                      "all_awardings": [],
                      "awarders": [],
                      "media_only": false,
                      "link_flair_template_id": "11e1d3fc-5c54-11e4-8ccc-12313b0e448d",
                      "can_gild": false,
                      "spoiler": false,
                      "locked": false,
                      "author_flair_text": null,
                      "treatment_tags": [],
                      "visited": false,
                      "removed_by": null,
                      "mod_note": null,
                      "distinguished": null,
                      "subreddit_id": "t5_2qo4s",
                      "author_is_blocked": false,
                      "mod_reason_by": null,
                      "num_reports": null,
                      "removal_reason": null,
                      "link_flair_background_color": "#0079d3",
                      "id": "1p0zfb3",
                      "is_robot_indexable": true,
                      "report_reasons": null,
                      "author": "Large_banana_hammock",
                      "discussion_type": null,
                      "num_comments": 316,
                      "send_replies": true,
                      "contest_mode": false,
                      "mod_reports": [],
                      "author_patreon_flair": false,
                      "author_flair_text_color": null,
                      "permalink": "/r/nba/comments/1p0zfb3/highlight_lebron_comes_up_with_another_assist/",
                      "stickied": false,
                      "url": "https://streamable.com/t7uaht",
                      "subreddit_subscribers": 16893176,
                      "created_utc": 1763531063,
                      "num_crossposts": 0,
                      "media": {
                          "oembed": {
                              "provider_url": "https://streamable.com",
                              "description": "Watch \"[Highlight] Lebron comes up with another assist, under the basket to Laravia\" on Streamable.",
                              "title": "[Highlight] Lebron comes up with another assist, under the basket to Laravia",
                              "thumbnail_width": 1920,
                              "height": 338,
                              "width": 600,
                              "html": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2Ft7uaht&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2Ft7uaht&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2Ft7uaht.jpg%3FExpires%3D1763790286181%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DPf1d%7ESX93DJUrqOOkHqox5fpBFZnI-AbLf8p1Ru4%7E8Y4O%7EXMNE0yXtMwQvDll4Y1EVkNjjUBJnRwouV2jC86tTCcdz6hGeaCA3R1ghlEgpzBFX27MTSjhFGz2uTuiN0ilBHujWAexvVZflHBIq7L7vllKW7dW8Kwe6%7EFXPGkJ0eXptbJOmYiP4Ufkz3wniJ4AqjDc01WdeiEgP88UrWzJwLVFNhMxBScwSl%7ENiH8%7E5Xlq4cIh2H0h9NjqnwVNBZZcGg5yqHZOJqdo5SYm1QiDvDi%7EUZXFavkszZGBoZbHBVXUuCTKDrdPcLNpeQwzuhftbZchBCFJF5HLIwdmET75w__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                              "version": "1.0",
                              "provider_name": "Streamable",
                              "thumbnail_url": "https://cdn-cf-east.streamable.com/image/t7uaht.jpg?Expires=1763790286181&amp;Key-Pair-Id=APKAIEYUVEN4EVB2OKEQ&amp;Signature=Pf1d~SX93DJUrqOOkHqox5fpBFZnI-AbLf8p1Ru4~8Y4O~XMNE0yXtMwQvDll4Y1EVkNjjUBJnRwouV2jC86tTCcdz6hGeaCA3R1ghlEgpzBFX27MTSjhFGz2uTuiN0ilBHujWAexvVZflHBIq7L7vllKW7dW8Kwe6~FXPGkJ0eXptbJOmYiP4Ufkz3wniJ4AqjDc01WdeiEgP88UrWzJwLVFNhMxBScwSl~NiH8~5Xlq4cIh2H0h9NjqnwVNBZZcGg5yqHZOJqdo5SYm1QiDvDi~UZXFavkszZGBoZbHBVXUuCTKDrdPcLNpeQwzuhftbZchBCFJF5HLIwdmET75w__",
                              "type": "video",
                              "thumbnail_height": 1080
                          },
                          "type": "streamable.com"
                      },
                      "is_video": false
                  }
              },
              {
                  "kind": "t3",
                  "data": {
                      "approved_at_utc": null,
                      "subreddit": "nba",
                      "selftext": "",
                      "author_fullname": "t2_xbpwc",
                      "saved": false,
                      "mod_reason_title": null,
                      "gilded": 0,
                      "clicked": false,
                      "title": "LeBron on playing with his new teammates: \"I can fit in with anybody. I don't even understand why that was even a question. What's wrong with these people out here?\"",
                      "link_flair_richtext": [],
                      "subreddit_name_prefixed": "r/nba",
                      "hidden": false,
                      "pwls": 6,
                      "link_flair_css_class": null,
                      "downs": 0,
                      "thumbnail_height": 78,
                      "top_awarded_type": null,
                      "hide_score": false,
                      "name": "t3_1p10d2h",
                      "quarantine": false,
                      "link_flair_text_color": "dark",
                      "upvote_ratio": 0.96,
                      "author_flair_background_color": null,
                      "subreddit_type": "public",
                      "ups": 4165,
                      "total_awards_received": 0,
                      "media_embed": {
                          "content": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2Fxbir6h&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2Fxbir6h&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2Fxbir6h.jpg%3FExpires%3D1763793417749%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DHU3Ai-rMTzShn-lGuAeSAekf9-L58NdStgt3Bkwj0aqKM4kb%7ExZPO8RMAILuyWzMRtwNG72lXgEQPJEp1wsPC2HCPpAU6yOJi%7Enl4nSFOgGmMw3PEELQPtNskcaov9spurrft%7EvQgv5p0ZAmH3J0GGqr8JaxQJ2wqyrZy-ahAFEELwYqUdmH0VPYcPC0P-rgU00ifEgY4Bn2s7RmZO%7EA0gBz%7EeEVLSLb6cIPZ%7ElUpFgHBoUVvIpWz69KkiT83fYXBnGV-FqidvjpqKhsNuVjcgFd1gTppGP9k%7EaUhKdONUll19gYVQdZ7C0G5kUaobWjONQPi2BfE6XENkuM9fXZpA__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                          "width": 600,
                          "scrolling": false,
                          "height": 338
                      },
                      "thumbnail_width": 140,
                      "author_flair_template_id": null,
                      "is_original_content": false,
                      "user_reports": [],
                      "secure_media": {
                          "oembed": {
                              "provider_url": "https://streamable.com",
                              "description": "Watch \"LeBron on playing with his new teammates: \"I can fit in with anybody. I don't even understand why that was even a question. What's wrong with these people out here?\"\" on Streamable.",
                              "title": "LeBron on playing with his new teammates: \"I can fit in with anybody. I don't even understand why that was even a question. What's wrong with these people out here?\"",
                              "thumbnail_width": 1280,
                              "height": 338,
                              "width": 600,
                              "html": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2Fxbir6h&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2Fxbir6h&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2Fxbir6h.jpg%3FExpires%3D1763793417749%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DHU3Ai-rMTzShn-lGuAeSAekf9-L58NdStgt3Bkwj0aqKM4kb%7ExZPO8RMAILuyWzMRtwNG72lXgEQPJEp1wsPC2HCPpAU6yOJi%7Enl4nSFOgGmMw3PEELQPtNskcaov9spurrft%7EvQgv5p0ZAmH3J0GGqr8JaxQJ2wqyrZy-ahAFEELwYqUdmH0VPYcPC0P-rgU00ifEgY4Bn2s7RmZO%7EA0gBz%7EeEVLSLb6cIPZ%7ElUpFgHBoUVvIpWz69KkiT83fYXBnGV-FqidvjpqKhsNuVjcgFd1gTppGP9k%7EaUhKdONUll19gYVQdZ7C0G5kUaobWjONQPi2BfE6XENkuM9fXZpA__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                              "version": "1.0",
                              "provider_name": "Streamable",
                              "thumbnail_url": "https://cdn-cf-east.streamable.com/image/xbir6h.jpg?Expires=1763793417749&amp;Key-Pair-Id=APKAIEYUVEN4EVB2OKEQ&amp;Signature=HU3Ai-rMTzShn-lGuAeSAekf9-L58NdStgt3Bkwj0aqKM4kb~xZPO8RMAILuyWzMRtwNG72lXgEQPJEp1wsPC2HCPpAU6yOJi~nl4nSFOgGmMw3PEELQPtNskcaov9spurrft~vQgv5p0ZAmH3J0GGqr8JaxQJ2wqyrZy-ahAFEELwYqUdmH0VPYcPC0P-rgU00ifEgY4Bn2s7RmZO~A0gBz~eEVLSLb6cIPZ~lUpFgHBoUVvIpWz69KkiT83fYXBnGV-FqidvjpqKhsNuVjcgFd1gTppGP9k~aUhKdONUll19gYVQdZ7C0G5kUaobWjONQPi2BfE6XENkuM9fXZpA__",
                              "type": "video",
                              "thumbnail_height": 720
                          },
                          "type": "streamable.com"
                      },
                      "is_reddit_media_domain": false,
                      "is_meta": false,
                      "category": null,
                      "secure_media_embed": {
                          "content": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2Fxbir6h&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2Fxbir6h&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2Fxbir6h.jpg%3FExpires%3D1763793417749%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DHU3Ai-rMTzShn-lGuAeSAekf9-L58NdStgt3Bkwj0aqKM4kb%7ExZPO8RMAILuyWzMRtwNG72lXgEQPJEp1wsPC2HCPpAU6yOJi%7Enl4nSFOgGmMw3PEELQPtNskcaov9spurrft%7EvQgv5p0ZAmH3J0GGqr8JaxQJ2wqyrZy-ahAFEELwYqUdmH0VPYcPC0P-rgU00ifEgY4Bn2s7RmZO%7EA0gBz%7EeEVLSLb6cIPZ%7ElUpFgHBoUVvIpWz69KkiT83fYXBnGV-FqidvjpqKhsNuVjcgFd1gTppGP9k%7EaUhKdONUll19gYVQdZ7C0G5kUaobWjONQPi2BfE6XENkuM9fXZpA__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                          "width": 600,
                          "scrolling": false,
                          "media_domain_url": "https://www.redditmedia.com/mediaembed/1p10d2h",
                          "height": 338
                      },
                      "link_flair_text": null,
                      "can_mod_post": false,
                      "score": 4165,
                      "approved_by": null,
                      "is_created_from_ads_ui": false,
                      "author_premium": false,
                      "thumbnail": "https://external-preview.redd.it/5B3FyzoFN54r-CjS_brkqg5qBnLo2eG3jzV5FrSmgFU.jpeg?width=140&amp;height=78&amp;auto=webp&amp;s=def4aad86f0892a1e5c478aa7d63a5a2f0acfe65",
                      "edited": false,
                      "author_flair_css_class": null,
                      "author_flair_richtext": [],
                      "gildings": {},
                      "post_hint": "rich:video",
                      "content_categories": null,
                      "is_self": false,
                      "mod_note": null,
                      "created": 1763534290,
                      "link_flair_type": "text",
                      "wls": 6,
                      "removed_by_category": null,
                      "banned_by": null,
                      "author_flair_type": "text",
                      "domain": "streamable.com",
                      "allow_live_comments": false,
                      "selftext_html": null,
                      "likes": null,
                      "suggested_sort": null,
                      "banned_at_utc": null,
                      "url_overridden_by_dest": "https://streamable.com/xbir6h",
                      "view_count": null,
                      "archived": false,
                      "no_follow": false,
                      "is_crosspostable": false,
                      "pinned": false,
                      "over_18": false,
                      "preview": {
                          "images": [
                              {
                                  "source": {
                                      "url": "https://external-preview.redd.it/5B3FyzoFN54r-CjS_brkqg5qBnLo2eG3jzV5FrSmgFU.jpeg?auto=webp&amp;s=eacf839217ee723e04ea7ec3b43e6602c134c3dc",
                                      "width": 1280,
                                      "height": 720
                                  },
                                  "resolutions": [
                                      {
                                          "url": "https://external-preview.redd.it/5B3FyzoFN54r-CjS_brkqg5qBnLo2eG3jzV5FrSmgFU.jpeg?width=108&amp;crop=smart&amp;auto=webp&amp;s=a9fa3bc2d5f65c4e235d483b32c1bf06b3d1295f",
                                          "width": 108,
                                          "height": 60
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/5B3FyzoFN54r-CjS_brkqg5qBnLo2eG3jzV5FrSmgFU.jpeg?width=216&amp;crop=smart&amp;auto=webp&amp;s=00d24dc47470fcc46d8097b1b4fff3202be6e4af",
                                          "width": 216,
                                          "height": 121
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/5B3FyzoFN54r-CjS_brkqg5qBnLo2eG3jzV5FrSmgFU.jpeg?width=320&amp;crop=smart&amp;auto=webp&amp;s=6b976bae23ffa9d57e061f53f62e8cd250ea3252",
                                          "width": 320,
                                          "height": 180
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/5B3FyzoFN54r-CjS_brkqg5qBnLo2eG3jzV5FrSmgFU.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=c0b80301281b81190933d650d86f2d1ee6f417b5",
                                          "width": 640,
                                          "height": 360
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/5B3FyzoFN54r-CjS_brkqg5qBnLo2eG3jzV5FrSmgFU.jpeg?width=960&amp;crop=smart&amp;auto=webp&amp;s=f91580e3a65507c7835e7e30980db24745517049",
                                          "width": 960,
                                          "height": 540
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/5B3FyzoFN54r-CjS_brkqg5qBnLo2eG3jzV5FrSmgFU.jpeg?width=1080&amp;crop=smart&amp;auto=webp&amp;s=b9c7989e40a7e6836b1050d6633d1c51ec41a091",
                                          "width": 1080,
                                          "height": 607
                                      }
                                  ],
                                  "variants": {},
                                  "id": "5B3FyzoFN54r-CjS_brkqg5qBnLo2eG3jzV5FrSmgFU"
                              }
                          ],
                          "enabled": false
                      },
                      "all_awardings": [],
                      "awarders": [],
                      "media_only": false,
                      "can_gild": false,
                      "spoiler": false,
                      "locked": false,
                      "author_flair_text": null,
                      "treatment_tags": [],
                      "visited": false,
                      "removed_by": null,
                      "num_reports": null,
                      "distinguished": null,
                      "subreddit_id": "t5_2qo4s",
                      "author_is_blocked": false,
                      "mod_reason_by": null,
                      "removal_reason": null,
                      "link_flair_background_color": "",
                      "id": "1p10d2h",
                      "is_robot_indexable": true,
                      "report_reasons": null,
                      "author": "JetGan",
                      "discussion_type": null,
                      "num_comments": 362,
                      "send_replies": true,
                      "contest_mode": false,
                      "mod_reports": [],
                      "author_patreon_flair": false,
                      "author_flair_text_color": null,
                      "permalink": "/r/nba/comments/1p10d2h/lebron_on_playing_with_his_new_teammates_i_can/",
                      "stickied": false,
                      "url": "https://streamable.com/xbir6h",
                      "subreddit_subscribers": 16893176,
                      "created_utc": 1763534290,
                      "num_crossposts": 1,
                      "media": {
                          "oembed": {
                              "provider_url": "https://streamable.com",
                              "description": "Watch \"LeBron on playing with his new teammates: \"I can fit in with anybody. I don't even understand why that was even a question. What's wrong with these people out here?\"\" on Streamable.",
                              "title": "LeBron on playing with his new teammates: \"I can fit in with anybody. I don't even understand why that was even a question. What's wrong with these people out here?\"",
                              "thumbnail_width": 1280,
                              "height": 338,
                              "width": 600,
                              "html": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2Fxbir6h&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2Fxbir6h&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2Fxbir6h.jpg%3FExpires%3D1763793417749%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DHU3Ai-rMTzShn-lGuAeSAekf9-L58NdStgt3Bkwj0aqKM4kb%7ExZPO8RMAILuyWzMRtwNG72lXgEQPJEp1wsPC2HCPpAU6yOJi%7Enl4nSFOgGmMw3PEELQPtNskcaov9spurrft%7EvQgv5p0ZAmH3J0GGqr8JaxQJ2wqyrZy-ahAFEELwYqUdmH0VPYcPC0P-rgU00ifEgY4Bn2s7RmZO%7EA0gBz%7EeEVLSLb6cIPZ%7ElUpFgHBoUVvIpWz69KkiT83fYXBnGV-FqidvjpqKhsNuVjcgFd1gTppGP9k%7EaUhKdONUll19gYVQdZ7C0G5kUaobWjONQPi2BfE6XENkuM9fXZpA__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                              "version": "1.0",
                              "provider_name": "Streamable",
                              "thumbnail_url": "https://cdn-cf-east.streamable.com/image/xbir6h.jpg?Expires=1763793417749&amp;Key-Pair-Id=APKAIEYUVEN4EVB2OKEQ&amp;Signature=HU3Ai-rMTzShn-lGuAeSAekf9-L58NdStgt3Bkwj0aqKM4kb~xZPO8RMAILuyWzMRtwNG72lXgEQPJEp1wsPC2HCPpAU6yOJi~nl4nSFOgGmMw3PEELQPtNskcaov9spurrft~vQgv5p0ZAmH3J0GGqr8JaxQJ2wqyrZy-ahAFEELwYqUdmH0VPYcPC0P-rgU00ifEgY4Bn2s7RmZO~A0gBz~eEVLSLb6cIPZ~lUpFgHBoUVvIpWz69KkiT83fYXBnGV-FqidvjpqKhsNuVjcgFd1gTppGP9k~aUhKdONUll19gYVQdZ7C0G5kUaobWjONQPi2BfE6XENkuM9fXZpA__",
                              "type": "video",
                              "thumbnail_height": 720
                          },
                          "type": "streamable.com"
                      },
                      "is_video": false
                  }
              },
              {
                  "kind": "t3",
                  "data": {
                      "approved_at_utc": null,
                      "subreddit": "nba",
                      "selftext": "Source: https://www.espn.com/nba/story/_/id/47014061/inside-mavericks-power-struggle-nico-harrison-vs-mark-cuban\n\n&gt; Harrison built his case from a business perspective. Doncic would be eligible to sign a five-year, $345 million supermax contract extension in the summer. That deal would be an awful investment, Harrison told Dumont, pointing to Doncic's conditioning concerns, poor off-court habits and recurring calf strains, predicting that his body would break down.\n\n&gt; Doncic's camp and Harrison had several disagreements regarding the recovery process from the calf strain that sidelined the superstar at the time, which the GM portrayed to Dumont as proof that Doncic was not fully committed to the Mavs.\n\n&gt; Harrison also blamed the Mavs' five-game elimination to the Boston Celtics in the Finals on Doncic's defensive struggles. He pitched Dumont on his vision of building the league's best defense around Davis, who Harrison had been close with since Davis was a teen playing on the AAU circuit.\n\n",
                      "author_fullname": "t2_1511lsehjf",
                      "saved": false,
                      "mod_reason_title": null,
                      "gilded": 0,
                      "clicked": false,
                      "title": "[MacMahon] Doncic would be eligible to sign a 5YR/$345M extension in the summer. That deal would be an awful investment, Harrison told Dumont, pointing to Doncic's conditioning concerns, poor off-court habits and recurring calf strains, predicting that his body would break down.",
                      "link_flair_richtext": [],
                      "subreddit_name_prefixed": "r/nba",
                      "hidden": false,
                      "pwls": 6,
                      "link_flair_css_class": null,
                      "downs": 0,
                      "thumbnail_height": null,
                      "top_awarded_type": null,
                      "hide_score": false,
                      "name": "t3_1p18rvx",
                      "quarantine": false,
                      "link_flair_text_color": "dark",
                      "upvote_ratio": 0.95,
                      "author_flair_background_color": null,
                      "subreddit_type": "public",
                      "ups": 977,
                      "total_awards_received": 0,
                      "media_embed": {},
                      "thumbnail_width": null,
                      "author_flair_template_id": null,
                      "is_original_content": false,
                      "user_reports": [],
                      "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": 977,
                      "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": {},
                      "post_hint": "self",
                      "content_categories": null,
                      "is_self": true,
                      "mod_note": null,
                      "created": 1763561659,
                      "link_flair_type": "text",
                      "wls": 6,
                      "removed_by_category": null,
                      "banned_by": null,
                      "author_flair_type": "text",
                      "domain": "self.nba",
                      "allow_live_comments": false,
                      "selftext_html": "&lt;!-- SC_OFF --&gt;&lt;div class=\"md\"&gt;&lt;p&gt;Source: &lt;a href=\"https://www.espn.com/nba/story/_/id/47014061/inside-mavericks-power-struggle-nico-harrison-vs-mark-cuban\"&gt;https://www.espn.com/nba/story/_/id/47014061/inside-mavericks-power-struggle-nico-harrison-vs-mark-cuban&lt;/a&gt;&lt;/p&gt;\n\n&lt;blockquote&gt;\n&lt;p&gt;Harrison built his case from a business perspective. Doncic would be eligible to sign a five-year, $345 million supermax contract extension in the summer. That deal would be an awful investment, Harrison told Dumont, pointing to Doncic&amp;#39;s conditioning concerns, poor off-court habits and recurring calf strains, predicting that his body would break down.&lt;/p&gt;\n\n&lt;p&gt;Doncic&amp;#39;s camp and Harrison had several disagreements regarding the recovery process from the calf strain that sidelined the superstar at the time, which the GM portrayed to Dumont as proof that Doncic was not fully committed to the Mavs.&lt;/p&gt;\n\n&lt;p&gt;Harrison also blamed the Mavs&amp;#39; five-game elimination to the Boston Celtics in the Finals on Doncic&amp;#39;s defensive struggles. He pitched Dumont on his vision of building the league&amp;#39;s best defense around Davis, who Harrison had been close with since Davis was a teen playing on the AAU circuit.&lt;/p&gt;\n&lt;/blockquote&gt;\n&lt;/div&gt;&lt;!-- SC_ON --&gt;",
                      "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,
                      "preview": {
                          "images": [
                              {
                                  "source": {
                                      "url": "https://external-preview.redd.it/dgDUOOlmJosr9Ra1LkrY3-x5AffB3oAs6q_XPwAiKqA.jpeg?auto=webp&amp;s=b777365b788d0d0c7c8a188bfccc1ad6d0effa64",
                                      "width": 1296,
                                      "height": 729
                                  },
                                  "resolutions": [
                                      {
                                          "url": "https://external-preview.redd.it/dgDUOOlmJosr9Ra1LkrY3-x5AffB3oAs6q_XPwAiKqA.jpeg?width=108&amp;crop=smart&amp;auto=webp&amp;s=0de6869f213a9129f5492b71fca7ccdcd7667846",
                                          "width": 108,
                                          "height": 60
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/dgDUOOlmJosr9Ra1LkrY3-x5AffB3oAs6q_XPwAiKqA.jpeg?width=216&amp;crop=smart&amp;auto=webp&amp;s=814458ac2c180aab7d902c8c13abd6aead485adf",
                                          "width": 216,
                                          "height": 121
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/dgDUOOlmJosr9Ra1LkrY3-x5AffB3oAs6q_XPwAiKqA.jpeg?width=320&amp;crop=smart&amp;auto=webp&amp;s=aaca893dc91cc8b41f7c77a5d059139a40492748",
                                          "width": 320,
                                          "height": 180
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/dgDUOOlmJosr9Ra1LkrY3-x5AffB3oAs6q_XPwAiKqA.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=9147a8f8157277d10d5e6e039202f95e8cf5f09d",
                                          "width": 640,
                                          "height": 360
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/dgDUOOlmJosr9Ra1LkrY3-x5AffB3oAs6q_XPwAiKqA.jpeg?width=960&amp;crop=smart&amp;auto=webp&amp;s=5f5ce70b7d9da52fe2896452df4d26a1948505d2",
                                          "width": 960,
                                          "height": 540
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/dgDUOOlmJosr9Ra1LkrY3-x5AffB3oAs6q_XPwAiKqA.jpeg?width=1080&amp;crop=smart&amp;auto=webp&amp;s=bcc75bf390a13a805c5f716ba8aaae219084a963",
                                          "width": 1080,
                                          "height": 607
                                      }
                                  ],
                                  "variants": {},
                                  "id": "dgDUOOlmJosr9Ra1LkrY3-x5AffB3oAs6q_XPwAiKqA"
                              }
                          ],
                          "enabled": false
                      },
                      "all_awardings": [],
                      "awarders": [],
                      "media_only": false,
                      "can_gild": false,
                      "spoiler": false,
                      "locked": false,
                      "author_flair_text": null,
                      "treatment_tags": [],
                      "visited": false,
                      "removed_by": null,
                      "num_reports": null,
                      "distinguished": null,
                      "subreddit_id": "t5_2qo4s",
                      "author_is_blocked": false,
                      "mod_reason_by": null,
                      "removal_reason": null,
                      "link_flair_background_color": "",
                      "id": "1p18rvx",
                      "is_robot_indexable": true,
                      "report_reasons": null,
                      "author": "YujiDomainExpansion",
                      "discussion_type": null,
                      "num_comments": 410,
                      "send_replies": true,
                      "contest_mode": false,
                      "mod_reports": [],
                      "author_patreon_flair": false,
                      "author_flair_text_color": null,
                      "permalink": "/r/nba/comments/1p18rvx/macmahon_doncic_would_be_eligible_to_sign_a/",
                      "stickied": false,
                      "url": "https://www.reddit.com/r/nba/comments/1p18rvx/macmahon_doncic_would_be_eligible_to_sign_a/",
                      "subreddit_subscribers": 16893176,
                      "created_utc": 1763561659,
                      "num_crossposts": 1,
                      "media": null,
                      "is_video": false
                  }
              },
              {
                  "kind": "t3",
                  "data": {
                      "approved_at_utc": null,
                      "subreddit": "nba",
                      "selftext": "",
                      "author_fullname": "t2_afglk8m",
                      "saved": false,
                      "mod_reason_title": null,
                      "gilded": 0,
                      "clicked": false,
                      "title": "[Highlight] Bronny James hits a long LeFuckYou 3",
                      "link_flair_richtext": [
                          {
                              "e": "text",
                              "t": "Highlight"
                          }
                      ],
                      "subreddit_name_prefixed": "r/nba",
                      "hidden": false,
                      "pwls": 6,
                      "link_flair_css_class": "highlights",
                      "downs": 0,
                      "thumbnail_height": 78,
                      "top_awarded_type": null,
                      "hide_score": false,
                      "name": "t3_1p0zxtv",
                      "quarantine": false,
                      "link_flair_text_color": "light",
                      "upvote_ratio": 0.95,
                      "author_flair_background_color": "#edeff1",
                      "ups": 4150,
                      "total_awards_received": 0,
                      "media_embed": {
                          "content": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2F9oedag&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2F9oedag&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2F9oedag.jpg%3FExpires%3D1763792020395%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DHCb9ixbqqJIg9xPVkWhR9oUBqXYzUNOCw-O9gdKohXY002-%7EUZhwX8nThW2hHlicjOY481GfqhzLusrr-GtbW2YAQk5OoqKV4Ha-Hsptukv1hhCe1C8td%7EM%7EQd%7EZ0CquYLwySh5%7EMOXMjKjSDM3EEXEZZtaXDiOFowkcFt4VJzPsxzjU9XWM9L1ZMgzPjbe5saBn%7EzO66VvwJv9PubCrcgELN3QQsO-S5oMkGXGqD4JbOD1vx2FKNCKTWlKVq%7E0itTgWzkgLHhEhsWW7OiMwCeBSMd4Diz20boNj25hxwzGOTNZxptZsfm1oHOwSBXYVQWImCQlExULXPplps5C5oQ__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                          "width": 600,
                          "scrolling": false,
                          "height": 338
                      },
                      "thumbnail_width": 140,
                      "author_flair_template_id": "cc57a3a0-3feb-11e8-a765-0ee0c6cba6de",
                      "is_original_content": false,
                      "user_reports": [],
                      "secure_media": {
                          "oembed": {
                              "provider_url": "https://streamable.com",
                              "description": "Watch this video on Streamable.",
                              "title": "Watch 9oedag | Streamable",
                              "thumbnail_width": 1920,
                              "height": 338,
                              "width": 600,
                              "html": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2F9oedag&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2F9oedag&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2F9oedag.jpg%3FExpires%3D1763792020395%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DHCb9ixbqqJIg9xPVkWhR9oUBqXYzUNOCw-O9gdKohXY002-%7EUZhwX8nThW2hHlicjOY481GfqhzLusrr-GtbW2YAQk5OoqKV4Ha-Hsptukv1hhCe1C8td%7EM%7EQd%7EZ0CquYLwySh5%7EMOXMjKjSDM3EEXEZZtaXDiOFowkcFt4VJzPsxzjU9XWM9L1ZMgzPjbe5saBn%7EzO66VvwJv9PubCrcgELN3QQsO-S5oMkGXGqD4JbOD1vx2FKNCKTWlKVq%7E0itTgWzkgLHhEhsWW7OiMwCeBSMd4Diz20boNj25hxwzGOTNZxptZsfm1oHOwSBXYVQWImCQlExULXPplps5C5oQ__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                              "version": "1.0",
                              "provider_name": "Streamable",
                              "thumbnail_url": "https://cdn-cf-east.streamable.com/image/9oedag.jpg?Expires=1763792020395&amp;Key-Pair-Id=APKAIEYUVEN4EVB2OKEQ&amp;Signature=HCb9ixbqqJIg9xPVkWhR9oUBqXYzUNOCw-O9gdKohXY002-~UZhwX8nThW2hHlicjOY481GfqhzLusrr-GtbW2YAQk5OoqKV4Ha-Hsptukv1hhCe1C8td~M~Qd~Z0CquYLwySh5~MOXMjKjSDM3EEXEZZtaXDiOFowkcFt4VJzPsxzjU9XWM9L1ZMgzPjbe5saBn~zO66VvwJv9PubCrcgELN3QQsO-S5oMkGXGqD4JbOD1vx2FKNCKTWlKVq~0itTgWzkgLHhEhsWW7OiMwCeBSMd4Diz20boNj25hxwzGOTNZxptZsfm1oHOwSBXYVQWImCQlExULXPplps5C5oQ__",
                              "type": "video",
                              "thumbnail_height": 1080
                          },
                          "type": "streamable.com"
                      },
                      "is_reddit_media_domain": false,
                      "is_meta": false,
                      "category": null,
                      "secure_media_embed": {
                          "content": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2F9oedag&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2F9oedag&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2F9oedag.jpg%3FExpires%3D1763792020395%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DHCb9ixbqqJIg9xPVkWhR9oUBqXYzUNOCw-O9gdKohXY002-%7EUZhwX8nThW2hHlicjOY481GfqhzLusrr-GtbW2YAQk5OoqKV4Ha-Hsptukv1hhCe1C8td%7EM%7EQd%7EZ0CquYLwySh5%7EMOXMjKjSDM3EEXEZZtaXDiOFowkcFt4VJzPsxzjU9XWM9L1ZMgzPjbe5saBn%7EzO66VvwJv9PubCrcgELN3QQsO-S5oMkGXGqD4JbOD1vx2FKNCKTWlKVq%7E0itTgWzkgLHhEhsWW7OiMwCeBSMd4Diz20boNj25hxwzGOTNZxptZsfm1oHOwSBXYVQWImCQlExULXPplps5C5oQ__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                          "width": 600,
                          "scrolling": false,
                          "media_domain_url": "https://www.redditmedia.com/mediaembed/1p0zxtv",
                          "height": 338
                      },
                      "link_flair_text": "Highlight",
                      "can_mod_post": false,
                      "score": 4150,
                      "approved_by": null,
                      "is_created_from_ads_ui": false,
                      "author_premium": false,
                      "thumbnail": "https://external-preview.redd.it/fYS9oBfRi65PqHaj74TkQ5cYNlJYsFpR_SFIomyadqs.jpeg?width=140&amp;height=78&amp;auto=webp&amp;s=59fbfdc9ec35fdd7c7cf41ab678bf909b643d4f8",
                      "edited": false,
                      "author_flair_css_class": "Lakers2",
                      "author_flair_richtext": [
                          {
                              "a": ":lal-2:",
                              "e": "emoji",
                              "u": "https://emoji.redditmedia.com/1qov69yrs4r81_t5_2qo4s/lal-2"
                          },
                          {
                              "e": "text",
                              "t": " Lakers"
                          }
                      ],
                      "gildings": {},
                      "post_hint": "rich:video",
                      "content_categories": null,
                      "is_self": false,
                      "subreddit_type": "public",
                      "created": 1763532820,
                      "link_flair_type": "richtext",
                      "wls": 6,
                      "removed_by_category": null,
                      "banned_by": null,
                      "author_flair_type": "richtext",
                      "domain": "streamable.com",
                      "allow_live_comments": false,
                      "selftext_html": null,
                      "likes": null,
                      "suggested_sort": null,
                      "banned_at_utc": null,
                      "url_overridden_by_dest": "https://streamable.com/9oedag",
                      "view_count": null,
                      "archived": false,
                      "no_follow": false,
                      "is_crosspostable": false,
                      "pinned": false,
                      "over_18": false,
                      "preview": {
                          "images": [
                              {
                                  "source": {
                                      "url": "https://external-preview.redd.it/fYS9oBfRi65PqHaj74TkQ5cYNlJYsFpR_SFIomyadqs.jpeg?auto=webp&amp;s=c98277dd7681b94dd6d7e021baef6ad87eb59987",
                                      "width": 1920,
                                      "height": 1080
                                  },
                                  "resolutions": [
                                      {
                                          "url": "https://external-preview.redd.it/fYS9oBfRi65PqHaj74TkQ5cYNlJYsFpR_SFIomyadqs.jpeg?width=108&amp;crop=smart&amp;auto=webp&amp;s=3c222e18ec4956edca7a50915bf24b3dfa72cd9a",
                                          "width": 108,
                                          "height": 60
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/fYS9oBfRi65PqHaj74TkQ5cYNlJYsFpR_SFIomyadqs.jpeg?width=216&amp;crop=smart&amp;auto=webp&amp;s=569b3ffd63497f66df3bfd8f0e230a5c0339c251",
                                          "width": 216,
                                          "height": 121
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/fYS9oBfRi65PqHaj74TkQ5cYNlJYsFpR_SFIomyadqs.jpeg?width=320&amp;crop=smart&amp;auto=webp&amp;s=93aa430be7571c693d552eb259ca6ce7538f9be2",
                                          "width": 320,
                                          "height": 180
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/fYS9oBfRi65PqHaj74TkQ5cYNlJYsFpR_SFIomyadqs.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=b502c98800b8f834b2e7ff4a64f4240b87bcb612",
                                          "width": 640,
                                          "height": 360
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/fYS9oBfRi65PqHaj74TkQ5cYNlJYsFpR_SFIomyadqs.jpeg?width=960&amp;crop=smart&amp;auto=webp&amp;s=fd9201f6afab1fe70e7e281d84baf85c789c7162",
                                          "width": 960,
                                          "height": 540
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/fYS9oBfRi65PqHaj74TkQ5cYNlJYsFpR_SFIomyadqs.jpeg?width=1080&amp;crop=smart&amp;auto=webp&amp;s=d3ff340cdb6550223f4748e18c360005244a8165",
                                          "width": 1080,
                                          "height": 607
                                      }
                                  ],
                                  "variants": {},
                                  "id": "fYS9oBfRi65PqHaj74TkQ5cYNlJYsFpR_SFIomyadqs"
                              }
                          ],
                          "enabled": false
                      },
                      "all_awardings": [],
                      "awarders": [],
                      "media_only": false,
                      "link_flair_template_id": "11e1d3fc-5c54-11e4-8ccc-12313b0e448d",
                      "can_gild": false,
                      "spoiler": false,
                      "locked": false,
                      "author_flair_text": ":lal-2: Lakers",
                      "treatment_tags": [],
                      "visited": false,
                      "removed_by": null,
                      "mod_note": null,
                      "distinguished": null,
                      "subreddit_id": "t5_2qo4s",
                      "author_is_blocked": false,
                      "mod_reason_by": null,
                      "num_reports": null,
                      "removal_reason": null,
                      "link_flair_background_color": "#0079d3",
                      "id": "1p0zxtv",
                      "is_robot_indexable": true,
                      "report_reasons": null,
                      "author": "VGstuffed",
                      "discussion_type": null,
                      "num_comments": 163,
                      "send_replies": true,
                      "contest_mode": false,
                      "mod_reports": [],
                      "author_patreon_flair": false,
                      "author_flair_text_color": "dark",
                      "permalink": "/r/nba/comments/1p0zxtv/highlight_bronny_james_hits_a_long_lefuckyou_3/",
                      "stickied": false,
                      "url": "https://streamable.com/9oedag",
                      "subreddit_subscribers": 16893176,
                      "created_utc": 1763532820,
                      "num_crossposts": 0,
                      "media": {
                          "oembed": {
                              "provider_url": "https://streamable.com",
                              "description": "Watch this video on Streamable.",
                              "title": "Watch 9oedag | Streamable",
                              "thumbnail_width": 1920,
                              "height": 338,
                              "width": 600,
                              "html": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2F9oedag&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2F9oedag&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2F9oedag.jpg%3FExpires%3D1763792020395%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DHCb9ixbqqJIg9xPVkWhR9oUBqXYzUNOCw-O9gdKohXY002-%7EUZhwX8nThW2hHlicjOY481GfqhzLusrr-GtbW2YAQk5OoqKV4Ha-Hsptukv1hhCe1C8td%7EM%7EQd%7EZ0CquYLwySh5%7EMOXMjKjSDM3EEXEZZtaXDiOFowkcFt4VJzPsxzjU9XWM9L1ZMgzPjbe5saBn%7EzO66VvwJv9PubCrcgELN3QQsO-S5oMkGXGqD4JbOD1vx2FKNCKTWlKVq%7E0itTgWzkgLHhEhsWW7OiMwCeBSMd4Diz20boNj25hxwzGOTNZxptZsfm1oHOwSBXYVQWImCQlExULXPplps5C5oQ__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                              "version": "1.0",
                              "provider_name": "Streamable",
                              "thumbnail_url": "https://cdn-cf-east.streamable.com/image/9oedag.jpg?Expires=1763792020395&amp;Key-Pair-Id=APKAIEYUVEN4EVB2OKEQ&amp;Signature=HCb9ixbqqJIg9xPVkWhR9oUBqXYzUNOCw-O9gdKohXY002-~UZhwX8nThW2hHlicjOY481GfqhzLusrr-GtbW2YAQk5OoqKV4Ha-Hsptukv1hhCe1C8td~M~Qd~Z0CquYLwySh5~MOXMjKjSDM3EEXEZZtaXDiOFowkcFt4VJzPsxzjU9XWM9L1ZMgzPjbe5saBn~zO66VvwJv9PubCrcgELN3QQsO-S5oMkGXGqD4JbOD1vx2FKNCKTWlKVq~0itTgWzkgLHhEhsWW7OiMwCeBSMd4Diz20boNj25hxwzGOTNZxptZsfm1oHOwSBXYVQWImCQlExULXPplps5C5oQ__",
                              "type": "video",
                              "thumbnail_height": 1080
                          },
                          "type": "streamable.com"
                      },
                      "is_video": false
                  }
              },
              {
                  "kind": "t3",
                  "data": {
                      "approved_at_utc": null,
                      "subreddit": "nba",
                      "selftext": "",
                      "author_fullname": "t2_8lemz",
                      "saved": false,
                      "mod_reason_title": null,
                      "gilded": 0,
                      "clicked": false,
                      "title": "[Highlight] Reaves to LeBron to Ayton for the score!",
                      "link_flair_richtext": [
                          {
                              "e": "text",
                              "t": "Highlight"
                          }
                      ],
                      "subreddit_name_prefixed": "r/nba",
                      "hidden": false,
                      "pwls": 6,
                      "link_flair_css_class": "highlights",
                      "downs": 0,
                      "thumbnail_height": 78,
                      "top_awarded_type": null,
                      "hide_score": false,
                      "name": "t3_1p0zcon",
                      "quarantine": false,
                      "link_flair_text_color": "light",
                      "upvote_ratio": 0.96,
                      "author_flair_background_color": null,
                      "ups": 4050,
                      "total_awards_received": 0,
                      "media_embed": {
                          "content": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2F00hhn2&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2F00hhn2&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2F00hhn2.jpg%3FExpires%3D1763790027061%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3Dcm5XMMLmvRNp4X5sCLzTzXy1Fg-XtKcCR3LN827WymV5FrvzRRECg2Vy300yeBTikEA8aw69gAHY7aOH%7EmEL-lpH-jWQz7FSs0SlJU28s4yeHo46mVtL6V7zWRx5SVrrPuKd8nB2mf5mcW7zTFmUQOY0XbfvqHiKGQWxF%7ECk0AiPR7iC3FZ5DuG5EohSu%7EAIxUoXRyb-2UqSmIM%7ExzusLnGqpZEYxYDMVyxi3JiWe3kpr9n7gTj7bBOE8Jih%7EBZIcY3hs9jKf2fcLH8CyhFvOSnC3samdess9EQbu3udVX6l-pHJSdMS72KwnjJt0SbnpKomW4lubQJgcRg6ombeVg__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                          "width": 600,
                          "scrolling": false,
                          "height": 338
                      },
                      "thumbnail_width": 140,
                      "author_flair_template_id": null,
                      "is_original_content": false,
                      "user_reports": [],
                      "secure_media": {
                          "oembed": {
                              "provider_url": "https://streamable.com",
                              "description": "Watch \"[Highlight] Reaves to LeBron to Ayton for the score!\" on Streamable.",
                              "title": "[Highlight] Reaves to LeBron to Ayton for the score!",
                              "thumbnail_width": 1920,
                              "height": 338,
                              "width": 600,
                              "html": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2F00hhn2&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2F00hhn2&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2F00hhn2.jpg%3FExpires%3D1763790027061%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3Dcm5XMMLmvRNp4X5sCLzTzXy1Fg-XtKcCR3LN827WymV5FrvzRRECg2Vy300yeBTikEA8aw69gAHY7aOH%7EmEL-lpH-jWQz7FSs0SlJU28s4yeHo46mVtL6V7zWRx5SVrrPuKd8nB2mf5mcW7zTFmUQOY0XbfvqHiKGQWxF%7ECk0AiPR7iC3FZ5DuG5EohSu%7EAIxUoXRyb-2UqSmIM%7ExzusLnGqpZEYxYDMVyxi3JiWe3kpr9n7gTj7bBOE8Jih%7EBZIcY3hs9jKf2fcLH8CyhFvOSnC3samdess9EQbu3udVX6l-pHJSdMS72KwnjJt0SbnpKomW4lubQJgcRg6ombeVg__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                              "version": "1.0",
                              "provider_name": "Streamable",
                              "thumbnail_url": "https://cdn-cf-east.streamable.com/image/00hhn2.jpg?Expires=1763790027061&amp;Key-Pair-Id=APKAIEYUVEN4EVB2OKEQ&amp;Signature=cm5XMMLmvRNp4X5sCLzTzXy1Fg-XtKcCR3LN827WymV5FrvzRRECg2Vy300yeBTikEA8aw69gAHY7aOH~mEL-lpH-jWQz7FSs0SlJU28s4yeHo46mVtL6V7zWRx5SVrrPuKd8nB2mf5mcW7zTFmUQOY0XbfvqHiKGQWxF~Ck0AiPR7iC3FZ5DuG5EohSu~AIxUoXRyb-2UqSmIM~xzusLnGqpZEYxYDMVyxi3JiWe3kpr9n7gTj7bBOE8Jih~BZIcY3hs9jKf2fcLH8CyhFvOSnC3samdess9EQbu3udVX6l-pHJSdMS72KwnjJt0SbnpKomW4lubQJgcRg6ombeVg__",
                              "type": "video",
                              "thumbnail_height": 1080
                          },
                          "type": "streamable.com"
                      },
                      "is_reddit_media_domain": false,
                      "is_meta": false,
                      "category": null,
                      "secure_media_embed": {
                          "content": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2F00hhn2&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2F00hhn2&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2F00hhn2.jpg%3FExpires%3D1763790027061%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3Dcm5XMMLmvRNp4X5sCLzTzXy1Fg-XtKcCR3LN827WymV5FrvzRRECg2Vy300yeBTikEA8aw69gAHY7aOH%7EmEL-lpH-jWQz7FSs0SlJU28s4yeHo46mVtL6V7zWRx5SVrrPuKd8nB2mf5mcW7zTFmUQOY0XbfvqHiKGQWxF%7ECk0AiPR7iC3FZ5DuG5EohSu%7EAIxUoXRyb-2UqSmIM%7ExzusLnGqpZEYxYDMVyxi3JiWe3kpr9n7gTj7bBOE8Jih%7EBZIcY3hs9jKf2fcLH8CyhFvOSnC3samdess9EQbu3udVX6l-pHJSdMS72KwnjJt0SbnpKomW4lubQJgcRg6ombeVg__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                          "width": 600,
                          "scrolling": false,
                          "media_domain_url": "https://www.redditmedia.com/mediaembed/1p0zcon",
                          "height": 338
                      },
                      "link_flair_text": "Highlight",
                      "can_mod_post": false,
                      "score": 4050,
                      "approved_by": null,
                      "is_created_from_ads_ui": false,
                      "author_premium": false,
                      "thumbnail": "https://external-preview.redd.it/qDEMQ43MrPRxwIGMNpZWg7XXlLZ-LakVZs2WYoEyZxA.jpeg?width=140&amp;height=78&amp;auto=webp&amp;s=168d24e3870094da3e2f04681a6f54a33f74cdb4",
                      "edited": false,
                      "author_flair_css_class": null,
                      "author_flair_richtext": [],
                      "gildings": {},
                      "post_hint": "rich:video",
                      "content_categories": null,
                      "is_self": false,
                      "subreddit_type": "public",
                      "created": 1763530818,
                      "link_flair_type": "richtext",
                      "wls": 6,
                      "removed_by_category": null,
                      "banned_by": null,
                      "author_flair_type": "text",
                      "domain": "streamable.com",
                      "allow_live_comments": false,
                      "selftext_html": null,
                      "likes": null,
                      "suggested_sort": null,
                      "banned_at_utc": null,
                      "url_overridden_by_dest": "https://streamable.com/00hhn2",
                      "view_count": null,
                      "archived": false,
                      "no_follow": false,
                      "is_crosspostable": false,
                      "pinned": false,
                      "over_18": false,
                      "preview": {
                          "images": [
                              {
                                  "source": {
                                      "url": "https://external-preview.redd.it/qDEMQ43MrPRxwIGMNpZWg7XXlLZ-LakVZs2WYoEyZxA.jpeg?auto=webp&amp;s=ed4c5f6d1e7c9b945940df87f64b1f046c6b34b1",
                                      "width": 1920,
                                      "height": 1080
                                  },
                                  "resolutions": [
                                      {
                                          "url": "https://external-preview.redd.it/qDEMQ43MrPRxwIGMNpZWg7XXlLZ-LakVZs2WYoEyZxA.jpeg?width=108&amp;crop=smart&amp;auto=webp&amp;s=f7a85f4ea209db912a7f49641950294a771ea824",
                                          "width": 108,
                                          "height": 60
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/qDEMQ43MrPRxwIGMNpZWg7XXlLZ-LakVZs2WYoEyZxA.jpeg?width=216&amp;crop=smart&amp;auto=webp&amp;s=6fc3bb588f1600785229823f2a8e606ac260ff5a",
                                          "width": 216,
                                          "height": 121
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/qDEMQ43MrPRxwIGMNpZWg7XXlLZ-LakVZs2WYoEyZxA.jpeg?width=320&amp;crop=smart&amp;auto=webp&amp;s=571e820cd7d95f8fd20ef9cb1faf67ba7c112c64",
                                          "width": 320,
                                          "height": 180
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/qDEMQ43MrPRxwIGMNpZWg7XXlLZ-LakVZs2WYoEyZxA.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=2257cecad6e3e21bc2293b8a5bb0a547baf86916",
                                          "width": 640,
                                          "height": 360
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/qDEMQ43MrPRxwIGMNpZWg7XXlLZ-LakVZs2WYoEyZxA.jpeg?width=960&amp;crop=smart&amp;auto=webp&amp;s=c3f30452ab6c0d2db123e50c72d2a9bad14628ee",
                                          "width": 960,
                                          "height": 540
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/qDEMQ43MrPRxwIGMNpZWg7XXlLZ-LakVZs2WYoEyZxA.jpeg?width=1080&amp;crop=smart&amp;auto=webp&amp;s=236cee7a11736dc7bd8cdf274a28992e00672f58",
                                          "width": 1080,
                                          "height": 607
                                      }
                                  ],
                                  "variants": {},
                                  "id": "qDEMQ43MrPRxwIGMNpZWg7XXlLZ-LakVZs2WYoEyZxA"
                              }
                          ],
                          "enabled": false
                      },
                      "all_awardings": [],
                      "awarders": [],
                      "media_only": false,
                      "link_flair_template_id": "11e1d3fc-5c54-11e4-8ccc-12313b0e448d",
                      "can_gild": false,
                      "spoiler": false,
                      "locked": false,
                      "author_flair_text": null,
                      "treatment_tags": [],
                      "visited": false,
                      "removed_by": null,
                      "mod_note": null,
                      "distinguished": null,
                      "subreddit_id": "t5_2qo4s",
                      "author_is_blocked": false,
                      "mod_reason_by": null,
                      "num_reports": null,
                      "removal_reason": null,
                      "link_flair_background_color": "#0079d3",
                      "id": "1p0zcon",
                      "is_robot_indexable": true,
                      "report_reasons": null,
                      "author": "Large_banana_hammock",
                      "discussion_type": null,
                      "num_comments": 165,
                      "send_replies": true,
                      "contest_mode": false,
                      "mod_reports": [],
                      "author_patreon_flair": false,
                      "author_flair_text_color": null,
                      "permalink": "/r/nba/comments/1p0zcon/highlight_reaves_to_lebron_to_ayton_for_the_score/",
                      "stickied": false,
                      "url": "https://streamable.com/00hhn2",
                      "subreddit_subscribers": 16893176,
                      "created_utc": 1763530818,
                      "num_crossposts": 0,
                      "media": {
                          "oembed": {
                              "provider_url": "https://streamable.com",
                              "description": "Watch \"[Highlight] Reaves to LeBron to Ayton for the score!\" on Streamable.",
                              "title": "[Highlight] Reaves to LeBron to Ayton for the score!",
                              "thumbnail_width": 1920,
                              "height": 338,
                              "width": 600,
                              "html": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2F00hhn2&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2F00hhn2&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2F00hhn2.jpg%3FExpires%3D1763790027061%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3Dcm5XMMLmvRNp4X5sCLzTzXy1Fg-XtKcCR3LN827WymV5FrvzRRECg2Vy300yeBTikEA8aw69gAHY7aOH%7EmEL-lpH-jWQz7FSs0SlJU28s4yeHo46mVtL6V7zWRx5SVrrPuKd8nB2mf5mcW7zTFmUQOY0XbfvqHiKGQWxF%7ECk0AiPR7iC3FZ5DuG5EohSu%7EAIxUoXRyb-2UqSmIM%7ExzusLnGqpZEYxYDMVyxi3JiWe3kpr9n7gTj7bBOE8Jih%7EBZIcY3hs9jKf2fcLH8CyhFvOSnC3samdess9EQbu3udVX6l-pHJSdMS72KwnjJt0SbnpKomW4lubQJgcRg6ombeVg__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                              "version": "1.0",
                              "provider_name": "Streamable",
                              "thumbnail_url": "https://cdn-cf-east.streamable.com/image/00hhn2.jpg?Expires=1763790027061&amp;Key-Pair-Id=APKAIEYUVEN4EVB2OKEQ&amp;Signature=cm5XMMLmvRNp4X5sCLzTzXy1Fg-XtKcCR3LN827WymV5FrvzRRECg2Vy300yeBTikEA8aw69gAHY7aOH~mEL-lpH-jWQz7FSs0SlJU28s4yeHo46mVtL6V7zWRx5SVrrPuKd8nB2mf5mcW7zTFmUQOY0XbfvqHiKGQWxF~Ck0AiPR7iC3FZ5DuG5EohSu~AIxUoXRyb-2UqSmIM~xzusLnGqpZEYxYDMVyxi3JiWe3kpr9n7gTj7bBOE8Jih~BZIcY3hs9jKf2fcLH8CyhFvOSnC3samdess9EQbu3udVX6l-pHJSdMS72KwnjJt0SbnpKomW4lubQJgcRg6ombeVg__",
                              "type": "video",
                              "thumbnail_height": 1080
                          },
                          "type": "streamable.com"
                      },
                      "is_video": false
                  }
              },
              {
                  "kind": "t3",
                  "data": {
                      "approved_at_utc": null,
                      "subreddit": "nba",
                      "selftext": "Solid game by LeBron, he looked rusty early but was facilitating excellently down the stretch\n\nSource: [https://www.espn.com.au/nba/boxscore/\\_/gameId/401810108](https://www.espn.com.au/nba/boxscore/_/gameId/401810108)",
                      "author_fullname": "t2_1ybu5s3406",
                      "saved": false,
                      "mod_reason_title": null,
                      "gilded": 0,
                      "clicked": false,
                      "title": "LeBron James checks out in his return with 11 points, 12 assists and 3 rebounds in 30 minutes",
                      "link_flair_richtext": [],
                      "subreddit_name_prefixed": "r/nba",
                      "hidden": false,
                      "pwls": 6,
                      "link_flair_css_class": null,
                      "downs": 0,
                      "thumbnail_height": null,
                      "top_awarded_type": null,
                      "hide_score": false,
                      "name": "t3_1p0znfc",
                      "quarantine": false,
                      "link_flair_text_color": "dark",
                      "upvote_ratio": 0.97,
                      "author_flair_background_color": "#edeff1",
                      "subreddit_type": "public",
                      "ups": 3636,
                      "total_awards_received": 0,
                      "media_embed": {},
                      "thumbnail_width": null,
                      "author_flair_template_id": "cc57a3a0-3feb-11e8-a765-0ee0c6cba6de",
                      "is_original_content": false,
                      "user_reports": [],
                      "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": 3636,
                      "approved_by": null,
                      "is_created_from_ads_ui": false,
                      "author_premium": false,
                      "thumbnail": "self",
                      "edited": false,
                      "author_flair_css_class": "Lakers2",
                      "author_flair_richtext": [
                          {
                              "a": ":lal-2:",
                              "e": "emoji",
                              "u": "https://emoji.redditmedia.com/1qov69yrs4r81_t5_2qo4s/lal-2"
                          },
                          {
                              "e": "text",
                              "t": " Lakers"
                          }
                      ],
                      "gildings": {},
                      "post_hint": "self",
                      "content_categories": null,
                      "is_self": true,
                      "mod_note": null,
                      "created": 1763531833,
                      "link_flair_type": "text",
                      "wls": 6,
                      "removed_by_category": null,
                      "banned_by": null,
                      "author_flair_type": "richtext",
                      "domain": "self.nba",
                      "allow_live_comments": false,
                      "selftext_html": "&lt;!-- SC_OFF --&gt;&lt;div class=\"md\"&gt;&lt;p&gt;Solid game by LeBron, he looked rusty early but was facilitating excellently down the stretch&lt;/p&gt;\n\n&lt;p&gt;Source: &lt;a href=\"https://www.espn.com.au/nba/boxscore/_/gameId/401810108\"&gt;https://www.espn.com.au/nba/boxscore/_/gameId/401810108&lt;/a&gt;&lt;/p&gt;\n&lt;/div&gt;&lt;!-- SC_ON --&gt;",
                      "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,
                      "preview": {
                          "images": [
                              {
                                  "source": {
                                      "url": "https://external-preview.redd.it/-iWeUG8eIAxcGw2EZvK6rZCfeka0e3vnfFT1J3LZ0lg.png?auto=webp&amp;s=900cbb3d576c4452f862fcda4debb0114c39fb42",
                                      "width": 400,
                                      "height": 400
                                  },
                                  "resolutions": [
                                      {
                                          "url": "https://external-preview.redd.it/-iWeUG8eIAxcGw2EZvK6rZCfeka0e3vnfFT1J3LZ0lg.png?width=108&amp;crop=smart&amp;auto=webp&amp;s=704578dbf63d8d9bf94257210b57270b10ad2f7c",
                                          "width": 108,
                                          "height": 108
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/-iWeUG8eIAxcGw2EZvK6rZCfeka0e3vnfFT1J3LZ0lg.png?width=216&amp;crop=smart&amp;auto=webp&amp;s=b857744e5d66655b4a0ea60b054c82b61e66a68f",
                                          "width": 216,
                                          "height": 216
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/-iWeUG8eIAxcGw2EZvK6rZCfeka0e3vnfFT1J3LZ0lg.png?width=320&amp;crop=smart&amp;auto=webp&amp;s=46d25e41dc039b77b0751db20d5707dfb14c70a9",
                                          "width": 320,
                                          "height": 320
                                      }
                                  ],
                                  "variants": {},
                                  "id": "-iWeUG8eIAxcGw2EZvK6rZCfeka0e3vnfFT1J3LZ0lg"
                              }
                          ],
                          "enabled": false
                      },
                      "all_awardings": [],
                      "awarders": [],
                      "media_only": false,
                      "can_gild": false,
                      "spoiler": false,
                      "locked": false,
                      "author_flair_text": ":lal-2: Lakers",
                      "treatment_tags": [],
                      "visited": false,
                      "removed_by": null,
                      "num_reports": null,
                      "distinguished": null,
                      "subreddit_id": "t5_2qo4s",
                      "author_is_blocked": false,
                      "mod_reason_by": null,
                      "removal_reason": null,
                      "link_flair_background_color": "",
                      "id": "1p0znfc",
                      "is_robot_indexable": true,
                      "report_reasons": null,
                      "author": "Competitive-Day-5675",
                      "discussion_type": null,
                      "num_comments": 195,
                      "send_replies": true,
                      "contest_mode": false,
                      "mod_reports": [],
                      "author_patreon_flair": false,
                      "author_flair_text_color": "dark",
                      "permalink": "/r/nba/comments/1p0znfc/lebron_james_checks_out_in_his_return_with_11/",
                      "stickied": false,
                      "url": "https://www.reddit.com/r/nba/comments/1p0znfc/lebron_james_checks_out_in_his_return_with_11/",
                      "subreddit_subscribers": 16893176,
                      "created_utc": 1763531833,
                      "num_crossposts": 0,
                      "media": null,
                      "is_video": false
                  }
              },
              {
                  "kind": "t3",
                  "data": {
                      "approved_at_utc": null,
                      "subreddit": "nba",
                      "selftext": "I can't believe this former punchline of a team is on a 12 game win streak and it's barely being discussed. Did we all have that on our bingo card?\n\nPistons fans have been through it, watching other teams beat the odds to the top draft picks (aside from Cade)\n\nNow they're 13-2 on a 12 game win streak and barely a noise being made by the media.\n\nI know I don't need to say it, but pick any high profile team and put them on a 12 game win streak, watch the media get some TOP grade, top grade wood.\n\nHappy for you Detroit! Hope it's the start of something special",
                      "author_fullname": "t2_5rwe8u0xt",
                      "saved": false,
                      "mod_reason_title": null,
                      "gilded": 0,
                      "clicked": false,
                      "title": "The Pistons are the best NBA story so far and no one cares",
                      "link_flair_richtext": [],
                      "subreddit_name_prefixed": "r/nba",
                      "hidden": false,
                      "pwls": 6,
                      "link_flair_css_class": null,
                      "downs": 0,
                      "thumbnail_height": null,
                      "top_awarded_type": null,
                      "hide_score": false,
                      "name": "t3_1p0wk6v",
                      "quarantine": false,
                      "link_flair_text_color": "dark",
                      "upvote_ratio": 0.92,
                      "author_flair_background_color": null,
                      "subreddit_type": "public",
                      "ups": 4348,
                      "total_awards_received": 0,
                      "media_embed": {},
                      "thumbnail_width": null,
                      "author_flair_template_id": null,
                      "is_original_content": false,
                      "user_reports": [],
                      "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": 4348,
                      "approved_by": null,
                      "is_created_from_ads_ui": false,
                      "author_premium": false,
                      "thumbnail": "self",
                      "edited": 1763522226,
                      "author_flair_css_class": null,
                      "author_flair_richtext": [],
                      "gildings": {},
                      "content_categories": null,
                      "is_self": true,
                      "mod_note": null,
                      "created": 1763522126,
                      "link_flair_type": "text",
                      "wls": 6,
                      "removed_by_category": null,
                      "banned_by": null,
                      "author_flair_type": "text",
                      "domain": "self.nba",
                      "allow_live_comments": false,
                      "selftext_html": "&lt;!-- SC_OFF --&gt;&lt;div class=\"md\"&gt;&lt;p&gt;I can&amp;#39;t believe this former punchline of a team is on a 12 game win streak and it&amp;#39;s barely being discussed. Did we all have that on our bingo card?&lt;/p&gt;\n\n&lt;p&gt;Pistons fans have been through it, watching other teams beat the odds to the top draft picks (aside from Cade)&lt;/p&gt;\n\n&lt;p&gt;Now they&amp;#39;re 13-2 on a 12 game win streak and barely a noise being made by the media.&lt;/p&gt;\n\n&lt;p&gt;I know I don&amp;#39;t need to say it, but pick any high profile team and put them on a 12 game win streak, watch the media get some TOP grade, top grade wood.&lt;/p&gt;\n\n&lt;p&gt;Happy for you Detroit! Hope it&amp;#39;s the start of something special&lt;/p&gt;\n&lt;/div&gt;&lt;!-- SC_ON --&gt;",
                      "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": [],
                      "awarders": [],
                      "media_only": false,
                      "can_gild": false,
                      "spoiler": false,
                      "locked": false,
                      "author_flair_text": null,
                      "treatment_tags": [],
                      "visited": false,
                      "removed_by": null,
                      "num_reports": null,
                      "distinguished": null,
                      "subreddit_id": "t5_2qo4s",
                      "author_is_blocked": false,
                      "mod_reason_by": null,
                      "removal_reason": null,
                      "link_flair_background_color": "",
                      "id": "1p0wk6v",
                      "is_robot_indexable": true,
                      "report_reasons": null,
                      "author": "Diqt",
                      "discussion_type": null,
                      "num_comments": 586,
                      "send_replies": false,
                      "contest_mode": false,
                      "mod_reports": [],
                      "author_patreon_flair": false,
                      "author_flair_text_color": null,
                      "permalink": "/r/nba/comments/1p0wk6v/the_pistons_are_the_best_nba_story_so_far_and_no/",
                      "stickied": false,
                      "url": "https://www.reddit.com/r/nba/comments/1p0wk6v/the_pistons_are_the_best_nba_story_so_far_and_no/",
                      "subreddit_subscribers": 16893176,
                      "created_utc": 1763522126,
                      "num_crossposts": 2,
                      "media": null,
                      "is_video": false
                  }
              },
              {
                  "kind": "t3",
                  "data": {
                      "approved_at_utc": null,
                      "subreddit": "nba",
                      "selftext": "# Luka Doncic is Averaging the Most Free Throw Attempts by a Guard in NBA History\n\n**Top 10 Free Throw Attempts by a Guard in NBA History**\n\n| Rank | Player           | FTA   | Season  |\n|------|------------------|-------|---------|\n| 1 🏆   | **Luka Doncic**      | **12.5**  | **2025-26** |\n| 2    | Jerry West       | 12.4  | 1965-66 |\n| 3    | Jerry West       | 12.3  | 1961-62 |\n| 4    | Oscar Robertson  | 11.9  | 1963-64 |\n| 5    | Michael Jordan   | 11.9  | 1986-87 |\n| 6    | James Harden     | 11.8  | 2019-20 |\n| 7    | Oscar Robertson  | 11.6  | 1965-66 |\n| 8    | Allen Iverson    | 11.5  | 2005-06 |\n| 9    | Oscar Robertson  | 11.2  | 1960-61 |\n| 10   | World B. Free    | 11.2  | 1979-80 |\n\n————————\n\n2025-26 Luka is averaging the Most FTA by a guard in NBA History, and the most since 2019-20 James Harden.\n\n\n[Source](https://www.statmuse.com/ask?query=highest+free+throw+attempts+per+game+in+a+season+by+a+guard&amp;preferred_domain=&amp;direct=true&amp;l=&amp;t=1763562694502)",
                      "author_fullname": "t2_zh844",
                      "saved": false,
                      "mod_reason_title": null,
                      "gilded": 0,
                      "clicked": false,
                      "title": "Luka Doncic is Averaging the Most Free Throw Attempts by a Guard in NBA History",
                      "link_flair_richtext": [],
                      "subreddit_name_prefixed": "r/nba",
                      "hidden": false,
                      "pwls": 6,
                      "link_flair_css_class": null,
                      "downs": 0,
                      "thumbnail_height": null,
                      "top_awarded_type": null,
                      "hide_score": false,
                      "name": "t3_1p19n2v",
                      "quarantine": false,
                      "link_flair_text_color": "dark",
                      "upvote_ratio": 0.91,
                      "author_flair_background_color": "",
                      "subreddit_type": "public",
                      "ups": 494,
                      "total_awards_received": 0,
                      "media_embed": {},
                      "thumbnail_width": null,
                      "author_flair_template_id": null,
                      "is_original_content": false,
                      "user_reports": [],
                      "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": 494,
                      "approved_by": null,
                      "is_created_from_ads_ui": false,
                      "author_premium": false,
                      "thumbnail": "self",
                      "edited": 1763570978,
                      "author_flair_css_class": "Heat2",
                      "author_flair_richtext": [
                          {
                              "e": "text",
                              "t": "[MIA] Dwyane Wade"
                          }
                      ],
                      "gildings": {},
                      "post_hint": "self",
                      "content_categories": null,
                      "is_self": true,
                      "mod_note": null,
                      "created": 1763563759,
                      "link_flair_type": "text",
                      "wls": 6,
                      "removed_by_category": null,
                      "banned_by": null,
                      "author_flair_type": "richtext",
                      "domain": "self.nba",
                      "allow_live_comments": false,
                      "selftext_html": "&lt;!-- SC_OFF --&gt;&lt;div class=\"md\"&gt;&lt;h1&gt;Luka Doncic is Averaging the Most Free Throw Attempts by a Guard in NBA History&lt;/h1&gt;\n\n&lt;p&gt;&lt;strong&gt;Top 10 Free Throw Attempts by a Guard in NBA History&lt;/strong&gt;&lt;/p&gt;\n\n&lt;table&gt;&lt;thead&gt;\n&lt;tr&gt;\n&lt;th&gt;Rank&lt;/th&gt;\n&lt;th&gt;Player&lt;/th&gt;\n&lt;th&gt;FTA&lt;/th&gt;\n&lt;th&gt;Season&lt;/th&gt;\n&lt;/tr&gt;\n&lt;/thead&gt;&lt;tbody&gt;\n&lt;tr&gt;\n&lt;td&gt;1 🏆&lt;/td&gt;\n&lt;td&gt;&lt;strong&gt;Luka Doncic&lt;/strong&gt;&lt;/td&gt;\n&lt;td&gt;&lt;strong&gt;12.5&lt;/strong&gt;&lt;/td&gt;\n&lt;td&gt;&lt;strong&gt;2025-26&lt;/strong&gt;&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td&gt;2&lt;/td&gt;\n&lt;td&gt;Jerry West&lt;/td&gt;\n&lt;td&gt;12.4&lt;/td&gt;\n&lt;td&gt;1965-66&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td&gt;3&lt;/td&gt;\n&lt;td&gt;Jerry West&lt;/td&gt;\n&lt;td&gt;12.3&lt;/td&gt;\n&lt;td&gt;1961-62&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td&gt;4&lt;/td&gt;\n&lt;td&gt;Oscar Robertson&lt;/td&gt;\n&lt;td&gt;11.9&lt;/td&gt;\n&lt;td&gt;1963-64&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td&gt;5&lt;/td&gt;\n&lt;td&gt;Michael Jordan&lt;/td&gt;\n&lt;td&gt;11.9&lt;/td&gt;\n&lt;td&gt;1986-87&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td&gt;6&lt;/td&gt;\n&lt;td&gt;James Harden&lt;/td&gt;\n&lt;td&gt;11.8&lt;/td&gt;\n&lt;td&gt;2019-20&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td&gt;7&lt;/td&gt;\n&lt;td&gt;Oscar Robertson&lt;/td&gt;\n&lt;td&gt;11.6&lt;/td&gt;\n&lt;td&gt;1965-66&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td&gt;8&lt;/td&gt;\n&lt;td&gt;Allen Iverson&lt;/td&gt;\n&lt;td&gt;11.5&lt;/td&gt;\n&lt;td&gt;2005-06&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td&gt;9&lt;/td&gt;\n&lt;td&gt;Oscar Robertson&lt;/td&gt;\n&lt;td&gt;11.2&lt;/td&gt;\n&lt;td&gt;1960-61&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td&gt;10&lt;/td&gt;\n&lt;td&gt;World B. Free&lt;/td&gt;\n&lt;td&gt;11.2&lt;/td&gt;\n&lt;td&gt;1979-80&lt;/td&gt;\n&lt;/tr&gt;\n&lt;/tbody&gt;&lt;/table&gt;\n\n&lt;p&gt;————————&lt;/p&gt;\n\n&lt;p&gt;2025-26 Luka is averaging the Most FTA by a guard in NBA History, and the most since 2019-20 James Harden.&lt;/p&gt;\n\n&lt;p&gt;&lt;a href=\"https://www.statmuse.com/ask?query=highest+free+throw+attempts+per+game+in+a+season+by+a+guard&amp;amp;preferred_domain=&amp;amp;direct=true&amp;amp;l=&amp;amp;t=1763562694502\"&gt;Source&lt;/a&gt;&lt;/p&gt;\n&lt;/div&gt;&lt;!-- SC_ON --&gt;",
                      "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,
                      "preview": {
                          "images": [
                              {
                                  "source": {
                                      "url": "https://external-preview.redd.it/pwf8Rj7KrzJc8kPc40qKYC3bTafiC2QahduQ39KzRhg.png?auto=webp&amp;s=78f8a0e760fba9d124e98422674f1b5bcc40a8a0",
                                      "width": 1200,
                                      "height": 630
                                  },
                                  "resolutions": [
                                      {
                                          "url": "https://external-preview.redd.it/pwf8Rj7KrzJc8kPc40qKYC3bTafiC2QahduQ39KzRhg.png?width=108&amp;crop=smart&amp;auto=webp&amp;s=967f7b4b8ea1496772b1075da28cb24d8ffdc7e4",
                                          "width": 108,
                                          "height": 56
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/pwf8Rj7KrzJc8kPc40qKYC3bTafiC2QahduQ39KzRhg.png?width=216&amp;crop=smart&amp;auto=webp&amp;s=5eeddc4571eeed9c8962407ad2be94828a2e3989",
                                          "width": 216,
                                          "height": 113
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/pwf8Rj7KrzJc8kPc40qKYC3bTafiC2QahduQ39KzRhg.png?width=320&amp;crop=smart&amp;auto=webp&amp;s=7e0a048bc27cc573f40842db8a156bcfc0ac780f",
                                          "width": 320,
                                          "height": 168
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/pwf8Rj7KrzJc8kPc40qKYC3bTafiC2QahduQ39KzRhg.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=a3011e088624ff6b09defd125a44ce064e357974",
                                          "width": 640,
                                          "height": 336
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/pwf8Rj7KrzJc8kPc40qKYC3bTafiC2QahduQ39KzRhg.png?width=960&amp;crop=smart&amp;auto=webp&amp;s=ec64e96da7bbfd84ce95e89a0a52ff6eecbb24f3",
                                          "width": 960,
                                          "height": 504
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/pwf8Rj7KrzJc8kPc40qKYC3bTafiC2QahduQ39KzRhg.png?width=1080&amp;crop=smart&amp;auto=webp&amp;s=e69578c0ccccc922dd2796dfc614d5f7605517c4",
                                          "width": 1080,
                                          "height": 567
                                      }
                                  ],
                                  "variants": {},
                                  "id": "pwf8Rj7KrzJc8kPc40qKYC3bTafiC2QahduQ39KzRhg"
                              }
                          ],
                          "enabled": false
                      },
                      "all_awardings": [],
                      "awarders": [],
                      "media_only": false,
                      "can_gild": false,
                      "spoiler": false,
                      "locked": false,
                      "author_flair_text": "[MIA] Dwyane Wade",
                      "treatment_tags": [],
                      "visited": false,
                      "removed_by": null,
                      "num_reports": null,
                      "distinguished": null,
                      "subreddit_id": "t5_2qo4s",
                      "author_is_blocked": false,
                      "mod_reason_by": null,
                      "removal_reason": null,
                      "link_flair_background_color": "",
                      "id": "1p19n2v",
                      "is_robot_indexable": true,
                      "report_reasons": null,
                      "author": "AashyLarry",
                      "discussion_type": null,
                      "num_comments": 349,
                      "send_replies": true,
                      "contest_mode": false,
                      "mod_reports": [],
                      "author_patreon_flair": false,
                      "author_flair_text_color": "dark",
                      "permalink": "/r/nba/comments/1p19n2v/luka_doncic_is_averaging_the_most_free_throw/",
                      "stickied": false,
                      "url": "https://www.reddit.com/r/nba/comments/1p19n2v/luka_doncic_is_averaging_the_most_free_throw/",
                      "subreddit_subscribers": 16893176,
                      "created_utc": 1763563759,
                      "num_crossposts": 1,
                      "media": null,
                      "is_video": false
                  }
              },
              {
                  "kind": "t3",
                  "data": {
                      "approved_at_utc": null,
                      "subreddit": "nba",
                      "selftext": "Source: https://www.espn.com/nba/story/_/id/47014061/inside-mavericks-power-struggle-nico-harrison-vs-mark-cuban\n\n&gt; In the aftermath, Dumont and his new basketball cabinet, which once again includes former majority owner Mark Cuban, are plotting to pivot to the future with 18-year-old Cooper Flagg, the No. 1 pick delivered to Dallas by unprecedented lottery luck, gifting the new ownership group a second chance to build a sustainable contender around a generational talent.\n\n&gt; Multiple team sources said the Mavs, who are 4-11 and outside the playoff picture in the West, will also explore the trade market for Davis, the 10-time All-Star big man who was the headliner in the return of the Luka Doncic deal, as part of that process before this season's deadline.",
                      "author_fullname": "t2_1511lsehjf",
                      "saved": false,
                      "mod_reason_title": null,
                      "gilded": 0,
                      "clicked": false,
                      "title": "[MacMahon] Sources within the Dallas Mavericks say that the team will explore Anthony Davis trades before this season’s trade deadline.",
                      "link_flair_richtext": [],
                      "subreddit_name_prefixed": "r/nba",
                      "hidden": false,
                      "pwls": 6,
                      "link_flair_css_class": null,
                      "downs": 0,
                      "thumbnail_height": null,
                      "top_awarded_type": null,
                      "hide_score": false,
                      "name": "t3_1p18fpg",
                      "quarantine": false,
                      "link_flair_text_color": "dark",
                      "upvote_ratio": 0.97,
                      "author_flair_background_color": null,
                      "subreddit_type": "public",
                      "ups": 461,
                      "total_awards_received": 0,
                      "media_embed": {},
                      "thumbnail_width": null,
                      "author_flair_template_id": null,
                      "is_original_content": false,
                      "user_reports": [],
                      "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": 461,
                      "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": {},
                      "post_hint": "self",
                      "content_categories": null,
                      "is_self": true,
                      "mod_note": null,
                      "created": 1763560833,
                      "link_flair_type": "text",
                      "wls": 6,
                      "removed_by_category": null,
                      "banned_by": null,
                      "author_flair_type": "text",
                      "domain": "self.nba",
                      "allow_live_comments": false,
                      "selftext_html": "&lt;!-- SC_OFF --&gt;&lt;div class=\"md\"&gt;&lt;p&gt;Source: &lt;a href=\"https://www.espn.com/nba/story/_/id/47014061/inside-mavericks-power-struggle-nico-harrison-vs-mark-cuban\"&gt;https://www.espn.com/nba/story/_/id/47014061/inside-mavericks-power-struggle-nico-harrison-vs-mark-cuban&lt;/a&gt;&lt;/p&gt;\n\n&lt;blockquote&gt;\n&lt;p&gt;In the aftermath, Dumont and his new basketball cabinet, which once again includes former majority owner Mark Cuban, are plotting to pivot to the future with 18-year-old Cooper Flagg, the No. 1 pick delivered to Dallas by unprecedented lottery luck, gifting the new ownership group a second chance to build a sustainable contender around a generational talent.&lt;/p&gt;\n\n&lt;p&gt;Multiple team sources said the Mavs, who are 4-11 and outside the playoff picture in the West, will also explore the trade market for Davis, the 10-time All-Star big man who was the headliner in the return of the Luka Doncic deal, as part of that process before this season&amp;#39;s deadline.&lt;/p&gt;\n&lt;/blockquote&gt;\n&lt;/div&gt;&lt;!-- SC_ON --&gt;",
                      "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,
                      "preview": {
                          "images": [
                              {
                                  "source": {
                                      "url": "https://external-preview.redd.it/dgDUOOlmJosr9Ra1LkrY3-x5AffB3oAs6q_XPwAiKqA.jpeg?auto=webp&amp;s=b777365b788d0d0c7c8a188bfccc1ad6d0effa64",
                                      "width": 1296,
                                      "height": 729
                                  },
                                  "resolutions": [
                                      {
                                          "url": "https://external-preview.redd.it/dgDUOOlmJosr9Ra1LkrY3-x5AffB3oAs6q_XPwAiKqA.jpeg?width=108&amp;crop=smart&amp;auto=webp&amp;s=0de6869f213a9129f5492b71fca7ccdcd7667846",
                                          "width": 108,
                                          "height": 60
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/dgDUOOlmJosr9Ra1LkrY3-x5AffB3oAs6q_XPwAiKqA.jpeg?width=216&amp;crop=smart&amp;auto=webp&amp;s=814458ac2c180aab7d902c8c13abd6aead485adf",
                                          "width": 216,
                                          "height": 121
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/dgDUOOlmJosr9Ra1LkrY3-x5AffB3oAs6q_XPwAiKqA.jpeg?width=320&amp;crop=smart&amp;auto=webp&amp;s=aaca893dc91cc8b41f7c77a5d059139a40492748",
                                          "width": 320,
                                          "height": 180
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/dgDUOOlmJosr9Ra1LkrY3-x5AffB3oAs6q_XPwAiKqA.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=9147a8f8157277d10d5e6e039202f95e8cf5f09d",
                                          "width": 640,
                                          "height": 360
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/dgDUOOlmJosr9Ra1LkrY3-x5AffB3oAs6q_XPwAiKqA.jpeg?width=960&amp;crop=smart&amp;auto=webp&amp;s=5f5ce70b7d9da52fe2896452df4d26a1948505d2",
                                          "width": 960,
                                          "height": 540
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/dgDUOOlmJosr9Ra1LkrY3-x5AffB3oAs6q_XPwAiKqA.jpeg?width=1080&amp;crop=smart&amp;auto=webp&amp;s=bcc75bf390a13a805c5f716ba8aaae219084a963",
                                          "width": 1080,
                                          "height": 607
                                      }
                                  ],
                                  "variants": {},
                                  "id": "dgDUOOlmJosr9Ra1LkrY3-x5AffB3oAs6q_XPwAiKqA"
                              }
                          ],
                          "enabled": false
                      },
                      "all_awardings": [],
                      "awarders": [],
                      "media_only": false,
                      "can_gild": false,
                      "spoiler": false,
                      "locked": false,
                      "author_flair_text": null,
                      "treatment_tags": [],
                      "visited": false,
                      "removed_by": null,
                      "num_reports": null,
                      "distinguished": null,
                      "subreddit_id": "t5_2qo4s",
                      "author_is_blocked": false,
                      "mod_reason_by": null,
                      "removal_reason": null,
                      "link_flair_background_color": "",
                      "id": "1p18fpg",
                      "is_robot_indexable": true,
                      "report_reasons": null,
                      "author": "YujiDomainExpansion",
                      "discussion_type": null,
                      "num_comments": 312,
                      "send_replies": true,
                      "contest_mode": false,
                      "mod_reports": [],
                      "author_patreon_flair": false,
                      "author_flair_text_color": null,
                      "permalink": "/r/nba/comments/1p18fpg/macmahon_sources_within_the_dallas_mavericks_say/",
                      "stickied": false,
                      "url": "https://www.reddit.com/r/nba/comments/1p18fpg/macmahon_sources_within_the_dallas_mavericks_say/",
                      "subreddit_subscribers": 16893176,
                      "created_utc": 1763560833,
                      "num_crossposts": 1,
                      "media": null,
                      "is_video": false
                  }
              },
              {
                  "kind": "t3",
                  "data": {
                      "approved_at_utc": null,
                      "subreddit": "nba",
                      "selftext": "Mikal Bridges currently Ranks #14 All time in consecutive games played. [Source](https://en.wikipedia.org/wiki/List_of_NBA_players_with_500_consecutive_games_played)\nHe logs the most miles covered season after season. Somehow he still remains un-injured. \n\nThe modern game and spacing requires players to run up and down and cover a lot of length as fast as possible. This has caused an increasing amount of players to become injured season after season. Yet the “Iron Man” Mikal Bridges still stands undefeated by injuries. \n\nAll NBA teams should study mikal bridges and why he’s been able to stay healthy. His diet consists of chipotle. ",
                      "author_fullname": "t2_ramfy2n7",
                      "saved": false,
                      "mod_reason_title": null,
                      "gilded": 0,
                      "clicked": false,
                      "title": "Mikal Bridges has never Missed a game since he was Drafted 556 games in a row. In an era of space, pace and injuries he remains the anomaly.",
                      "link_flair_richtext": [],
                      "subreddit_name_prefixed": "r/nba",
                      "hidden": false,
                      "pwls": 6,
                      "link_flair_css_class": null,
                      "downs": 0,
                      "thumbnail_height": null,
                      "top_awarded_type": null,
                      "hide_score": false,
                      "name": "t3_1p0t74a",
                      "quarantine": false,
                      "link_flair_text_color": "dark",
                      "upvote_ratio": 0.98,
                      "author_flair_background_color": "#edeff1",
                      "subreddit_type": "public",
                      "ups": 5406,
                      "total_awards_received": 0,
                      "media_embed": {},
                      "thumbnail_width": null,
                      "author_flair_template_id": "cc57a3a0-3feb-11e8-a765-0ee0c6cba6de",
                      "is_original_content": false,
                      "user_reports": [],
                      "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": 5406,
                      "approved_by": null,
                      "is_created_from_ads_ui": false,
                      "author_premium": false,
                      "thumbnail": "self",
                      "edited": 1763513389,
                      "author_flair_css_class": "Lakers2",
                      "author_flair_richtext": [
                          {
                              "a": ":lal-2:",
                              "e": "emoji",
                              "u": "https://emoji.redditmedia.com/1qov69yrs4r81_t5_2qo4s/lal-2"
                          },
                          {
                              "e": "text",
                              "t": " Lakers"
                          }
                      ],
                      "gildings": {},
                      "content_categories": null,
                      "is_self": true,
                      "mod_note": null,
                      "created": 1763512802,
                      "link_flair_type": "text",
                      "wls": 6,
                      "removed_by_category": null,
                      "banned_by": null,
                      "author_flair_type": "richtext",
                      "domain": "self.nba",
                      "allow_live_comments": false,
                      "selftext_html": "&lt;!-- SC_OFF --&gt;&lt;div class=\"md\"&gt;&lt;p&gt;Mikal Bridges currently Ranks #14 All time in consecutive games played. &lt;a href=\"https://en.wikipedia.org/wiki/List_of_NBA_players_with_500_consecutive_games_played\"&gt;Source&lt;/a&gt;\nHe logs the most miles covered season after season. Somehow he still remains un-injured. &lt;/p&gt;\n\n&lt;p&gt;The modern game and spacing requires players to run up and down and cover a lot of length as fast as possible. This has caused an increasing amount of players to become injured season after season. Yet the “Iron Man” Mikal Bridges still stands undefeated by injuries. &lt;/p&gt;\n\n&lt;p&gt;All NBA teams should study mikal bridges and why he’s been able to stay healthy. His diet consists of chipotle. &lt;/p&gt;\n&lt;/div&gt;&lt;!-- SC_ON --&gt;",
                      "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": [],
                      "awarders": [],
                      "media_only": false,
                      "can_gild": false,
                      "spoiler": false,
                      "locked": false,
                      "author_flair_text": ":lal-2: Lakers",
                      "treatment_tags": [],
                      "visited": false,
                      "removed_by": null,
                      "num_reports": null,
                      "distinguished": null,
                      "subreddit_id": "t5_2qo4s",
                      "author_is_blocked": false,
                      "mod_reason_by": null,
                      "removal_reason": null,
                      "link_flair_background_color": "",
                      "id": "1p0t74a",
                      "is_robot_indexable": true,
                      "report_reasons": null,
                      "author": "OrganicHunt952",
                      "discussion_type": null,
                      "num_comments": 275,
                      "send_replies": true,
                      "contest_mode": false,
                      "mod_reports": [],
                      "author_patreon_flair": false,
                      "author_flair_text_color": "dark",
                      "permalink": "/r/nba/comments/1p0t74a/mikal_bridges_has_never_missed_a_game_since_he/",
                      "stickied": false,
                      "url": "https://www.reddit.com/r/nba/comments/1p0t74a/mikal_bridges_has_never_missed_a_game_since_he/",
                      "subreddit_subscribers": 16893176,
                      "created_utc": 1763512802,
                      "num_crossposts": 0,
                      "media": null,
                      "is_video": false
                  }
              },
              {
                  "kind": "t3",
                  "data": {
                      "approved_at_utc": null,
                      "subreddit": "nba",
                      "selftext": "",
                      "author_fullname": "t2_8lemz",
                      "saved": false,
                      "mod_reason_title": null,
                      "gilded": 0,
                      "clicked": false,
                      "title": "[Highlight] Lebron finds Gabe Vincent in the corner for a buzzer beater and 11-point laker lead",
                      "link_flair_richtext": [
                          {
                              "e": "text",
                              "t": "Highlight"
                          }
                      ],
                      "subreddit_name_prefixed": "r/nba",
                      "hidden": false,
                      "pwls": 6,
                      "link_flair_css_class": "highlights",
                      "downs": 0,
                      "thumbnail_height": 78,
                      "top_awarded_type": null,
                      "hide_score": false,
                      "name": "t3_1p0z71f",
                      "quarantine": false,
                      "link_flair_text_color": "light",
                      "upvote_ratio": 0.96,
                      "author_flair_background_color": null,
                      "ups": 2042,
                      "total_awards_received": 0,
                      "media_embed": {
                          "content": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2F3949ni&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2F3949ni&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2F3949ni.jpg%3FExpires%3D1763789517367%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DMkOHrJyTBsRQyOh7KqHsVtRHif5LIoSXffkf9F3E2fHdcNOZmJieK%7E4C84XaKM%7EhGnyQl98kul-lLa7im0QCsjYxKhnBwr9RK4ttQQoBC4J5Hql0gUGMZU8yDLzxCWCqXQ-ybFctw9%7EwBT-fuyh9bFX0ZIoTGCn%7EO%7EEgqNy2br%7Eo%7EX1XGAJ27ekrb2qQ4UkV9hp2RIvuHkD78Yze09rkE6QcRW8qbdy1xL1QKHrv78yKqaIPOogvJPYHOio1LmZ7-k3mdFR86rgpWwIMnMTz%7EFKaJKLWRWTx1sGfdHHXvoAQFb0wouBAjmqNpEGutdvc3wD9csi5D0rEOZX4Y96EdA__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                          "width": 600,
                          "scrolling": false,
                          "height": 338
                      },
                      "thumbnail_width": 140,
                      "author_flair_template_id": null,
                      "is_original_content": false,
                      "user_reports": [],
                      "secure_media": {
                          "oembed": {
                              "provider_url": "https://streamable.com",
                              "description": "Watch \"[Highlight] Lebron finds Gabe Vincent in the corner for a buzzer beater and 11-point laker leadd\" on Streamable.",
                              "title": "[Highlight] Lebron finds Gabe Vincent in the corner for a buzzer beater and 11-point laker leadd",
                              "thumbnail_width": 1920,
                              "height": 338,
                              "width": 600,
                              "html": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2F3949ni&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2F3949ni&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2F3949ni.jpg%3FExpires%3D1763789517367%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DMkOHrJyTBsRQyOh7KqHsVtRHif5LIoSXffkf9F3E2fHdcNOZmJieK%7E4C84XaKM%7EhGnyQl98kul-lLa7im0QCsjYxKhnBwr9RK4ttQQoBC4J5Hql0gUGMZU8yDLzxCWCqXQ-ybFctw9%7EwBT-fuyh9bFX0ZIoTGCn%7EO%7EEgqNy2br%7Eo%7EX1XGAJ27ekrb2qQ4UkV9hp2RIvuHkD78Yze09rkE6QcRW8qbdy1xL1QKHrv78yKqaIPOogvJPYHOio1LmZ7-k3mdFR86rgpWwIMnMTz%7EFKaJKLWRWTx1sGfdHHXvoAQFb0wouBAjmqNpEGutdvc3wD9csi5D0rEOZX4Y96EdA__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                              "version": "1.0",
                              "provider_name": "Streamable",
                              "thumbnail_url": "https://cdn-cf-east.streamable.com/image/3949ni.jpg?Expires=1763789517367&amp;Key-Pair-Id=APKAIEYUVEN4EVB2OKEQ&amp;Signature=MkOHrJyTBsRQyOh7KqHsVtRHif5LIoSXffkf9F3E2fHdcNOZmJieK~4C84XaKM~hGnyQl98kul-lLa7im0QCsjYxKhnBwr9RK4ttQQoBC4J5Hql0gUGMZU8yDLzxCWCqXQ-ybFctw9~wBT-fuyh9bFX0ZIoTGCn~O~EgqNy2br~o~X1XGAJ27ekrb2qQ4UkV9hp2RIvuHkD78Yze09rkE6QcRW8qbdy1xL1QKHrv78yKqaIPOogvJPYHOio1LmZ7-k3mdFR86rgpWwIMnMTz~FKaJKLWRWTx1sGfdHHXvoAQFb0wouBAjmqNpEGutdvc3wD9csi5D0rEOZX4Y96EdA__",
                              "type": "video",
                              "thumbnail_height": 1080
                          },
                          "type": "streamable.com"
                      },
                      "is_reddit_media_domain": false,
                      "is_meta": false,
                      "category": null,
                      "secure_media_embed": {
                          "content": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2F3949ni&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2F3949ni&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2F3949ni.jpg%3FExpires%3D1763789517367%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DMkOHrJyTBsRQyOh7KqHsVtRHif5LIoSXffkf9F3E2fHdcNOZmJieK%7E4C84XaKM%7EhGnyQl98kul-lLa7im0QCsjYxKhnBwr9RK4ttQQoBC4J5Hql0gUGMZU8yDLzxCWCqXQ-ybFctw9%7EwBT-fuyh9bFX0ZIoTGCn%7EO%7EEgqNy2br%7Eo%7EX1XGAJ27ekrb2qQ4UkV9hp2RIvuHkD78Yze09rkE6QcRW8qbdy1xL1QKHrv78yKqaIPOogvJPYHOio1LmZ7-k3mdFR86rgpWwIMnMTz%7EFKaJKLWRWTx1sGfdHHXvoAQFb0wouBAjmqNpEGutdvc3wD9csi5D0rEOZX4Y96EdA__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                          "width": 600,
                          "scrolling": false,
                          "media_domain_url": "https://www.redditmedia.com/mediaembed/1p0z71f",
                          "height": 338
                      },
                      "link_flair_text": "Highlight",
                      "can_mod_post": false,
                      "score": 2042,
                      "approved_by": null,
                      "is_created_from_ads_ui": false,
                      "author_premium": false,
                      "thumbnail": "https://external-preview.redd.it/4bfOiBRJWOyJTtH7zm-SGMbOfCRQiiJcbcJRAPIZFmU.jpeg?width=140&amp;height=78&amp;auto=webp&amp;s=82acd96d122fa9e8086c9db669b0708752b42f5e",
                      "edited": false,
                      "author_flair_css_class": null,
                      "author_flair_richtext": [],
                      "gildings": {},
                      "post_hint": "rich:video",
                      "content_categories": null,
                      "is_self": false,
                      "subreddit_type": "public",
                      "created": 1763530286,
                      "link_flair_type": "richtext",
                      "wls": 6,
                      "removed_by_category": null,
                      "banned_by": null,
                      "author_flair_type": "text",
                      "domain": "streamable.com",
                      "allow_live_comments": false,
                      "selftext_html": null,
                      "likes": null,
                      "suggested_sort": null,
                      "banned_at_utc": null,
                      "url_overridden_by_dest": "https://streamable.com/3949ni",
                      "view_count": null,
                      "archived": false,
                      "no_follow": false,
                      "is_crosspostable": false,
                      "pinned": false,
                      "over_18": false,
                      "preview": {
                          "images": [
                              {
                                  "source": {
                                      "url": "https://external-preview.redd.it/4bfOiBRJWOyJTtH7zm-SGMbOfCRQiiJcbcJRAPIZFmU.jpeg?auto=webp&amp;s=df1dee11d05b267306f2da5313fc8d8547354eef",
                                      "width": 1920,
                                      "height": 1080
                                  },
                                  "resolutions": [
                                      {
                                          "url": "https://external-preview.redd.it/4bfOiBRJWOyJTtH7zm-SGMbOfCRQiiJcbcJRAPIZFmU.jpeg?width=108&amp;crop=smart&amp;auto=webp&amp;s=55cbf4a20b4d71d8cf6a9dfca0f9ea12933ab1ad",
                                          "width": 108,
                                          "height": 60
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/4bfOiBRJWOyJTtH7zm-SGMbOfCRQiiJcbcJRAPIZFmU.jpeg?width=216&amp;crop=smart&amp;auto=webp&amp;s=2398573c388f3fe353b63bd8414f150bc30f97ee",
                                          "width": 216,
                                          "height": 121
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/4bfOiBRJWOyJTtH7zm-SGMbOfCRQiiJcbcJRAPIZFmU.jpeg?width=320&amp;crop=smart&amp;auto=webp&amp;s=9b53a2898186d51d53533b34c0d64bf20ce4aaf0",
                                          "width": 320,
                                          "height": 180
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/4bfOiBRJWOyJTtH7zm-SGMbOfCRQiiJcbcJRAPIZFmU.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=1a787caf9545841782a5bf36e62c627bebb6cdbd",
                                          "width": 640,
                                          "height": 360
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/4bfOiBRJWOyJTtH7zm-SGMbOfCRQiiJcbcJRAPIZFmU.jpeg?width=960&amp;crop=smart&amp;auto=webp&amp;s=0025d4c70fdf6b21c9b6de117793dfc8fc8ff611",
                                          "width": 960,
                                          "height": 540
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/4bfOiBRJWOyJTtH7zm-SGMbOfCRQiiJcbcJRAPIZFmU.jpeg?width=1080&amp;crop=smart&amp;auto=webp&amp;s=3bfdece8d90be0a10d9f30145f03220eaf1700b6",
                                          "width": 1080,
                                          "height": 607
                                      }
                                  ],
                                  "variants": {},
                                  "id": "4bfOiBRJWOyJTtH7zm-SGMbOfCRQiiJcbcJRAPIZFmU"
                              }
                          ],
                          "enabled": false
                      },
                      "all_awardings": [],
                      "awarders": [],
                      "media_only": false,
                      "link_flair_template_id": "11e1d3fc-5c54-11e4-8ccc-12313b0e448d",
                      "can_gild": false,
                      "spoiler": false,
                      "locked": false,
                      "author_flair_text": null,
                      "treatment_tags": [],
                      "visited": false,
                      "removed_by": null,
                      "mod_note": null,
                      "distinguished": null,
                      "subreddit_id": "t5_2qo4s",
                      "author_is_blocked": false,
                      "mod_reason_by": null,
                      "num_reports": null,
                      "removal_reason": null,
                      "link_flair_background_color": "#0079d3",
                      "id": "1p0z71f",
                      "is_robot_indexable": true,
                      "report_reasons": null,
                      "author": "Large_banana_hammock",
                      "discussion_type": null,
                      "num_comments": 132,
                      "send_replies": true,
                      "contest_mode": false,
                      "mod_reports": [],
                      "author_patreon_flair": false,
                      "author_flair_text_color": null,
                      "permalink": "/r/nba/comments/1p0z71f/highlight_lebron_finds_gabe_vincent_in_the_corner/",
                      "stickied": false,
                      "url": "https://streamable.com/3949ni",
                      "subreddit_subscribers": 16893176,
                      "created_utc": 1763530286,
                      "num_crossposts": 0,
                      "media": {
                          "oembed": {
                              "provider_url": "https://streamable.com",
                              "description": "Watch \"[Highlight] Lebron finds Gabe Vincent in the corner for a buzzer beater and 11-point laker leadd\" on Streamable.",
                              "title": "[Highlight] Lebron finds Gabe Vincent in the corner for a buzzer beater and 11-point laker leadd",
                              "thumbnail_width": 1920,
                              "height": 338,
                              "width": 600,
                              "html": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2F3949ni&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2F3949ni&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2F3949ni.jpg%3FExpires%3D1763789517367%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DMkOHrJyTBsRQyOh7KqHsVtRHif5LIoSXffkf9F3E2fHdcNOZmJieK%7E4C84XaKM%7EhGnyQl98kul-lLa7im0QCsjYxKhnBwr9RK4ttQQoBC4J5Hql0gUGMZU8yDLzxCWCqXQ-ybFctw9%7EwBT-fuyh9bFX0ZIoTGCn%7EO%7EEgqNy2br%7Eo%7EX1XGAJ27ekrb2qQ4UkV9hp2RIvuHkD78Yze09rkE6QcRW8qbdy1xL1QKHrv78yKqaIPOogvJPYHOio1LmZ7-k3mdFR86rgpWwIMnMTz%7EFKaJKLWRWTx1sGfdHHXvoAQFb0wouBAjmqNpEGutdvc3wD9csi5D0rEOZX4Y96EdA__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                              "version": "1.0",
                              "provider_name": "Streamable",
                              "thumbnail_url": "https://cdn-cf-east.streamable.com/image/3949ni.jpg?Expires=1763789517367&amp;Key-Pair-Id=APKAIEYUVEN4EVB2OKEQ&amp;Signature=MkOHrJyTBsRQyOh7KqHsVtRHif5LIoSXffkf9F3E2fHdcNOZmJieK~4C84XaKM~hGnyQl98kul-lLa7im0QCsjYxKhnBwr9RK4ttQQoBC4J5Hql0gUGMZU8yDLzxCWCqXQ-ybFctw9~wBT-fuyh9bFX0ZIoTGCn~O~EgqNy2br~o~X1XGAJ27ekrb2qQ4UkV9hp2RIvuHkD78Yze09rkE6QcRW8qbdy1xL1QKHrv78yKqaIPOogvJPYHOio1LmZ7-k3mdFR86rgpWwIMnMTz~FKaJKLWRWTx1sGfdHHXvoAQFb0wouBAjmqNpEGutdvc3wD9csi5D0rEOZX4Y96EdA__",
                              "type": "video",
                              "thumbnail_height": 1080
                          },
                          "type": "streamable.com"
                      },
                      "is_video": false
                  }
              },
              {
                  "kind": "t3",
                  "data": {
                      "approved_at_utc": null,
                      "subreddit": "nba",
                      "selftext": "",
                      "author_fullname": "t2_11d1ig",
                      "saved": false,
                      "mod_reason_title": null,
                      "gilded": 0,
                      "clicked": false,
                      "title": "LeBron James' first chalk toss of his 23rd NBA season.",
                      "link_flair_richtext": [],
                      "subreddit_name_prefixed": "r/nba",
                      "hidden": false,
                      "pwls": 6,
                      "link_flair_css_class": null,
                      "downs": 0,
                      "thumbnail_height": 118,
                      "top_awarded_type": null,
                      "hide_score": false,
                      "name": "t3_1p0x4w7",
                      "quarantine": false,
                      "link_flair_text_color": "dark",
                      "upvote_ratio": 0.94,
                      "author_flair_background_color": "#edeff1",
                      "subreddit_type": "public",
                      "ups": 2813,
                      "total_awards_received": 0,
                      "media_embed": {
                          "content": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2F7skdux&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2F7skdux&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2F7skdux.jpg%3FExpires%3D1763782981208%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DUk8rjueZulH7fo%7EULObgor-0jnlPEsnoLmsV1GbAWUKnr2A0UxcAm2-6sZBs1pFn299Y9o8vQB5xbNStMBDrKuyqm%7E5T6z-lldXZlHOONHzhjG7ORMOr4q3TYgEEhGBtSkw8T4yKzw3RN3nIMjrXks1uKLoOOVkYAehl5NKTqg7qFN6JWfWqFE7oFbJyxYPQ5VmQD5NQAiW7Rag-78cCSQOq0eNLtMJ2gGY8CrepajVMaMrtjdmpLxzz2DwzUPBvVglwb%7E5ugE2CN%7Ei9yvQUql2Du-7spG7fF0JbiACH5yP3Dc9YSkJ0K7X-7bGSz4%7E8LL2RA1V432sbf8vVk7yh%7Ew__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"506\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                          "width": 600,
                          "scrolling": false,
                          "height": 506
                      },
                      "thumbnail_width": 140,
                      "author_flair_template_id": "ccddfb4e-3feb-11e8-af69-0ec720dcbbde",
                      "is_original_content": false,
                      "user_reports": [],
                      "secure_media": {
                          "oembed": {
                              "provider_url": "https://streamable.com",
                              "description": "Watch \"Shabazz 💫 - LEBRON CHALK TOSS HOW IVE MISSED YOU\" on Streamable.",
                              "title": "Shabazz 💫 - LEBRON CHALK TOSS HOW IVE MISSED YOU",
                              "thumbnail_width": 1280,
                              "height": 506,
                              "width": 600,
                              "html": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2F7skdux&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2F7skdux&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2F7skdux.jpg%3FExpires%3D1763782981208%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DUk8rjueZulH7fo%7EULObgor-0jnlPEsnoLmsV1GbAWUKnr2A0UxcAm2-6sZBs1pFn299Y9o8vQB5xbNStMBDrKuyqm%7E5T6z-lldXZlHOONHzhjG7ORMOr4q3TYgEEhGBtSkw8T4yKzw3RN3nIMjrXks1uKLoOOVkYAehl5NKTqg7qFN6JWfWqFE7oFbJyxYPQ5VmQD5NQAiW7Rag-78cCSQOq0eNLtMJ2gGY8CrepajVMaMrtjdmpLxzz2DwzUPBvVglwb%7E5ugE2CN%7Ei9yvQUql2Du-7spG7fF0JbiACH5yP3Dc9YSkJ0K7X-7bGSz4%7E8LL2RA1V432sbf8vVk7yh%7Ew__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"506\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                              "version": "1.0",
                              "provider_name": "Streamable",
                              "thumbnail_url": "https://cdn-cf-east.streamable.com/image/7skdux.jpg?Expires=1763782981208&amp;Key-Pair-Id=APKAIEYUVEN4EVB2OKEQ&amp;Signature=Uk8rjueZulH7fo~ULObgor-0jnlPEsnoLmsV1GbAWUKnr2A0UxcAm2-6sZBs1pFn299Y9o8vQB5xbNStMBDrKuyqm~5T6z-lldXZlHOONHzhjG7ORMOr4q3TYgEEhGBtSkw8T4yKzw3RN3nIMjrXks1uKLoOOVkYAehl5NKTqg7qFN6JWfWqFE7oFbJyxYPQ5VmQD5NQAiW7Rag-78cCSQOq0eNLtMJ2gGY8CrepajVMaMrtjdmpLxzz2DwzUPBvVglwb~5ugE2CN~i9yvQUql2Du-7spG7fF0JbiACH5yP3Dc9YSkJ0K7X-7bGSz4~8LL2RA1V432sbf8vVk7yh~w__",
                              "type": "video",
                              "thumbnail_height": 1080
                          },
                          "type": "streamable.com"
                      },
                      "is_reddit_media_domain": false,
                      "is_meta": false,
                      "category": null,
                      "secure_media_embed": {
                          "content": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2F7skdux&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2F7skdux&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2F7skdux.jpg%3FExpires%3D1763782981208%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DUk8rjueZulH7fo%7EULObgor-0jnlPEsnoLmsV1GbAWUKnr2A0UxcAm2-6sZBs1pFn299Y9o8vQB5xbNStMBDrKuyqm%7E5T6z-lldXZlHOONHzhjG7ORMOr4q3TYgEEhGBtSkw8T4yKzw3RN3nIMjrXks1uKLoOOVkYAehl5NKTqg7qFN6JWfWqFE7oFbJyxYPQ5VmQD5NQAiW7Rag-78cCSQOq0eNLtMJ2gGY8CrepajVMaMrtjdmpLxzz2DwzUPBvVglwb%7E5ugE2CN%7Ei9yvQUql2Du-7spG7fF0JbiACH5yP3Dc9YSkJ0K7X-7bGSz4%7E8LL2RA1V432sbf8vVk7yh%7Ew__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"506\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                          "width": 600,
                          "scrolling": false,
                          "media_domain_url": "https://www.redditmedia.com/mediaembed/1p0x4w7",
                          "height": 506
                      },
                      "link_flair_text": null,
                      "can_mod_post": false,
                      "score": 2813,
                      "approved_by": null,
                      "is_created_from_ads_ui": false,
                      "author_premium": false,
                      "thumbnail": "https://external-preview.redd.it/q1m_WvJhpIwq5L2lrNJmo9rlwa8SdtQ1GO8aoQe391U.jpeg?width=140&amp;height=118&amp;auto=webp&amp;s=d9238017c55966f0efeab0227bbe8991445d6aec",
                      "edited": false,
                      "author_flair_css_class": "Lakers4",
                      "author_flair_richtext": [
                          {
                              "a": ":lal-4:",
                              "e": "emoji",
                              "u": "https://emoji.redditmedia.com/t7l8050ts4r81_t5_2qo4s/lal-4"
                          },
                          {
                              "e": "text",
                              "t": " Minneapolis Lakers"
                          }
                      ],
                      "gildings": {},
                      "post_hint": "rich:video",
                      "content_categories": null,
                      "is_self": false,
                      "mod_note": null,
                      "created": 1763523799,
                      "link_flair_type": "text",
                      "wls": 6,
                      "removed_by_category": null,
                      "banned_by": null,
                      "author_flair_type": "richtext",
                      "domain": "streamable.com",
                      "allow_live_comments": false,
                      "selftext_html": null,
                      "likes": null,
                      "suggested_sort": null,
                      "banned_at_utc": null,
                      "url_overridden_by_dest": "https://streamable.com/7skdux",
                      "view_count": null,
                      "archived": false,
                      "no_follow": false,
                      "is_crosspostable": false,
                      "pinned": false,
                      "over_18": false,
                      "preview": {
                          "images": [
                              {
                                  "source": {
                                      "url": "https://external-preview.redd.it/q1m_WvJhpIwq5L2lrNJmo9rlwa8SdtQ1GO8aoQe391U.jpeg?auto=webp&amp;s=c3c1e44ea9295808e38faa378314a7fd000f24b2",
                                      "width": 1280,
                                      "height": 1080
                                  },
                                  "resolutions": [
                                      {
                                          "url": "https://external-preview.redd.it/q1m_WvJhpIwq5L2lrNJmo9rlwa8SdtQ1GO8aoQe391U.jpeg?width=108&amp;crop=smart&amp;auto=webp&amp;s=35acd5475dbfb4a7488b070680ddec8dd97f8a5d",
                                          "width": 108,
                                          "height": 91
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/q1m_WvJhpIwq5L2lrNJmo9rlwa8SdtQ1GO8aoQe391U.jpeg?width=216&amp;crop=smart&amp;auto=webp&amp;s=5837cfa80accff6856c5730b7db023dfbbfdd617",
                                          "width": 216,
                                          "height": 182
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/q1m_WvJhpIwq5L2lrNJmo9rlwa8SdtQ1GO8aoQe391U.jpeg?width=320&amp;crop=smart&amp;auto=webp&amp;s=26e383cf0fe49a3ddc4defe1544dadb76491535a",
                                          "width": 320,
                                          "height": 270
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/q1m_WvJhpIwq5L2lrNJmo9rlwa8SdtQ1GO8aoQe391U.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=ad3cb67c086bfd78ba57591d0f468fe1ec83b560",
                                          "width": 640,
                                          "height": 540
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/q1m_WvJhpIwq5L2lrNJmo9rlwa8SdtQ1GO8aoQe391U.jpeg?width=960&amp;crop=smart&amp;auto=webp&amp;s=dadc37710e0cd279d3bcaf29be03700a3feab45d",
                                          "width": 960,
                                          "height": 810
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/q1m_WvJhpIwq5L2lrNJmo9rlwa8SdtQ1GO8aoQe391U.jpeg?width=1080&amp;crop=smart&amp;auto=webp&amp;s=9adc30b4b01e6660846dfaa81dd641bf57bfe3f1",
                                          "width": 1080,
                                          "height": 911
                                      }
                                  ],
                                  "variants": {},
                                  "id": "q1m_WvJhpIwq5L2lrNJmo9rlwa8SdtQ1GO8aoQe391U"
                              }
                          ],
                          "enabled": false
                      },
                      "all_awardings": [],
                      "awarders": [],
                      "media_only": false,
                      "can_gild": false,
                      "spoiler": false,
                      "locked": false,
                      "author_flair_text": ":lal-4: Minneapolis Lakers",
                      "treatment_tags": [],
                      "visited": false,
                      "removed_by": null,
                      "num_reports": null,
                      "distinguished": null,
                      "subreddit_id": "t5_2qo4s",
                      "author_is_blocked": false,
                      "mod_reason_by": null,
                      "removal_reason": null,
                      "link_flair_background_color": "",
                      "id": "1p0x4w7",
                      "is_robot_indexable": true,
                      "report_reasons": null,
                      "author": "kurruchi",
                      "discussion_type": null,
                      "num_comments": 197,
                      "send_replies": true,
                      "contest_mode": false,
                      "mod_reports": [],
                      "author_patreon_flair": false,
                      "author_flair_text_color": "dark",
                      "permalink": "/r/nba/comments/1p0x4w7/lebron_james_first_chalk_toss_of_his_23rd_nba/",
                      "stickied": false,
                      "url": "https://streamable.com/7skdux",
                      "subreddit_subscribers": 16893176,
                      "created_utc": 1763523799,
                      "num_crossposts": 0,
                      "media": {
                          "oembed": {
                              "provider_url": "https://streamable.com",
                              "description": "Watch \"Shabazz 💫 - LEBRON CHALK TOSS HOW IVE MISSED YOU\" on Streamable.",
                              "title": "Shabazz 💫 - LEBRON CHALK TOSS HOW IVE MISSED YOU",
                              "thumbnail_width": 1280,
                              "height": 506,
                              "width": 600,
                              "html": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2F7skdux&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2F7skdux&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2F7skdux.jpg%3FExpires%3D1763782981208%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DUk8rjueZulH7fo%7EULObgor-0jnlPEsnoLmsV1GbAWUKnr2A0UxcAm2-6sZBs1pFn299Y9o8vQB5xbNStMBDrKuyqm%7E5T6z-lldXZlHOONHzhjG7ORMOr4q3TYgEEhGBtSkw8T4yKzw3RN3nIMjrXks1uKLoOOVkYAehl5NKTqg7qFN6JWfWqFE7oFbJyxYPQ5VmQD5NQAiW7Rag-78cCSQOq0eNLtMJ2gGY8CrepajVMaMrtjdmpLxzz2DwzUPBvVglwb%7E5ugE2CN%7Ei9yvQUql2Du-7spG7fF0JbiACH5yP3Dc9YSkJ0K7X-7bGSz4%7E8LL2RA1V432sbf8vVk7yh%7Ew__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"506\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                              "version": "1.0",
                              "provider_name": "Streamable",
                              "thumbnail_url": "https://cdn-cf-east.streamable.com/image/7skdux.jpg?Expires=1763782981208&amp;Key-Pair-Id=APKAIEYUVEN4EVB2OKEQ&amp;Signature=Uk8rjueZulH7fo~ULObgor-0jnlPEsnoLmsV1GbAWUKnr2A0UxcAm2-6sZBs1pFn299Y9o8vQB5xbNStMBDrKuyqm~5T6z-lldXZlHOONHzhjG7ORMOr4q3TYgEEhGBtSkw8T4yKzw3RN3nIMjrXks1uKLoOOVkYAehl5NKTqg7qFN6JWfWqFE7oFbJyxYPQ5VmQD5NQAiW7Rag-78cCSQOq0eNLtMJ2gGY8CrepajVMaMrtjdmpLxzz2DwzUPBvVglwb~5ugE2CN~i9yvQUql2Du-7spG7fF0JbiACH5yP3Dc9YSkJ0K7X-7bGSz4~8LL2RA1V432sbf8vVk7yh~w__",
                              "type": "video",
                              "thumbnail_height": 1080
                          },
                          "type": "streamable.com"
                      },
                      "is_video": false
                  }
              },
              {
                  "kind": "t3",
                  "data": {
                      "approved_at_utc": null,
                      "subreddit": "nba",
                      "selftext": "||\n|:-:|\n|[](/UTA) **125 -  140** [](/LAL)|\n|**Box Scores: [NBA](http://www.nba.com/game/UTA-vs-LAL-0022500253/box-score) - [Yahoo](https://sports.yahoo.com/nba/scoreboard/)**|\n\n||\n|:-:|\n|&amp;nbsp;|\n|**GAME SUMMARY**|\n|**Location:** Crypto.com Arena|\n|**Officials:** Bill Kennedy, Brian Forte, and Sha'Rae Mitchell|\n\n|**Team**|**Q1**|**Q2**|**Q3**|**Q4**|**Total**|\n|:---|:--|:--|:--|:--|:--|\n|Utah Jazz|36|35|22|32|125|\n|Los Angeles Lakers|27|40|37|36|140|\n\n||\n|:-:|\n|&amp;nbsp;|\n|**TEAM STATS**|\n\n|**Team**|**PTS**|**FG**|**FG%**|**3P**|**3P%**|**FT**|**FT%**|**OREB**|**TREB**|**AST**|**PF**|**STL**|**TO**|**BLK**|\n|:--|:--|:--|:--|:--|:--|:--|:--|:--|:--|:--|:--|:--|:--|:--|\n|Utah Jazz|125|47-91|51.6%|13-45|28.9%|18-19|94.7%|8|39|32|30|13|18|2|\n|Los Angeles Lakers|140|50-84|59.5%|11-32|34.4%|29-40|72.5%|11|53|30|21|9|17|1|\n\n\n||\n|:-:|\n|&amp;nbsp;|\n|**PLAYER STATS**|\n\n||||||||||||||||\n|:--|:--|:--|:--|:--|:--|:--|:--|:--|:--|:--|:--|:--|:--|:--|\n**[](/UTA) Utah Jazz**|**MIN**|**PTS**|**FGM-A**|**3PM-A**|**FTM-A**|**ORB**|**DRB**|**REB**|**AST**|**STL**|**BLK**|**TO**|**PF**|**±**|\n|Svi Mykhailiuk^SF|25:12|13|5-7|3-5|0-0|0|3|3|1|0|0|1|2|-6|\n|Lauri Markkanen^PF|32:01|31|12-21|3-9|4-4|2|3|5|2|2|0|1|4|-6|\n|Jusuf Nurkić^C|28:52|10|4-5|0-1|2-2|2|8|10|6|2|0|6|4|-13|\n|Ace Bailey^SG|23:22|13|6-12|1-6|0-0|1|0|1|1|1|0|1|3|5|\n|Keyonte George^PG|35:21|33|12-22|5-13|4-4|0|4|4|7|2|0|3|4|-10|\n|Kyle Anderson|20:02|5|2-5|0-0|1-2|1|2|3|5|2|0|1|2|2|\n|Kevin Love|13:32|0|0-2|0-2|0-0|1|3|4|0|0|1|0|2|-8|\n|Isaiah Collier|20:59|9|3-6|0-0|3-3|0|2|2|6|0|0|4|3|-14|\n|Brice Sensabaugh|17:23|3|1-6|1-6|0-0|1|0|1|3|2|0|1|5|-16|\n|Cody Williams|20:36|4|2-5|0-3|0-0|0|0|0|0|1|1|0|1|-14|\n|Elijah Harkless|02:40|4|0-0|0-0|4-4|0|0|0|1|1|0|0|0|5|\n|Walter Clayton Jr.|00:00|0|0-0|0-0|0-0|0|0|0|0|0|0|0|0|0|\n|Taylor Hendricks|00:00|0|0-0|0-0|0-0|0|0|0|0|0|0|0|0|0|\n|Kyle Filipowski|00:00|0|0-0|0-0|0-0|0|0|0|0|0|0|0|0|0|\n|Walker Kessler|00:00|0|0-0|0-0|0-0|0|0|0|0|0|0|0|0|0|\n|Georges Niang|00:00|0|0-0|0-0|0-0|0|0|0|0|0|0|0|0|0|\n|John Tonje|00:00|0|0-0|0-0|0-0|0|0|0|0|0|0|0|0|0|\n|Oscar Tshiebwe|00:00|0|0-0|0-0|0-0|0|0|0|0|0|0|0|0|0|\n**[](/LAL) Los Angeles Lakers**|**MIN**|**PTS**|**FGM-A**|**3PM-A**|**FTM-A**|**ORB**|**DRB**|**REB**|**AST**|**STL**|**BLK**|**TO**|**PF**|**±**|\n|LeBron James^SF|29:37|11|4-7|2-3|1-4|1|2|3|12|1|0|1|0|1|\n|Rui Hachimura^PF|25:42|6|3-8|0-2|0-0|2|2|4|1|0|0|0|1|14|\n|Deandre Ayton^C|29:59|20|10-13|0-0|0-2|4|10|14|1|1|1|1|2|11|\n|Austin Reaves^SG|33:26|26|7-11|1-4|11-12|1|4|5|1|1|0|4|3|10|\n|Luka Dončić^PG|34:13|37|11-22|2-10|13-16|0|5|5|10|4|0|8|4|10|\n|Marcus Smart|17:09|5|2-5|1-4|0-0|1|2|3|1|0|0|0|3|11|\n|Jaxson Hayes|15:02|8|3-3|0-0|2-3|2|1|3|0|1|0|0|1|13|\n|Jake LaRavia|25:30|16|6-10|2-5|2-3|0|4|4|2|1|0|0|1|13|\n|Gabe Vincent|16:01|6|2-3|2-3|0-0|0|0|0|1|0|0|0|3|15|\n|Adou Thiero|03:33|2|1-1|0-0|0-0|0|0|0|0|0|0|0|2|-6|\n|Dalton Knecht|03:33|0|0-0|0-0|0-0|0|0|0|0|0|0|0|0|-6|\n|Bronny James|03:33|3|1-1|1-1|0-0|0|0|0|1|0|0|3|1|-6|\n|Maxi Kleber|02:40|0|0-0|0-0|0-0|0|0|0|0|0|0|0|0|-5|\n|Jarred Vanderbilt|00:00|0|0-0|0-0|0-0|0|0|0|0|0|0|0|0|0|\n|Christian Koloko|00:00|0|0-0|0-0|0-0|0|0|0|0|0|0|0|0|0|\n|Chris Mañon|00:00|0|0-0|0-0|0-0|0|0|0|0|0|0|0|0|0|\n|Nick Smith Jr.|00:00|0|0-0|0-0|0-0|0|0|0|0|0|0|0|0|0|",
                      "author_fullname": "t2_9chnwc73",
                      "saved": false,
                      "mod_reason_title": null,
                      "gilded": 0,
                      "clicked": false,
                      "title": "[Post Game Thread] The Los Angeles Lakers (11-4) defeat the Utah Jazz (5-9), 140-125.",
                      "link_flair_richtext": [
                          {
                              "e": "text",
                              "t": "Post Game Thread"
                          }
                      ],
                      "subreddit_name_prefixed": "r/nba",
                      "hidden": false,
                      "pwls": 6,
                      "link_flair_css_class": "postgamethread",
                      "downs": 0,
                      "thumbnail_height": null,
                      "top_awarded_type": null,
                      "hide_score": false,
                      "name": "t3_1p0zsrc",
                      "quarantine": false,
                      "link_flair_text_color": "light",
                      "upvote_ratio": 0.95,
                      "author_flair_background_color": "#edeff1",
                      "subreddit_type": "public",
                      "ups": 1739,
                      "total_awards_received": 0,
                      "media_embed": {},
                      "thumbnail_width": null,
                      "author_flair_template_id": "cc57a3a0-3feb-11e8-a765-0ee0c6cba6de",
                      "is_original_content": false,
                      "user_reports": [],
                      "secure_media": null,
                      "is_reddit_media_domain": false,
                      "is_meta": false,
                      "category": null,
                      "secure_media_embed": {},
                      "link_flair_text": "Post Game Thread",
                      "can_mod_post": false,
                      "score": 1739,
                      "approved_by": null,
                      "is_created_from_ads_ui": false,
                      "author_premium": false,
                      "thumbnail": "self",
                      "edited": false,
                      "author_flair_css_class": "Lakers2",
                      "author_flair_richtext": [
                          {
                              "a": ":lal-2:",
                              "e": "emoji",
                              "u": "https://emoji.redditmedia.com/1qov69yrs4r81_t5_2qo4s/lal-2"
                          },
                          {
                              "e": "text",
                              "t": " [LAL] Austin Reaves"
                          }
                      ],
                      "gildings": {},
                      "post_hint": "self",
                      "content_categories": null,
                      "is_self": true,
                      "mod_note": null,
                      "created": 1763532346,
                      "link_flair_type": "richtext",
                      "wls": 6,
                      "removed_by_category": null,
                      "banned_by": null,
                      "author_flair_type": "richtext",
                      "domain": "self.nba",
                      "allow_live_comments": false,
                      "selftext_html": "&lt;!-- SC_OFF --&gt;&lt;div class=\"md\"&gt;&lt;table&gt;&lt;thead&gt;\n&lt;tr&gt;\n&lt;th align=\"center\"&gt;&lt;/th&gt;\n&lt;/tr&gt;\n&lt;/thead&gt;&lt;tbody&gt;\n&lt;tr&gt;\n&lt;td align=\"center\"&gt;&lt;a href=\"/UTA\"&gt;&lt;/a&gt; &lt;strong&gt;125 -  140&lt;/strong&gt; &lt;a href=\"/LAL\"&gt;&lt;/a&gt;&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"center\"&gt;&lt;strong&gt;Box Scores: &lt;a href=\"http://www.nba.com/game/UTA-vs-LAL-0022500253/box-score\"&gt;NBA&lt;/a&gt; - &lt;a href=\"https://sports.yahoo.com/nba/scoreboard/\"&gt;Yahoo&lt;/a&gt;&lt;/strong&gt;&lt;/td&gt;\n&lt;/tr&gt;\n&lt;/tbody&gt;&lt;/table&gt;\n\n&lt;table&gt;&lt;thead&gt;\n&lt;tr&gt;\n&lt;th align=\"center\"&gt;&lt;/th&gt;\n&lt;/tr&gt;\n&lt;/thead&gt;&lt;tbody&gt;\n&lt;tr&gt;\n&lt;td align=\"center\"&gt;&amp;nbsp;&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"center\"&gt;&lt;strong&gt;GAME SUMMARY&lt;/strong&gt;&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"center\"&gt;&lt;strong&gt;Location:&lt;/strong&gt; Crypto.com Arena&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"center\"&gt;&lt;strong&gt;Officials:&lt;/strong&gt; Bill Kennedy, Brian Forte, and Sha&amp;#39;Rae Mitchell&lt;/td&gt;\n&lt;/tr&gt;\n&lt;/tbody&gt;&lt;/table&gt;\n\n&lt;table&gt;&lt;thead&gt;\n&lt;tr&gt;\n&lt;th align=\"left\"&gt;&lt;strong&gt;Team&lt;/strong&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;strong&gt;Q1&lt;/strong&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;strong&gt;Q2&lt;/strong&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;strong&gt;Q3&lt;/strong&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;strong&gt;Q4&lt;/strong&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;strong&gt;Total&lt;/strong&gt;&lt;/th&gt;\n&lt;/tr&gt;\n&lt;/thead&gt;&lt;tbody&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Utah Jazz&lt;/td&gt;\n&lt;td align=\"left\"&gt;36&lt;/td&gt;\n&lt;td align=\"left\"&gt;35&lt;/td&gt;\n&lt;td align=\"left\"&gt;22&lt;/td&gt;\n&lt;td align=\"left\"&gt;32&lt;/td&gt;\n&lt;td align=\"left\"&gt;125&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Los Angeles Lakers&lt;/td&gt;\n&lt;td align=\"left\"&gt;27&lt;/td&gt;\n&lt;td align=\"left\"&gt;40&lt;/td&gt;\n&lt;td align=\"left\"&gt;37&lt;/td&gt;\n&lt;td align=\"left\"&gt;36&lt;/td&gt;\n&lt;td align=\"left\"&gt;140&lt;/td&gt;\n&lt;/tr&gt;\n&lt;/tbody&gt;&lt;/table&gt;\n\n&lt;table&gt;&lt;thead&gt;\n&lt;tr&gt;\n&lt;th align=\"center\"&gt;&lt;/th&gt;\n&lt;/tr&gt;\n&lt;/thead&gt;&lt;tbody&gt;\n&lt;tr&gt;\n&lt;td align=\"center\"&gt;&amp;nbsp;&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"center\"&gt;&lt;strong&gt;TEAM STATS&lt;/strong&gt;&lt;/td&gt;\n&lt;/tr&gt;\n&lt;/tbody&gt;&lt;/table&gt;\n\n&lt;table&gt;&lt;thead&gt;\n&lt;tr&gt;\n&lt;th align=\"left\"&gt;&lt;strong&gt;Team&lt;/strong&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;strong&gt;PTS&lt;/strong&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;strong&gt;FG&lt;/strong&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;strong&gt;FG%&lt;/strong&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;strong&gt;3P&lt;/strong&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;strong&gt;3P%&lt;/strong&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;strong&gt;FT&lt;/strong&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;strong&gt;FT%&lt;/strong&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;strong&gt;OREB&lt;/strong&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;strong&gt;TREB&lt;/strong&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;strong&gt;AST&lt;/strong&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;strong&gt;PF&lt;/strong&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;strong&gt;STL&lt;/strong&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;strong&gt;TO&lt;/strong&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;strong&gt;BLK&lt;/strong&gt;&lt;/th&gt;\n&lt;/tr&gt;\n&lt;/thead&gt;&lt;tbody&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Utah Jazz&lt;/td&gt;\n&lt;td align=\"left\"&gt;125&lt;/td&gt;\n&lt;td align=\"left\"&gt;47-91&lt;/td&gt;\n&lt;td align=\"left\"&gt;51.6%&lt;/td&gt;\n&lt;td align=\"left\"&gt;13-45&lt;/td&gt;\n&lt;td align=\"left\"&gt;28.9%&lt;/td&gt;\n&lt;td align=\"left\"&gt;18-19&lt;/td&gt;\n&lt;td align=\"left\"&gt;94.7%&lt;/td&gt;\n&lt;td align=\"left\"&gt;8&lt;/td&gt;\n&lt;td align=\"left\"&gt;39&lt;/td&gt;\n&lt;td align=\"left\"&gt;32&lt;/td&gt;\n&lt;td align=\"left\"&gt;30&lt;/td&gt;\n&lt;td align=\"left\"&gt;13&lt;/td&gt;\n&lt;td align=\"left\"&gt;18&lt;/td&gt;\n&lt;td align=\"left\"&gt;2&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Los Angeles Lakers&lt;/td&gt;\n&lt;td align=\"left\"&gt;140&lt;/td&gt;\n&lt;td align=\"left\"&gt;50-84&lt;/td&gt;\n&lt;td align=\"left\"&gt;59.5%&lt;/td&gt;\n&lt;td align=\"left\"&gt;11-32&lt;/td&gt;\n&lt;td align=\"left\"&gt;34.4%&lt;/td&gt;\n&lt;td align=\"left\"&gt;29-40&lt;/td&gt;\n&lt;td align=\"left\"&gt;72.5%&lt;/td&gt;\n&lt;td align=\"left\"&gt;11&lt;/td&gt;\n&lt;td align=\"left\"&gt;53&lt;/td&gt;\n&lt;td align=\"left\"&gt;30&lt;/td&gt;\n&lt;td align=\"left\"&gt;21&lt;/td&gt;\n&lt;td align=\"left\"&gt;9&lt;/td&gt;\n&lt;td align=\"left\"&gt;17&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;/tr&gt;\n&lt;/tbody&gt;&lt;/table&gt;\n\n&lt;table&gt;&lt;thead&gt;\n&lt;tr&gt;\n&lt;th align=\"center\"&gt;&lt;/th&gt;\n&lt;/tr&gt;\n&lt;/thead&gt;&lt;tbody&gt;\n&lt;tr&gt;\n&lt;td align=\"center\"&gt;&amp;nbsp;&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"center\"&gt;&lt;strong&gt;PLAYER STATS&lt;/strong&gt;&lt;/td&gt;\n&lt;/tr&gt;\n&lt;/tbody&gt;&lt;/table&gt;\n\n&lt;table&gt;&lt;thead&gt;\n&lt;tr&gt;\n&lt;th align=\"left\"&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;/th&gt;\n&lt;th align=\"left\"&gt;&lt;/th&gt;\n&lt;/tr&gt;\n&lt;/thead&gt;&lt;tbody&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;&lt;strong&gt;&lt;a href=\"/UTA\"&gt;&lt;/a&gt; Utah Jazz&lt;/strong&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;strong&gt;MIN&lt;/strong&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;strong&gt;PTS&lt;/strong&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;strong&gt;FGM-A&lt;/strong&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;strong&gt;3PM-A&lt;/strong&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;strong&gt;FTM-A&lt;/strong&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;strong&gt;ORB&lt;/strong&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;strong&gt;DRB&lt;/strong&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;strong&gt;REB&lt;/strong&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;strong&gt;AST&lt;/strong&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;strong&gt;STL&lt;/strong&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;strong&gt;BLK&lt;/strong&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;strong&gt;TO&lt;/strong&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;strong&gt;PF&lt;/strong&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;strong&gt;±&lt;/strong&gt;&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Svi Mykhailiuk&lt;sup&gt;SF&lt;/sup&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;25:12&lt;/td&gt;\n&lt;td align=\"left\"&gt;13&lt;/td&gt;\n&lt;td align=\"left\"&gt;5-7&lt;/td&gt;\n&lt;td align=\"left\"&gt;3-5&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;3&lt;/td&gt;\n&lt;td align=\"left\"&gt;3&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;2&lt;/td&gt;\n&lt;td align=\"left\"&gt;-6&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Lauri Markkanen&lt;sup&gt;PF&lt;/sup&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;32:01&lt;/td&gt;\n&lt;td align=\"left\"&gt;31&lt;/td&gt;\n&lt;td align=\"left\"&gt;12-21&lt;/td&gt;\n&lt;td align=\"left\"&gt;3-9&lt;/td&gt;\n&lt;td align=\"left\"&gt;4-4&lt;/td&gt;\n&lt;td align=\"left\"&gt;2&lt;/td&gt;\n&lt;td align=\"left\"&gt;3&lt;/td&gt;\n&lt;td align=\"left\"&gt;5&lt;/td&gt;\n&lt;td align=\"left\"&gt;2&lt;/td&gt;\n&lt;td align=\"left\"&gt;2&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;4&lt;/td&gt;\n&lt;td align=\"left\"&gt;-6&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Jusuf Nurkić&lt;sup&gt;C&lt;/sup&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;28:52&lt;/td&gt;\n&lt;td align=\"left\"&gt;10&lt;/td&gt;\n&lt;td align=\"left\"&gt;4-5&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-1&lt;/td&gt;\n&lt;td align=\"left\"&gt;2-2&lt;/td&gt;\n&lt;td align=\"left\"&gt;2&lt;/td&gt;\n&lt;td align=\"left\"&gt;8&lt;/td&gt;\n&lt;td align=\"left\"&gt;10&lt;/td&gt;\n&lt;td align=\"left\"&gt;6&lt;/td&gt;\n&lt;td align=\"left\"&gt;2&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;6&lt;/td&gt;\n&lt;td align=\"left\"&gt;4&lt;/td&gt;\n&lt;td align=\"left\"&gt;-13&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Ace Bailey&lt;sup&gt;SG&lt;/sup&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;23:22&lt;/td&gt;\n&lt;td align=\"left\"&gt;13&lt;/td&gt;\n&lt;td align=\"left\"&gt;6-12&lt;/td&gt;\n&lt;td align=\"left\"&gt;1-6&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;3&lt;/td&gt;\n&lt;td align=\"left\"&gt;5&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Keyonte George&lt;sup&gt;PG&lt;/sup&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;35:21&lt;/td&gt;\n&lt;td align=\"left\"&gt;33&lt;/td&gt;\n&lt;td align=\"left\"&gt;12-22&lt;/td&gt;\n&lt;td align=\"left\"&gt;5-13&lt;/td&gt;\n&lt;td align=\"left\"&gt;4-4&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;4&lt;/td&gt;\n&lt;td align=\"left\"&gt;4&lt;/td&gt;\n&lt;td align=\"left\"&gt;7&lt;/td&gt;\n&lt;td align=\"left\"&gt;2&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;3&lt;/td&gt;\n&lt;td align=\"left\"&gt;4&lt;/td&gt;\n&lt;td align=\"left\"&gt;-10&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Kyle Anderson&lt;/td&gt;\n&lt;td align=\"left\"&gt;20:02&lt;/td&gt;\n&lt;td align=\"left\"&gt;5&lt;/td&gt;\n&lt;td align=\"left\"&gt;2-5&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;1-2&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;2&lt;/td&gt;\n&lt;td align=\"left\"&gt;3&lt;/td&gt;\n&lt;td align=\"left\"&gt;5&lt;/td&gt;\n&lt;td align=\"left\"&gt;2&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;2&lt;/td&gt;\n&lt;td align=\"left\"&gt;2&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Kevin Love&lt;/td&gt;\n&lt;td align=\"left\"&gt;13:32&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-2&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-2&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;3&lt;/td&gt;\n&lt;td align=\"left\"&gt;4&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;2&lt;/td&gt;\n&lt;td align=\"left\"&gt;-8&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Isaiah Collier&lt;/td&gt;\n&lt;td align=\"left\"&gt;20:59&lt;/td&gt;\n&lt;td align=\"left\"&gt;9&lt;/td&gt;\n&lt;td align=\"left\"&gt;3-6&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;3-3&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;2&lt;/td&gt;\n&lt;td align=\"left\"&gt;2&lt;/td&gt;\n&lt;td align=\"left\"&gt;6&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;4&lt;/td&gt;\n&lt;td align=\"left\"&gt;3&lt;/td&gt;\n&lt;td align=\"left\"&gt;-14&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Brice Sensabaugh&lt;/td&gt;\n&lt;td align=\"left\"&gt;17:23&lt;/td&gt;\n&lt;td align=\"left\"&gt;3&lt;/td&gt;\n&lt;td align=\"left\"&gt;1-6&lt;/td&gt;\n&lt;td align=\"left\"&gt;1-6&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;3&lt;/td&gt;\n&lt;td align=\"left\"&gt;2&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;5&lt;/td&gt;\n&lt;td align=\"left\"&gt;-16&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Cody Williams&lt;/td&gt;\n&lt;td align=\"left\"&gt;20:36&lt;/td&gt;\n&lt;td align=\"left\"&gt;4&lt;/td&gt;\n&lt;td align=\"left\"&gt;2-5&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-3&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;-14&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Elijah Harkless&lt;/td&gt;\n&lt;td align=\"left\"&gt;02:40&lt;/td&gt;\n&lt;td align=\"left\"&gt;4&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;4-4&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;5&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Walter Clayton Jr.&lt;/td&gt;\n&lt;td align=\"left\"&gt;00:00&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Taylor Hendricks&lt;/td&gt;\n&lt;td align=\"left\"&gt;00:00&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Kyle Filipowski&lt;/td&gt;\n&lt;td align=\"left\"&gt;00:00&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Walker Kessler&lt;/td&gt;\n&lt;td align=\"left\"&gt;00:00&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Georges Niang&lt;/td&gt;\n&lt;td align=\"left\"&gt;00:00&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;John Tonje&lt;/td&gt;\n&lt;td align=\"left\"&gt;00:00&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Oscar Tshiebwe&lt;/td&gt;\n&lt;td align=\"left\"&gt;00:00&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;&lt;strong&gt;&lt;a href=\"/LAL\"&gt;&lt;/a&gt; Los Angeles Lakers&lt;/strong&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;strong&gt;MIN&lt;/strong&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;strong&gt;PTS&lt;/strong&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;strong&gt;FGM-A&lt;/strong&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;strong&gt;3PM-A&lt;/strong&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;strong&gt;FTM-A&lt;/strong&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;strong&gt;ORB&lt;/strong&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;strong&gt;DRB&lt;/strong&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;strong&gt;REB&lt;/strong&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;strong&gt;AST&lt;/strong&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;strong&gt;STL&lt;/strong&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;strong&gt;BLK&lt;/strong&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;strong&gt;TO&lt;/strong&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;strong&gt;PF&lt;/strong&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;&lt;strong&gt;±&lt;/strong&gt;&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;LeBron James&lt;sup&gt;SF&lt;/sup&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;29:37&lt;/td&gt;\n&lt;td align=\"left\"&gt;11&lt;/td&gt;\n&lt;td align=\"left\"&gt;4-7&lt;/td&gt;\n&lt;td align=\"left\"&gt;2-3&lt;/td&gt;\n&lt;td align=\"left\"&gt;1-4&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;2&lt;/td&gt;\n&lt;td align=\"left\"&gt;3&lt;/td&gt;\n&lt;td align=\"left\"&gt;12&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Rui Hachimura&lt;sup&gt;PF&lt;/sup&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;25:42&lt;/td&gt;\n&lt;td align=\"left\"&gt;6&lt;/td&gt;\n&lt;td align=\"left\"&gt;3-8&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-2&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;2&lt;/td&gt;\n&lt;td align=\"left\"&gt;2&lt;/td&gt;\n&lt;td align=\"left\"&gt;4&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;14&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Deandre Ayton&lt;sup&gt;C&lt;/sup&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;29:59&lt;/td&gt;\n&lt;td align=\"left\"&gt;20&lt;/td&gt;\n&lt;td align=\"left\"&gt;10-13&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-2&lt;/td&gt;\n&lt;td align=\"left\"&gt;4&lt;/td&gt;\n&lt;td align=\"left\"&gt;10&lt;/td&gt;\n&lt;td align=\"left\"&gt;14&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;2&lt;/td&gt;\n&lt;td align=\"left\"&gt;11&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Austin Reaves&lt;sup&gt;SG&lt;/sup&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;33:26&lt;/td&gt;\n&lt;td align=\"left\"&gt;26&lt;/td&gt;\n&lt;td align=\"left\"&gt;7-11&lt;/td&gt;\n&lt;td align=\"left\"&gt;1-4&lt;/td&gt;\n&lt;td align=\"left\"&gt;11-12&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;4&lt;/td&gt;\n&lt;td align=\"left\"&gt;5&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;4&lt;/td&gt;\n&lt;td align=\"left\"&gt;3&lt;/td&gt;\n&lt;td align=\"left\"&gt;10&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Luka Dončić&lt;sup&gt;PG&lt;/sup&gt;&lt;/td&gt;\n&lt;td align=\"left\"&gt;34:13&lt;/td&gt;\n&lt;td align=\"left\"&gt;37&lt;/td&gt;\n&lt;td align=\"left\"&gt;11-22&lt;/td&gt;\n&lt;td align=\"left\"&gt;2-10&lt;/td&gt;\n&lt;td align=\"left\"&gt;13-16&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;5&lt;/td&gt;\n&lt;td align=\"left\"&gt;5&lt;/td&gt;\n&lt;td align=\"left\"&gt;10&lt;/td&gt;\n&lt;td align=\"left\"&gt;4&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;8&lt;/td&gt;\n&lt;td align=\"left\"&gt;4&lt;/td&gt;\n&lt;td align=\"left\"&gt;10&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Marcus Smart&lt;/td&gt;\n&lt;td align=\"left\"&gt;17:09&lt;/td&gt;\n&lt;td align=\"left\"&gt;5&lt;/td&gt;\n&lt;td align=\"left\"&gt;2-5&lt;/td&gt;\n&lt;td align=\"left\"&gt;1-4&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;2&lt;/td&gt;\n&lt;td align=\"left\"&gt;3&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;3&lt;/td&gt;\n&lt;td align=\"left\"&gt;11&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Jaxson Hayes&lt;/td&gt;\n&lt;td align=\"left\"&gt;15:02&lt;/td&gt;\n&lt;td align=\"left\"&gt;8&lt;/td&gt;\n&lt;td align=\"left\"&gt;3-3&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;2-3&lt;/td&gt;\n&lt;td align=\"left\"&gt;2&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;3&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;13&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Jake LaRavia&lt;/td&gt;\n&lt;td align=\"left\"&gt;25:30&lt;/td&gt;\n&lt;td align=\"left\"&gt;16&lt;/td&gt;\n&lt;td align=\"left\"&gt;6-10&lt;/td&gt;\n&lt;td align=\"left\"&gt;2-5&lt;/td&gt;\n&lt;td align=\"left\"&gt;2-3&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;4&lt;/td&gt;\n&lt;td align=\"left\"&gt;4&lt;/td&gt;\n&lt;td align=\"left\"&gt;2&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;13&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Gabe Vincent&lt;/td&gt;\n&lt;td align=\"left\"&gt;16:01&lt;/td&gt;\n&lt;td align=\"left\"&gt;6&lt;/td&gt;\n&lt;td align=\"left\"&gt;2-3&lt;/td&gt;\n&lt;td align=\"left\"&gt;2-3&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;3&lt;/td&gt;\n&lt;td align=\"left\"&gt;15&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Adou Thiero&lt;/td&gt;\n&lt;td align=\"left\"&gt;03:33&lt;/td&gt;\n&lt;td align=\"left\"&gt;2&lt;/td&gt;\n&lt;td align=\"left\"&gt;1-1&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;2&lt;/td&gt;\n&lt;td align=\"left\"&gt;-6&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Dalton Knecht&lt;/td&gt;\n&lt;td align=\"left\"&gt;03:33&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;-6&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Bronny James&lt;/td&gt;\n&lt;td align=\"left\"&gt;03:33&lt;/td&gt;\n&lt;td align=\"left\"&gt;3&lt;/td&gt;\n&lt;td align=\"left\"&gt;1-1&lt;/td&gt;\n&lt;td align=\"left\"&gt;1-1&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;3&lt;/td&gt;\n&lt;td align=\"left\"&gt;1&lt;/td&gt;\n&lt;td align=\"left\"&gt;-6&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Maxi Kleber&lt;/td&gt;\n&lt;td align=\"left\"&gt;02:40&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;-5&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Jarred Vanderbilt&lt;/td&gt;\n&lt;td align=\"left\"&gt;00:00&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Christian Koloko&lt;/td&gt;\n&lt;td align=\"left\"&gt;00:00&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Chris Mañon&lt;/td&gt;\n&lt;td align=\"left\"&gt;00:00&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;/tr&gt;\n&lt;tr&gt;\n&lt;td align=\"left\"&gt;Nick Smith Jr.&lt;/td&gt;\n&lt;td align=\"left\"&gt;00:00&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0-0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;td align=\"left\"&gt;0&lt;/td&gt;\n&lt;/tr&gt;\n&lt;/tbody&gt;&lt;/table&gt;\n&lt;/div&gt;&lt;!-- SC_ON --&gt;",
                      "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,
                      "preview": {
                          "images": [
                              {
                                  "source": {
                                      "url": "https://external-preview.redd.it/7Yn7gVZ6hRhpW_5CGAVXt6mMGxrzj16GloTOJecTAJQ.png?auto=webp&amp;s=286a1ec44004ab6d0c4c469b2010d4d771f8bd2a",
                                      "width": 1200,
                                      "height": 628
                                  },
                                  "resolutions": [
                                      {
                                          "url": "https://external-preview.redd.it/7Yn7gVZ6hRhpW_5CGAVXt6mMGxrzj16GloTOJecTAJQ.png?width=108&amp;crop=smart&amp;auto=webp&amp;s=c9065f73b4d158e53626711b2f7eca939e331a2e",
                                          "width": 108,
                                          "height": 56
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/7Yn7gVZ6hRhpW_5CGAVXt6mMGxrzj16GloTOJecTAJQ.png?width=216&amp;crop=smart&amp;auto=webp&amp;s=73012ea22b1608da76f1c08370fcb9211133b57f",
                                          "width": 216,
                                          "height": 113
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/7Yn7gVZ6hRhpW_5CGAVXt6mMGxrzj16GloTOJecTAJQ.png?width=320&amp;crop=smart&amp;auto=webp&amp;s=93b5b382780efcc413c1cdd2b93261c218008aa3",
                                          "width": 320,
                                          "height": 167
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/7Yn7gVZ6hRhpW_5CGAVXt6mMGxrzj16GloTOJecTAJQ.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=bf7384d4dd7b0838929d8e29008c217fc9006f10",
                                          "width": 640,
                                          "height": 334
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/7Yn7gVZ6hRhpW_5CGAVXt6mMGxrzj16GloTOJecTAJQ.png?width=960&amp;crop=smart&amp;auto=webp&amp;s=b3f2da0da52b3da406711a9d19f9253c13f9a27a",
                                          "width": 960,
                                          "height": 502
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/7Yn7gVZ6hRhpW_5CGAVXt6mMGxrzj16GloTOJecTAJQ.png?width=1080&amp;crop=smart&amp;auto=webp&amp;s=8bdfd1a2d68206cec1227ac9bac3c52d089cf4c8",
                                          "width": 1080,
                                          "height": 565
                                      }
                                  ],
                                  "variants": {},
                                  "id": "7Yn7gVZ6hRhpW_5CGAVXt6mMGxrzj16GloTOJecTAJQ"
                              }
                          ],
                          "enabled": false
                      },
                      "all_awardings": [],
                      "awarders": [],
                      "media_only": false,
                      "link_flair_template_id": "60e8f046-5c93-11e3-a663-12313d188143",
                      "can_gild": false,
                      "spoiler": false,
                      "locked": false,
                      "author_flair_text": ":lal-2: [LAL] Austin Reaves",
                      "treatment_tags": [],
                      "visited": false,
                      "removed_by": null,
                      "num_reports": null,
                      "distinguished": null,
                      "subreddit_id": "t5_2qo4s",
                      "author_is_blocked": false,
                      "mod_reason_by": null,
                      "removal_reason": null,
                      "link_flair_background_color": "#3fab53",
                      "id": "1p0zsrc",
                      "is_robot_indexable": true,
                      "report_reasons": null,
                      "author": "woKaaaa",
                      "discussion_type": null,
                      "num_comments": 416,
                      "send_replies": true,
                      "contest_mode": false,
                      "mod_reports": [],
                      "author_patreon_flair": false,
                      "author_flair_text_color": "dark",
                      "permalink": "/r/nba/comments/1p0zsrc/post_game_thread_the_los_angeles_lakers_114/",
                      "stickied": false,
                      "url": "https://www.reddit.com/r/nba/comments/1p0zsrc/post_game_thread_the_los_angeles_lakers_114/",
                      "subreddit_subscribers": 16893176,
                      "created_utc": 1763532346,
                      "num_crossposts": 0,
                      "media": null,
                      "is_video": false
                  }
              },
              {
                  "kind": "t3",
                  "data": {
                      "approved_at_utc": null,
                      "subreddit": "nba",
                      "selftext": "LeBron James has the record for the 10 point game streak by far, with Michael Jordan in second with a 866 game streak. \n\n  \n\n\nThe last time LeBron scored less than 10 points was before January 6th, 2007, over 18 years ago. ",
                      "author_fullname": "t2_12683e",
                      "saved": false,
                      "mod_reason_title": null,
                      "gilded": 0,
                      "clicked": false,
                      "title": "LeBron James extends his record 10 point game streak to 1293 in his first game back with 11 points in a win over the Utah Jazz.",
                      "link_flair_richtext": [],
                      "subreddit_name_prefixed": "r/nba",
                      "hidden": false,
                      "pwls": 6,
                      "link_flair_css_class": null,
                      "downs": 0,
                      "thumbnail_height": null,
                      "top_awarded_type": null,
                      "hide_score": false,
                      "name": "t3_1p0zyoc",
                      "quarantine": false,
                      "link_flair_text_color": "dark",
                      "upvote_ratio": 0.97,
                      "author_flair_background_color": "#edeff1",
                      "subreddit_type": "public",
                      "ups": 1593,
                      "total_awards_received": 0,
                      "media_embed": {},
                      "thumbnail_width": null,
                      "author_flair_template_id": "c494717a-3feb-11e8-9d0a-0e782b3ca234",
                      "is_original_content": false,
                      "user_reports": [],
                      "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": 1593,
                      "approved_by": null,
                      "is_created_from_ads_ui": false,
                      "author_premium": false,
                      "thumbnail": "self",
                      "edited": false,
                      "author_flair_css_class": "Pistons1",
                      "author_flair_richtext": [
                          {
                              "a": ":det-1:",
                              "e": "emoji",
                              "u": "https://emoji.redditmedia.com/ecq45ehds4r81_t5_2qo4s/det-1"
                          },
                          {
                              "e": "text",
                              "t": " Pistons"
                          }
                      ],
                      "gildings": {},
                      "content_categories": null,
                      "is_self": true,
                      "mod_note": null,
                      "created": 1763532901,
                      "link_flair_type": "text",
                      "wls": 6,
                      "removed_by_category": null,
                      "banned_by": null,
                      "author_flair_type": "richtext",
                      "domain": "self.nba",
                      "allow_live_comments": false,
                      "selftext_html": "&lt;!-- SC_OFF --&gt;&lt;div class=\"md\"&gt;&lt;p&gt;LeBron James has the record for the 10 point game streak by far, with Michael Jordan in second with a 866 game streak. &lt;/p&gt;\n\n&lt;p&gt;The last time LeBron scored less than 10 points was before January 6th, 2007, over 18 years ago. &lt;/p&gt;\n&lt;/div&gt;&lt;!-- SC_ON --&gt;",
                      "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": [],
                      "awarders": [],
                      "media_only": false,
                      "can_gild": false,
                      "spoiler": false,
                      "locked": false,
                      "author_flair_text": ":det-1: Pistons",
                      "treatment_tags": [],
                      "visited": false,
                      "removed_by": null,
                      "num_reports": null,
                      "distinguished": null,
                      "subreddit_id": "t5_2qo4s",
                      "author_is_blocked": false,
                      "mod_reason_by": null,
                      "removal_reason": null,
                      "link_flair_background_color": "",
                      "id": "1p0zyoc",
                      "is_robot_indexable": true,
                      "report_reasons": null,
                      "author": "foaaz101",
                      "discussion_type": null,
                      "num_comments": 184,
                      "send_replies": true,
                      "contest_mode": false,
                      "mod_reports": [],
                      "author_patreon_flair": false,
                      "author_flair_text_color": "dark",
                      "permalink": "/r/nba/comments/1p0zyoc/lebron_james_extends_his_record_10_point_game/",
                      "stickied": false,
                      "url": "https://www.reddit.com/r/nba/comments/1p0zyoc/lebron_james_extends_his_record_10_point_game/",
                      "subreddit_subscribers": 16893176,
                      "created_utc": 1763532901,
                      "num_crossposts": 0,
                      "media": null,
                      "is_video": false
                  }
              },
              {
                  "kind": "t3",
                  "data": {
                      "approved_at_utc": null,
                      "subreddit": "nba",
                      "selftext": "&gt;LeBron James will make his Los Angeles Lakers season debut against the Utah Jazz tonight at home, sources tell ESPN. The four-time NBA champion has rehabbed a nerve issue on his right side and now will take the court for a league-record 23rd season.\n\n[https://www.espn.com/contributor/shams-charania/4952377b67a57](https://www.espn.com/contributor/shams-charania/4952377b67a57)",
                      "author_fullname": "t2_83bqlo39",
                      "saved": false,
                      "mod_reason_title": null,
                      "gilded": 0,
                      "clicked": false,
                      "title": "[Charania] LeBron James will make his Los Angeles Lakers season debut against the Utah Jazz tonight at home, sources tell ESPN. The four-time NBA champion has rehabbed a nerve issue on his right side and now will take the court for a league-record 23rd season.",
                      "link_flair_richtext": [],
                      "subreddit_name_prefixed": "r/nba",
                      "hidden": false,
                      "pwls": 6,
                      "link_flair_css_class": null,
                      "downs": 0,
                      "thumbnail_height": null,
                      "top_awarded_type": null,
                      "hide_score": false,
                      "name": "t3_1p0uo7k",
                      "quarantine": false,
                      "link_flair_text_color": "dark",
                      "upvote_ratio": 0.97,
                      "author_flair_background_color": "#edeff1",
                      "subreddit_type": "public",
                      "ups": 3402,
                      "total_awards_received": 0,
                      "media_embed": {},
                      "thumbnail_width": null,
                      "author_flair_template_id": "cc0d49ae-3feb-11e8-8327-0e3e867879aa",
                      "is_original_content": false,
                      "user_reports": [],
                      "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": 3402,
                      "approved_by": null,
                      "is_created_from_ads_ui": false,
                      "author_premium": false,
                      "thumbnail": "self",
                      "edited": false,
                      "author_flair_css_class": "Lakers1",
                      "author_flair_richtext": [
                          {
                              "a": ":lal-1:",
                              "e": "emoji",
                              "u": "https://emoji.redditmedia.com/rwysqekrs4r81_t5_2qo4s/lal-1"
                          },
                          {
                              "e": "text",
                              "t": " [LAL] Rui Hachimura"
                          }
                      ],
                      "gildings": {},
                      "post_hint": "self",
                      "content_categories": null,
                      "is_self": true,
                      "mod_note": null,
                      "created": 1763516819,
                      "link_flair_type": "text",
                      "wls": 6,
                      "removed_by_category": null,
                      "banned_by": null,
                      "author_flair_type": "richtext",
                      "domain": "self.nba",
                      "allow_live_comments": false,
                      "selftext_html": "&lt;!-- SC_OFF --&gt;&lt;div class=\"md\"&gt;&lt;blockquote&gt;\n&lt;p&gt;LeBron James will make his Los Angeles Lakers season debut against the Utah Jazz tonight at home, sources tell ESPN. The four-time NBA champion has rehabbed a nerve issue on his right side and now will take the court for a league-record 23rd season.&lt;/p&gt;\n&lt;/blockquote&gt;\n\n&lt;p&gt;&lt;a href=\"https://www.espn.com/contributor/shams-charania/4952377b67a57\"&gt;https://www.espn.com/contributor/shams-charania/4952377b67a57&lt;/a&gt;&lt;/p&gt;\n&lt;/div&gt;&lt;!-- SC_ON --&gt;",
                      "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,
                      "preview": {
                          "images": [
                              {
                                  "source": {
                                      "url": "https://external-preview.redd.it/EsNqB48o34Tz6BuwjLpDYSBVhS_qZXVDzkIHp08vcHI.png?auto=webp&amp;s=cca02b4a0e017bf17353021cefb558807c43f1ab",
                                      "width": 1296,
                                      "height": 729
                                  },
                                  "resolutions": [
                                      {
                                          "url": "https://external-preview.redd.it/EsNqB48o34Tz6BuwjLpDYSBVhS_qZXVDzkIHp08vcHI.png?width=108&amp;crop=smart&amp;auto=webp&amp;s=cd3e4698c67167e1e2b83b66559555de0abc2a1f",
                                          "width": 108,
                                          "height": 60
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/EsNqB48o34Tz6BuwjLpDYSBVhS_qZXVDzkIHp08vcHI.png?width=216&amp;crop=smart&amp;auto=webp&amp;s=ea4738509d08619bea4ec3b7af840e62057b7c8c",
                                          "width": 216,
                                          "height": 121
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/EsNqB48o34Tz6BuwjLpDYSBVhS_qZXVDzkIHp08vcHI.png?width=320&amp;crop=smart&amp;auto=webp&amp;s=d5f620516ed1ef402992eb359c7eb10e01b0db8e",
                                          "width": 320,
                                          "height": 180
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/EsNqB48o34Tz6BuwjLpDYSBVhS_qZXVDzkIHp08vcHI.png?width=640&amp;crop=smart&amp;auto=webp&amp;s=f7faea5d3070e891d2ffcfec277d1403e7d801ea",
                                          "width": 640,
                                          "height": 360
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/EsNqB48o34Tz6BuwjLpDYSBVhS_qZXVDzkIHp08vcHI.png?width=960&amp;crop=smart&amp;auto=webp&amp;s=98cd8c825eb9a16b1bdfc83a007dfa6a463b2121",
                                          "width": 960,
                                          "height": 540
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/EsNqB48o34Tz6BuwjLpDYSBVhS_qZXVDzkIHp08vcHI.png?width=1080&amp;crop=smart&amp;auto=webp&amp;s=8bdac33739a65eaccef66b83491e77e04fca6b17",
                                          "width": 1080,
                                          "height": 607
                                      }
                                  ],
                                  "variants": {},
                                  "id": "EsNqB48o34Tz6BuwjLpDYSBVhS_qZXVDzkIHp08vcHI"
                              }
                          ],
                          "enabled": false
                      },
                      "all_awardings": [],
                      "awarders": [],
                      "media_only": false,
                      "can_gild": false,
                      "spoiler": false,
                      "locked": false,
                      "author_flair_text": ":lal-1: [LAL] Rui Hachimura",
                      "treatment_tags": [],
                      "visited": false,
                      "removed_by": null,
                      "num_reports": null,
                      "distinguished": null,
                      "subreddit_id": "t5_2qo4s",
                      "author_is_blocked": false,
                      "mod_reason_by": null,
                      "removal_reason": null,
                      "link_flair_background_color": "",
                      "id": "1p0uo7k",
                      "is_robot_indexable": true,
                      "report_reasons": null,
                      "author": "KarrotMovies",
                      "discussion_type": null,
                      "num_comments": 146,
                      "send_replies": true,
                      "contest_mode": false,
                      "mod_reports": [],
                      "author_patreon_flair": false,
                      "author_flair_text_color": "dark",
                      "permalink": "/r/nba/comments/1p0uo7k/charania_lebron_james_will_make_his_los_angeles/",
                      "stickied": false,
                      "url": "https://www.reddit.com/r/nba/comments/1p0uo7k/charania_lebron_james_will_make_his_los_angeles/",
                      "subreddit_subscribers": 16893176,
                      "created_utc": 1763516819,
                      "num_crossposts": 0,
                      "media": null,
                      "is_video": false
                  }
              },
              {
                  "kind": "t3",
                  "data": {
                      "approved_at_utc": null,
                      "subreddit": "nba",
                      "selftext": "\nLuka Doncic had another huge all-around performance tonight:\n\n37 Points\n\n10 Assists\n\n5 Rebounds\n\n4 Steals\n\n11/21 FG (52%)\n\n2/9 3PT (22%)\n\n13/16 FT (81%)\n\nAbsolute monster two-way game from Luk, he was scoring, playmaking, and just taking the ball from everyone in sight. Struggling from behind the arc still but very efficient inside the paint.\n\nSource: https://www.espn.com.au/nba/boxscore/_/gameId/401810108",
                      "author_fullname": "t2_ozrvxegb",
                      "saved": false,
                      "mod_reason_title": null,
                      "gilded": 0,
                      "clicked": false,
                      "title": "Luka puts up 37/10/5 with 4 steals as the Lakers blow out the Jazz",
                      "link_flair_richtext": [],
                      "subreddit_name_prefixed": "r/nba",
                      "hidden": false,
                      "pwls": 6,
                      "link_flair_css_class": null,
                      "downs": 0,
                      "thumbnail_height": null,
                      "top_awarded_type": null,
                      "hide_score": false,
                      "name": "t3_1p0zoel",
                      "quarantine": false,
                      "link_flair_text_color": "dark",
                      "upvote_ratio": 0.95,
                      "author_flair_background_color": null,
                      "subreddit_type": "public",
                      "ups": 1458,
                      "total_awards_received": 0,
                      "media_embed": {},
                      "thumbnail_width": null,
                      "author_flair_template_id": "0f4dc052-3c96-11ee-b197-42957ce21a5f",
                      "is_original_content": false,
                      "user_reports": [],
                      "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": 1458,
                      "approved_by": null,
                      "is_created_from_ads_ui": false,
                      "author_premium": true,
                      "thumbnail": "self",
                      "edited": 1763532057,
                      "author_flair_css_class": "SRB",
                      "author_flair_richtext": [
                          {
                              "a": ":SRB:",
                              "e": "emoji",
                              "u": "https://emoji.redditmedia.com/zqonhttlamib1_t5_2qo4s/SRB"
                          },
                          {
                              "e": "text",
                              "t": " Serbia"
                          }
                      ],
                      "gildings": {},
                      "post_hint": "self",
                      "content_categories": null,
                      "is_self": true,
                      "mod_note": null,
                      "created": 1763531931,
                      "link_flair_type": "text",
                      "wls": 6,
                      "removed_by_category": null,
                      "banned_by": null,
                      "author_flair_type": "richtext",
                      "domain": "self.nba",
                      "allow_live_comments": false,
                      "selftext_html": "&lt;!-- SC_OFF --&gt;&lt;div class=\"md\"&gt;&lt;p&gt;Luka Doncic had another huge all-around performance tonight:&lt;/p&gt;\n\n&lt;p&gt;37 Points&lt;/p&gt;\n\n&lt;p&gt;10 Assists&lt;/p&gt;\n\n&lt;p&gt;5 Rebounds&lt;/p&gt;\n\n&lt;p&gt;4 Steals&lt;/p&gt;\n\n&lt;p&gt;11/21 FG (52%)&lt;/p&gt;\n\n&lt;p&gt;2/9 3PT (22%)&lt;/p&gt;\n\n&lt;p&gt;13/16 FT (81%)&lt;/p&gt;\n\n&lt;p&gt;Absolute monster two-way game from Luk, he was scoring, playmaking, and just taking the ball from everyone in sight. Struggling from behind the arc still but very efficient inside the paint.&lt;/p&gt;\n\n&lt;p&gt;Source: &lt;a href=\"https://www.espn.com.au/nba/boxscore/_/gameId/401810108\"&gt;https://www.espn.com.au/nba/boxscore/_/gameId/401810108&lt;/a&gt;&lt;/p&gt;\n&lt;/div&gt;&lt;!-- SC_ON --&gt;",
                      "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,
                      "preview": {
                          "images": [
                              {
                                  "source": {
                                      "url": "https://external-preview.redd.it/-iWeUG8eIAxcGw2EZvK6rZCfeka0e3vnfFT1J3LZ0lg.png?auto=webp&amp;s=900cbb3d576c4452f862fcda4debb0114c39fb42",
                                      "width": 400,
                                      "height": 400
                                  },
                                  "resolutions": [
                                      {
                                          "url": "https://external-preview.redd.it/-iWeUG8eIAxcGw2EZvK6rZCfeka0e3vnfFT1J3LZ0lg.png?width=108&amp;crop=smart&amp;auto=webp&amp;s=704578dbf63d8d9bf94257210b57270b10ad2f7c",
                                          "width": 108,
                                          "height": 108
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/-iWeUG8eIAxcGw2EZvK6rZCfeka0e3vnfFT1J3LZ0lg.png?width=216&amp;crop=smart&amp;auto=webp&amp;s=b857744e5d66655b4a0ea60b054c82b61e66a68f",
                                          "width": 216,
                                          "height": 216
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/-iWeUG8eIAxcGw2EZvK6rZCfeka0e3vnfFT1J3LZ0lg.png?width=320&amp;crop=smart&amp;auto=webp&amp;s=46d25e41dc039b77b0751db20d5707dfb14c70a9",
                                          "width": 320,
                                          "height": 320
                                      }
                                  ],
                                  "variants": {},
                                  "id": "-iWeUG8eIAxcGw2EZvK6rZCfeka0e3vnfFT1J3LZ0lg"
                              }
                          ],
                          "enabled": false
                      },
                      "all_awardings": [],
                      "awarders": [],
                      "media_only": false,
                      "can_gild": false,
                      "spoiler": false,
                      "locked": false,
                      "author_flair_text": ":SRB: Serbia",
                      "treatment_tags": [],
                      "visited": false,
                      "removed_by": null,
                      "num_reports": null,
                      "distinguished": null,
                      "subreddit_id": "t5_2qo4s",
                      "author_is_blocked": false,
                      "mod_reason_by": null,
                      "removal_reason": null,
                      "link_flair_background_color": "",
                      "id": "1p0zoel",
                      "is_robot_indexable": true,
                      "report_reasons": null,
                      "author": "Luka77GOATic",
                      "discussion_type": null,
                      "num_comments": 320,
                      "send_replies": true,
                      "contest_mode": false,
                      "mod_reports": [],
                      "author_patreon_flair": false,
                      "author_flair_text_color": "dark",
                      "permalink": "/r/nba/comments/1p0zoel/luka_puts_up_37105_with_4_steals_as_the_lakers/",
                      "stickied": false,
                      "url": "https://www.reddit.com/r/nba/comments/1p0zoel/luka_puts_up_37105_with_4_steals_as_the_lakers/",
                      "subreddit_subscribers": 16893176,
                      "created_utc": 1763531931,
                      "num_crossposts": 1,
                      "media": null,
                      "is_video": false
                  }
              },
              {
                  "kind": "t3",
                  "data": {
                      "approved_at_utc": null,
                      "subreddit": "nba",
                      "selftext": "",
                      "author_fullname": "t2_izmtc",
                      "saved": false,
                      "mod_reason_title": null,
                      "gilded": 0,
                      "clicked": false,
                      "title": "Austin Reaves interrupts Luka's post-game interview with Mike Trudell to tell Luka \"Good job, friend!\" Luka replies to Mike Trudell with \"He wants to be my friend, but I'm not allowing it.\"",
                      "link_flair_richtext": [],
                      "subreddit_name_prefixed": "r/nba",
                      "hidden": false,
                      "pwls": 6,
                      "link_flair_css_class": null,
                      "downs": 0,
                      "thumbnail_height": 78,
                      "top_awarded_type": null,
                      "hide_score": true,
                      "name": "t3_1p1b7aj",
                      "quarantine": false,
                      "link_flair_text_color": "dark",
                      "upvote_ratio": 0.95,
                      "author_flair_background_color": "#edeff1",
                      "subreddit_type": "public",
                      "ups": 228,
                      "total_awards_received": 0,
                      "media_embed": {
                          "content": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2Fzdqe6k&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2Fzdqe6k&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2Fzdqe6k_1.jpg%3FExpires%3D1763826410561%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3Dkqdueom1xrglhB0r5cXFlgbRyJAQrgYS7IQd8gR-ami7JbVB6kTSc40r04MlhrLQ51N%7EVW09kbm5qqpRpIg7GPvShb-HGoSS1%7EF1Clxdrc0g1WHXu3IYzpHc3EeD-xF-goTrqVJLp3D1Bpz9%7EVDrl9u6C8BbG3RWlofe4%7EQ1LKVmXgL2UwKGhTtfz44eO1c8VQRX9l7rYNvP1g%7E1Zbw4zJOS0Jbd5FlF64FxdBh7mAhvvTr9kFoY7%7Ezb2BeNXTRnmDXTXDu-BNE8RBVIKzMcsN3DekgJJu4o9FK1My2uOoFTgsV1rGVehVlbS-oY9gBKoQstkURlADN-8%7EP21qLhBg__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                          "width": 600,
                          "scrolling": false,
                          "height": 338
                      },
                      "thumbnail_width": 140,
                      "author_flair_template_id": "cc0d49ae-3feb-11e8-8327-0e3e867879aa",
                      "is_original_content": false,
                      "user_reports": [],
                      "secure_media": {
                          "oembed": {
                              "provider_url": "https://streamable.com",
                              "description": "Watch \"Luka doesn't want to be friends with Reaves\" on Streamable.",
                              "title": "Luka doesn't want to be friends with Reaves",
                              "thumbnail_width": 1920,
                              "height": 338,
                              "width": 600,
                              "html": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2Fzdqe6k&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2Fzdqe6k&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2Fzdqe6k_1.jpg%3FExpires%3D1763826410561%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3Dkqdueom1xrglhB0r5cXFlgbRyJAQrgYS7IQd8gR-ami7JbVB6kTSc40r04MlhrLQ51N%7EVW09kbm5qqpRpIg7GPvShb-HGoSS1%7EF1Clxdrc0g1WHXu3IYzpHc3EeD-xF-goTrqVJLp3D1Bpz9%7EVDrl9u6C8BbG3RWlofe4%7EQ1LKVmXgL2UwKGhTtfz44eO1c8VQRX9l7rYNvP1g%7E1Zbw4zJOS0Jbd5FlF64FxdBh7mAhvvTr9kFoY7%7Ezb2BeNXTRnmDXTXDu-BNE8RBVIKzMcsN3DekgJJu4o9FK1My2uOoFTgsV1rGVehVlbS-oY9gBKoQstkURlADN-8%7EP21qLhBg__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                              "version": "1.0",
                              "provider_name": "Streamable",
                              "thumbnail_url": "https://cdn-cf-east.streamable.com/image/zdqe6k_1.jpg?Expires=1763826410561&amp;Key-Pair-Id=APKAIEYUVEN4EVB2OKEQ&amp;Signature=kqdueom1xrglhB0r5cXFlgbRyJAQrgYS7IQd8gR-ami7JbVB6kTSc40r04MlhrLQ51N~VW09kbm5qqpRpIg7GPvShb-HGoSS1~F1Clxdrc0g1WHXu3IYzpHc3EeD-xF-goTrqVJLp3D1Bpz9~VDrl9u6C8BbG3RWlofe4~Q1LKVmXgL2UwKGhTtfz44eO1c8VQRX9l7rYNvP1g~1Zbw4zJOS0Jbd5FlF64FxdBh7mAhvvTr9kFoY7~zb2BeNXTRnmDXTXDu-BNE8RBVIKzMcsN3DekgJJu4o9FK1My2uOoFTgsV1rGVehVlbS-oY9gBKoQstkURlADN-8~P21qLhBg__",
                              "type": "video",
                              "thumbnail_height": 1080
                          },
                          "type": "streamable.com"
                      },
                      "is_reddit_media_domain": false,
                      "is_meta": false,
                      "category": null,
                      "secure_media_embed": {
                          "content": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2Fzdqe6k&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2Fzdqe6k&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2Fzdqe6k_1.jpg%3FExpires%3D1763826410561%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3Dkqdueom1xrglhB0r5cXFlgbRyJAQrgYS7IQd8gR-ami7JbVB6kTSc40r04MlhrLQ51N%7EVW09kbm5qqpRpIg7GPvShb-HGoSS1%7EF1Clxdrc0g1WHXu3IYzpHc3EeD-xF-goTrqVJLp3D1Bpz9%7EVDrl9u6C8BbG3RWlofe4%7EQ1LKVmXgL2UwKGhTtfz44eO1c8VQRX9l7rYNvP1g%7E1Zbw4zJOS0Jbd5FlF64FxdBh7mAhvvTr9kFoY7%7Ezb2BeNXTRnmDXTXDu-BNE8RBVIKzMcsN3DekgJJu4o9FK1My2uOoFTgsV1rGVehVlbS-oY9gBKoQstkURlADN-8%7EP21qLhBg__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                          "width": 600,
                          "scrolling": false,
                          "media_domain_url": "https://www.redditmedia.com/mediaembed/1p1b7aj",
                          "height": 338
                      },
                      "link_flair_text": null,
                      "can_mod_post": false,
                      "score": 228,
                      "approved_by": null,
                      "is_created_from_ads_ui": false,
                      "author_premium": false,
                      "thumbnail": "https://external-preview.redd.it/Z-XW6SZyPu_LAA3MVVLdskGUTvfPqo7WxKti-AXf12Y.jpeg?width=140&amp;height=78&amp;auto=webp&amp;s=b50f9b163cd1d71f77d045e6b15bbb4c1e167908",
                      "edited": false,
                      "author_flair_css_class": "Lakers1",
                      "author_flair_richtext": [
                          {
                              "a": ":lal-1:",
                              "e": "emoji",
                              "u": "https://emoji.redditmedia.com/rwysqekrs4r81_t5_2qo4s/lal-1"
                          },
                          {
                              "e": "text",
                              "t": " Lakers"
                          }
                      ],
                      "gildings": {},
                      "post_hint": "rich:video",
                      "content_categories": null,
                      "is_self": false,
                      "mod_note": null,
                      "created": 1763567328,
                      "link_flair_type": "text",
                      "wls": 6,
                      "removed_by_category": null,
                      "banned_by": null,
                      "author_flair_type": "richtext",
                      "domain": "streamable.com",
                      "allow_live_comments": false,
                      "selftext_html": null,
                      "likes": null,
                      "suggested_sort": null,
                      "banned_at_utc": null,
                      "url_overridden_by_dest": "https://streamable.com/zdqe6k",
                      "view_count": null,
                      "archived": false,
                      "no_follow": false,
                      "is_crosspostable": false,
                      "pinned": false,
                      "over_18": false,
                      "preview": {
                          "images": [
                              {
                                  "source": {
                                      "url": "https://external-preview.redd.it/Z-XW6SZyPu_LAA3MVVLdskGUTvfPqo7WxKti-AXf12Y.jpeg?auto=webp&amp;s=b48f5ed052cb46794c1ac0281b12b84f57c66bee",
                                      "width": 1920,
                                      "height": 1080
                                  },
                                  "resolutions": [
                                      {
                                          "url": "https://external-preview.redd.it/Z-XW6SZyPu_LAA3MVVLdskGUTvfPqo7WxKti-AXf12Y.jpeg?width=108&amp;crop=smart&amp;auto=webp&amp;s=de7ac70d9188050bc075f8c9f6b3feaebe684bc8",
                                          "width": 108,
                                          "height": 60
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/Z-XW6SZyPu_LAA3MVVLdskGUTvfPqo7WxKti-AXf12Y.jpeg?width=216&amp;crop=smart&amp;auto=webp&amp;s=7ada1ba0c38f95100e167c295a693c988879abdd",
                                          "width": 216,
                                          "height": 121
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/Z-XW6SZyPu_LAA3MVVLdskGUTvfPqo7WxKti-AXf12Y.jpeg?width=320&amp;crop=smart&amp;auto=webp&amp;s=daeb75e0df478ed30fc89305e9c82f2844c0ecce",
                                          "width": 320,
                                          "height": 180
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/Z-XW6SZyPu_LAA3MVVLdskGUTvfPqo7WxKti-AXf12Y.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=511534766a2703cf29d542f1b2e6c1bc42cc40bb",
                                          "width": 640,
                                          "height": 360
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/Z-XW6SZyPu_LAA3MVVLdskGUTvfPqo7WxKti-AXf12Y.jpeg?width=960&amp;crop=smart&amp;auto=webp&amp;s=80578d3a225a60a9944e94c3e28b84e95292f98b",
                                          "width": 960,
                                          "height": 540
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/Z-XW6SZyPu_LAA3MVVLdskGUTvfPqo7WxKti-AXf12Y.jpeg?width=1080&amp;crop=smart&amp;auto=webp&amp;s=881914d88aa6b8c92d17352f07c52090ba431aee",
                                          "width": 1080,
                                          "height": 607
                                      }
                                  ],
                                  "variants": {},
                                  "id": "Z-XW6SZyPu_LAA3MVVLdskGUTvfPqo7WxKti-AXf12Y"
                              }
                          ],
                          "enabled": false
                      },
                      "all_awardings": [],
                      "awarders": [],
                      "media_only": false,
                      "can_gild": false,
                      "spoiler": false,
                      "locked": false,
                      "author_flair_text": ":lal-1: Lakers",
                      "treatment_tags": [],
                      "visited": false,
                      "removed_by": null,
                      "num_reports": null,
                      "distinguished": null,
                      "subreddit_id": "t5_2qo4s",
                      "author_is_blocked": false,
                      "mod_reason_by": null,
                      "removal_reason": null,
                      "link_flair_background_color": "",
                      "id": "1p1b7aj",
                      "is_robot_indexable": true,
                      "report_reasons": null,
                      "author": "Jayveesac",
                      "discussion_type": null,
                      "num_comments": 41,
                      "send_replies": false,
                      "contest_mode": false,
                      "mod_reports": [],
                      "author_patreon_flair": false,
                      "author_flair_text_color": "dark",
                      "permalink": "/r/nba/comments/1p1b7aj/austin_reaves_interrupts_lukas_postgame_interview/",
                      "stickied": false,
                      "url": "https://streamable.com/zdqe6k",
                      "subreddit_subscribers": 16893176,
                      "created_utc": 1763567328,
                      "num_crossposts": 0,
                      "media": {
                          "oembed": {
                              "provider_url": "https://streamable.com",
                              "description": "Watch \"Luka doesn't want to be friends with Reaves\" on Streamable.",
                              "title": "Luka doesn't want to be friends with Reaves",
                              "thumbnail_width": 1920,
                              "height": 338,
                              "width": 600,
                              "html": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2Fzdqe6k&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2Fzdqe6k&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2Fzdqe6k_1.jpg%3FExpires%3D1763826410561%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3Dkqdueom1xrglhB0r5cXFlgbRyJAQrgYS7IQd8gR-ami7JbVB6kTSc40r04MlhrLQ51N%7EVW09kbm5qqpRpIg7GPvShb-HGoSS1%7EF1Clxdrc0g1WHXu3IYzpHc3EeD-xF-goTrqVJLp3D1Bpz9%7EVDrl9u6C8BbG3RWlofe4%7EQ1LKVmXgL2UwKGhTtfz44eO1c8VQRX9l7rYNvP1g%7E1Zbw4zJOS0Jbd5FlF64FxdBh7mAhvvTr9kFoY7%7Ezb2BeNXTRnmDXTXDu-BNE8RBVIKzMcsN3DekgJJu4o9FK1My2uOoFTgsV1rGVehVlbS-oY9gBKoQstkURlADN-8%7EP21qLhBg__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                              "version": "1.0",
                              "provider_name": "Streamable",
                              "thumbnail_url": "https://cdn-cf-east.streamable.com/image/zdqe6k_1.jpg?Expires=1763826410561&amp;Key-Pair-Id=APKAIEYUVEN4EVB2OKEQ&amp;Signature=kqdueom1xrglhB0r5cXFlgbRyJAQrgYS7IQd8gR-ami7JbVB6kTSc40r04MlhrLQ51N~VW09kbm5qqpRpIg7GPvShb-HGoSS1~F1Clxdrc0g1WHXu3IYzpHc3EeD-xF-goTrqVJLp3D1Bpz9~VDrl9u6C8BbG3RWlofe4~Q1LKVmXgL2UwKGhTtfz44eO1c8VQRX9l7rYNvP1g~1Zbw4zJOS0Jbd5FlF64FxdBh7mAhvvTr9kFoY7~zb2BeNXTRnmDXTXDu-BNE8RBVIKzMcsN3DekgJJu4o9FK1My2uOoFTgsV1rGVehVlbS-oY9gBKoQstkURlADN-8~P21qLhBg__",
                              "type": "video",
                              "thumbnail_height": 1080
                          },
                          "type": "streamable.com"
                      },
                      "is_video": false
                  }
              },
              {
                  "kind": "t3",
                  "data": {
                      "approved_at_utc": null,
                      "subreddit": "nba",
                      "selftext": "LeBron James in his season debut vs Jazz: 11 PTS, 3 REB, 12 AST, 1 STL, 1 TOV, 4-7 FG, 2-3 3PT, 1-4 FT, +1 in 30min\n\nHistory making, the first player to reach 23rd season in NBA\n\n[https://www.espn.com/nba/boxscore/\\_/gameId/401810108](https://www.espn.com/nba/boxscore/_/gameId/401810108)",
                      "author_fullname": "t2_1quq5ig9b0",
                      "saved": false,
                      "mod_reason_title": null,
                      "gilded": 0,
                      "clicked": false,
                      "title": "LeBron James in his season debut vs Jazz: 11 PTS, 3 REB, 12 AST, 1 STL, 1 TOV in 30min",
                      "link_flair_richtext": [],
                      "subreddit_name_prefixed": "r/nba",
                      "hidden": false,
                      "pwls": 6,
                      "link_flair_css_class": null,
                      "downs": 0,
                      "thumbnail_height": null,
                      "top_awarded_type": null,
                      "hide_score": false,
                      "name": "t3_1p0znyr",
                      "quarantine": false,
                      "link_flair_text_color": "dark",
                      "upvote_ratio": 0.96,
                      "author_flair_background_color": null,
                      "subreddit_type": "public",
                      "ups": 1374,
                      "total_awards_received": 0,
                      "media_embed": {},
                      "thumbnail_width": null,
                      "author_flair_template_id": null,
                      "is_original_content": false,
                      "user_reports": [],
                      "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": 1374,
                      "approved_by": null,
                      "is_created_from_ads_ui": false,
                      "author_premium": false,
                      "thumbnail": "self",
                      "edited": 1763532439,
                      "author_flair_css_class": null,
                      "author_flair_richtext": [],
                      "gildings": {},
                      "post_hint": "self",
                      "content_categories": null,
                      "is_self": true,
                      "mod_note": null,
                      "created": 1763531887,
                      "link_flair_type": "text",
                      "wls": 6,
                      "removed_by_category": null,
                      "banned_by": null,
                      "author_flair_type": "text",
                      "domain": "self.nba",
                      "allow_live_comments": false,
                      "selftext_html": "&lt;!-- SC_OFF --&gt;&lt;div class=\"md\"&gt;&lt;p&gt;LeBron James in his season debut vs Jazz: 11 PTS, 3 REB, 12 AST, 1 STL, 1 TOV, 4-7 FG, 2-3 3PT, 1-4 FT, +1 in 30min&lt;/p&gt;\n\n&lt;p&gt;History making, the first player to reach 23rd season in NBA&lt;/p&gt;\n\n&lt;p&gt;&lt;a href=\"https://www.espn.com/nba/boxscore/_/gameId/401810108\"&gt;https://www.espn.com/nba/boxscore/_/gameId/401810108&lt;/a&gt;&lt;/p&gt;\n&lt;/div&gt;&lt;!-- SC_ON --&gt;",
                      "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,
                      "preview": {
                          "images": [
                              {
                                  "source": {
                                      "url": "https://external-preview.redd.it/-iWeUG8eIAxcGw2EZvK6rZCfeka0e3vnfFT1J3LZ0lg.png?auto=webp&amp;s=900cbb3d576c4452f862fcda4debb0114c39fb42",
                                      "width": 400,
                                      "height": 400
                                  },
                                  "resolutions": [
                                      {
                                          "url": "https://external-preview.redd.it/-iWeUG8eIAxcGw2EZvK6rZCfeka0e3vnfFT1J3LZ0lg.png?width=108&amp;crop=smart&amp;auto=webp&amp;s=704578dbf63d8d9bf94257210b57270b10ad2f7c",
                                          "width": 108,
                                          "height": 108
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/-iWeUG8eIAxcGw2EZvK6rZCfeka0e3vnfFT1J3LZ0lg.png?width=216&amp;crop=smart&amp;auto=webp&amp;s=b857744e5d66655b4a0ea60b054c82b61e66a68f",
                                          "width": 216,
                                          "height": 216
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/-iWeUG8eIAxcGw2EZvK6rZCfeka0e3vnfFT1J3LZ0lg.png?width=320&amp;crop=smart&amp;auto=webp&amp;s=46d25e41dc039b77b0751db20d5707dfb14c70a9",
                                          "width": 320,
                                          "height": 320
                                      }
                                  ],
                                  "variants": {},
                                  "id": "-iWeUG8eIAxcGw2EZvK6rZCfeka0e3vnfFT1J3LZ0lg"
                              }
                          ],
                          "enabled": false
                      },
                      "all_awardings": [],
                      "awarders": [],
                      "media_only": false,
                      "can_gild": false,
                      "spoiler": false,
                      "locked": false,
                      "author_flair_text": null,
                      "treatment_tags": [],
                      "visited": false,
                      "removed_by": null,
                      "num_reports": null,
                      "distinguished": null,
                      "subreddit_id": "t5_2qo4s",
                      "author_is_blocked": false,
                      "mod_reason_by": null,
                      "removal_reason": null,
                      "link_flair_background_color": "",
                      "id": "1p0znyr",
                      "is_robot_indexable": true,
                      "report_reasons": null,
                      "author": "Thanos_SlayerCongSan",
                      "discussion_type": null,
                      "num_comments": 152,
                      "send_replies": true,
                      "contest_mode": false,
                      "mod_reports": [],
                      "author_patreon_flair": false,
                      "author_flair_text_color": null,
                      "permalink": "/r/nba/comments/1p0znyr/lebron_james_in_his_season_debut_vs_jazz_11_pts_3/",
                      "stickied": false,
                      "url": "https://www.reddit.com/r/nba/comments/1p0znyr/lebron_james_in_his_season_debut_vs_jazz_11_pts_3/",
                      "subreddit_subscribers": 16893176,
                      "created_utc": 1763531887,
                      "num_crossposts": 0,
                      "media": null,
                      "is_video": false
                  }
              },
              {
                  "kind": "t3",
                  "data": {
                      "approved_at_utc": null,
                      "subreddit": "nba",
                      "selftext": "",
                      "author_fullname": "t2_oktr3",
                      "saved": false,
                      "mod_reason_title": null,
                      "gilded": 0,
                      "clicked": false,
                      "title": "[Slater] Steve Kerr said he’s “concerned” about the increase in soft tissue injuries across the NBA. His medical staff believes the increased pace paired with the schedule has led to it. “They believe the wear and tear, the speed, the pace, the mileage is factoring into these injuries.”",
                      "link_flair_richtext": [],
                      "subreddit_name_prefixed": "r/nba",
                      "hidden": false,
                      "pwls": 6,
                      "link_flair_css_class": null,
                      "downs": 0,
                      "thumbnail_height": 78,
                      "top_awarded_type": null,
                      "hide_score": false,
                      "name": "t3_1p0sce9",
                      "quarantine": false,
                      "link_flair_text_color": "dark",
                      "upvote_ratio": 0.96,
                      "author_flair_background_color": "#edeff1",
                      "subreddit_type": "public",
                      "ups": 3777,
                      "total_awards_received": 0,
                      "media_embed": {
                          "content": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2Fp0w4wf&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2Fp0w4wf&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2Fp0w4wf.jpg%3FExpires%3D1763769790115%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DgLezK52HCN9c0vK9frOJYEX5bThWRNZB9OkRIGeva57zxeuxDRF8LRVXIPEqf7Z5dlljIvVYXrnfndeTiE9i3IFt%7E2KNDyQrnPngsJMNEoySWn5vBRzGoRicCoS4Gjw111WLli0r7eJZlu8%7EWTNR4eRAxw8XH42DUAI29QSOTSmAGWuaAp7dIJ6f3Vl%7ElfHu1u6DG-UHIcUcbcykNi2uBevJli%7EHpVKgqRCjqgNKTid3YxJ2zX51xGdpBeRkhkAiU1tOR7fVidjBwcYoO3nmBaoNbI21bS26txnDbGLdu8IcolyGJYYuwBIUSau0pw-hCxyDKLOpNQ12lvfl9wgTRg__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"None\" height=\"None\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                          "width": 400,
                          "scrolling": false,
                          "height": 300
                      },
                      "thumbnail_width": 140,
                      "author_flair_template_id": "c19dcb7e-3feb-11e8-9967-0e5868d904d8",
                      "is_original_content": false,
                      "user_reports": [],
                      "secure_media": {
                          "oembed": {
                              "provider_url": "https://streamable.com",
                              "description": "Watch \"Steve Kerr said he's \"concerned\" about the increase in soft tissue injuries across the NBA. His medical staff believes the increased pace paired with the schedule has led to it.\"They believe the wea\" on Streamable.",
                              "title": "Steve Kerr said he's \"concerned\" about the increase in soft tissue injuries across the NBA. His medical staff believes the increased pace paired with the schedule has led to it.\"They believe the wea",
                              "thumbnail_width": 3840,
                              "height": 300,
                              "width": 400,
                              "html": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2Fp0w4wf&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2Fp0w4wf&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2Fp0w4wf.jpg%3FExpires%3D1763769790115%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DgLezK52HCN9c0vK9frOJYEX5bThWRNZB9OkRIGeva57zxeuxDRF8LRVXIPEqf7Z5dlljIvVYXrnfndeTiE9i3IFt%7E2KNDyQrnPngsJMNEoySWn5vBRzGoRicCoS4Gjw111WLli0r7eJZlu8%7EWTNR4eRAxw8XH42DUAI29QSOTSmAGWuaAp7dIJ6f3Vl%7ElfHu1u6DG-UHIcUcbcykNi2uBevJli%7EHpVKgqRCjqgNKTid3YxJ2zX51xGdpBeRkhkAiU1tOR7fVidjBwcYoO3nmBaoNbI21bS26txnDbGLdu8IcolyGJYYuwBIUSau0pw-hCxyDKLOpNQ12lvfl9wgTRg__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"None\" height=\"None\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                              "version": "1.0",
                              "provider_name": "Streamable",
                              "thumbnail_url": "https://cdn-cf-east.streamable.com/image/p0w4wf.jpg?Expires=1763769790115&amp;Key-Pair-Id=APKAIEYUVEN4EVB2OKEQ&amp;Signature=gLezK52HCN9c0vK9frOJYEX5bThWRNZB9OkRIGeva57zxeuxDRF8LRVXIPEqf7Z5dlljIvVYXrnfndeTiE9i3IFt~2KNDyQrnPngsJMNEoySWn5vBRzGoRicCoS4Gjw111WLli0r7eJZlu8~WTNR4eRAxw8XH42DUAI29QSOTSmAGWuaAp7dIJ6f3Vl~lfHu1u6DG-UHIcUcbcykNi2uBevJli~HpVKgqRCjqgNKTid3YxJ2zX51xGdpBeRkhkAiU1tOR7fVidjBwcYoO3nmBaoNbI21bS26txnDbGLdu8IcolyGJYYuwBIUSau0pw-hCxyDKLOpNQ12lvfl9wgTRg__",
                              "type": "video",
                              "thumbnail_height": 2160
                          },
                          "type": "streamable.com"
                      },
                      "is_reddit_media_domain": false,
                      "is_meta": false,
                      "category": null,
                      "secure_media_embed": {
                          "content": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2Fp0w4wf&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2Fp0w4wf&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2Fp0w4wf.jpg%3FExpires%3D1763769790115%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DgLezK52HCN9c0vK9frOJYEX5bThWRNZB9OkRIGeva57zxeuxDRF8LRVXIPEqf7Z5dlljIvVYXrnfndeTiE9i3IFt%7E2KNDyQrnPngsJMNEoySWn5vBRzGoRicCoS4Gjw111WLli0r7eJZlu8%7EWTNR4eRAxw8XH42DUAI29QSOTSmAGWuaAp7dIJ6f3Vl%7ElfHu1u6DG-UHIcUcbcykNi2uBevJli%7EHpVKgqRCjqgNKTid3YxJ2zX51xGdpBeRkhkAiU1tOR7fVidjBwcYoO3nmBaoNbI21bS26txnDbGLdu8IcolyGJYYuwBIUSau0pw-hCxyDKLOpNQ12lvfl9wgTRg__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"None\" height=\"None\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                          "width": 400,
                          "scrolling": false,
                          "media_domain_url": "https://www.redditmedia.com/mediaembed/1p0sce9",
                          "height": 300
                      },
                      "link_flair_text": null,
                      "can_mod_post": false,
                      "score": 3777,
                      "approved_by": null,
                      "is_created_from_ads_ui": false,
                      "author_premium": false,
                      "thumbnail": "https://external-preview.redd.it/6zPHP68DMUsLVG16UrhtEeTNq7tFS2wv45Iq_sO4nNg.jpeg?width=140&amp;height=78&amp;auto=webp&amp;s=c53e18fe87532ee4221ca618a300f36b2ba63b40",
                      "edited": false,
                      "author_flair_css_class": "Mavs1",
                      "author_flair_richtext": [
                          {
                              "a": ":dal-1:",
                              "e": "emoji",
                              "u": "https://emoji.redditmedia.com/wclc9ji8s4r81_t5_2qo4s/dal-1"
                          },
                          {
                              "e": "text",
                              "t": " Mavericks"
                          }
                      ],
                      "gildings": {},
                      "post_hint": "rich:video",
                      "content_categories": null,
                      "is_self": false,
                      "mod_note": null,
                      "created": 1763510510,
                      "link_flair_type": "text",
                      "wls": 6,
                      "removed_by_category": null,
                      "banned_by": null,
                      "author_flair_type": "richtext",
                      "domain": "streamable.com",
                      "allow_live_comments": false,
                      "selftext_html": null,
                      "likes": null,
                      "suggested_sort": null,
                      "banned_at_utc": null,
                      "url_overridden_by_dest": "https://streamable.com/p0w4wf",
                      "view_count": null,
                      "archived": false,
                      "no_follow": false,
                      "is_crosspostable": false,
                      "pinned": false,
                      "over_18": false,
                      "preview": {
                          "images": [
                              {
                                  "source": {
                                      "url": "https://external-preview.redd.it/6zPHP68DMUsLVG16UrhtEeTNq7tFS2wv45Iq_sO4nNg.jpeg?auto=webp&amp;s=4bfd285278cceb6173bbcf557aa587537ee0cac1",
                                      "width": 3840,
                                      "height": 2160
                                  },
                                  "resolutions": [
                                      {
                                          "url": "https://external-preview.redd.it/6zPHP68DMUsLVG16UrhtEeTNq7tFS2wv45Iq_sO4nNg.jpeg?width=108&amp;crop=smart&amp;auto=webp&amp;s=5cded91c2d367a57a0bd4bbe86dd1b98a8a4946f",
                                          "width": 108,
                                          "height": 60
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/6zPHP68DMUsLVG16UrhtEeTNq7tFS2wv45Iq_sO4nNg.jpeg?width=216&amp;crop=smart&amp;auto=webp&amp;s=7f22f9765e841cd1a065b169d3f9da0d392e38ce",
                                          "width": 216,
                                          "height": 121
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/6zPHP68DMUsLVG16UrhtEeTNq7tFS2wv45Iq_sO4nNg.jpeg?width=320&amp;crop=smart&amp;auto=webp&amp;s=1e37816a21131cdd01d670ee6946386990898887",
                                          "width": 320,
                                          "height": 180
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/6zPHP68DMUsLVG16UrhtEeTNq7tFS2wv45Iq_sO4nNg.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=b9d158934c045d2addd5440fdc2afebfea867e39",
                                          "width": 640,
                                          "height": 360
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/6zPHP68DMUsLVG16UrhtEeTNq7tFS2wv45Iq_sO4nNg.jpeg?width=960&amp;crop=smart&amp;auto=webp&amp;s=e920d76f2a8fca6fdc1dbbbdc5ea4242fdc3ead1",
                                          "width": 960,
                                          "height": 540
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/6zPHP68DMUsLVG16UrhtEeTNq7tFS2wv45Iq_sO4nNg.jpeg?width=1080&amp;crop=smart&amp;auto=webp&amp;s=48714348eb0c34f449f100dd7fbcbf349fcb1d00",
                                          "width": 1080,
                                          "height": 607
                                      }
                                  ],
                                  "variants": {},
                                  "id": "6zPHP68DMUsLVG16UrhtEeTNq7tFS2wv45Iq_sO4nNg"
                              }
                          ],
                          "enabled": false
                      },
                      "all_awardings": [],
                      "awarders": [],
                      "media_only": false,
                      "can_gild": false,
                      "spoiler": false,
                      "locked": false,
                      "author_flair_text": ":dal-1: Mavericks",
                      "treatment_tags": [],
                      "visited": false,
                      "removed_by": null,
                      "num_reports": null,
                      "distinguished": null,
                      "subreddit_id": "t5_2qo4s",
                      "author_is_blocked": false,
                      "mod_reason_by": null,
                      "removal_reason": null,
                      "link_flair_background_color": "",
                      "id": "1p0sce9",
                      "is_robot_indexable": true,
                      "report_reasons": null,
                      "author": "TheRealPdGaming",
                      "discussion_type": null,
                      "num_comments": 834,
                      "send_replies": true,
                      "contest_mode": false,
                      "mod_reports": [],
                      "author_patreon_flair": false,
                      "author_flair_text_color": "dark",
                      "permalink": "/r/nba/comments/1p0sce9/slater_steve_kerr_said_hes_concerned_about_the/",
                      "stickied": false,
                      "url": "https://streamable.com/p0w4wf",
                      "subreddit_subscribers": 16893176,
                      "created_utc": 1763510510,
                      "num_crossposts": 0,
                      "media": {
                          "oembed": {
                              "provider_url": "https://streamable.com",
                              "description": "Watch \"Steve Kerr said he's \"concerned\" about the increase in soft tissue injuries across the NBA. His medical staff believes the increased pace paired with the schedule has led to it.\"They believe the wea\" on Streamable.",
                              "title": "Steve Kerr said he's \"concerned\" about the increase in soft tissue injuries across the NBA. His medical staff believes the increased pace paired with the schedule has led to it.\"They believe the wea",
                              "thumbnail_width": 3840,
                              "height": 300,
                              "width": 400,
                              "html": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2Fp0w4wf&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2Fp0w4wf&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2Fp0w4wf.jpg%3FExpires%3D1763769790115%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DgLezK52HCN9c0vK9frOJYEX5bThWRNZB9OkRIGeva57zxeuxDRF8LRVXIPEqf7Z5dlljIvVYXrnfndeTiE9i3IFt%7E2KNDyQrnPngsJMNEoySWn5vBRzGoRicCoS4Gjw111WLli0r7eJZlu8%7EWTNR4eRAxw8XH42DUAI29QSOTSmAGWuaAp7dIJ6f3Vl%7ElfHu1u6DG-UHIcUcbcykNi2uBevJli%7EHpVKgqRCjqgNKTid3YxJ2zX51xGdpBeRkhkAiU1tOR7fVidjBwcYoO3nmBaoNbI21bS26txnDbGLdu8IcolyGJYYuwBIUSau0pw-hCxyDKLOpNQ12lvfl9wgTRg__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"None\" height=\"None\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                              "version": "1.0",
                              "provider_name": "Streamable",
                              "thumbnail_url": "https://cdn-cf-east.streamable.com/image/p0w4wf.jpg?Expires=1763769790115&amp;Key-Pair-Id=APKAIEYUVEN4EVB2OKEQ&amp;Signature=gLezK52HCN9c0vK9frOJYEX5bThWRNZB9OkRIGeva57zxeuxDRF8LRVXIPEqf7Z5dlljIvVYXrnfndeTiE9i3IFt~2KNDyQrnPngsJMNEoySWn5vBRzGoRicCoS4Gjw111WLli0r7eJZlu8~WTNR4eRAxw8XH42DUAI29QSOTSmAGWuaAp7dIJ6f3Vl~lfHu1u6DG-UHIcUcbcykNi2uBevJli~HpVKgqRCjqgNKTid3YxJ2zX51xGdpBeRkhkAiU1tOR7fVidjBwcYoO3nmBaoNbI21bS26txnDbGLdu8IcolyGJYYuwBIUSau0pw-hCxyDKLOpNQ12lvfl9wgTRg__",
                              "type": "video",
                              "thumbnail_height": 2160
                          },
                          "type": "streamable.com"
                      },
                      "is_video": false
                  }
              },
              {
                  "kind": "t3",
                  "data": {
                      "approved_at_utc": null,
                      "subreddit": "nba",
                      "selftext": "",
                      "author_fullname": "t2_11d1ig",
                      "saved": false,
                      "mod_reason_title": null,
                      "gilded": 0,
                      "clicked": false,
                      "title": "[Highlight] All 12 LeBron James assists from his season debut.",
                      "link_flair_richtext": [
                          {
                              "e": "text",
                              "t": "Highlight"
                          }
                      ],
                      "subreddit_name_prefixed": "r/nba",
                      "hidden": false,
                      "pwls": 6,
                      "link_flair_css_class": "highlights",
                      "downs": 0,
                      "thumbnail_height": 105,
                      "top_awarded_type": null,
                      "hide_score": false,
                      "name": "t3_1p10phg",
                      "quarantine": false,
                      "link_flair_text_color": "light",
                      "upvote_ratio": 0.95,
                      "author_flair_background_color": "#edeff1",
                      "ups": 822,
                      "total_awards_received": 0,
                      "media_embed": {
                          "content": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2F3fgql1&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2F3fgql1&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2F3fgql1.jpg%3FExpires%3D1763794727442%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DYyPLJEdv944tdfaYbKak65Gyta5pbaKbS7CR%7EbrnuTDHK%7ExQfGKddv8hLUK95o4sz8Jsk-%7EbpY0BlqC6A0%7EzIx2BAwPOMG0XrilHJQRTJ%7EiWT0lvSRwVN8V4uUenOy-qi0%7EjCL6u0eSvZm8vr7IsHbhXpMnlf6YtOE2sERxhW58JUQ69umlzfnBRjdnCD0rWigDSeGtuD8llz%7EHW9p3cOmtRIv4iA-6VP00KJOCUMPcliSZP-JGm0W3VTVcHfi4qcMtibYXuUWHjKKlaFQFh8R78rb8-qdbFXpjZduZENbSpigTFIKaJ2kraZIQugTH6qh-O1GbfUhcHZJPJ9G6oKA__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"450\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                          "width": 600,
                          "scrolling": false,
                          "height": 450
                      },
                      "thumbnail_width": 140,
                      "author_flair_template_id": "ccddfb4e-3feb-11e8-af69-0ec720dcbbde",
                      "is_original_content": false,
                      "user_reports": [],
                      "secure_media": {
                          "oembed": {
                              "provider_url": "https://streamable.com",
                              "description": "Watch \"Brett Usher - All 12 LeBron James assists\" on Streamable.",
                              "title": "Brett Usher - All 12 LeBron James assists",
                              "thumbnail_width": 1440,
                              "height": 450,
                              "width": 600,
                              "html": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2F3fgql1&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2F3fgql1&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2F3fgql1.jpg%3FExpires%3D1763794727442%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DYyPLJEdv944tdfaYbKak65Gyta5pbaKbS7CR%7EbrnuTDHK%7ExQfGKddv8hLUK95o4sz8Jsk-%7EbpY0BlqC6A0%7EzIx2BAwPOMG0XrilHJQRTJ%7EiWT0lvSRwVN8V4uUenOy-qi0%7EjCL6u0eSvZm8vr7IsHbhXpMnlf6YtOE2sERxhW58JUQ69umlzfnBRjdnCD0rWigDSeGtuD8llz%7EHW9p3cOmtRIv4iA-6VP00KJOCUMPcliSZP-JGm0W3VTVcHfi4qcMtibYXuUWHjKKlaFQFh8R78rb8-qdbFXpjZduZENbSpigTFIKaJ2kraZIQugTH6qh-O1GbfUhcHZJPJ9G6oKA__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"450\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                              "version": "1.0",
                              "provider_name": "Streamable",
                              "thumbnail_url": "https://cdn-cf-east.streamable.com/image/3fgql1.jpg?Expires=1763794727442&amp;Key-Pair-Id=APKAIEYUVEN4EVB2OKEQ&amp;Signature=YyPLJEdv944tdfaYbKak65Gyta5pbaKbS7CR~brnuTDHK~xQfGKddv8hLUK95o4sz8Jsk-~bpY0BlqC6A0~zIx2BAwPOMG0XrilHJQRTJ~iWT0lvSRwVN8V4uUenOy-qi0~jCL6u0eSvZm8vr7IsHbhXpMnlf6YtOE2sERxhW58JUQ69umlzfnBRjdnCD0rWigDSeGtuD8llz~HW9p3cOmtRIv4iA-6VP00KJOCUMPcliSZP-JGm0W3VTVcHfi4qcMtibYXuUWHjKKlaFQFh8R78rb8-qdbFXpjZduZENbSpigTFIKaJ2kraZIQugTH6qh-O1GbfUhcHZJPJ9G6oKA__",
                              "type": "video",
                              "thumbnail_height": 1080
                          },
                          "type": "streamable.com"
                      },
                      "is_reddit_media_domain": false,
                      "is_meta": false,
                      "category": null,
                      "secure_media_embed": {
                          "content": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2F3fgql1&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2F3fgql1&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2F3fgql1.jpg%3FExpires%3D1763794727442%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DYyPLJEdv944tdfaYbKak65Gyta5pbaKbS7CR%7EbrnuTDHK%7ExQfGKddv8hLUK95o4sz8Jsk-%7EbpY0BlqC6A0%7EzIx2BAwPOMG0XrilHJQRTJ%7EiWT0lvSRwVN8V4uUenOy-qi0%7EjCL6u0eSvZm8vr7IsHbhXpMnlf6YtOE2sERxhW58JUQ69umlzfnBRjdnCD0rWigDSeGtuD8llz%7EHW9p3cOmtRIv4iA-6VP00KJOCUMPcliSZP-JGm0W3VTVcHfi4qcMtibYXuUWHjKKlaFQFh8R78rb8-qdbFXpjZduZENbSpigTFIKaJ2kraZIQugTH6qh-O1GbfUhcHZJPJ9G6oKA__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"450\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                          "width": 600,
                          "scrolling": false,
                          "media_domain_url": "https://www.redditmedia.com/mediaembed/1p10phg",
                          "height": 450
                      },
                      "link_flair_text": "Highlight",
                      "can_mod_post": false,
                      "score": 822,
                      "approved_by": null,
                      "is_created_from_ads_ui": false,
                      "author_premium": false,
                      "thumbnail": "https://external-preview.redd.it/Qgj8g-y4hi2LOvBilh07h5iS_GaQtRR13Mw4s4G9u0c.jpeg?width=140&amp;height=105&amp;auto=webp&amp;s=a2d38ea8d5118635b45731c1ddc578f360c13abc",
                      "edited": false,
                      "author_flair_css_class": "Lakers4",
                      "author_flair_richtext": [
                          {
                              "a": ":lal-4:",
                              "e": "emoji",
                              "u": "https://emoji.redditmedia.com/t7l8050ts4r81_t5_2qo4s/lal-4"
                          },
                          {
                              "e": "text",
                              "t": " Minneapolis Lakers"
                          }
                      ],
                      "gildings": {},
                      "post_hint": "rich:video",
                      "content_categories": null,
                      "is_self": false,
                      "subreddit_type": "public",
                      "created": 1763535527,
                      "link_flair_type": "richtext",
                      "wls": 6,
                      "removed_by_category": null,
                      "banned_by": null,
                      "author_flair_type": "richtext",
                      "domain": "streamable.com",
                      "allow_live_comments": false,
                      "selftext_html": null,
                      "likes": null,
                      "suggested_sort": null,
                      "banned_at_utc": null,
                      "url_overridden_by_dest": "https://streamable.com/3fgql1",
                      "view_count": null,
                      "archived": false,
                      "no_follow": false,
                      "is_crosspostable": false,
                      "pinned": false,
                      "over_18": false,
                      "preview": {
                          "images": [
                              {
                                  "source": {
                                      "url": "https://external-preview.redd.it/Qgj8g-y4hi2LOvBilh07h5iS_GaQtRR13Mw4s4G9u0c.jpeg?auto=webp&amp;s=ffc8cf61e5688f47a2f805aa7d07bfe364ad586a",
                                      "width": 1440,
                                      "height": 1080
                                  },
                                  "resolutions": [
                                      {
                                          "url": "https://external-preview.redd.it/Qgj8g-y4hi2LOvBilh07h5iS_GaQtRR13Mw4s4G9u0c.jpeg?width=108&amp;crop=smart&amp;auto=webp&amp;s=5135de879a03c1d5b6647cf183899879b37252d3",
                                          "width": 108,
                                          "height": 81
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/Qgj8g-y4hi2LOvBilh07h5iS_GaQtRR13Mw4s4G9u0c.jpeg?width=216&amp;crop=smart&amp;auto=webp&amp;s=3262dce1b7252aab2fda555a1395e2ef9d5d2a50",
                                          "width": 216,
                                          "height": 162
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/Qgj8g-y4hi2LOvBilh07h5iS_GaQtRR13Mw4s4G9u0c.jpeg?width=320&amp;crop=smart&amp;auto=webp&amp;s=893792c34bb66ef375bfa9d6a11150c39e1adde4",
                                          "width": 320,
                                          "height": 240
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/Qgj8g-y4hi2LOvBilh07h5iS_GaQtRR13Mw4s4G9u0c.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=db43a5a70404dd5c464397582282e0700511da56",
                                          "width": 640,
                                          "height": 480
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/Qgj8g-y4hi2LOvBilh07h5iS_GaQtRR13Mw4s4G9u0c.jpeg?width=960&amp;crop=smart&amp;auto=webp&amp;s=b5e36aebefb796de0e976af21c72e69214868b26",
                                          "width": 960,
                                          "height": 720
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/Qgj8g-y4hi2LOvBilh07h5iS_GaQtRR13Mw4s4G9u0c.jpeg?width=1080&amp;crop=smart&amp;auto=webp&amp;s=e927abedaafae346be534d864cfbd424ce1f7f71",
                                          "width": 1080,
                                          "height": 810
                                      }
                                  ],
                                  "variants": {},
                                  "id": "Qgj8g-y4hi2LOvBilh07h5iS_GaQtRR13Mw4s4G9u0c"
                              }
                          ],
                          "enabled": false
                      },
                      "all_awardings": [],
                      "awarders": [],
                      "media_only": false,
                      "link_flair_template_id": "11e1d3fc-5c54-11e4-8ccc-12313b0e448d",
                      "can_gild": false,
                      "spoiler": false,
                      "locked": false,
                      "author_flair_text": ":lal-4: Minneapolis Lakers",
                      "treatment_tags": [],
                      "visited": false,
                      "removed_by": null,
                      "mod_note": null,
                      "distinguished": null,
                      "subreddit_id": "t5_2qo4s",
                      "author_is_blocked": false,
                      "mod_reason_by": null,
                      "num_reports": null,
                      "removal_reason": null,
                      "link_flair_background_color": "#0079d3",
                      "id": "1p10phg",
                      "is_robot_indexable": true,
                      "report_reasons": null,
                      "author": "kurruchi",
                      "discussion_type": null,
                      "num_comments": 76,
                      "send_replies": true,
                      "contest_mode": false,
                      "mod_reports": [],
                      "author_patreon_flair": false,
                      "author_flair_text_color": "dark",
                      "permalink": "/r/nba/comments/1p10phg/highlight_all_12_lebron_james_assists_from_his/",
                      "stickied": false,
                      "url": "https://streamable.com/3fgql1",
                      "subreddit_subscribers": 16893176,
                      "created_utc": 1763535527,
                      "num_crossposts": 1,
                      "media": {
                          "oembed": {
                              "provider_url": "https://streamable.com",
                              "description": "Watch \"Brett Usher - All 12 LeBron James assists\" on Streamable.",
                              "title": "Brett Usher - All 12 LeBron James assists",
                              "thumbnail_width": 1440,
                              "height": 450,
                              "width": 600,
                              "html": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2F3fgql1&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2F3fgql1&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2F3fgql1.jpg%3FExpires%3D1763794727442%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DYyPLJEdv944tdfaYbKak65Gyta5pbaKbS7CR%7EbrnuTDHK%7ExQfGKddv8hLUK95o4sz8Jsk-%7EbpY0BlqC6A0%7EzIx2BAwPOMG0XrilHJQRTJ%7EiWT0lvSRwVN8V4uUenOy-qi0%7EjCL6u0eSvZm8vr7IsHbhXpMnlf6YtOE2sERxhW58JUQ69umlzfnBRjdnCD0rWigDSeGtuD8llz%7EHW9p3cOmtRIv4iA-6VP00KJOCUMPcliSZP-JGm0W3VTVcHfi4qcMtibYXuUWHjKKlaFQFh8R78rb8-qdbFXpjZduZENbSpigTFIKaJ2kraZIQugTH6qh-O1GbfUhcHZJPJ9G6oKA__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"450\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                              "version": "1.0",
                              "provider_name": "Streamable",
                              "thumbnail_url": "https://cdn-cf-east.streamable.com/image/3fgql1.jpg?Expires=1763794727442&amp;Key-Pair-Id=APKAIEYUVEN4EVB2OKEQ&amp;Signature=YyPLJEdv944tdfaYbKak65Gyta5pbaKbS7CR~brnuTDHK~xQfGKddv8hLUK95o4sz8Jsk-~bpY0BlqC6A0~zIx2BAwPOMG0XrilHJQRTJ~iWT0lvSRwVN8V4uUenOy-qi0~jCL6u0eSvZm8vr7IsHbhXpMnlf6YtOE2sERxhW58JUQ69umlzfnBRjdnCD0rWigDSeGtuD8llz~HW9p3cOmtRIv4iA-6VP00KJOCUMPcliSZP-JGm0W3VTVcHfi4qcMtibYXuUWHjKKlaFQFh8R78rb8-qdbFXpjZduZENbSpigTFIKaJ2kraZIQugTH6qh-O1GbfUhcHZJPJ9G6oKA__",
                              "type": "video",
                              "thumbnail_height": 1080
                          },
                          "type": "streamable.com"
                      },
                      "is_video": false
                  }
              },
              {
                  "kind": "t3",
                  "data": {
                      "approved_at_utc": null,
                      "subreddit": "nba",
                      "selftext": "",
                      "author_fullname": "t2_8lemz",
                      "saved": false,
                      "mod_reason_title": null,
                      "gilded": 0,
                      "clicked": false,
                      "title": "[Highlight] Fox with the windmill to punctuate the win",
                      "link_flair_richtext": [
                          {
                              "e": "text",
                              "t": "Highlight"
                          }
                      ],
                      "subreddit_name_prefixed": "r/nba",
                      "hidden": false,
                      "pwls": 6,
                      "link_flair_css_class": "highlights",
                      "downs": 0,
                      "thumbnail_height": 78,
                      "top_awarded_type": null,
                      "hide_score": false,
                      "name": "t3_1p0wr69",
                      "quarantine": false,
                      "link_flair_text_color": "light",
                      "upvote_ratio": 0.98,
                      "author_flair_background_color": null,
                      "ups": 1463,
                      "total_awards_received": 0,
                      "media_embed": {
                          "content": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2Fovln60&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2Fovln60&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2Fovln60.jpg%3FExpires%3D1763781931837%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DhrvezDnRokKJ4SR4IAwO0sXNUBUJJFvTP-VB0r5D-wInde11Mhc3SwUCdcrGRrmBg0aCoVdBYrZBmy9hpxI7ZLvq9RGHyWcR1g25qmwHfi8zdwQHvhFcEVY4x04869ouvi0UIOFilQFjVVX4C-t6KsN0fvqNV4OaHwa1hRd0rN6bxpNFmi6CYEfRY30xehcuSpvUivbFEdGY-IS7wdnGqYeGBkCW65beiPO7o-WQJgZaomLI4nq%7EtbUIY6hngghrRYCPCmVaey6UOiaOrlKzAw27HZE8DXjsNoaaxHK2choQJy6yVRjvREO6rERudCHjJQGn0qEPBn3xUyduC9iS2g__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                          "width": 600,
                          "scrolling": false,
                          "height": 338
                      },
                      "thumbnail_width": 140,
                      "author_flair_template_id": null,
                      "is_original_content": false,
                      "user_reports": [],
                      "secure_media": {
                          "oembed": {
                              "provider_url": "https://streamable.com",
                              "description": "Watch \"[Highlight] Fox with the windmill to punctuate the win\" on Streamable.",
                              "title": "[Highlight] Fox with the windmill to punctuate the win",
                              "thumbnail_width": 1920,
                              "height": 338,
                              "width": 600,
                              "html": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2Fovln60&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2Fovln60&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2Fovln60.jpg%3FExpires%3D1763781931837%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DhrvezDnRokKJ4SR4IAwO0sXNUBUJJFvTP-VB0r5D-wInde11Mhc3SwUCdcrGRrmBg0aCoVdBYrZBmy9hpxI7ZLvq9RGHyWcR1g25qmwHfi8zdwQHvhFcEVY4x04869ouvi0UIOFilQFjVVX4C-t6KsN0fvqNV4OaHwa1hRd0rN6bxpNFmi6CYEfRY30xehcuSpvUivbFEdGY-IS7wdnGqYeGBkCW65beiPO7o-WQJgZaomLI4nq%7EtbUIY6hngghrRYCPCmVaey6UOiaOrlKzAw27HZE8DXjsNoaaxHK2choQJy6yVRjvREO6rERudCHjJQGn0qEPBn3xUyduC9iS2g__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                              "version": "1.0",
                              "provider_name": "Streamable",
                              "thumbnail_url": "https://cdn-cf-east.streamable.com/image/ovln60.jpg?Expires=1763781931837&amp;Key-Pair-Id=APKAIEYUVEN4EVB2OKEQ&amp;Signature=hrvezDnRokKJ4SR4IAwO0sXNUBUJJFvTP-VB0r5D-wInde11Mhc3SwUCdcrGRrmBg0aCoVdBYrZBmy9hpxI7ZLvq9RGHyWcR1g25qmwHfi8zdwQHvhFcEVY4x04869ouvi0UIOFilQFjVVX4C-t6KsN0fvqNV4OaHwa1hRd0rN6bxpNFmi6CYEfRY30xehcuSpvUivbFEdGY-IS7wdnGqYeGBkCW65beiPO7o-WQJgZaomLI4nq~tbUIY6hngghrRYCPCmVaey6UOiaOrlKzAw27HZE8DXjsNoaaxHK2choQJy6yVRjvREO6rERudCHjJQGn0qEPBn3xUyduC9iS2g__",
                              "type": "video",
                              "thumbnail_height": 1080
                          },
                          "type": "streamable.com"
                      },
                      "is_reddit_media_domain": false,
                      "is_meta": false,
                      "category": null,
                      "secure_media_embed": {
                          "content": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2Fovln60&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2Fovln60&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2Fovln60.jpg%3FExpires%3D1763781931837%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DhrvezDnRokKJ4SR4IAwO0sXNUBUJJFvTP-VB0r5D-wInde11Mhc3SwUCdcrGRrmBg0aCoVdBYrZBmy9hpxI7ZLvq9RGHyWcR1g25qmwHfi8zdwQHvhFcEVY4x04869ouvi0UIOFilQFjVVX4C-t6KsN0fvqNV4OaHwa1hRd0rN6bxpNFmi6CYEfRY30xehcuSpvUivbFEdGY-IS7wdnGqYeGBkCW65beiPO7o-WQJgZaomLI4nq%7EtbUIY6hngghrRYCPCmVaey6UOiaOrlKzAw27HZE8DXjsNoaaxHK2choQJy6yVRjvREO6rERudCHjJQGn0qEPBn3xUyduC9iS2g__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                          "width": 600,
                          "scrolling": false,
                          "media_domain_url": "https://www.redditmedia.com/mediaembed/1p0wr69",
                          "height": 338
                      },
                      "link_flair_text": "Highlight",
                      "can_mod_post": false,
                      "score": 1463,
                      "approved_by": null,
                      "is_created_from_ads_ui": false,
                      "author_premium": false,
                      "thumbnail": "https://external-preview.redd.it/zTq_43Dhsq_HNKWcr6mlnEnyFWVtQvZTwyulgIGATR8.jpeg?width=140&amp;height=78&amp;auto=webp&amp;s=9bae40e1e84ee6e091a2b6b811543834ca833aaa",
                      "edited": false,
                      "author_flair_css_class": null,
                      "author_flair_richtext": [],
                      "gildings": {},
                      "post_hint": "rich:video",
                      "content_categories": null,
                      "is_self": false,
                      "subreddit_type": "public",
                      "created": 1763522682,
                      "link_flair_type": "richtext",
                      "wls": 6,
                      "removed_by_category": null,
                      "banned_by": null,
                      "author_flair_type": "text",
                      "domain": "streamable.com",
                      "allow_live_comments": false,
                      "selftext_html": null,
                      "likes": null,
                      "suggested_sort": null,
                      "banned_at_utc": null,
                      "url_overridden_by_dest": "https://streamable.com/ovln60",
                      "view_count": null,
                      "archived": false,
                      "no_follow": false,
                      "is_crosspostable": false,
                      "pinned": false,
                      "over_18": false,
                      "preview": {
                          "images": [
                              {
                                  "source": {
                                      "url": "https://external-preview.redd.it/zTq_43Dhsq_HNKWcr6mlnEnyFWVtQvZTwyulgIGATR8.jpeg?auto=webp&amp;s=56549c1f375e8c1cc0cad3d1786c2e764b0a2226",
                                      "width": 1920,
                                      "height": 1080
                                  },
                                  "resolutions": [
                                      {
                                          "url": "https://external-preview.redd.it/zTq_43Dhsq_HNKWcr6mlnEnyFWVtQvZTwyulgIGATR8.jpeg?width=108&amp;crop=smart&amp;auto=webp&amp;s=9c12ec3b1c2b7d938db4b64b6330ea8a0b436b60",
                                          "width": 108,
                                          "height": 60
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/zTq_43Dhsq_HNKWcr6mlnEnyFWVtQvZTwyulgIGATR8.jpeg?width=216&amp;crop=smart&amp;auto=webp&amp;s=8b14175a744eca6d1bc833c203d2219f1080a6a2",
                                          "width": 216,
                                          "height": 121
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/zTq_43Dhsq_HNKWcr6mlnEnyFWVtQvZTwyulgIGATR8.jpeg?width=320&amp;crop=smart&amp;auto=webp&amp;s=0d8965e17ca424154a81dba5d85e45d28b754c5d",
                                          "width": 320,
                                          "height": 180
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/zTq_43Dhsq_HNKWcr6mlnEnyFWVtQvZTwyulgIGATR8.jpeg?width=640&amp;crop=smart&amp;auto=webp&amp;s=1e1ee6cca2d2b201fa13bd3c104aa2bb985ab43f",
                                          "width": 640,
                                          "height": 360
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/zTq_43Dhsq_HNKWcr6mlnEnyFWVtQvZTwyulgIGATR8.jpeg?width=960&amp;crop=smart&amp;auto=webp&amp;s=1124cba5057bff6996c40c9be4e669e3bcda0fa4",
                                          "width": 960,
                                          "height": 540
                                      },
                                      {
                                          "url": "https://external-preview.redd.it/zTq_43Dhsq_HNKWcr6mlnEnyFWVtQvZTwyulgIGATR8.jpeg?width=1080&amp;crop=smart&amp;auto=webp&amp;s=96669682bd71940b9f3aa6dedc974a49c946f582",
                                          "width": 1080,
                                          "height": 607
                                      }
                                  ],
                                  "variants": {},
                                  "id": "zTq_43Dhsq_HNKWcr6mlnEnyFWVtQvZTwyulgIGATR8"
                              }
                          ],
                          "enabled": false
                      },
                      "all_awardings": [],
                      "awarders": [],
                      "media_only": false,
                      "link_flair_template_id": "11e1d3fc-5c54-11e4-8ccc-12313b0e448d",
                      "can_gild": false,
                      "spoiler": false,
                      "locked": false,
                      "author_flair_text": null,
                      "treatment_tags": [],
                      "visited": false,
                      "removed_by": null,
                      "mod_note": null,
                      "distinguished": null,
                      "subreddit_id": "t5_2qo4s",
                      "author_is_blocked": false,
                      "mod_reason_by": null,
                      "num_reports": null,
                      "removal_reason": null,
                      "link_flair_background_color": "#0079d3",
                      "id": "1p0wr69",
                      "is_robot_indexable": true,
                      "report_reasons": null,
                      "author": "Large_banana_hammock",
                      "discussion_type": null,
                      "num_comments": 110,
                      "send_replies": true,
                      "contest_mode": false,
                      "mod_reports": [],
                      "author_patreon_flair": false,
                      "author_flair_text_color": null,
                      "permalink": "/r/nba/comments/1p0wr69/highlight_fox_with_the_windmill_to_punctuate_the/",
                      "stickied": false,
                      "url": "https://streamable.com/ovln60",
                      "subreddit_subscribers": 16893176,
                      "created_utc": 1763522682,
                      "num_crossposts": 0,
                      "media": {
                          "oembed": {
                              "provider_url": "https://streamable.com",
                              "description": "Watch \"[Highlight] Fox with the windmill to punctuate the win\" on Streamable.",
                              "title": "[Highlight] Fox with the windmill to punctuate the win",
                              "thumbnail_width": 1920,
                              "height": 338,
                              "width": 600,
                              "html": "&lt;iframe class=\"embedly-embed\" src=\"https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fstreamable.com%2Fo%2Fovln60&amp;display_name=Streamable&amp;url=https%3A%2F%2Fstreamable.com%2Fovln60&amp;image=https%3A%2F%2Fcdn-cf-east.streamable.com%2Fimage%2Fovln60.jpg%3FExpires%3D1763781931837%26Key-Pair-Id%3DAPKAIEYUVEN4EVB2OKEQ%26Signature%3DhrvezDnRokKJ4SR4IAwO0sXNUBUJJFvTP-VB0r5D-wInde11Mhc3SwUCdcrGRrmBg0aCoVdBYrZBmy9hpxI7ZLvq9RGHyWcR1g25qmwHfi8zdwQHvhFcEVY4x04869ouvi0UIOFilQFjVVX4C-t6KsN0fvqNV4OaHwa1hRd0rN6bxpNFmi6CYEfRY30xehcuSpvUivbFEdGY-IS7wdnGqYeGBkCW65beiPO7o-WQJgZaomLI4nq%7EtbUIY6hngghrRYCPCmVaey6UOiaOrlKzAw27HZE8DXjsNoaaxHK2choQJy6yVRjvREO6rERudCHjJQGn0qEPBn3xUyduC9iS2g__&amp;type=text%2Fhtml&amp;schema=streamable\" width=\"600\" height=\"338\" scrolling=\"no\" title=\"Streamable embed\" frameborder=\"0\" allow=\"autoplay; fullscreen; encrypted-media; picture-in-picture;\" allowfullscreen=\"true\"&gt;&lt;/iframe&gt;",
                              "version": "1.0",
                              "provider_name": "Streamable",
                              "thumbnail_url": "https://cdn-cf-east.streamable.com/image/ovln60.jpg?Expires=1763781931837&amp;Key-Pair-Id=APKAIEYUVEN4EVB2OKEQ&amp;Signature=hrvezDnRokKJ4SR4IAwO0sXNUBUJJFvTP-VB0r5D-wInde11Mhc3SwUCdcrGRrmBg0aCoVdBYrZBmy9hpxI7ZLvq9RGHyWcR1g25qmwHfi8zdwQHvhFcEVY4x04869ouvi0UIOFilQFjVVX4C-t6KsN0fvqNV4OaHwa1hRd0rN6bxpNFmi6CYEfRY30xehcuSpvUivbFEdGY-IS7wdnGqYeGBkCW65beiPO7o-WQJgZaomLI4nq~tbUIY6hngghrRYCPCmVaey6UOiaOrlKzAw27HZE8DXjsNoaaxHK2choQJy6yVRjvREO6rERudCHjJQGn0qEPBn3xUyduC9iS2g__",
                              "type": "video",
                              "thumbnail_height": 1080
                          },
                          "type": "streamable.com"
                      },
                      "is_video": false
                  }
              }
          ],
          "before": null
      }
  }
  ```
</CodeGroup>

***

<Columns cols={2}>
  <Card title="Support" href="https://direct.lc.chat/12092754" cta="Let's chat!">
    Need help or just want to say hello? Our support is available 24/7. \
    You can also reach us anytime via email at [support@decodo.com](mailto:support@decodo.com).
  </Card>

  <Card title="Feedback" href="mailto:feedback@decodo.com" cta="Share feedback">
    Can't find what you're looking for? Request an article! \
    Have feedback? Share your thoughts on how we can improve.
  </Card>
</Columns>
