atnSTtiWU5E comments + wip

From Denim Echidna, 2 Minutes ago, written in Plain Text, viewed 11 times.
URL http://axuhongbo.top/paste/view/99693c0e Embed Show code
Download Paste or View Raw
  1. #!/bin/bash -i
  2. # -- note the -i part in the above line (check that .bashrc is pretty default)
  3. # -- prototype script
  4.  
  5. echo "Run this script in an empty folder."
  6. echo "This probably only works on YouTube videos which have comments which have replies where all of the replies are not shown."
  7. sleep 0.5
  8. echo "YouTube video ID: $1"
  9. echo "YouTube API key: $2"
  10.  
  11. # -- Download all pages of the comments
  12. nextpage=$(cat "$1.txt" | grep '"nextPageToken"' | awk {'print $2'} | sed "s/\"\|,//g")
  13. if [ -n "$nextpage" ]; then
  14.     echo "nextPageToken found."
  15.     while [ -n "$nextpage" ];
  16.     do
  17.         nextpagedup=$nextpage
  18.         nextpage=$(cat "$1.txt" | grep '"nextPageToken"' | tail -n 1 | awk {'print $2'} | sed "s/\"\|,//g")
  19.         echo "Old nextpage: $nextpagedup"
  20.         echo "New nextpage: $nextpage"
  21.         sleep 0.7
  22.         if [[ "$nextpagedup" == "$nextpage" ]]; then
  23.             echo "No new nextPageToken found."
  24.             break
  25.         fi
  26.     done
  27. else
  28.     echo "nextPageToken not found (there is none)."
  29. fi
  30.  
  31. # -- Download missing replies
  32. echo 'execute "%s/\\(.\\+\\n\\)\\{28} \\{8}\"totalReplyCount\":\\s\\([1-9]\\|\\d\\d\\+\\),\\(\\n.\\+\\)\\{3}\\n\\( \\{4}{\\)/\\4/ge"' > vim.txt
  33. echo 'execute "%s/\\(.\\+\\n\\)\\{28} \\{8}\"totalReplyCount\": 0,\\(\\n.\\+\\)\\{3}//ge"' >> vim.txt
  34. echo 'execute "%s/\\(.\\+\\n\\)\\{6} \\{14}\"textDisplay\": \"\\(.\\+\\n\\)\\{15}.\\+/./ge"' >> vim.txt
  35. echo 'execute "%s/\\(^\\.$\\n\\)\\+/\\=strlen(substitute(submatch(0), \"\\n\", \"\", \"g\")) . \"\\r\""' >> vim.txt
  36. echo 'execute "%s/^ \\{8}\"totalReplyCount\": \\(\\d\\+\\),\\(\\n.\\+\\)\\{4}\\n\\1/---Has all replies/ge"' >> vim.txt
  37. echo 'execute "%s/^ \\{8}\"totalReplyCount\": \\(\\d\\+\\),\\(\\n.\\+\\)\\{4}\\n\\d\\+/---Does NOT have all replies/ge"' >> vim.txt
  38. echo 'execute "g!/^---\\|^ \\{6}\"id\"/d"' >> vim.txt
  39. echo 'execute "%s/^\\s\\+\"id\":.\\+\\n---Has all replies\\n//g"' >> vim.txt
  40. echo 'execute "%s/^\\s\\+\"id\": \"\\([^\"]\\+\\)\",\\n---Does NOT have.\\+/curl \"https:\\/\\/www.googleapis.com\\/youtube\\/v3\\/comments?key=[KEY_HERE]\\&part=snippet,id\\&parentId=\\1\\&maxResults=100\" --header \"Accept: application\\/json\" > \\1.json/g"' >> vim.txt
  41. echo 'execute "w dl_missing.sh | q!"' >> vim.txt
  42. vim "$1.txt" -c 'execute "so vim.txt"'
  43. cat "dl_missing.sh" | sed "s/\[KEY_HERE\]/$2/g" > "download_missing.sh"
  44. rm "dl_missing.sh"
  45. bash "download_missing.sh"
  46.  
  47. # -- Patch in missing replies
  48. cp "$1.txt" "$1_patched.txt"
  49. dlmissing=$(cat download_missing.sh | sed "s/.\+ //g")
  50. # -- Do not run '; vim "$one" -c "execute \"so ""$args""_do.txt\""' in xargs, it breaks GNOME Terminal
  51. echo -en "$dlmissing" | xargs -d "\n" sh -c 'for args do one=$(ls | grep _patched.txt | tr -d \\n); argsnojson=$(echo -n $args | sed s/.json//g); echo "execute \"edit $args\"" > ""$args""_do.txt; echo "execute \"%s/^/\\\\\=\\\"\\\\\x20\\\\\x20\\\\\x20\\\\\x20\\\\\x20\\\\\x20\\\"/g | %s/ \\\"items\\\": / \\\"comments\\\": /g\"" >> ""$args""_do.txt; echo "execute \"normal! gg6ddGddgg\\\"ayG\"" >> ""$args""_do.txt; echo "execute \"bdelete!""\"" >> ""$args""_do.txt; echo "execute \"edit $one\"" >> ""$args""_do.txt; echo "execute \"%s/^\\\\\( \\\\\{10}\\\"id\\\": \\\"$argsnojson\\\".*\\\\\\\\n.*\\\\\\\\n.*\\\\\\\\n.*\\\\\\\\n.*\\\\\\\\n.*\\\\\\\\n.*\\\\\\\\n.*\\\\\\\\n.*\\\\\\\\n.*\\\\\\\\n.*\\\\\\\\n.*\\\\\\\\n.*\\\\\\\\n.*\\\\\\\\n.*\\\\\\\\n.*\\\\\\\\n.*\\\\\\\\n.*\\\\\\\\n.*\\\\\\\\n.*\\\\\\\\n.*\\\\\\\\n.*\\\\\\\\n.*\\\\\)\\\\\\\\n \\\\\{8}\\\"comments\\\": \\\\\(.\\\\\+\\\\\\\\n\\\\\)\\\\\{-} \\\\\{8}\\\\\]\\\\\\\\n/\\\\\\\\1\\\\\\\\r\\\"\\\"\\\"\\\"\\\"/g | %s/\\\"\\\"\\\"\\\"\\\"/\\\\\=@a/g\"" >> ""$args""_do.txt; echo "execute \"wq\"" >> ""$args""_do.txt; echo "vim \"$one\" -c \"execute \\\"so ""$args""_do.txt\\\"\"" >> do.txt; done' _
  52. # -- todo: make a loop which execute each line instead of doing the following
  53. eval $(tail +1 do.txt | head -n 1)
  54. eval $(tail +2 do.txt | head -n 1)
  55. #$(tail +3 do.txt | head -n 1)
  56. #$(tail +4 do.txt | head -n 1)
  57. #$(tail +5 do.txt | head -n 1)
  58. #$(tail +6 do.txt | head -n 1)
  59. #$(tail +7 do.txt | head -n 1)
  60. #$(tail +8 do.txt | head -n 1)
  61. #$(tail +9 do.txt | head -n 1)
  62. #$(tail +10 do.txt | head -n 1)
  63. #$(tail +11 do.txt | head -n 1)
  64. #$(tail +12 do.txt | head -n 1)
  65. #$(tail +13 do.txt | head -n 1)
  66. #$(tail +14 do.txt | head -n 1)
  67. #$(tail +15 do.txt | head -n 1)
  68. #$(tail +16 do.txt | head -n 1)
  69. #$(tail +17 do.txt | head -n 1)
  70. #$(tail +18 do.txt | head -n 1)
  71. #$(tail +19 do.txt | head -n 1)
  72. #$(tail +20 do.txt | head -n 1)
  73. #$(tail +21 do.txt | head -n 1)
  74. #$(tail +22 do.txt | head -n 1)
  75.  
  76.  
  77.  
  78.  
  79.  
  80.  
  81. $ chmod a+x abovescript.sh
  82. $ ./abovescript.sh atnSTtiWU5E [KEY_HERE]
  83.  
  84.  
  85.  
  86.  
  87. {
  88.   "kind": "youtube#commentThreadListResponse",
  89.   "etag": "Z1O6r8Ujy1H5aqR-hzy9ExXEPdM",
  90.   "nextPageToken": "QURTSl9pMG1WcTcxQWx1WXNBN0tRcTFLUUE1S0ZodVdBUTBLR2JacUU0RXFFaEU5RllaY3NSVTRGM01xRnZ1dlEtSzE4M1NPNnZHMldSUQ==",
  91.   "pageInfo": {
  92.     "totalResults": 100,
  93.     "resultsPerPage": 100
  94.   },
  95.   "items": [
  96.     {
  97.       "kind": "youtube#commentThread",
  98.       "etag": "YIuC6DMUTgRwgMNenDBwvFknLSQ",
  99.       "id": "UgwbMsK33pnibalQKuV4AaABAg",
  100.       "snippet": {
  101.         "videoId": "atnSTtiWU5E",
  102.         "topLevelComment": {
  103.           "kind": "youtube#comment",
  104.           "etag": "wwoiSXGwE_pV_xP_RNtzMPVK9DQ",
  105.           "id": "UgwbMsK33pnibalQKuV4AaABAg",
  106.           "snippet": {
  107.             "videoId": "atnSTtiWU5E",
  108.             "textDisplay": "Cause she's an evil enchantre- wait. Hold on, it's already been 10 YEARS!?!?",
  109.             "textOriginal": "Cause she's an evil enchantre- wait. Hold on, it's already been 10 YEARS!?!?",
  110.             "authorDisplayName": "♡Ghöst_Mîlk♡",
  111.             "authorChannelUrl": "http://www.youtube.com/channel/UC58bAockie2hUBEcJtBItRQ",
  112.             "authorChannelId": {
  113.               "value": "UC58bAockie2hUBEcJtBItRQ"
  114.             },
  115.             "canRate": true,
  116.             "viewerRating": "none",
  117.             "likeCount": 0,
  118.             "publishedAt": "2022-08-31T21:07:37Z",
  119.             "updatedAt": "2022-08-31T21:07:37Z"
  120.           }
  121.         },
  122.         "canReply": true,
  123.         "totalReplyCount": 0,
  124.         "isPublic": true
  125.       }
  126.     },
  127.     {
  128.       "kind": "youtube#commentThread",
  129.       "etag": "MymbkN0g0a0oWkhN-NtgWbh0JJ4",
  130.       "id": "UgwbG9cWGzce9B-yf_h4AaABAg",
  131.       "snippet": {
  132.         "videoId": "atnSTtiWU5E",
  133.         "topLevelComment": {
  134.           "kind": "youtube#comment",
  135.           "etag": "SM2aOtMsUF2NxXa0Jc5WtEDVI9k",
  136.           "id": "UgwbG9cWGzce9B-yf_h4AaABAg",
  137.           "snippet": {
  138.             "videoId": "atnSTtiWU5E",
  139.             "textDisplay": "I HAVE BEEN SEARCHING IT FOR EVERYWHERE",
  140.             "textOriginal": "I HAVE BEEN SEARCHING IT FOR EVERYWHERE",
  141.             "authorDisplayName": "Bravyfied",
  142.             "authorChannelUrl": "http://www.youtube.com/channel/UCkyN-C4Uo9BZiw7vsPpZTEw",
  143.             "authorChannelId": {
  144.               "value": "UCkyN-C4Uo9BZiw7vsPpZTEw"
  145.             },
  146.             "canRate": true,
  147.             "viewerRating": "none",
  148.             "likeCount": 0,
  149.             "publishedAt": "2022-08-05T20:13:05Z",
  150.             "updatedAt": "2022-08-05T20:13:05Z"
  151.           }
  152.         },
  153.         "canReply": true,
  154.         "totalReplyCount": 0,
  155.         "isPublic": true
  156.       }
  157.     },
  158.     {
  159.       "kind": "youtube#commentThread",
  160.       "etag": "vWC7lkdX-Y85AE6b4xwkm-X4hYQ",
  161.       "id": "UgzZvGmpB39oQ6-_Llt4AaABAg",
  162.       "snippet": {
  163.         "videoId": "atnSTtiWU5E",
  164.         "topLevelComment": {
  165.           "kind": "youtube#comment",
  166.           "etag": "C9aobONdVzFwnOnVtvlXvCmTPvM",
  167.           "id": "UgzZvGmpB39oQ6-_Llt4AaABAg",
  168.           "snippet": {
  169.             "videoId": "atnSTtiWU5E",
  170.             "textDisplay": "I can't believe this 11 years old",
  171.             "textOriginal": "I can't believe this 11 years old",
  172.             "authorDisplayName": "PierceVex",
  173.             "authorChannelUrl": "http://www.youtube.com/channel/UCw9ziFuPy96ubBLb6ucqnNg",
  174.             "authorChannelId": {
  175.               "value": "UCw9ziFuPy96ubBLb6ucqnNg"
  176.             },
  177.             "canRate": true,
  178.             "viewerRating": "none",
  179.             "likeCount": 0,
  180.             "publishedAt": "2022-07-31T18:33:56Z",
  181.             "updatedAt": "2022-07-31T18:33:56Z"
  182.           }
  183.         },
  184.         "canReply": true,
  185.         "totalReplyCount": 0,
  186.         "isPublic": true
  187.       }
  188.     },
  189.     {
  190.       "kind": "youtube#commentThread",
  191.       "etag": "5eN8_GpuJQ0p4HH6nfGb6kObB78",
  192.       "id": "UgzzSKu7MapFX6WopBB4AaABAg",
  193.       "snippet": {
  194.         "videoId": "atnSTtiWU5E",
  195.         "topLevelComment": {
  196.           "kind": "youtube#comment",
  197.           "etag": "eZPfbOTjF4B1i0CWr3MQKiufLC4",
  198.           "id": "UgzzSKu7MapFX6WopBB4AaABAg",
  199.           "snippet": {
  200.             "videoId": "atnSTtiWU5E",
  201.             "textDisplay": "Is this canonícelo the first song?",
  202.             "textOriginal": "Is this canonícelo the first song?",
  203.             "authorDisplayName": "H-chris",
  204.             "authorChannelUrl": "http://www.youtube.com/channel/UC3nf9kXYPrXRHDReWdzn-yA",
  205.             "authorChannelId": {
  206.               "value": "UC3nf9kXYPrXRHDReWdzn-yA"
  207.             },
  208.             "canRate": true,
  209.             "viewerRating": "none",
  210.             "likeCount": 0,
  211.             "publishedAt": "2022-07-11T02:14:09Z",
  212.             "updatedAt": "2022-07-11T02:14:09Z"
  213.           }
  214.         },
  215.         "canReply": true,
  216.         "totalReplyCount": 0,
  217.         "isPublic": true
  218.       }
  219.     },
  220.     {
  221.       "kind": "youtube#commentThread",
  222.       "etag": "McXIJMXse-_8y5v_mfS2B0Hon0I",
  223.       "id": "UgyfDvfMUg112vyuibJ4AaABAg",
  224.       "snippet": {
  225.         "videoId": "atnSTtiWU5E",
  226.         "topLevelComment": {
  227.           "kind": "youtube#comment",
  228.           "etag": "s6riU4xngngw_NvedFICeOgfhBA",
  229.           "id": "UgyfDvfMUg112vyuibJ4AaABAg",
  230.           "snippet": {
  231.             "videoId": "atnSTtiWU5E",
  232.             "textDisplay": "Not a mlp fan\u003cbr\u003eBut this is nice",
  233.             "textOriginal": "Not a mlp fan\nBut this is nice",
  234.             "authorDisplayName": "Maurice MotoMan",
  235.             "authorChannelUrl": "http://www.youtube.com/channel/UCGS0-iVxS8h4_gdasep6CqQ",
  236.             "authorChannelId": {
  237.               "value": "UCGS0-iVxS8h4_gdasep6CqQ"
  238.             },
  239.             "canRate": true,
  240.             "viewerRating": "none",
  241.             "likeCount": 0,
  242.             "publishedAt": "2022-04-26T21:15:56Z",
  243.             "updatedAt": "2022-04-26T21:15:56Z"
  244.           }
  245.         },
  246.         "canReply": true,
  247.         "totalReplyCount": 0,
  248.         "isPublic": true
  249.       }
  250.     },
  251.     {
  252.       "kind": "youtube#commentThread",
  253.       "etag": "7_7Dg2AQsR_W_AlyqKKPPR0Vc2Y",
  254.       "id": "UgzvWjhkXHAzo6O9d-14AaABAg",
  255.       "snippet": {
  256.         "videoId": "atnSTtiWU5E",
  257.         "topLevelComment": {
  258.           "kind": "youtube#comment",
  259.           "etag": "ZentD4ufuBx2y04tMDr-T1_C9zo",
  260.           "id": "UgzvWjhkXHAzo6O9d-14AaABAg",
  261.           "snippet": {
  262.             "videoId": "atnSTtiWU5E",
  263.             "textDisplay": "brings me back to luna game",
  264.             "textOriginal": "brings me back to luna game",
  265.             "authorDisplayName": "kenny",
  266.             "authorChannelUrl": "http://www.youtube.com/channel/UCzxpRzmqcanVNHUUtVHQBqg",
  267.             "authorChannelId": {
  268.               "value": "UCzxpRzmqcanVNHUUtVHQBqg"
  269.             },
  270.             "canRate": true,
  271.             "viewerRating": "none",
  272.             "likeCount": 0,
  273.             "publishedAt": "2022-04-20T04:28:31Z",
  274.             "updatedAt": "2022-04-20T04:28:31Z"
  275.           }
  276.         },
  277.         "canReply": true,
  278.         "totalReplyCount": 0,
  279.         "isPublic": true
  280.       }
  281.     },
  282.     {
  283.       "kind": "youtube#commentThread",
  284.       "etag": "HJRRbz66UckDcCNauCfeRDmJhJM",
  285.       "id": "Ugz5-ZQRypPNYsQq7sJ4AaABAg",
  286.       "snippet": {
  287.         "videoId": "atnSTtiWU5E",
  288.         "topLevelComment": {
  289.           "kind": "youtube#comment",
  290.           "etag": "gYWin6HaI2nFHBhtKto_rxcUBm8",
  291.           "id": "Ugz5-ZQRypPNYsQq7sJ4AaABAg",
  292.           "snippet": {
  293.             "videoId": "atnSTtiWU5E",
  294.             "textDisplay": "wow.. its been 11 years",
  295.             "textOriginal": "wow.. its been 11 years",
  296.             "authorDisplayName": "yoofighter",
  297.             "authorChannelUrl": "http://www.youtube.com/channel/UCHaUi476knmjRFA21O1j93g",
  298.             "authorChannelId": {
  299.               "value": "UCHaUi476knmjRFA21O1j93g"
  300.             },
  301.             "canRate": true,
  302.             "viewerRating": "none",
  303.             "likeCount": 0,
  304.             "publishedAt": "2022-03-06T15:00:19Z",
  305.             "updatedAt": "2022-03-06T15:00:19Z"
  306.           }
  307.         },
  308.         "canReply": true,
  309.         "totalReplyCount": 0,
  310.         "isPublic": true
  311.       }
  312.     },
  313.     {
  314.       "kind": "youtube#commentThread",
  315.       "etag": "jX292Hf63FJov3EIVhOscMFvMh4",
  316.       "id": "UgxICOuBG9GLNwGpteN4AaABAg",
  317.       "snippet": {
  318.         "videoId": "atnSTtiWU5E",
  319.         "topLevelComment": {
  320.           "kind": "youtube#comment",
  321.           "etag": "JIB0-HULR_eYpB3_GxzPiiQNFlQ",
  322.           "id": "UgxICOuBG9GLNwGpteN4AaABAg",
  323.           "snippet": {
  324.             "videoId": "atnSTtiWU5E",
  325.             "textDisplay": "it’s been so long",
  326.             "textOriginal": "it’s been so long",
  327.             "authorDisplayName": "SombrLuna",
  328.             "authorChannelUrl": "http://www.youtube.com/channel/UCqdQxaWz_TXZ0KSyl1n0-sg",
  329.             "authorChannelId": {
  330.               "value": "UCqdQxaWz_TXZ0KSyl1n0-sg"
  331.             },
  332.             "canRate": true,
  333.             "viewerRating": "none",
  334.             "likeCount": 0,
  335.             "publishedAt": "2022-02-11T19:22:58Z",
  336.             "updatedAt": "2022-02-11T19:22:58Z"
  337.           }
  338.         },
  339.         "canReply": true,
  340.         "totalReplyCount": 0,
  341.         "isPublic": true
  342.       }
  343.     },
  344.     {
  345.       "kind": "youtube#commentThread",
  346.       "etag": "EurV32R4HTbg_J0OVVjx1oCeyGI",
  347.       "id": "Ugw1Ya8k6wMut-m-KCZ4AaABAg",
  348.       "snippet": {
  349.         "videoId": "atnSTtiWU5E",
  350.         "topLevelComment": {
  351.           "kind": "youtube#comment",
  352.           "etag": "tWZCsYG06xitim9UOIQCELbClsc",
  353.           "id": "Ugw1Ya8k6wMut-m-KCZ4AaABAg",
  354.           "snippet": {
  355.             "videoId": "atnSTtiWU5E",
  356.             "textDisplay": "Cool ❤️❤️❤️",
  357.             "textOriginal": "Cool ❤️❤️❤️",
  358.             "authorDisplayName": "Fluttershy Fillensthy VIII",
  359.             "authorChannelUrl": "http://www.youtube.com/channel/UCBN3YKAq-bnwoLRWibAHt_w",
  360.             "authorChannelId": {
  361.               "value": "UCBN3YKAq-bnwoLRWibAHt_w"
  362.             },
  363.             "canRate": true,
  364.             "viewerRating": "none",
  365.             "likeCount": 0,
  366.             "publishedAt": "2021-11-22T13:31:59Z",
  367.             "updatedAt": "2021-11-22T13:31:59Z"
  368.           }
  369.         },
  370.         "canReply": true,
  371.         "totalReplyCount": 0,
  372.         "isPublic": true
  373.       }
  374.     },
  375.     {
  376.       "kind": "youtube#commentThread",
  377.       "etag": "stuLRWBhFOrX4_eExmXoRpLhQfY",
  378.       "id": "Ugw5uTKkUcPwOZsToJ94AaABAg",
  379.       "snippet": {
  380.         "videoId": "atnSTtiWU5E",
  381.         "topLevelComment": {
  382.           "kind": "youtube#comment",
  383.           "etag": "Yo_Sy6adIt-TnylDDB0PmKWk9ug",
  384.           "id": "Ugw5uTKkUcPwOZsToJ94AaABAg",
  385.           "snippet": {
  386.             "videoId": "atnSTtiWU5E",
  387.             "textDisplay": "The end is neigh",
  388.             "textOriginal": "The end is neigh",
  389.             "authorDisplayName": "CoffeeBrew",
  390.             "authorChannelUrl": "http://www.youtube.com/channel/UC5YiR-5eeffTdaYTA7j7QBg",
  391.             "authorChannelId": {
  392.               "value": "UC5YiR-5eeffTdaYTA7j7QBg"
  393.             },
  394.             "canRate": true,
  395.             "viewerRating": "none",
  396.             "likeCount": 0,
  397.             "publishedAt": "2021-10-12T04:58:53Z",
  398.             "updatedAt": "2021-10-12T04:58:53Z"
  399.           }
  400.         },
  401.         "canReply": true,
  402.         "totalReplyCount": 0,
  403.         "isPublic": true
  404.       }
  405.     },
  406.     {
  407.       "kind": "youtube#commentThread",
  408.       "etag": "06hXLDNDYex0VfhkjnMBbM72bqU",
  409.       "id": "UgywVK33BwebX9rtTXl4AaABAg",
  410.       "snippet": {
  411.         "videoId": "atnSTtiWU5E",
  412.         "topLevelComment": {
  413.           "kind": "youtube#comment",
  414.           "etag": "um19MU4VwydtACljfvfraC3OjWA",
  415.           "id": "UgywVK33BwebX9rtTXl4AaABAg",
  416.           "snippet": {
  417.             "videoId": "atnSTtiWU5E",
  418.             "textDisplay": "this was a crazier but alot more fun times",
  419.             "textOriginal": "this was a crazier but alot more fun times",
  420.             "authorDisplayName": "it is what it is",
  421.             "authorChannelUrl": "http://www.youtube.com/channel/UCKE2ZMqAeVgiOvjWRHyYBQA",
  422.             "authorChannelId": {
  423.               "value": "UCKE2ZMqAeVgiOvjWRHyYBQA"
  424.             },
  425.             "canRate": true,
  426.             "viewerRating": "none",
  427.             "likeCount": 1,
  428.             "publishedAt": "2021-10-03T07:47:09Z",
  429.             "updatedAt": "2021-10-03T07:47:09Z"
  430.           }
  431.         },
  432.         "canReply": true,
  433.         "totalReplyCount": 0,
  434.         "isPublic": true
  435.       }
  436.     },
  437.     {
  438.       "kind": "youtube#commentThread",
  439.       "etag": "l36SBXSi6L_exqENGZ6m3v36Ggk",
  440.       "id": "UgxSGQGBoq2gv76_fS14AaABAg",
  441.       "snippet": {
  442.         "videoId": "atnSTtiWU5E",
  443.         "topLevelComment": {
  444.           "kind": "youtube#comment",
  445.           "etag": "Ek10GsFz3cJcoJFehoxy-Y6DWIE",
  446.           "id": "UgxSGQGBoq2gv76_fS14AaABAg",
  447.           "snippet": {
  448.             "videoId": "atnSTtiWU5E",
  449.             "textDisplay": "luna gameee",
  450.             "textOriginal": "luna gameee",
  451.             "authorDisplayName": "katfishalien",
  452.             "authorChannelUrl": "http://www.youtube.com/channel/UCEepuwiphyLuzayPApZ2hPQ",
  453.             "authorChannelId": {
  454.               "value": "UCEepuwiphyLuzayPApZ2hPQ"
  455.             },
  456.             "canRate": true,
  457.             "viewerRating": "none",
  458.             "likeCount": 2,
  459.             "publishedAt": "2021-10-02T19:35:13Z",
  460.             "updatedAt": "2021-10-02T19:35:13Z"
  461.           }
  462.         },
  463.         "canReply": true,
  464.         "totalReplyCount": 0,
  465.         "isPublic": true
  466.       }
  467.     },
  468.     {
  469.       "kind": "youtube#commentThread",
  470.       "etag": "Yt8eoibkVnpgk5ALI_SpQHsyrqU",
  471.       "id": "UgyEFAWG8PXaUEYl6pp4AaABAg",
  472.       "snippet": {
  473.         "videoId": "atnSTtiWU5E",
  474.         "topLevelComment": {
  475.           "kind": "youtube#comment",
  476.           "etag": "sCUnETRP3AHwh8qy0uKs8SbTmEc",
  477.           "id": "UgyEFAWG8PXaUEYl6pp4AaABAg",
  478.           "snippet": {
  479.             "videoId": "atnSTtiWU5E",
  480.             "textDisplay": "?",
  481.             "textOriginal": "?",
  482.             "authorDisplayName": "Codoehsbdjdbhdhfh",
  483.             "authorChannelUrl": "http://www.youtube.com/channel/UCe71YuwxrVS_ZWrcRZvKMsA",
  484.             "authorChannelId": {
  485.               "value": "UCe71YuwxrVS_ZWrcRZvKMsA"
  486.             },
  487.             "canRate": true,
  488.             "viewerRating": "none",
  489.             "likeCount": 0,
  490.             "publishedAt": "2021-10-02T15:25:41Z",
  491.             "updatedAt": "2021-10-02T15:25:41Z"
  492.           }
  493.         },
  494.         "canReply": true,
  495.         "totalReplyCount": 0,
  496.         "isPublic": true
  497.       }
  498.     },
  499.     {
  500.       "kind": "youtube#commentThread",
  501.       "etag": "dtltZJvQp7vKaT0DOiZZkaur-IA",
  502.       "id": "UgzrSUMl-i5XU2RNyMV4AaABAg",
  503.       "snippet": {
  504.         "videoId": "atnSTtiWU5E",
  505.         "topLevelComment": {
  506.           "kind": "youtube#comment",
  507.           "etag": "_eQJaYMRy9zpzAJYysOGLSHbcmY",
  508.           "id": "UgzrSUMl-i5XU2RNyMV4AaABAg",
  509.           "snippet": {
  510.             "videoId": "atnSTtiWU5E",
  511.             "textDisplay": "Thank you, izzzyzzz, for this awakening",
  512.             "textOriginal": "Thank you, izzzyzzz, for this awakening",
  513.             "authorDisplayName": "noriaki_kakyoin",
  514.             "authorChannelUrl": "http://www.youtube.com/channel/UCRzgpCNQNQ-s5I4QT61vlyg",
  515.             "authorChannelId": {
  516.               "value": "UCRzgpCNQNQ-s5I4QT61vlyg"
  517.             },
  518.             "canRate": true,
  519.             "viewerRating": "none",
  520.             "likeCount": 3,
  521.             "publishedAt": "2021-09-29T21:22:09Z",
  522.             "updatedAt": "2021-09-29T21:22:09Z"
  523.           }
  524.         },
  525.         "canReply": true,
  526.         "totalReplyCount": 0,
  527.         "isPublic": true
  528.       }
  529.     },
  530.     {
  531.       "kind": "youtube#commentThread",
  532.       "etag": "EehppzllJLVoDRgpZ7YcKEXbof4",
  533.       "id": "UgwRYugbrStEwsb-bMl4AaABAg",
  534.       "snippet": {
  535.         "videoId": "atnSTtiWU5E",
  536.         "topLevelComment": {
  537.           "kind": "youtube#comment",
  538.           "etag": "Uf850JWxJsVA93f4scR88Ie99ag",
  539.           "id": "UgwRYugbrStEwsb-bMl4AaABAg",
  540.           "snippet": {
  541.             "videoId": "atnSTtiWU5E",
  542.             "textDisplay": "This is so amazing!",
  543.             "textOriginal": "This is so amazing!",
  544.             "authorDisplayName": "From the third Planet",
  545.             "authorChannelUrl": "http://www.youtube.com/channel/UCe_6wKTb0wVHjY99lpAHrWg",
  546.             "authorChannelId": {
  547.               "value": "UCe_6wKTb0wVHjY99lpAHrWg"
  548.             },
  549.             "canRate": true,
  550.             "viewerRating": "none",
  551.             "likeCount": 0,
  552.             "publishedAt": "2021-09-27T17:59:38Z",
  553.             "updatedAt": "2021-09-27T17:59:44Z"
  554.           }
  555.         },
  556.         "canReply": true,
  557.         "totalReplyCount": 0,
  558.         "isPublic": true
  559.       }
  560.     },
  561.     {
  562.       "kind": "youtube#commentThread",
  563.       "etag": "FZAhJgQMQ-ZEqabtKQPH5KcaLNM",
  564.       "id": "UgzhNaZwZgKENjh0kQV4AaABAg",
  565.       "snippet": {
  566.         "videoId": "atnSTtiWU5E",
  567.         "topLevelComment": {
  568.           "kind": "youtube#comment",
  569.           "etag": "I_qS3d966JFX9lFwtKwsw4P2YmI",
  570.           "id": "UgzhNaZwZgKENjh0kQV4AaABAg",
  571.           "snippet": {
  572.             "videoId": "atnSTtiWU5E",
  573.             "textDisplay": "it's giving me touhou",
  574.             "textOriginal": "it's giving me touhou",
  575.             "authorDisplayName": "KawaiiDesuUser2003",
  576.             "authorChannelUrl": "http://www.youtube.com/channel/UCxxFWpqhg0Pl641bpqWpPTQ",
  577.             "authorChannelId": {
  578.               "value": "UCxxFWpqhg0Pl641bpqWpPTQ"
  579.             },
  580.             "canRate": true,
  581.             "viewerRating": "none",
  582.             "likeCount": 1,
  583.             "publishedAt": "2021-09-26T16:02:25Z",
  584.             "updatedAt": "2021-09-26T16:02:25Z"
  585.           }
  586.         },
  587.         "canReply": true,
  588.         "totalReplyCount": 0,
  589.         "isPublic": true
  590.       }
  591.     },
  592.     {
  593.       "kind": "youtube#commentThread",
  594.       "etag": "WWrDCECqtj8IdOs4nRkCtD2LhNQ",
  595.       "id": "UgzbA7HwWw13Cq8Dp7x4AaABAg",
  596.       "snippet": {
  597.         "videoId": "atnSTtiWU5E",
  598.         "topLevelComment": {
  599.           "kind": "youtube#comment",
  600.           "etag": "oAbfLLjA5iJkNJ7lV5ZcEexonzw",
  601.           "id": "UgzbA7HwWw13Cq8Dp7x4AaABAg",
  602.           "snippet": {
  603.             "videoId": "atnSTtiWU5E",
  604.             "textDisplay": "This is where it all began…",
  605.             "textOriginal": "This is where it all began…",
  606.             "authorDisplayName": "EUnicorn",
  607.             "authorChannelUrl": "http://www.youtube.com/channel/UCN58N_FVU9WeSidchT1QUKQ",
  608.             "authorChannelId": {
  609.               "value": "UCN58N_FVU9WeSidchT1QUKQ"
  610.             },
  611.             "canRate": true,
  612.             "viewerRating": "none",
  613.             "likeCount": 2,
  614.             "publishedAt": "2021-09-26T04:42:26Z",
  615.             "updatedAt": "2021-09-26T04:42:26Z"
  616.           }
  617.         },
  618.         "canReply": true,
  619.         "totalReplyCount": 0,
  620.         "isPublic": true
  621.       }
  622.     },
  623.     {
  624.       "kind": "youtube#commentThread",
  625.       "etag": "rBgat5vU8-Y3TuhrDpn68xyEi9c",
  626.       "id": "Ugxycv72pc5DCN_x7wx4AaABAg",
  627.       "snippet": {
  628.         "videoId": "atnSTtiWU5E",
  629.         "topLevelComment": {
  630.           "kind": "youtube#comment",
  631.           "etag": "AhvB2hLeRskJz8tdAfBkZwiJVgc",
  632.           "id": "Ugxycv72pc5DCN_x7wx4AaABAg",
  633.           "snippet": {
  634.             "videoId": "atnSTtiWU5E",
  635.             "textDisplay": "Hell yeah, inject it right into my veins",
  636.             "textOriginal": "Hell yeah, inject it right into my veins",
  637.             "authorDisplayName": "Christian Asch",
  638.             "authorChannelUrl": "http://www.youtube.com/channel/UCf3dm9Nz9WraZ9U4IC9fenw",
  639.             "authorChannelId": {
  640.               "value": "UCf3dm9Nz9WraZ9U4IC9fenw"
  641.             },
  642.             "canRate": true,
  643.             "viewerRating": "none",
  644.             "likeCount": 0,
  645.             "publishedAt": "2021-09-26T02:41:06Z",
  646.             "updatedAt": "2021-09-26T02:41:06Z"
  647.           }
  648.         },
  649.         "canReply": true,
  650.         "totalReplyCount": 0,
  651.         "isPublic": true
  652.       }
  653.     },
  654.     {
  655.       "kind": "youtube#commentThread",
  656.       "etag": "sIzrXj0OFItXFX3OxMHnf79yGNQ",
  657.       "id": "UgwYi0XKjc8o99rffMR4AaABAg",
  658.       "snippet": {
  659.         "videoId": "atnSTtiWU5E",
  660.         "topLevelComment": {
  661.           "kind": "youtube#comment",
  662.           "etag": "8vxrJpXPMwNw2OP0lRqbuynxtCI",
  663.           "id": "UgwYi0XKjc8o99rffMR4AaABAg",
  664.           "snippet": {
  665.             "videoId": "atnSTtiWU5E",
  666.             "textDisplay": "lmao whos here from izzyzz video?",
  667.             "textOriginal": "lmao whos here from izzyzz video?",
  668.             "authorDisplayName": "Seraphistired",
  669.             "authorChannelUrl": "http://www.youtube.com/channel/UCLZ0Od-RbwCfjvt6YxI-HwA",
  670.             "authorChannelId": {
  671.               "value": "UCLZ0Od-RbwCfjvt6YxI-HwA"
  672.             },
  673.             "canRate": true,
  674.             "viewerRating": "none",
  675.             "likeCount": 7,
  676.             "publishedAt": "2021-09-25T19:20:15Z",
  677.             "updatedAt": "2021-09-25T19:20:15Z"
  678.           }
  679.         },
  680.         "canReply": true,
  681.         "totalReplyCount": 1,
  682.         "isPublic": true
  683.       },
  684.       "replies": {
  685.         "comments": [
  686.           {
  687.             "kind": "youtube#comment",
  688.             "etag": "WiY2_SLpeeSMXS3ZW1RlhtzC9yQ",
  689.             "id": "UgwYi0XKjc8o99rffMR4AaABAg.9SitwPYv4k39SjuTfcIImC",
  690.             "snippet": {
  691.               "videoId": "atnSTtiWU5E",
  692.               "textDisplay": "Me lol",
  693.               "textOriginal": "Me lol",
  694.               "parentId": "UgwYi0XKjc8o99rffMR4AaABAg",
  695.               "authorDisplayName": "EUnicorn",
  696.               "authorChannelUrl": "http://www.youtube.com/channel/UCN58N_FVU9WeSidchT1QUKQ",
  697.               "authorChannelId": {
  698.                 "value": "UCN58N_FVU9WeSidchT1QUKQ"
  699.               },
  700.               "canRate": true,
  701.               "viewerRating": "none",
  702.               "likeCount": 0,
  703.               "publishedAt": "2021-09-26T04:44:10Z",
  704.               "updatedAt": "2021-09-26T04:44:10Z"
  705.             }
  706.           }
  707.         ]
  708.       }
  709.     },
  710.     {
  711.       "kind": "youtube#commentThread",
  712.       "etag": "C2NzAYmXQwRkHN5KYTzrJuRrCnU",
  713.       "id": "UgyPwtwKIfJ92-M-o_R4AaABAg",
  714.       "snippet": {
  715.         "videoId": "atnSTtiWU5E",
  716.         "topLevelComment": {
  717.           "kind": "youtube#comment",
  718.           "etag": "118OfOQMQ-36jycewJcstDPAIb8",
  719.           "id": "UgyPwtwKIfJ92-M-o_R4AaABAg",
  720.           "snippet": {
  721.             "videoId": "atnSTtiWU5E",
  722.             "textDisplay": "OH MY GOD SUCH NOSTALGIA.. THESE REMIXES WERE LITERALLY A BIG PART OF THE BRONY FANDOM AND FANGAMES",
  723.             "textOriginal": "OH MY GOD SUCH NOSTALGIA.. THESE REMIXES WERE LITERALLY A BIG PART OF THE BRONY FANDOM AND FANGAMES",
  724.             "authorDisplayName": "Valentine 13",
  725.             "authorChannelUrl": "http://www.youtube.com/channel/UCBCOCEZXL_viFpQq4pXz8iQ",
  726.             "authorChannelId": {
  727.               "value": "UCBCOCEZXL_viFpQq4pXz8iQ"
  728.             },
  729.             "canRate": true,
  730.             "viewerRating": "none",
  731.             "likeCount": 20,
  732.             "publishedAt": "2021-09-25T17:43:25Z",
  733.             "updatedAt": "2021-09-25T17:43:25Z"
  734.           }
  735.         },
  736.         "canReply": true,
  737.         "totalReplyCount": 0,
  738.         "isPublic": true
  739.       }
  740.     },
  741.     {
  742.       "kind": "youtube#commentThread",
  743.       "etag": "NPeYG3Ao6g2vlzJEZr7y1Bi8epw",
  744.       "id": "UgxKXLXtm0bkhZzuKg54AaABAg",
  745.       "snippet": {
  746.         "videoId": "atnSTtiWU5E",
  747.         "topLevelComment": {
  748.           "kind": "youtube#comment",
  749.           "etag": "_HMup4e10-8Hd5M7WFmgl6TMfuY",
  750.           "id": "UgxKXLXtm0bkhZzuKg54AaABAg",
  751.           "snippet": {
  752.             "videoId": "atnSTtiWU5E",
  753.             "textDisplay": "izzyzzz",
  754.             "textOriginal": "izzyzzz",
  755.             "authorDisplayName": "candydream",
  756.             "authorChannelUrl": "http://www.youtube.com/channel/UCeUYMAgq7ZNRvR9Kp_0jaoQ",
  757.             "authorChannelId": {
  758.               "value": "UCeUYMAgq7ZNRvR9Kp_0jaoQ"
  759.             },
  760.             "canRate": true,
  761.             "viewerRating": "none",
  762.             "likeCount": 5,
  763.             "publishedAt": "2021-09-25T17:11:54Z",
  764.             "updatedAt": "2021-09-25T17:11:54Z"
  765.           }
  766.         },
  767.         "canReply": true,
  768.         "totalReplyCount": 0,
  769.         "isPublic": true
  770.       }
  771.     },
  772.     {
  773.       "kind": "youtube#commentThread",
  774.       "etag": "IgoCsCJfZ7mKXgE7jNAuw9P-Yr4",
  775.       "id": "UgxDNlRgnS4Px7d3tXJ4AaABAg",
  776.       "snippet": {
  777.         "videoId": "atnSTtiWU5E",
  778.         "topLevelComment": {
  779.           "kind": "youtube#comment",
  780.           "etag": "vVgcX63ibvKFBCgZZODrB4n6SYI",
  781.           "id": "UgxDNlRgnS4Px7d3tXJ4AaABAg",
  782.           "snippet": {
  783.             "videoId": "atnSTtiWU5E",
  784.             "textDisplay": "While I'm not an MLP fan, I miss this Era of the internet",
  785.             "textOriginal": "While I'm not an MLP fan, I miss this Era of the internet",
  786.             "authorDisplayName": "Elijah Pippin",
  787.             "authorChannelUrl": "http://www.youtube.com/channel/UCGIktuWDGVwHvCLFmqIpcMQ",
  788.             "authorChannelId": {
  789.               "value": "UCGIktuWDGVwHvCLFmqIpcMQ"
  790.             },
  791.             "canRate": true,
  792.             "viewerRating": "none",
  793.             "likeCount": 98,
  794.             "publishedAt": "2021-09-25T17:08:28Z",
  795.             "updatedAt": "2021-09-25T17:08:28Z"
  796.           }
  797.         },
  798.         "canReply": true,
  799.         "totalReplyCount": 6,
  800.         "isPublic": true
  801.       },
  802.       "replies": {
  803.         "comments": [
  804.           {
  805.             "kind": "youtube#comment",
  806.             "etag": "ctUdZJiCPCAkXBy1qakj-A46CY0",
  807.             "id": "UgxDNlRgnS4Px7d3tXJ4AaABAg.9Sier4khPfK9_tw2qhOwlV",
  808.             "snippet": {
  809.               "textDisplay": "Same.  It was a time when it felt like people were just here to have fun instead being at each other’s throats over the smallest things.",
  810.               "textOriginal": "Same.  It was a time when it felt like people were just here to have fun instead being at each other’s throats over the smallest things.",
  811.               "parentId": "UgxDNlRgnS4Px7d3tXJ4AaABAg",
  812.               "authorDisplayName": "Kazumi",
  813.               "authorChannelUrl": "http://www.youtube.com/channel/UCMcB5HOZG_cXHaBT9HOc-yQ",
  814.               "authorChannelId": {
  815.                 "value": "UCMcB5HOZG_cXHaBT9HOc-yQ"
  816.               },
  817.               "canRate": true,
  818.               "viewerRating": "none",
  819.               "likeCount": 1,
  820.               "publishedAt": "2022-04-16T22:21:33Z",
  821.               "updatedAt": "2022-04-16T22:21:33Z"
  822.             }
  823.           },
  824.           {
  825.             "kind": "youtube#comment",
  826.             "etag": "OFPDW4bI4M9KVCGgxyIdoTp1oe0",
  827.             "id": "UgxDNlRgnS4Px7d3tXJ4AaABAg.9Sier4khPfK9YcAQZs97Lh",
  828.             "snippet": {
  829.               "textDisplay": "Same",
  830.               "textOriginal": "Same",
  831.               "parentId": "UgxDNlRgnS4Px7d3tXJ4AaABAg",
  832.               "authorDisplayName": "KAGEVISTA",
  833.               "authorChannelUrl": "http://www.youtube.com/channel/UC2tr8_BObrp8Jr5OIQI4DiQ",
  834.               "authorChannelId": {
  835.                 "value": "UC2tr8_BObrp8Jr5OIQI4DiQ"
  836.               },
  837.               "canRate": true,
  838.               "viewerRating": "none",
  839.               "likeCount": 0,
  840.               "publishedAt": "2022-02-19T07:46:44Z",
  841.               "updatedAt": "2022-02-19T07:46:44Z"
  842.             }
  843.           },
  844.           {
  845.             "kind": "youtube#comment",
  846.             "etag": "OVdrMB4hjWEt_3cQ5kZlNlDkXJI",
  847.             "id": "UgxDNlRgnS4Px7d3tXJ4AaABAg.9Sier4khPfK9UbtHzdCZeg",
  848.             "snippet": {
  849.               "textDisplay": "I do as well.\u003cbr\u003e\u003cbr\u003eSincerely, a Brony.",
  850.               "textOriginal": "I do as well.\n\nSincerely, a Brony.",
  851.               "parentId": "UgxDNlRgnS4Px7d3tXJ4AaABAg",
  852.               "authorDisplayName": "PsychoWithAComputer",
  853.               "authorChannelUrl": "http://www.youtube.com/channel/UCjogiHXKEOOUN55_649XEAA",
  854.               "authorChannelId": {
  855.                 "value": "UCjogiHXKEOOUN55_649XEAA"
  856.               },
  857.               "canRate": true,
  858.               "viewerRating": "none",
  859.               "likeCount": 4,
  860.               "publishedAt": "2021-11-11T19:02:42Z",
  861.               "updatedAt": "2021-11-11T19:02:42Z"
  862.             }
  863.           },
  864.           {
  865.             "kind": "youtube#comment",
  866.             "etag": "vE6LmTBaCkCM_o6Txrp0sxlFupw",
  867.             "id": "UgxDNlRgnS4Px7d3tXJ4AaABAg.9Sier4khPfK9SigkXrup3g",
  868.             "snippet": {
  869.               "textDisplay": "@SnAwTT x•X I miss the real deviantart so much oh my gosh",
  870.               "textOriginal": "@SnAwTT x•X I miss the real deviantart so much oh my gosh",
  871.               "parentId": "UgxDNlRgnS4Px7d3tXJ4AaABAg",
  872.               "authorDisplayName": "candydream",
  873.               "authorChannelUrl": "http://www.youtube.com/channel/UCeUYMAgq7ZNRvR9Kp_0jaoQ",
  874.               "authorChannelId": {
  875.                 "value": "UCeUYMAgq7ZNRvR9Kp_0jaoQ"
  876.               },
  877.               "canRate": true,
  878.               "viewerRating": "none",
  879.               "likeCount": 5,
  880.               "publishedAt": "2021-09-25T17:25:02Z",
  881.               "updatedAt": "2021-09-25T17:25:02Z"
  882.             }
  883.           },
  884.           {
  885.             "kind": "youtube#comment",
  886.             "etag": "ZbeD3kvJL47MZx_OOBAIHwsNhzc",
  887.             "id": "UgxDNlRgnS4Px7d3tXJ4AaABAg.9Sier4khPfK9SigPbn9quM",
  888.             "snippet": {
  889.               "textDisplay": "Me too omg",
  890.               "textOriginal": "Me too omg",
  891.               "parentId": "UgxDNlRgnS4Px7d3tXJ4AaABAg",
  892.               "authorDisplayName": "SnAwTT x•X",
  893.               "authorChannelUrl": "http://www.youtube.com/channel/UCbQt-o3xnQwgKOmcoqqeFOA",
  894.               "authorChannelId": {
  895.                 "value": "UCbQt-o3xnQwgKOmcoqqeFOA"
  896.               },
  897.               "canRate": true,
  898.               "viewerRating": "none",
  899.               "likeCount": 1,
  900.               "publishedAt": "2021-09-25T17:22:03Z",
  901.               "updatedAt": "2021-09-25T17:22:03Z"
  902.             }
  903.           },
  904.           {
  905.             "kind": "youtube#comment",
  906.             "etag": "wYdvy3LLwMzdYcyOkxPnQzTx6aU",
  907.             "id": "UgxDNlRgnS4Px7d3tXJ4AaABAg.9Sier4khPfK9SifIyfm1pX",
  908.             "snippet": {
  909.               "textDisplay": "same, it was so happy",
  910.               "textOriginal": "same, it was so happy",
  911.               "parentId": "UgxDNlRgnS4Px7d3tXJ4AaABAg",
  912.               "authorDisplayName": "candydream",
  913.               "authorChannelUrl": "http://www.youtube.com/channel/UCeUYMAgq7ZNRvR9Kp_0jaoQ",
  914.               "authorChannelId": {
  915.                 "value": "UCeUYMAgq7ZNRvR9Kp_0jaoQ"
  916.               },
  917.               "canRate": true,
  918.               "viewerRating": "none",
  919.               "likeCount": 5,
  920.               "publishedAt": "2021-09-25T17:12:24Z",
  921.               "updatedAt": "2021-09-25T17:12:24Z"
  922.             }
  923.           }
  924.         ]
  925.       }
  926.     },
  927.     {
  928.       "kind": "youtube#commentThread",
  929.       "etag": "pvjezvlmpw2ukijqKQt3HUdDPzw",
  930.       "id": "Ugxtf9SJjkZWodB_U7d4AaABAg",
  931.       "snippet": {
  932.         "videoId": "atnSTtiWU5E",
  933.         "topLevelComment": {
  934.           "kind": "youtube#comment",
  935.           "etag": "nx8e_gSCUyp-RTuREvjCHjNb9Mw",
  936.           "id": "Ugxtf9SJjkZWodB_U7d4AaABAg",
  937.           "snippet": {
  938.             "videoId": "atnSTtiWU5E",
  939.             "textDisplay": "\u003ca href=\"https://www.youtube.com/watch?v=atnSTtiWU5E&t=0m25s\"\u003e0:25\u003c/a\u003e Turbo Fluttershy is Kicking!",
  940.             "textOriginal": "0:25 Turbo Fluttershy is Kicking!",
  941.             "authorDisplayName": "Siberian Moschid",
  942.             "authorChannelUrl": "http://www.youtube.com/channel/UCXIir3pSiN3WP3CedISawLw",
  943.             "authorChannelId": {
  944.               "value": "UCXIir3pSiN3WP3CedISawLw"
  945.             },
  946.             "canRate": true,
  947.             "viewerRating": "none",
  948.             "likeCount": 1,
  949.             "publishedAt": "2021-07-13T02:24:13Z",
  950.             "updatedAt": "2021-07-13T02:24:13Z"
  951.           }
  952.         },
  953.         "canReply": true,
  954.         "totalReplyCount": 0,
  955.         "isPublic": true
  956.       }
  957.     },
  958.     {
  959.       "kind": "youtube#commentThread",
  960.       "etag": "b1IDJoa0sXngXpC5ct4hlIQFBw0",
  961.       "id": "UgzZfwoF-qMY17kNfAN4AaABAg",
  962.       "snippet": {
  963.         "videoId": "atnSTtiWU5E",
  964.         "topLevelComment": {
  965.           "kind": "youtube#comment",
  966.           "etag": "NXESvTRaPbehj19jw_AVRTfVRDQ",
  967.           "id": "UgzZfwoF-qMY17kNfAN4AaABAg",
  968.           "snippet": {
  969.             "videoId": "atnSTtiWU5E",
  970.             "textDisplay": "Its just me or MLP fandom is now growing up fast?",
  971.             "textOriginal": "Its just me or MLP fandom is now growing up fast?",
  972.             "authorDisplayName": "Molten Doom",
  973.             "authorChannelUrl": "http://www.youtube.com/channel/UCB297jyQXGddGx6l_1P273Q",
  974.             "authorChannelId": {
  975.               "value": "UCB297jyQXGddGx6l_1P273Q"
  976.             },
  977.             "canRate": true,
  978.             "viewerRating": "none",
  979.             "likeCount": 19,
  980.             "publishedAt": "2021-05-05T06:23:50Z",
  981.             "updatedAt": "2021-05-05T06:23:50Z"
  982.           }
  983.         },
  984.         "canReply": true,
  985.         "totalReplyCount": 0,
  986.         "isPublic": true
  987.       }
  988.     },
  989.     {
  990.       "kind": "youtube#commentThread",
  991.       "etag": "d4cMNGKjCLZ2IrzKbRalbMrvlzo",
  992.       "id": "UgwYHttDRwKGT5Ia5dF4AaABAg",
  993.       "snippet": {
  994.         "videoId": "atnSTtiWU5E",
  995.         "topLevelComment": {
  996.           "kind": "youtube#comment",
  997.           "etag": "vlc2EXQ8tgDo1qGc5RtqniL6wmY",
  998.           "id": "UgwYHttDRwKGT5Ia5dF4AaABAg",
  999.           "snippet": {
  1000.             "videoId": "atnSTtiWU5E",
  1001.             "textDisplay": "I know this from Luna Game 3D which is my favourite horror game",
  1002.             "textOriginal": "I know this from Luna Game 3D which is my favourite horror game",
  1003.             "authorDisplayName": "Molten Doom",
  1004.             "authorChannelUrl": "http://www.youtube.com/channel/UCB297jyQXGddGx6l_1P273Q",
  1005.             "authorChannelId": {
  1006.               "value": "UCB297jyQXGddGx6l_1P273Q"
  1007.             },
  1008.             "canRate": true,
  1009.             "viewerRating": "none",
  1010.             "likeCount": 1,
  1011.             "publishedAt": "2021-05-02T07:20:22Z",
  1012.             "updatedAt": "2021-05-02T07:20:22Z"
  1013.           }
  1014.         },
  1015.         "canReply": true,
  1016.         "totalReplyCount": 1,
  1017.         "isPublic": true
  1018.       },
  1019.       "replies": {
  1020.         "comments": [
  1021.           {
  1022.             "kind": "youtube#comment",
  1023.             "etag": "EAFa3q0c3dSB4QG9wFd3oNnRPeM",
  1024.             "id": "UgwYHttDRwKGT5Ia5dF4AaABAg.9MpfV38NHEE9QW94agyNAv",
  1025.             "snippet": {
  1026.               "videoId": "atnSTtiWU5E",
  1027.               "textDisplay": "Me too! But the game scared me so bad that now the song kinda freaks me out whenever I hear it ?",
  1028.               "textOriginal": "Me too! But the game scared me so bad that now the song kinda freaks me out whenever I hear it ?",
  1029.               "parentId": "UgwYHttDRwKGT5Ia5dF4AaABAg",
  1030.               "authorDisplayName": "Mirror Maiden",
  1031.               "authorChannelUrl": "http://www.youtube.com/channel/UCUK27goEtaCRa6bjBzlA4kQ",
  1032.               "authorChannelId": {
  1033.                 "value": "UCUK27goEtaCRa6bjBzlA4kQ"
  1034.               },
  1035.               "canRate": true,
  1036.               "viewerRating": "none",
  1037.               "likeCount": 0,
  1038.               "publishedAt": "2021-08-01T18:09:10Z",
  1039.               "updatedAt": "2021-08-01T18:09:10Z"
  1040.             }
  1041.           }
  1042.         ]
  1043.       }
  1044.     },
  1045.     {
  1046.       "kind": "youtube#commentThread",
  1047.       "etag": "EdvBBReoc-5jzWDVYAzzFUSdXe4",
  1048.       "id": "Ugymvw1Uowo1g0vV0IZ4AaABAg",
  1049.       "snippet": {
  1050.         "videoId": "atnSTtiWU5E",
  1051.         "topLevelComment": {
  1052.           "kind": "youtube#comment",
  1053.           "etag": "DiSnmA0xxrf9MJAFThPnqr8CRyw",
  1054.           "id": "Ugymvw1Uowo1g0vV0IZ4AaABAg",
  1055.           "snippet": {
  1056.             "videoId": "atnSTtiWU5E",
  1057.             "textDisplay": "good stuff",
  1058.             "textOriginal": "good stuff",
  1059.             "authorDisplayName": "Youtubeeee",
  1060.             "authorChannelUrl": "http://www.youtube.com/channel/UCzQlbFcFhgYIMrl_aqQTvvg",
  1061.             "authorChannelId": {
  1062.               "value": "UCzQlbFcFhgYIMrl_aqQTvvg"
  1063.             },
  1064.             "canRate": true,
  1065.             "viewerRating": "none",
  1066.             "likeCount": 0,
  1067.             "publishedAt": "2021-02-03T23:14:26Z",
  1068.             "updatedAt": "2021-02-03T23:14:26Z"
  1069.           }
  1070.         },
  1071.         "canReply": true,
  1072.         "totalReplyCount": 0,
  1073.         "isPublic": true
  1074.       }
  1075.     },
  1076.     {
  1077.       "kind": "youtube#commentThread",
  1078.       "etag": "14bBz8Q0cmYsI77aY-6Q-Gp4VlQ",
  1079.       "id": "Ugxg03tYgMfRjUWbpoB4AaABAg",
  1080.       "snippet": {
  1081.         "videoId": "atnSTtiWU5E",
  1082.         "topLevelComment": {
  1083.           "kind": "youtube#comment",
  1084.           "etag": "f6ui9He9pp2zDCL5rTa1AkxKPUo",
  1085.           "id": "Ugxg03tYgMfRjUWbpoB4AaABAg",
  1086.           "snippet": {
  1087.             "videoId": "atnSTtiWU5E",
  1088.             "textDisplay": "10 years already... Damn",
  1089.             "textOriginal": "10 years already... Damn",
  1090.             "authorDisplayName": "No Name",
  1091.             "authorChannelUrl": "http://www.youtube.com/channel/UC4eb3lhUk76OzeSnL_StaOg",
  1092.             "authorChannelId": {
  1093.               "value": "UC4eb3lhUk76OzeSnL_StaOg"
  1094.             },
  1095.             "canRate": true,
  1096.             "viewerRating": "none",
  1097.             "likeCount": 1,
  1098.             "publishedAt": "2021-01-29T09:12:19Z",
  1099.             "updatedAt": "2021-01-29T09:12:19Z"
  1100.           }
  1101.         },
  1102.         "canReply": true,
  1103.         "totalReplyCount": 0,
  1104.         "isPublic": true
  1105.       }
  1106.     },
  1107.     {
  1108.       "kind": "youtube#commentThread",
  1109.       "etag": "VtNr_8KD6Faye_w-6uno12Uv3EQ",
  1110.       "id": "Ugw3tdnQSvzusuYEIlx4AaABAg",
  1111.       "snippet": {
  1112.         "videoId": "atnSTtiWU5E",
  1113.         "topLevelComment": {
  1114.           "kind": "youtube#comment",
  1115.           "etag": "K-iNl8rW4gmWkjdzWMAGjtlb3nc",
  1116.           "id": "Ugw3tdnQSvzusuYEIlx4AaABAg",
  1117.           "snippet": {
  1118.             "videoId": "atnSTtiWU5E",
  1119.             "textDisplay": "Paying respects",
  1120.             "textOriginal": "Paying respects",
  1121.             "authorDisplayName": "Cooper",
  1122.             "authorChannelUrl": "http://www.youtube.com/channel/UClRL58savdFlA7L9cvOuzSw",
  1123.             "authorChannelId": {
  1124.               "value": "UClRL58savdFlA7L9cvOuzSw"
  1125.             },
  1126.             "canRate": true,
  1127.             "viewerRating": "none",
  1128.             "likeCount": 0,
  1129.             "publishedAt": "2021-01-28T22:59:25Z",
  1130.             "updatedAt": "2021-01-28T22:59:25Z"
  1131.           }
  1132.         },
  1133.         "canReply": true,
  1134.         "totalReplyCount": 0,
  1135.         "isPublic": true
  1136.       }
  1137.     },
  1138.     {
  1139.       "kind": "youtube#commentThread",
  1140.       "etag": "VERm8HelP5IxLJscLlnzQXMmLLA",
  1141.       "id": "UgzSVXsRIfg4fLQ73jJ4AaABAg",
  1142.       "snippet": {
  1143.         "videoId": "atnSTtiWU5E",
  1144.         "topLevelComment": {
  1145.           "kind": "youtube#comment",
  1146.           "etag": "1sE3jKBmR5sYIdm9rdpXXaHqtCc",
  1147.           "id": "UgzSVXsRIfg4fLQ73jJ4AaABAg",
  1148.           "snippet": {
  1149.             "videoId": "atnSTtiWU5E",
  1150.             "textDisplay": "HAPPY 10 YEARS DUDES!!",
  1151.             "textOriginal": "HAPPY 10 YEARS DUDES!!",
  1152.             "authorDisplayName": "John Chrysler",
  1153.             "authorChannelUrl": "http://www.youtube.com/channel/UCiCb8ZIPYQPMk47qyxRZ9yA",
  1154.             "authorChannelId": {
  1155.               "value": "UCiCb8ZIPYQPMk47qyxRZ9yA"
  1156.             },
  1157.             "canRate": true,
  1158.             "viewerRating": "none",
  1159.             "likeCount": 0,
  1160.             "publishedAt": "2021-01-28T21:58:35Z",
  1161.             "updatedAt": "2021-01-28T21:58:35Z"
  1162.           }
  1163.         },
  1164.         "canReply": true,
  1165.         "totalReplyCount": 0,
  1166.         "isPublic": true
  1167.       }
  1168.     },
  1169.     {
  1170.       "kind": "youtube#commentThread",
  1171.       "etag": "kiXhI0Co-sCz7vamWjHkjvvqXO8",
  1172.       "id": "UgxDstXCmM4CKOVjLhF4AaABAg",
  1173.       "snippet": {
  1174.         "videoId": "atnSTtiWU5E",
  1175.         "topLevelComment": {
  1176.           "kind": "youtube#comment",
  1177.           "etag": "l9cFF5vRvxnP3f4Z61YKL7Ctdmw",
  1178.           "id": "UgxDstXCmM4CKOVjLhF4AaABAg",
  1179.           "snippet": {
  1180.             "videoId": "atnSTtiWU5E",
  1181.             "textDisplay": "/)",
  1182.             "textOriginal": "/)",
  1183.             "authorDisplayName": "Princess Sylvysprit",
  1184.             "authorChannelUrl": "http://www.youtube.com/channel/UCaPDHoN_sb-Qkk9ObDoKJMA",
  1185.             "authorChannelId": {
  1186.               "value": "UCaPDHoN_sb-Qkk9ObDoKJMA"
  1187.             },
  1188.             "canRate": true,
  1189.             "viewerRating": "none",
  1190.             "likeCount": 0,
  1191.             "publishedAt": "2021-01-28T12:56:48Z",
  1192.             "updatedAt": "2021-01-28T12:56:48Z"
  1193.           }
  1194.         },
  1195.         "canReply": true,
  1196.         "totalReplyCount": 0,
  1197.         "isPublic": true
  1198.       }
  1199.     },
  1200.     {
  1201.       "kind": "youtube#commentThread",
  1202.       "etag": "_zWV9R4azLs0TDFzojpuxe_9TTE",
  1203.       "id": "Ugxk7IsLoa4x23lLma94AaABAg",
  1204.       "snippet": {
  1205.         "videoId": "atnSTtiWU5E",
  1206.         "topLevelComment": {
  1207.           "kind": "youtube#comment",
  1208.           "etag": "N0BxDnEKINeU-fTjfcSS-OrB6O4",
  1209.           "id": "Ugxk7IsLoa4x23lLma94AaABAg",
  1210.           "snippet": {
  1211.             "videoId": "atnSTtiWU5E",
  1212.             "textDisplay": "10 year anniversary of the first FiM remix!",
  1213.             "textOriginal": "10 year anniversary of the first FiM remix!",
  1214.             "authorDisplayName": "SigmasonicX3",
  1215.             "authorChannelUrl": "http://www.youtube.com/channel/UCEKDqzlid3NQZNGfVp2Fo9w",
  1216.             "authorChannelId": {
  1217.               "value": "UCEKDqzlid3NQZNGfVp2Fo9w"
  1218.             },
  1219.             "canRate": true,
  1220.             "viewerRating": "none",
  1221.             "likeCount": 0,
  1222.             "publishedAt": "2021-01-28T06:30:31Z",
  1223.             "updatedAt": "2021-01-28T06:30:31Z"
  1224.           }
  1225.         },
  1226.         "canReply": true,
  1227.         "totalReplyCount": 0,
  1228.         "isPublic": true
  1229.       }
  1230.     },
  1231.     {
  1232.       "kind": "youtube#commentThread",
  1233.       "etag": "kQD2zc6NpbVGLA2LqLgNXGcoT4A",
  1234.       "id": "Ugw-QNIgWDqZi-MKzz94AaABAg",
  1235.       "snippet": {
  1236.         "videoId": "atnSTtiWU5E",
  1237.         "topLevelComment": {
  1238.           "kind": "youtube#comment",
  1239.           "etag": "-SlDBbYl-b9JOl-36mq6SVYkxNI",
  1240.           "id": "Ugw-QNIgWDqZi-MKzz94AaABAg",
  1241.           "snippet": {
  1242.             "videoId": "atnSTtiWU5E",
  1243.             "textDisplay": "Happy 10th Anniversary! Here's to 10 more!!!",
  1244.             "textOriginal": "Happy 10th Anniversary! Here's to 10 more!!!",
  1245.             "authorDisplayName": "(^w^) /",
  1246.             "authorChannelUrl": "http://www.youtube.com/channel/UC0laBohcejNiBhqlHoiM2_w",
  1247.             "authorChannelId": {
  1248.               "value": "UC0laBohcejNiBhqlHoiM2_w"
  1249.             },
  1250.             "canRate": true,
  1251.             "viewerRating": "none",
  1252.             "likeCount": 0,
  1253.             "publishedAt": "2021-01-28T05:39:27Z",
  1254.             "updatedAt": "2021-01-28T05:39:27Z"
  1255.           }
  1256.         },
  1257.         "canReply": true,
  1258.         "totalReplyCount": 0,
  1259.         "isPublic": true
  1260.       }
  1261.     },
  1262.     {
  1263.       "kind": "youtube#commentThread",
  1264.       "etag": "d9-3P4HUOd9qUN90HedecLuZ3Yk",
  1265.       "id": "UgwKikLzSQtmskKRHb14AaABAg",
  1266.       "snippet": {
  1267.         "videoId": "atnSTtiWU5E",
  1268.         "topLevelComment": {
  1269.           "kind": "youtube#comment",
  1270.           "etag": "cBZ9ubFmWtyhUMtiqw5dYtiJG5U",
  1271.           "id": "UgwKikLzSQtmskKRHb14AaABAg",
  1272.           "snippet": {
  1273.             "videoId": "atnSTtiWU5E",
  1274.             "textDisplay": "important ?",
  1275.             "textOriginal": "important ?",
  1276.             "authorDisplayName": "Jai Heart",
  1277.             "authorChannelUrl": "http://www.youtube.com/channel/UCrpcE3EhN-daw6gslyhyfrg",
  1278.             "authorChannelId": {
  1279.               "value": "UCrpcE3EhN-daw6gslyhyfrg"
  1280.             },
  1281.             "canRate": true,
  1282.             "viewerRating": "none",
  1283.             "likeCount": 0,
  1284.             "publishedAt": "2021-01-28T05:35:48Z",
  1285.             "updatedAt": "2021-01-28T05:35:48Z"
  1286.           }
  1287.         },
  1288.         "canReply": true,
  1289.         "totalReplyCount": 0,
  1290.         "isPublic": true
  1291.       }
  1292.     },
  1293.     {
  1294.       "kind": "youtube#commentThread",
  1295.       "etag": "h-lo7u10PX9HkX93urUBfXhKyUE",
  1296.       "id": "UgxGjujiLpxdrwZjmmx4AaABAg",
  1297.       "snippet": {
  1298.         "videoId": "atnSTtiWU5E",
  1299.         "topLevelComment": {
  1300.           "kind": "youtube#comment",
  1301.           "etag": "NC9Xrf9giVpBE-LpB3hpbKFoAEg",
  1302.           "id": "UgxGjujiLpxdrwZjmmx4AaABAg",
  1303.           "snippet": {
  1304.             "videoId": "atnSTtiWU5E",
  1305.             "textDisplay": "and it's right now!\u003cbr\u003ehappy tenth anniversary to pony music /)",
  1306.             "textOriginal": "and it's right now!\nhappy tenth anniversary to pony music /)",
  1307.             "authorDisplayName": "Squeaky Belle",
  1308.             "authorChannelUrl": "http://www.youtube.com/channel/UCvyaYxPKIO3vL33Pbawb5WA",
  1309.             "authorChannelId": {
  1310.               "value": "UCvyaYxPKIO3vL33Pbawb5WA"
  1311.             },
  1312.             "canRate": true,
  1313.             "viewerRating": "none",
  1314.             "likeCount": 9,
  1315.             "publishedAt": "2021-01-28T05:10:03Z",
  1316.             "updatedAt": "2021-01-28T05:10:03Z"
  1317.           }
  1318.         },
  1319.         "canReply": true,
  1320.         "totalReplyCount": 3,
  1321.         "isPublic": true
  1322.       }
  1323.     },
  1324.     {
  1325.       "kind": "youtube#commentThread",
  1326.       "etag": "J0MN5_VhpeH7j9KPdz4emVRWTdQ",
  1327.       "id": "UgwDDLrJSue7vLiXfkZ4AaABAg",
  1328.       "snippet": {
  1329.         "videoId": "atnSTtiWU5E",
  1330.         "topLevelComment": {
  1331.           "kind": "youtube#comment",
  1332.           "etag": "jWlW9Udv7LUH9EyIensff33StTQ",
  1333.           "id": "UgwDDLrJSue7vLiXfkZ4AaABAg",
  1334.           "snippet": {
  1335.             "videoId": "atnSTtiWU5E",
  1336.             "textDisplay": "The OG of OGs! The beginning of it all!",
  1337.             "textOriginal": "The OG of OGs! The beginning of it all!",
  1338.             "authorDisplayName": "PHES",
  1339.             "authorChannelUrl": "http://www.youtube.com/channel/UCbAmFDxxCCBZNzTtSDXGvmA",
  1340.             "authorChannelId": {
  1341.               "value": "UCbAmFDxxCCBZNzTtSDXGvmA"
  1342.             },
  1343.             "canRate": true,
  1344.             "viewerRating": "none",
  1345.             "likeCount": 4,
  1346.             "publishedAt": "2021-01-28T05:06:46Z",
  1347.             "updatedAt": "2021-01-28T05:06:46Z"
  1348.           }
  1349.         },
  1350.         "canReply": true,
  1351.         "totalReplyCount": 0,
  1352.         "isPublic": true
  1353.       }
  1354.     },
  1355.     {
  1356.       "kind": "youtube#commentThread",
  1357.       "etag": "0EA7d_LfBl6S1MWGak7dnSM4B3Y",
  1358.       "id": "UgxfFXIm3xzy4aO-iHt4AaABAg",
  1359.       "snippet": {
  1360.         "videoId": "atnSTtiWU5E",
  1361.         "topLevelComment": {
  1362.           "kind": "youtube#comment",
  1363.           "etag": "Ewni7rasBEyfXMBq9i4zA9auZvg",
  1364.           "id": "UgxfFXIm3xzy4aO-iHt4AaABAg",
  1365.           "snippet": {
  1366.             "videoId": "atnSTtiWU5E",
  1367.             "textDisplay": "Very interesting",
  1368.             "textOriginal": "Very interesting",
  1369.             "authorDisplayName": "Khaliber",
  1370.             "authorChannelUrl": "http://www.youtube.com/channel/UCJfDTj7lF1ayispzVtUZOqA",
  1371.             "authorChannelId": {
  1372.               "value": "UCJfDTj7lF1ayispzVtUZOqA"
  1373.             },
  1374.             "canRate": true,
  1375.             "viewerRating": "none",
  1376.             "likeCount": 0,
  1377.             "publishedAt": "2021-01-28T04:45:56Z",
  1378.             "updatedAt": "2021-01-28T04:45:56Z"
  1379.           }
  1380.         },
  1381.         "canReply": true,
  1382.         "totalReplyCount": 0,
  1383.         "isPublic": true
  1384.       }
  1385.     },
  1386.     {
  1387.       "kind": "youtube#commentThread",
  1388.       "etag": "X2G3fKRh1xrlvhEx0qXrcCifPIs",
  1389.       "id": "Ugw3zNwtIcpS2f-eRWB4AaABAg",
  1390.       "snippet": {
  1391.         "videoId": "atnSTtiWU5E",
  1392.         "topLevelComment": {
  1393.           "kind": "youtube#comment",
  1394.           "etag": "9FPWqWTSAQObTpzkH6BDSP9Z_5E",
  1395.           "id": "Ugw3zNwtIcpS2f-eRWB4AaABAg",
  1396.           "snippet": {
  1397.             "videoId": "atnSTtiWU5E",
  1398.             "textDisplay": "The start of something great",
  1399.             "textOriginal": "The start of something great",
  1400.             "authorDisplayName": "DerpyCastles",
  1401.             "authorChannelUrl": "http://www.youtube.com/channel/UCS-NP3xqxSN32aq4pmoXoDQ",
  1402.             "authorChannelId": {
  1403.               "value": "UCS-NP3xqxSN32aq4pmoXoDQ"
  1404.             },
  1405.             "canRate": true,
  1406.             "viewerRating": "none",
  1407.             "likeCount": 0,
  1408.             "publishedAt": "2021-01-27T23:44:01Z",
  1409.             "updatedAt": "2021-01-27T23:44:01Z"
  1410.           }
  1411.         },
  1412.         "canReply": true,
  1413.         "totalReplyCount": 0,
  1414.         "isPublic": true
  1415.       }
  1416.     },
  1417.     {
  1418.       "kind": "youtube#commentThread",
  1419.       "etag": "trwzEU3rk8SDN6uAxSx7D2Qoj8U",
  1420.       "id": "Ugwb9SHf_dERMm5QRAt4AaABAg",
  1421.       "snippet": {
  1422.         "videoId": "atnSTtiWU5E",
  1423.         "topLevelComment": {
  1424.           "kind": "youtube#comment",
  1425.           "etag": "9Z2LUqkQoy3WHUhBbcPPVwWDuzQ",
  1426.           "id": "Ugwb9SHf_dERMm5QRAt4AaABAg",
  1427.           "snippet": {
  1428.             "videoId": "atnSTtiWU5E",
  1429.             "textDisplay": "I feel old. History right here.",
  1430.             "textOriginal": "I feel old. History right here.",
  1431.             "authorDisplayName": "Drummershy",
  1432.             "authorChannelUrl": "http://www.youtube.com/channel/UCEhK6YuibQ4OL_vIg6DhFNg",
  1433.             "authorChannelId": {
  1434.               "value": "UCEhK6YuibQ4OL_vIg6DhFNg"
  1435.             },
  1436.             "canRate": true,
  1437.             "viewerRating": "none",
  1438.             "likeCount": 11,
  1439.             "publishedAt": "2021-01-27T21:50:37Z",
  1440.             "updatedAt": "2021-01-27T21:50:37Z"
  1441.           }
  1442.         },
  1443.         "canReply": true,
  1444.         "totalReplyCount": 0,
  1445.         "isPublic": true
  1446.       }
  1447.     },
  1448.     {
  1449.       "kind": "youtube#commentThread",
  1450.       "etag": "nx_N9P9zJVbdnMw7RqGF5BYaokE",
  1451.       "id": "UgySG0fLQyyWIRqCsX54AaABAg",
  1452.       "snippet": {
  1453.         "videoId": "atnSTtiWU5E",
  1454.         "topLevelComment": {
  1455.           "kind": "youtube#comment",
  1456.           "etag": "1M5L8jWQXOYUug7UNvapwg-MJLQ",
  1457.           "id": "UgySG0fLQyyWIRqCsX54AaABAg",
  1458.           "snippet": {
  1459.             "videoId": "atnSTtiWU5E",
  1460.             "textDisplay": "This turns 10. Happy anniversary! Hard to believe it's been over a decade since MLP first aired.",
  1461.             "textOriginal": "This turns 10. Happy anniversary! Hard to believe it's been over a decade since MLP first aired.",
  1462.             "authorDisplayName": "Peppermint Swirl",
  1463.             "authorChannelUrl": "http://www.youtube.com/channel/UCtMpV_MhtDhMygDW8JSmJFg",
  1464.             "authorChannelId": {
  1465.               "value": "UCtMpV_MhtDhMygDW8JSmJFg"
  1466.             },
  1467.             "canRate": true,
  1468.             "viewerRating": "none",
  1469.             "likeCount": 25,
  1470.             "publishedAt": "2021-01-27T18:41:57Z",
  1471.             "updatedAt": "2021-01-27T18:41:57Z"
  1472.           }
  1473.         },
  1474.         "canReply": true,
  1475.         "totalReplyCount": 1,
  1476.         "isPublic": true
  1477.       },
  1478.       "replies": {
  1479.         "comments": [
  1480.           {
  1481.             "kind": "youtube#comment",
  1482.             "etag": "9KESi3YgTrgnDcP53_fGiqu17hc",
  1483.             "id": "UgySG0fLQyyWIRqCsX54AaABAg.9J1GywihVW19X4e0ZIKL88",
  1484.             "snippet": {
  1485.               "videoId": "atnSTtiWU5E",
  1486.               "textDisplay": "this is my jam~!",
  1487.               "textOriginal": "this is my jam~!",
  1488.               "parentId": "UgySG0fLQyyWIRqCsX54AaABAg",
  1489.               "authorDisplayName": "pranksterpinkiepie",
  1490.               "authorChannelUrl": "http://www.youtube.com/channel/UCd0SaM9nqIwXwsAaLBvXrUA",
  1491.               "authorChannelId": {
  1492.                 "value": "UCd0SaM9nqIwXwsAaLBvXrUA"
  1493.               },
  1494.               "canRate": true,
  1495.               "viewerRating": "none",
  1496.               "likeCount": 2,
  1497.               "publishedAt": "2022-01-12T01:29:15Z",
  1498.               "updatedAt": "2022-01-12T01:29:15Z"
  1499.             }
  1500.           }
  1501.         ]
  1502.       }
  1503.     },
  1504.     {
  1505.       "kind": "youtube#commentThread",
  1506.       "etag": "fbQo3H9b1pA8pUMnRJOusr8ZXXE",
  1507.       "id": "UgxMDoioWoeWGx0oBs14AaABAg",
  1508.       "snippet": {
  1509.         "videoId": "atnSTtiWU5E",
  1510.         "topLevelComment": {
  1511.           "kind": "youtube#comment",
  1512.           "etag": "UMxev1707izbRIxTzeG5GpR6k5I",
  1513.           "id": "UgxMDoioWoeWGx0oBs14AaABAg",
  1514.           "snippet": {
  1515.             "videoId": "atnSTtiWU5E",
  1516.             "textDisplay": "Today marks the ten year anniversary of the MLP music scene. Thanks to all who have contributed :)",
  1517.             "textOriginal": "Today marks the ten year anniversary of the MLP music scene. Thanks to all who have contributed :)",
  1518.             "authorDisplayName": "Sellyme",
  1519.             "authorChannelUrl": "http://www.youtube.com/channel/UCeFzsSUth5XaDRGeJdxNeMw",
  1520.             "authorChannelId": {
  1521.               "value": "UCeFzsSUth5XaDRGeJdxNeMw"
  1522.             },
  1523.             "canRate": true,
  1524.             "viewerRating": "none",
  1525.             "likeCount": 25,
  1526.             "publishedAt": "2021-01-27T16:43:22Z",
  1527.             "updatedAt": "2021-01-27T16:43:22Z"
  1528.           }
  1529.         },
  1530.         "canReply": true,
  1531.         "totalReplyCount": 0,
  1532.         "isPublic": true
  1533.       }
  1534.     },
  1535.     {
  1536.       "kind": "youtube#commentThread",
  1537.       "etag": "HtRbi8d4WXQeUDVX98rbWC_Yhx0",
  1538.       "id": "UgyNOvTs3bGRbG86uzF4AaABAg",
  1539.       "snippet": {
  1540.         "videoId": "atnSTtiWU5E",
  1541.         "topLevelComment": {
  1542.           "kind": "youtube#comment",
  1543.           "etag": "UODNN1xXS69fmgN8tlskPyXrPYM",
  1544.           "id": "UgyNOvTs3bGRbG86uzF4AaABAg",
  1545.           "snippet": {
  1546.             "videoId": "atnSTtiWU5E",
  1547.             "textDisplay": "The first brony song is 10 years old now",
  1548.             "textOriginal": "The first brony song is 10 years old now",
  1549.             "authorDisplayName": "Rod Steven",
  1550.             "authorChannelUrl": "http://www.youtube.com/channel/UCbmu3WKT6H1yTVYiINB9_2Q",
  1551.             "authorChannelId": {
  1552.               "value": "UCbmu3WKT6H1yTVYiINB9_2Q"
  1553.             },
  1554.             "canRate": true,
  1555.             "viewerRating": "none",
  1556.             "likeCount": 4,
  1557.             "publishedAt": "2021-01-27T15:42:08Z",
  1558.             "updatedAt": "2021-01-27T15:42:08Z"
  1559.           }
  1560.         },
  1561.         "canReply": true,
  1562.         "totalReplyCount": 0,
  1563.         "isPublic": true
  1564.       }
  1565.     },
  1566.     {
  1567.       "kind": "youtube#commentThread",
  1568.       "etag": "OATDM-IiwgU-bOYK4WNSKk_wfiA",
  1569.       "id": "Ugz67PnWwzL4Kwyn0bx4AaABAg",
  1570.       "snippet": {
  1571.         "videoId": "atnSTtiWU5E",
  1572.         "topLevelComment": {
  1573.           "kind": "youtube#comment",
  1574.           "etag": "vFcXXqf6pk0HNyQJLexYSNeJSmM",
  1575.           "id": "Ugz67PnWwzL4Kwyn0bx4AaABAg",
  1576.           "snippet": {
  1577.             "videoId": "atnSTtiWU5E",
  1578.             "textDisplay": "\u003ci\u003etomorrow is going to be a good day\u003c/i\u003e",
  1579.             "textOriginal": "_tomorrow is going to be a good day_",
  1580.             "authorDisplayName": "Squeaky Belle",
  1581.             "authorChannelUrl": "http://www.youtube.com/channel/UCvyaYxPKIO3vL33Pbawb5WA",
  1582.             "authorChannelId": {
  1583.               "value": "UCvyaYxPKIO3vL33Pbawb5WA"
  1584.             },
  1585.             "canRate": true,
  1586.             "viewerRating": "none",
  1587.             "likeCount": 2,
  1588.             "publishedAt": "2021-01-27T14:09:14Z",
  1589.             "updatedAt": "2021-01-27T14:09:14Z"
  1590.           }
  1591.         },
  1592.         "canReply": true,
  1593.         "totalReplyCount": 0,
  1594.         "isPublic": true
  1595.       }
  1596.     },
  1597.     {
  1598.       "kind": "youtube#commentThread",
  1599.       "etag": "9sNjDxwixZNdaN_lkIMmWXNzmu8",
  1600.       "id": "Ugw98-Py_Qh40V8aD5J4AaABAg",
  1601.       "snippet": {
  1602.         "videoId": "atnSTtiWU5E",
  1603.         "topLevelComment": {
  1604.           "kind": "youtube#comment",
  1605.           "etag": "om6_PAmf6og134jSvh2dCJX8Wds",
  1606.           "id": "Ugw98-Py_Qh40V8aD5J4AaABAg",
  1607.           "snippet": {
  1608.             "videoId": "atnSTtiWU5E",
  1609.             "textDisplay": "almost 10 years old omg",
  1610.             "textOriginal": "almost 10 years old omg",
  1611.             "authorDisplayName": "Butterflight",
  1612.             "authorChannelUrl": "http://www.youtube.com/channel/UChbIESW15cCYuheyz7SWngg",
  1613.             "authorChannelId": {
  1614.               "value": "UChbIESW15cCYuheyz7SWngg"
  1615.             },
  1616.             "canRate": true,
  1617.             "viewerRating": "none",
  1618.             "likeCount": 0,
  1619.             "publishedAt": "2020-12-26T22:53:11Z",
  1620.             "updatedAt": "2020-12-26T22:53:11Z"
  1621.           }
  1622.         },
  1623.         "canReply": true,
  1624.         "totalReplyCount": 0,
  1625.         "isPublic": true
  1626.       }
  1627.     },
  1628.     {
  1629.       "kind": "youtube#commentThread",
  1630.       "etag": "DwdOh11JV1S20jl3kvLG6ds22_o",
  1631.       "id": "UgxxsB8cCmwC_h8PtNt4AaABAg",
  1632.       "snippet": {
  1633.         "videoId": "atnSTtiWU5E",
  1634.         "topLevelComment": {
  1635.           "kind": "youtube#comment",
  1636.           "etag": "MO4jRE1q65CBYzceC8gL4z4Antg",
  1637.           "id": "UgxxsB8cCmwC_h8PtNt4AaABAg",
  1638.           "snippet": {
  1639.             "videoId": "atnSTtiWU5E",
  1640.             "textDisplay": "Lol Spartan Dash",
  1641.             "textOriginal": "Lol Spartan Dash",
  1642.             "authorDisplayName": "James Baer",
  1643.             "authorChannelUrl": "http://www.youtube.com/channel/UCZkWZWmQx2RT4uU4b_dcF4w",
  1644.             "authorChannelId": {
  1645.               "value": "UCZkWZWmQx2RT4uU4b_dcF4w"
  1646.             },
  1647.             "canRate": true,
  1648.             "viewerRating": "none",
  1649.             "likeCount": 0,
  1650.             "publishedAt": "2020-10-17T23:49:44Z",
  1651.             "updatedAt": "2020-10-17T23:49:44Z"
  1652.           }
  1653.         },
  1654.         "canReply": true,
  1655.         "totalReplyCount": 0,
  1656.         "isPublic": true
  1657.       }
  1658.     },
  1659.     {
  1660.       "kind": "youtube#commentThread",
  1661.       "etag": "bekzHeM8RjE1RLCF3Qykc-ViOT4",
  1662.       "id": "UgwGEHSgs3_xLBjuIXN4AaABAg",
  1663.       "snippet": {
  1664.         "videoId": "atnSTtiWU5E",
  1665.         "topLevelComment": {
  1666.           "kind": "youtube#comment",
  1667.           "etag": "1JPCycimOp4uXj0hTCwb-HGP6R4",
  1668.           "id": "UgwGEHSgs3_xLBjuIXN4AaABAg",
  1669.           "snippet": {
  1670.             "videoId": "atnSTtiWU5E",
  1671.             "textDisplay": "sounds nice when it doesn't cut out in 15 seconds",
  1672.             "textOriginal": "sounds nice when it doesn't cut out in 15 seconds",
  1673.             "authorDisplayName": "SegaMercury [SoundBank]",
  1674.             "authorChannelUrl": "http://www.youtube.com/channel/UC2Q4nFStAZi84Nc1fmiEiiQ",
  1675.             "authorChannelId": {
  1676.               "value": "UC2Q4nFStAZi84Nc1fmiEiiQ"
  1677.             },
  1678.             "canRate": true,
  1679.             "viewerRating": "none",
  1680.             "likeCount": 1,
  1681.             "publishedAt": "2020-08-12T05:07:36Z",
  1682.             "updatedAt": "2020-08-12T05:07:36Z"
  1683.           }
  1684.         },
  1685.         "canReply": true,
  1686.         "totalReplyCount": 0,
  1687.         "isPublic": true
  1688.       }
  1689.     },
  1690.     {
  1691.       "kind": "youtube#commentThread",
  1692.       "etag": "1BFrfZ6UbG1_E8prUZ3ooOrH5dE",
  1693.       "id": "Ugy5tpfxruim4hZcTG94AaABAg",
  1694.       "snippet": {
  1695.         "videoId": "atnSTtiWU5E",
  1696.         "topLevelComment": {
  1697.           "kind": "youtube#comment",
  1698.           "etag": "B_3GARrIytcMpMb6IiATrdeK8Qo",
  1699.           "id": "Ugy5tpfxruim4hZcTG94AaABAg",
  1700.           "snippet": {
  1701.             "videoId": "atnSTtiWU5E",
  1702.             "textDisplay": "Am i the only one who came from the heyeyeyey channel liked playlist?",
  1703.             "textOriginal": "Am i the only one who came from the heyeyeyey channel liked playlist?",
  1704.             "authorDisplayName": "SpongePatty",
  1705.             "authorChannelUrl": "http://www.youtube.com/channel/UCy5qXF0c4Vl9DCjuSCjtBlg",
  1706.             "authorChannelId": {
  1707.               "value": "UCy5qXF0c4Vl9DCjuSCjtBlg"
  1708.             },
  1709.             "canRate": true,
  1710.             "viewerRating": "none",
  1711.             "likeCount": 2,
  1712.             "publishedAt": "2020-07-01T16:54:59Z",
  1713.             "updatedAt": "2020-07-01T16:54:59Z"
  1714.           }
  1715.         },
  1716.         "canReply": true,
  1717.         "totalReplyCount": 0,
  1718.         "isPublic": true
  1719.       }
  1720.     },
  1721.     {
  1722.       "kind": "youtube#commentThread",
  1723.       "etag": "ZtAwiXMSMh_mZ60-IES-ccxRFW4",
  1724.       "id": "UgxVQOD6gMA8a9Fgtmx4AaABAg",
  1725.       "snippet": {
  1726.         "videoId": "atnSTtiWU5E",
  1727.         "topLevelComment": {
  1728.           "kind": "youtube#comment",
  1729.           "etag": "lmcvVkXEOO9nmaH-QkrWMGBcVmU",
  1730.           "id": "UgxVQOD6gMA8a9Fgtmx4AaABAg",
  1731.           "snippet": {
  1732.             "videoId": "atnSTtiWU5E",
  1733.             "textDisplay": "fans before luna game: this is a very awesome soundtrack\u003cbr\u003efans after luna game: THE END IS NEIGH???",
  1734.             "textOriginal": "fans before luna game: this is a very awesome soundtrack\nfans after luna game: THE END IS NEIGH???",
  1735.             "authorDisplayName": "Eddster",
  1736.             "authorChannelUrl": "http://www.youtube.com/channel/UCsh3L3TfT51VR_OR3HIge0g",
  1737.             "authorChannelId": {
  1738.               "value": "UCsh3L3TfT51VR_OR3HIge0g"
  1739.             },
  1740.             "canRate": true,
  1741.             "viewerRating": "none",
  1742.             "likeCount": 42,
  1743.             "publishedAt": "2020-05-24T15:46:17Z",
  1744.             "updatedAt": "2020-05-24T15:46:17Z"
  1745.           }
  1746.         },
  1747.         "canReply": true,
  1748.         "totalReplyCount": 0,
  1749.         "isPublic": true
  1750.       }
  1751.     },
  1752.     {
  1753.       "kind": "youtube#commentThread",
  1754.       "etag": "xDDZUM_izJGAK70j19RMogwYVEM",
  1755.       "id": "UgweBhyxIVv4xjP2H_94AaABAg",
  1756.       "snippet": {
  1757.         "videoId": "atnSTtiWU5E",
  1758.         "topLevelComment": {
  1759.           "kind": "youtube#comment",
  1760.           "etag": "psJQkDEXw3nG2mxroHiK-ANxE6k",
  1761.           "id": "UgweBhyxIVv4xjP2H_94AaABAg",
  1762.           "snippet": {
  1763.             "videoId": "atnSTtiWU5E",
  1764.             "textDisplay": "Odyssey eurobeat oh no matter what you compose on about it is always a pleassure to listen....",
  1765.             "textOriginal": "Odyssey eurobeat oh no matter what you compose on about it is always a pleassure to listen....",
  1766.             "authorDisplayName": "Archikaro Nerock",
  1767.             "authorChannelUrl": "http://www.youtube.com/channel/UCSG7YjekCLjdvSunT_s3ZoA",
  1768.             "authorChannelId": {
  1769.               "value": "UCSG7YjekCLjdvSunT_s3ZoA"
  1770.             },
  1771.             "canRate": true,
  1772.             "viewerRating": "none",
  1773.             "likeCount": 0,
  1774.             "publishedAt": "2020-04-08T22:38:17Z",
  1775.             "updatedAt": "2020-04-08T22:38:17Z"
  1776.           }
  1777.         },
  1778.         "canReply": true,
  1779.         "totalReplyCount": 0,
  1780.         "isPublic": true
  1781.       }
  1782.     },
  1783.     {
  1784.       "kind": "youtube#commentThread",
  1785.       "etag": "yHET_ABa2sxxrhGbvnRXnJv1TXo",
  1786.       "id": "UgzLaT8vT2CuntcG7Fl4AaABAg",
  1787.       "snippet": {
  1788.         "videoId": "atnSTtiWU5E",
  1789.         "topLevelComment": {
  1790.           "kind": "youtube#comment",
  1791.           "etag": "7WdX9AeHfHArcVkywAHRjCiZREo",
  1792.           "id": "UgzLaT8vT2CuntcG7Fl4AaABAg",
  1793.           "snippet": {
  1794.             "videoId": "atnSTtiWU5E",
  1795.             "textDisplay": "Finally found the song that gave me extremely off vibes back then. It still kinda gives me off vibes but I like it.",
  1796.             "textOriginal": "Finally found the song that gave me extremely off vibes back then. It still kinda gives me off vibes but I like it.",
  1797.             "authorDisplayName": "Mirror Maiden",
  1798.             "authorChannelUrl": "http://www.youtube.com/channel/UCUK27goEtaCRa6bjBzlA4kQ",
  1799.             "authorChannelId": {
  1800.               "value": "UCUK27goEtaCRa6bjBzlA4kQ"
  1801.             },
  1802.             "canRate": true,
  1803.             "viewerRating": "none",
  1804.             "likeCount": 0,
  1805.             "publishedAt": "2020-04-03T13:57:45Z",
  1806.             "updatedAt": "2020-04-03T13:57:45Z"
  1807.           }
  1808.         },
  1809.         "canReply": true,
  1810.         "totalReplyCount": 0,
  1811.         "isPublic": true
  1812.       }
  1813.     },
  1814.     {
  1815.       "kind": "youtube#commentThread",
  1816.       "etag": "bBTMCcJ2DsnUEcuDs0-M_odWZZQ",
  1817.       "id": "UgwVawshXdtmrG9TQLt4AaABAg",
  1818.       "snippet": {
  1819.         "videoId": "atnSTtiWU5E",
  1820.         "topLevelComment": {
  1821.           "kind": "youtube#comment",
  1822.           "etag": "Kg-kp0HNhfm5gzBNGqb7CrtI9rw",
  1823.           "id": "UgwVawshXdtmrG9TQLt4AaABAg",
  1824.           "snippet": {
  1825.             "videoId": "atnSTtiWU5E",
  1826.             "textDisplay": "Still listenin’ 9 years later!",
  1827.             "textOriginal": "Still listenin’ 9 years later!",
  1828.             "authorDisplayName": "Princess Abby Star",
  1829.             "authorChannelUrl": "http://www.youtube.com/channel/UClhJjyGlJA499IbhW57ccFw",
  1830.             "authorChannelId": {
  1831.               "value": "UClhJjyGlJA499IbhW57ccFw"
  1832.             },
  1833.             "canRate": true,
  1834.             "viewerRating": "none",
  1835.             "likeCount": 1,
  1836.             "publishedAt": "2020-03-10T08:43:44Z",
  1837.             "updatedAt": "2020-03-10T08:43:44Z"
  1838.           }
  1839.         },
  1840.         "canReply": true,
  1841.         "totalReplyCount": 0,
  1842.         "isPublic": true
  1843.       }
  1844.     },
  1845.     {
  1846.       "kind": "youtube#commentThread",
  1847.       "etag": "eqpivcpMArLK-mdGmMJGpnatbD4",
  1848.       "id": "UgzgxLa7VLf_OyNyM5J4AaABAg",
  1849.       "snippet": {
  1850.         "videoId": "atnSTtiWU5E",
  1851.         "topLevelComment": {
  1852.           "kind": "youtube#comment",
  1853.           "etag": "0kIrlw8TtMJHvRmo8_dXVcdjl9w",
  1854.           "id": "UgzgxLa7VLf_OyNyM5J4AaABAg",
  1855.           "snippet": {
  1856.             "videoId": "atnSTtiWU5E",
  1857.             "textDisplay": "As of 15 minutes ago, this video is 9 years old\u003cbr\u003eHeccin crazy to know that pony music was around since all those years ago ?",
  1858.             "textOriginal": "As of 15 minutes ago, this video is 9 years old\nHeccin crazy to know that pony music was around since all those years ago ?",
  1859.             "authorDisplayName": "Squeaky Belle",
  1860.             "authorChannelUrl": "http://www.youtube.com/channel/UCvyaYxPKIO3vL33Pbawb5WA",
  1861.             "authorChannelId": {
  1862.               "value": "UCvyaYxPKIO3vL33Pbawb5WA"
  1863.             },
  1864.             "canRate": true,
  1865.             "viewerRating": "none",
  1866.             "likeCount": 7,
  1867.             "publishedAt": "2020-01-28T05:45:46Z",
  1868.             "updatedAt": "2020-01-28T05:48:45Z"
  1869.           }
  1870.         },
  1871.         "canReply": true,
  1872.         "totalReplyCount": 2,
  1873.         "isPublic": true
  1874.       },
  1875.       "replies": {
  1876.         "comments": [
  1877.           {
  1878.             "kind": "youtube#comment",
  1879.             "etag": "iUg-xg5wm8cCfDX9os8YLUYdAj4",
  1880.             "id": "UgzgxLa7VLf_OyNyM5J4AaABAg.94K2-cLW5Bn9BbGhJfVEhH",
  1881.             "snippet": {
  1882.               "videoId": "atnSTtiWU5E",
  1883.               "textDisplay": "@ROMMIX Joined a little late towards the later half of 2013. I had actually discovered ponies in 2011 and I'm still kicking myself for not joining then. Felt like I had just missed a lot of the hype ;-;",
  1884.               "textOriginal": "@ROMMIX Joined a little late towards the later half of 2013. I had actually discovered ponies in 2011 and I'm still kicking myself for not joining then. Felt like I had just missed a lot of the hype ;-;",
  1885.               "parentId": "UgzgxLa7VLf_OyNyM5J4AaABAg",
  1886.               "authorDisplayName": "Squeaky Belle",
  1887.               "authorChannelUrl": "http://www.youtube.com/channel/UCvyaYxPKIO3vL33Pbawb5WA",
  1888.               "authorChannelId": {
  1889.                 "value": "UCvyaYxPKIO3vL33Pbawb5WA"
  1890.               },
  1891.               "canRate": true,
  1892.               "viewerRating": "none",
  1893.               "likeCount": 1,
  1894.               "publishedAt": "2020-07-27T07:20:17Z",
  1895.               "updatedAt": "2020-07-27T07:20:17Z"
  1896.             }
  1897.           },
  1898.           {
  1899.             "kind": "youtube#comment",
  1900.             "etag": "V6WN-4gTdXw34QtFuN7AXosAKX8",
  1901.             "id": "UgzgxLa7VLf_OyNyM5J4AaABAg.94K2-cLW5Bn9Bav9dOp-iK",
  1902.             "snippet": {
  1903.               "videoId": "atnSTtiWU5E",
  1904.               "textDisplay": "A lot of us old fans remember. I remember when the Brony fandom really blew up in 2011 and I became part of it for a while. It was an awesome time.",
  1905.               "textOriginal": "A lot of us old fans remember. I remember when the Brony fandom really blew up in 2011 and I became part of it for a while. It was an awesome time.",
  1906.               "parentId": "UgzgxLa7VLf_OyNyM5J4AaABAg",
  1907.               "authorDisplayName": "ROMMIX",
  1908.               "authorChannelUrl": "http://www.youtube.com/channel/UCY-c_ywSh5t4l-S2P2UCs9w",
  1909.               "authorChannelId": {
  1910.                 "value": "UCY-c_ywSh5t4l-S2P2UCs9w"
  1911.               },
  1912.               "canRate": true,
  1913.               "viewerRating": "none",
  1914.               "likeCount": 1,
  1915.               "publishedAt": "2020-07-27T04:03:19Z",
  1916.               "updatedAt": "2020-07-27T04:03:19Z"
  1917.             }
  1918.           }
  1919.         ]
  1920.       }
  1921.     },
  1922.     {
  1923.       "kind": "youtube#commentThread",
  1924.       "etag": "5l4229ySk3o0aRN6oAV9h7D-eSE",
  1925.       "id": "UgyDqJpm2x9XLOOLFOJ4AaABAg",
  1926.       "snippet": {
  1927.         "videoId": "atnSTtiWU5E",
  1928.         "topLevelComment": {
  1929.           "kind": "youtube#comment",
  1930.           "etag": "txMeAYoGJYFy-U5UzdjTDfo_6Gc",
  1931.           "id": "UgyDqJpm2x9XLOOLFOJ4AaABAg",
  1932.           "snippet": {
  1933.             "videoId": "atnSTtiWU5E",
  1934.             "textDisplay": "So why is this beat so famous? It was the first brony song ever put up on YouTube?",
  1935.             "textOriginal": "So why is this beat so famous? It was the first brony song ever put up on YouTube?",
  1936.             "authorDisplayName": "DOCTOR NEGATIVE",
  1937.             "authorChannelUrl": "http://www.youtube.com/channel/UCyfEqwArNs7YEs05xQ-QZ1A",
  1938.             "authorChannelId": {
  1939.               "value": "UCyfEqwArNs7YEs05xQ-QZ1A"
  1940.             },
  1941.             "canRate": true,
  1942.             "viewerRating": "none",
  1943.             "likeCount": 0,
  1944.             "publishedAt": "2019-12-24T04:08:29Z",
  1945.             "updatedAt": "2019-12-24T04:08:29Z"
  1946.           }
  1947.         },
  1948.         "canReply": true,
  1949.         "totalReplyCount": 1,
  1950.         "isPublic": true
  1951.       },
  1952.       "replies": {
  1953.         "comments": [
  1954.           {
  1955.             "kind": "youtube#comment",
  1956.             "etag": "cdMpi6OXmHu9ieL6BK5QQNz_R5M",
  1957.             "id": "UgyDqJpm2x9XLOOLFOJ4AaABAg.92uk2W83IZF94Pf2Ho0o75",
  1958.             "snippet": {
  1959.               "videoId": "atnSTtiWU5E",
  1960.               "textDisplay": "Definitely one of, if not the absolute first. Plus it was a pretty unique genre to come out of the gate with. Brony music is rife with electronic dance music, but eurobeat is still pretty rare, even today.",
  1961.               "textOriginal": "Definitely one of, if not the absolute first. Plus it was a pretty unique genre to come out of the gate with. Brony music is rife with electronic dance music, but eurobeat is still pretty rare, even today.",
  1962.               "parentId": "UgyDqJpm2x9XLOOLFOJ4AaABAg",
  1963.               "authorDisplayName": "Dynamite Grizzly",
  1964.               "authorChannelUrl": "http://www.youtube.com/channel/UCus31oUwyAxIt1OgYryrzqQ",
  1965.               "authorChannelId": {
  1966.                 "value": "UCus31oUwyAxIt1OgYryrzqQ"
  1967.               },
  1968.               "canRate": true,
  1969.               "viewerRating": "none",
  1970.               "likeCount": 2,
  1971.               "publishedAt": "2020-01-30T10:11:51Z",
  1972.               "updatedAt": "2020-01-30T10:12:11Z"
  1973.             }
  1974.           }
  1975.         ]
  1976.       }
  1977.     },
  1978.     {
  1979.       "kind": "youtube#commentThread",
  1980.       "etag": "UHZZ8EajMry3DQM9N_gzLjJmBzo",
  1981.       "id": "UgyFm8ws95TKqSlDNRZ4AaABAg",
  1982.       "snippet": {
  1983.         "videoId": "atnSTtiWU5E",
  1984.         "topLevelComment": {
  1985.           "kind": "youtube#comment",
  1986.           "etag": "e-ZYsveiCdCMIJ7kex-Nr7SyrKc",
  1987.           "id": "UgyFm8ws95TKqSlDNRZ4AaABAg",
  1988.           "snippet": {
  1989.             "videoId": "atnSTtiWU5E",
  1990.             "textDisplay": "All I need is a gif of Creepybloom dancing and my life will be complete!",
  1991.             "textOriginal": "All I need is a gif of Creepybloom dancing and my life will be complete!",
  1992.             "authorDisplayName": "StarForce97",
  1993.             "authorChannelUrl": "http://www.youtube.com/channel/UCh8_1ZwKYvDfXNhg0kN-M2g",
  1994.             "authorChannelId": {
  1995.               "value": "UCh8_1ZwKYvDfXNhg0kN-M2g"
  1996.             },
  1997.             "canRate": true,
  1998.             "viewerRating": "none",
  1999.             "likeCount": 0,
  2000.             "publishedAt": "2019-12-21T06:53:17Z",
  2001.             "updatedAt": "2019-12-21T06:53:17Z"
  2002.           }
  2003.         },
  2004.         "canReply": true,
  2005.         "totalReplyCount": 0,
  2006.         "isPublic": true
  2007.       }
  2008.     },
  2009.     {
  2010.       "kind": "youtube#commentThread",
  2011.       "etag": "sF1QfCpui6R-1tyCaPAdbd7T9gw",
  2012.       "id": "UgyOt5MOMwBZEsiwutB4AaABAg",
  2013.       "snippet": {
  2014.         "videoId": "atnSTtiWU5E",
  2015.         "topLevelComment": {
  2016.           "kind": "youtube#comment",
  2017.           "etag": "oE5vq9CeseY6uyZX1JLO7aOI1d4",
  2018.           "id": "UgyOt5MOMwBZEsiwutB4AaABAg",
  2019.           "snippet": {
  2020.             "videoId": "atnSTtiWU5E",
  2021.             "textDisplay": "Who’s here from RainbowDash Attack???",
  2022.             "textOriginal": "Who’s here from RainbowDash Attack???",
  2023.             "authorDisplayName": "mlpsunset shimmer",
  2024.             "authorChannelUrl": "http://www.youtube.com/channel/UCBNymV7A3sHHLN0oBaSCgmQ",
  2025.             "authorChannelId": {
  2026.               "value": "UCBNymV7A3sHHLN0oBaSCgmQ"
  2027.             },
  2028.             "canRate": true,
  2029.             "viewerRating": "none",
  2030.             "likeCount": 0,
  2031.             "publishedAt": "2019-11-25T09:44:33Z",
  2032.             "updatedAt": "2019-11-25T09:44:33Z"
  2033.           }
  2034.         },
  2035.         "canReply": true,
  2036.         "totalReplyCount": 0,
  2037.         "isPublic": true
  2038.       }
  2039.     },
  2040.     {
  2041.       "kind": "youtube#commentThread",
  2042.       "etag": "VvK8z1hPCQUrjKSCDeug-VyPgRY",
  2043.       "id": "UgzEYGmRMRLiwm6rBjx4AaABAg",
  2044.       "snippet": {
  2045.         "videoId": "atnSTtiWU5E",
  2046.         "topLevelComment": {
  2047.           "kind": "youtube#comment",
  2048.           "etag": "PKfqxMlvDxdztopUfLiDTu67P5s",
  2049.           "id": "UgzEYGmRMRLiwm6rBjx4AaABAg",
  2050.           "snippet": {
  2051.             "videoId": "atnSTtiWU5E",
  2052.             "textDisplay": "So this is it? Epic",
  2053.             "textOriginal": "So this is it? Epic",
  2054.             "authorDisplayName": "Dmagine !",
  2055.             "authorChannelUrl": "http://www.youtube.com/channel/UCJf6S6q1mq73xwDT1wLt3Rw",
  2056.             "authorChannelId": {
  2057.               "value": "UCJf6S6q1mq73xwDT1wLt3Rw"
  2058.             },
  2059.             "canRate": true,
  2060.             "viewerRating": "none",
  2061.             "likeCount": 0,
  2062.             "publishedAt": "2019-08-25T01:15:20Z",
  2063.             "updatedAt": "2019-08-25T01:15:20Z"
  2064.           }
  2065.         },
  2066.         "canReply": true,
  2067.         "totalReplyCount": 0,
  2068.         "isPublic": true
  2069.       }
  2070.     },
  2071.     {
  2072.       "kind": "youtube#commentThread",
  2073.       "etag": "uPVC1iXYO5hDPBH9L6VpcQWuOHY",
  2074.       "id": "UgwkDNwIbgivgzm2z414AaABAg",
  2075.       "snippet": {
  2076.         "videoId": "atnSTtiWU5E",
  2077.         "topLevelComment": {
  2078.           "kind": "youtube#comment",
  2079.           "etag": "25BGPdS1-tcstUoGBFXMUsw0x8U",
  2080.           "id": "UgwkDNwIbgivgzm2z414AaABAg",
  2081.           "snippet": {
  2082.             "videoId": "atnSTtiWU5E",
  2083.             "textDisplay": "Why is this shit so fkn good",
  2084.             "textOriginal": "Why is this shit so fkn good",
  2085.             "authorDisplayName": "Neo",
  2086.             "authorChannelUrl": "http://www.youtube.com/channel/UCTKrVGkF_S-jSkBvqRGnNuA",
  2087.             "authorChannelId": {
  2088.               "value": "UCTKrVGkF_S-jSkBvqRGnNuA"
  2089.             },
  2090.             "canRate": true,
  2091.             "viewerRating": "none",
  2092.             "likeCount": 2,
  2093.             "publishedAt": "2019-08-25T00:02:57Z",
  2094.             "updatedAt": "2019-08-25T00:02:57Z"
  2095.           }
  2096.         },
  2097.         "canReply": true,
  2098.         "totalReplyCount": 0,
  2099.         "isPublic": true
  2100.       }
  2101.     },
  2102.     {
  2103.       "kind": "youtube#commentThread",
  2104.       "etag": "OjTlmnfyXzpSSNs_QVmrb4bNiu0",
  2105.       "id": "UgzIx7kSfWAFfzVI5YN4AaABAg",
  2106.       "snippet": {
  2107.         "videoId": "atnSTtiWU5E",
  2108.         "topLevelComment": {
  2109.           "kind": "youtube#comment",
  2110.           "etag": "hOshCnaT9AnTuW30I-8us562rIc",
  2111.           "id": "UgzIx7kSfWAFfzVI5YN4AaABAg",
  2112.           "snippet": {
  2113.             "videoId": "atnSTtiWU5E",
  2114.             "textDisplay": "Hello from 10.07.2019",
  2115.             "textOriginal": "Hello from 10.07.2019",
  2116.             "authorDisplayName": "Музыкальная Библиотека - Музыка для контентмейкеров",
  2117.             "authorChannelUrl": "http://www.youtube.com/channel/UCxAi34SQ4EKPUD4O3L-yjXg",
  2118.             "authorChannelId": {
  2119.               "value": "UCxAi34SQ4EKPUD4O3L-yjXg"
  2120.             },
  2121.             "canRate": true,
  2122.             "viewerRating": "none",
  2123.             "likeCount": 0,
  2124.             "publishedAt": "2019-07-09T19:51:44Z",
  2125.             "updatedAt": "2019-07-09T19:51:44Z"
  2126.           }
  2127.         },
  2128.         "canReply": true,
  2129.         "totalReplyCount": 0,
  2130.         "isPublic": true
  2131.       }
  2132.     },
  2133.     {
  2134.       "kind": "youtube#commentThread",
  2135.       "etag": "CKINgAOz4o023wWriVG6tpob_-U",
  2136.       "id": "UgxwXBLk8ME3c_mVDqx4AaABAg",
  2137.       "snippet": {
  2138.         "videoId": "atnSTtiWU5E",
  2139.         "topLevelComment": {
  2140.           "kind": "youtube#comment",
  2141.           "etag": "g-UW-VzkW5E94JKbCCApD8GBjfI",
  2142.           "id": "UgxwXBLk8ME3c_mVDqx4AaABAg",
  2143.           "snippet": {
  2144.             "videoId": "atnSTtiWU5E",
  2145.             "textDisplay": "Omg, I finally found the song! God damn, it's been like 7 years when I tried finding it.",
  2146.             "textOriginal": "Omg, I finally found the song! God damn, it's been like 7 years when I tried finding it.",
  2147.             "authorDisplayName": "Sarahxx",
  2148.             "authorChannelUrl": "http://www.youtube.com/channel/UC412aUIoiLe_w-NRnZ9plRg",
  2149.             "authorChannelId": {
  2150.               "value": "UC412aUIoiLe_w-NRnZ9plRg"
  2151.             },
  2152.             "canRate": true,
  2153.             "viewerRating": "none",
  2154.             "likeCount": 4,
  2155.             "publishedAt": "2019-07-08T16:17:42Z",
  2156.             "updatedAt": "2019-07-08T16:17:42Z"
  2157.           }
  2158.         },
  2159.         "canReply": true,
  2160.         "totalReplyCount": 1,
  2161.         "isPublic": true
  2162.       },
  2163.       "replies": {
  2164.         "comments": [
  2165.           {
  2166.             "kind": "youtube#comment",
  2167.             "etag": "j4pREiN7rVg66FhFeQJPMq7wybs",
  2168.             "id": "UgxwXBLk8ME3c_mVDqx4AaABAg.8x7t9ZF9SzG9MxIXCfw4DX",
  2169.             "snippet": {
  2170.               "videoId": "atnSTtiWU5E",
  2171.               "textDisplay": "I just searched it by title",
  2172.               "textOriginal": "I just searched it by title",
  2173.               "parentId": "UgxwXBLk8ME3c_mVDqx4AaABAg",
  2174.               "authorDisplayName": "Molten Doom",
  2175.               "authorChannelUrl": "http://www.youtube.com/channel/UCB297jyQXGddGx6l_1P273Q",
  2176.               "authorChannelId": {
  2177.                 "value": "UCB297jyQXGddGx6l_1P273Q"
  2178.               },
  2179.               "canRate": true,
  2180.               "viewerRating": "none",
  2181.               "likeCount": 0,
  2182.               "publishedAt": "2021-05-05T06:24:52Z",
  2183.               "updatedAt": "2021-05-05T06:24:52Z"
  2184.             }
  2185.           }
  2186.         ]
  2187.       }
  2188.     },
  2189.     {
  2190.       "kind": "youtube#commentThread",
  2191.       "etag": "hPjN6qq4tTLRDoGg-WNvzKRj-3k",
  2192.       "id": "Ugz_rzomR1TjnbAljLV4AaABAg",
  2193.       "snippet": {
  2194.         "videoId": "atnSTtiWU5E",
  2195.         "topLevelComment": {
  2196.           "kind": "youtube#comment",
  2197.           "etag": "cN9dowofoxIg_ngCOhzJxCNYoZU",
  2198.           "id": "Ugz_rzomR1TjnbAljLV4AaABAg",
  2199.           "snippet": {
  2200.             "videoId": "atnSTtiWU5E",
  2201.             "textDisplay": "Why this song is so fits ... at mado story",
  2202.             "textOriginal": "Why this song is so fits ... at mado story",
  2203.             "authorDisplayName": "혼자사는 아저씨",
  2204.             "authorChannelUrl": "http://www.youtube.com/channel/UCtyPCjHy77FrmRpHFgcC14w",
  2205.             "authorChannelId": {
  2206.               "value": "UCtyPCjHy77FrmRpHFgcC14w"
  2207.             },
  2208.             "canRate": true,
  2209.             "viewerRating": "none",
  2210.             "likeCount": 0,
  2211.             "publishedAt": "2019-05-08T09:43:41Z",
  2212.             "updatedAt": "2019-05-08T09:43:41Z"
  2213.           }
  2214.         },
  2215.         "canReply": true,
  2216.         "totalReplyCount": 0,
  2217.         "isPublic": true
  2218.       }
  2219.     },
  2220.     {
  2221.       "kind": "youtube#commentThread",
  2222.       "etag": "xqfpdYwLsZKiB25-Bg0AKCYxg04",
  2223.       "id": "UgzJkmrL7a9HFQz4WWt4AaABAg",
  2224.       "snippet": {
  2225.         "videoId": "atnSTtiWU5E",
  2226.         "topLevelComment": {
  2227.           "kind": "youtube#comment",
  2228.           "etag": "A-_yX0-BnAS5g6cpKq3t6h-44QI",
  2229.           "id": "UgzJkmrL7a9HFQz4WWt4AaABAg",
  2230.           "snippet": {
  2231.             "videoId": "atnSTtiWU5E",
  2232.             "textDisplay": "Memories so old",
  2233.             "textOriginal": "Memories so old",
  2234.             "authorDisplayName": "ScootalooAndSweetieBelle",
  2235.             "authorChannelUrl": "http://www.youtube.com/channel/UC-Oxl9vZpVyFc2tfQ8SAWXw",
  2236.             "authorChannelId": {
  2237.               "value": "UC-Oxl9vZpVyFc2tfQ8SAWXw"
  2238.             },
  2239.             "canRate": true,
  2240.             "viewerRating": "none",
  2241.             "likeCount": 0,
  2242.             "publishedAt": "2019-04-09T23:45:28Z",
  2243.             "updatedAt": "2019-04-09T23:45:28Z"
  2244.           }
  2245.         },
  2246.         "canReply": true,
  2247.         "totalReplyCount": 0,
  2248.         "isPublic": true
  2249.       }
  2250.     },
  2251.     {
  2252.       "kind": "youtube#commentThread",
  2253.       "etag": "ZNW-TohPG-W6IQJLBGoC2nylyvE",
  2254.       "id": "UgyAPib7Gx1p8V5ucz94AaABAg",
  2255.       "snippet": {
  2256.         "videoId": "atnSTtiWU5E",
  2257.         "topLevelComment": {
  2258.           "kind": "youtube#comment",
  2259.           "etag": "xfFk7g0iQrdXW-sJeZulLAuopys",
  2260.           "id": "UgyAPib7Gx1p8V5ucz94AaABAg",
  2261.           "snippet": {
  2262.             "videoId": "atnSTtiWU5E",
  2263.             "textDisplay": "Still love",
  2264.             "textOriginal": "Still love",
  2265.             "authorDisplayName": "ScootalooAndSweetieBelle",
  2266.             "authorChannelUrl": "http://www.youtube.com/channel/UC-Oxl9vZpVyFc2tfQ8SAWXw",
  2267.             "authorChannelId": {
  2268.               "value": "UC-Oxl9vZpVyFc2tfQ8SAWXw"
  2269.             },
  2270.             "canRate": true,
  2271.             "viewerRating": "none",
  2272.             "likeCount": 0,
  2273.             "publishedAt": "2018-11-29T07:55:43Z",
  2274.             "updatedAt": "2018-11-29T07:55:43Z"
  2275.           }
  2276.         },
  2277.         "canReply": true,
  2278.         "totalReplyCount": 0,
  2279.         "isPublic": true
  2280.       }
  2281.     },
  2282.     {
  2283.       "kind": "youtube#commentThread",
  2284.       "etag": "sft5bwA5VgE0dQh1O7MWbgC-0sc",
  2285.       "id": "UgxeS2wNd5J-vU_gm1t4AaABAg",
  2286.       "snippet": {
  2287.         "videoId": "atnSTtiWU5E",
  2288.         "topLevelComment": {
  2289.           "kind": "youtube#comment",
  2290.           "etag": "Q9P4M_5OVopEsE074WvW8OaEwSc",
  2291.           "id": "UgxeS2wNd5J-vU_gm1t4AaABAg",
  2292.           "snippet": {
  2293.             "videoId": "atnSTtiWU5E",
  2294.             "textDisplay": "I can't listen to this without expecting some fucking jumpscare...",
  2295.             "textOriginal": "I can't listen to this without expecting some fucking jumpscare...",
  2296.             "authorDisplayName": "LuciaLambda",
  2297.             "authorChannelUrl": "http://www.youtube.com/channel/UCa898yuWOBpUa2P6sKxFtWg",
  2298.             "authorChannelId": {
  2299.               "value": "UCa898yuWOBpUa2P6sKxFtWg"
  2300.             },
  2301.             "canRate": true,
  2302.             "viewerRating": "none",
  2303.             "likeCount": 0,
  2304.             "publishedAt": "2018-01-05T13:03:42Z",
  2305.             "updatedAt": "2018-01-05T13:03:42Z"
  2306.           }
  2307.         },
  2308.         "canReply": true,
  2309.         "totalReplyCount": 0,
  2310.         "isPublic": true
  2311.       }
  2312.     },
  2313.     {
  2314.       "kind": "youtube#commentThread",
  2315.       "etag": "q4Dv_E6B2hGovjVqmJJKtCjBQ7E",
  2316.       "id": "Ugz3JMQgphGrwEIEANB4AaABAg",
  2317.       "snippet": {
  2318.         "videoId": "atnSTtiWU5E",
  2319.         "topLevelComment": {
  2320.           "kind": "youtube#comment",
  2321.           "etag": "biubqY3vQgPrLI3-9qOJzh81hKI",
  2322.           "id": "Ugz3JMQgphGrwEIEANB4AaABAg",
  2323.           "snippet": {
  2324.             "videoId": "atnSTtiWU5E",
  2325.             "textDisplay": "the most legendary song of all of equestria",
  2326.             "textOriginal": "the most legendary song of all of equestria",
  2327.             "authorDisplayName": "Hi There",
  2328.             "authorChannelUrl": "http://www.youtube.com/channel/UCoCOpv6VGljrTHMN8OQtF2g",
  2329.             "authorChannelId": {
  2330.               "value": "UCoCOpv6VGljrTHMN8OQtF2g"
  2331.             },
  2332.             "canRate": true,
  2333.             "viewerRating": "none",
  2334.             "likeCount": 6,
  2335.             "publishedAt": "2018-01-04T04:58:49Z",
  2336.             "updatedAt": "2018-01-04T04:58:49Z"
  2337.           }
  2338.         },
  2339.         "canReply": true,
  2340.         "totalReplyCount": 0,
  2341.         "isPublic": true
  2342.       }
  2343.     },
  2344.     {
  2345.       "kind": "youtube#commentThread",
  2346.       "etag": "Wef-0zkTzsVd3RAD5ECwvqK_Sj4",
  2347.       "id": "UgzmO5D-YQvoVxoZhH54AaABAg",
  2348.       "snippet": {
  2349.         "videoId": "atnSTtiWU5E",
  2350.         "topLevelComment": {
  2351.           "kind": "youtube#comment",
  2352.           "etag": "RlyViVQXrdcr9ozpZowV_TsIU0Y",
  2353.           "id": "UgzmO5D-YQvoVxoZhH54AaABAg",
  2354.           "snippet": {
  2355.             "videoId": "atnSTtiWU5E",
  2356.             "textDisplay": "I found it, I fucking found it. I'm on my way to the museum to donate it.",
  2357.             "textOriginal": "I found it, I fucking found it. I'm on my way to the museum to donate it.",
  2358.             "authorDisplayName": "Ctoacu",
  2359.             "authorChannelUrl": "http://www.youtube.com/channel/UCoPW9wymaCW-Qm7y9w2JgkA",
  2360.             "authorChannelId": {
  2361.               "value": "UCoPW9wymaCW-Qm7y9w2JgkA"
  2362.             },
  2363.             "canRate": true,
  2364.             "viewerRating": "none",
  2365.             "likeCount": 2,
  2366.             "publishedAt": "2017-11-02T02:34:45Z",
  2367.             "updatedAt": "2017-11-02T02:34:45Z"
  2368.           }
  2369.         },
  2370.         "canReply": true,
  2371.         "totalReplyCount": 0,
  2372.         "isPublic": true
  2373.       }
  2374.     },
  2375.     {
  2376.       "kind": "youtube#commentThread",
  2377.       "etag": "B9w65iPU7W-bJsluH3AodipmQYs",
  2378.       "id": "UgwcECCnfH9bUAl8MjV4AaABAg",
  2379.       "snippet": {
  2380.         "videoId": "atnSTtiWU5E",
  2381.         "topLevelComment": {
  2382.           "kind": "youtube#comment",
  2383.           "etag": "kj9oJviiZkNV2dpysn6z5g3QuCk",
  2384.           "id": "UgwcECCnfH9bUAl8MjV4AaABAg",
  2385.           "snippet": {
  2386.             "videoId": "atnSTtiWU5E",
  2387.             "textDisplay": "I remember using this as my outro theme in 2013. Man, the days pass by fast.",
  2388.             "textOriginal": "I remember using this as my outro theme in 2013. Man, the days pass by fast.",
  2389.             "authorDisplayName": "Green Neko Productions",
  2390.             "authorChannelUrl": "http://www.youtube.com/channel/UCYWCvcaD_2byNzFo3qc8U0w",
  2391.             "authorChannelId": {
  2392.               "value": "UCYWCvcaD_2byNzFo3qc8U0w"
  2393.             },
  2394.             "canRate": true,
  2395.             "viewerRating": "none",
  2396.             "likeCount": 1,
  2397.             "publishedAt": "2017-10-15T19:09:36Z",
  2398.             "updatedAt": "2017-10-15T19:09:36Z"
  2399.           }
  2400.         },
  2401.         "canReply": true,
  2402.         "totalReplyCount": 0,
  2403.         "isPublic": true
  2404.       }
  2405.     },
  2406.     {
  2407.       "kind": "youtube#commentThread",
  2408.       "etag": "1asAtpsrDNouJTinQI1KbW4f6S0",
  2409.       "id": "UgxzsHvHw_AlQk7Fz_B4AaABAg",
  2410.       "snippet": {
  2411.         "videoId": "atnSTtiWU5E",
  2412.         "topLevelComment": {
  2413.           "kind": "youtube#comment",
  2414.           "etag": "dROVOGbV_4FPK0mYV7uD5rHzyxM",
  2415.           "id": "UgxzsHvHw_AlQk7Fz_B4AaABAg",
  2416.           "snippet": {
  2417.             "videoId": "atnSTtiWU5E",
  2418.             "textDisplay": "Rainbow dash drifting through a mountain road",
  2419.             "textOriginal": "Rainbow dash drifting through a mountain road",
  2420.             "authorDisplayName": "Goggles Tigerkhan",
  2421.             "authorChannelUrl": "http://www.youtube.com/channel/UCuY7Xt6rvityR1Gf_FjV7GA",
  2422.             "authorChannelId": {
  2423.               "value": "UCuY7Xt6rvityR1Gf_FjV7GA"
  2424.             },
  2425.             "canRate": true,
  2426.             "viewerRating": "none",
  2427.             "likeCount": 0,
  2428.             "publishedAt": "2017-09-22T05:47:14Z",
  2429.             "updatedAt": "2017-09-22T05:47:14Z"
  2430.           }
  2431.         },
  2432.         "canReply": true,
  2433.         "totalReplyCount": 0,
  2434.         "isPublic": true
  2435.       }
  2436.     },
  2437.     {
  2438.       "kind": "youtube#commentThread",
  2439.       "etag": "-QMNC5taMQF4qBoXSmDfrMAfODM",
  2440.       "id": "UgiccdEkrYWkQngCoAEC",
  2441.       "snippet": {
  2442.         "videoId": "atnSTtiWU5E",
  2443.         "topLevelComment": {
  2444.           "kind": "youtube#comment",
  2445.           "etag": "MW1per2UpW-vrsyx_nfpnx3MJsc",
  2446.           "id": "UgiccdEkrYWkQngCoAEC",
  2447.           "snippet": {
  2448.             "videoId": "atnSTtiWU5E",
  2449.             "textDisplay": "Luna Game 3D Episode 1 be like",
  2450.             "textOriginal": "Luna Game 3D Episode 1 be like",
  2451.             "authorDisplayName": "HarmonyBunny",
  2452.             "authorChannelUrl": "http://www.youtube.com/channel/UCPt9aGRdYqQuO7xF2GAlScw",
  2453.             "authorChannelId": {
  2454.               "value": "UCPt9aGRdYqQuO7xF2GAlScw"
  2455.             },
  2456.             "canRate": true,
  2457.             "viewerRating": "none",
  2458.             "likeCount": 0,
  2459.             "publishedAt": "2017-07-24T07:45:00Z",
  2460.             "updatedAt": "2017-07-24T07:45:00Z"
  2461.           }
  2462.         },
  2463.         "canReply": true,
  2464.         "totalReplyCount": 0,
  2465.         "isPublic": true
  2466.       }
  2467.     },
  2468.     {
  2469.       "kind": "youtube#commentThread",
  2470.       "etag": "382G02lmC97ZeG4BLvTeZQIhOzI",
  2471.       "id": "Ugh1ulNgbrUAxngCoAEC",
  2472.       "snippet": {
  2473.         "videoId": "atnSTtiWU5E",
  2474.         "topLevelComment": {
  2475.           "kind": "youtube#comment",
  2476.           "etag": "2ziYeCjxuEPlkYzqcpW8MiWoXK8",
  2477.           "id": "Ugh1ulNgbrUAxngCoAEC",
  2478.           "snippet": {
  2479.             "videoId": "atnSTtiWU5E",
  2480.             "textDisplay": "2017 and my firt song of pony of Eurobeat",
  2481.             "textOriginal": "2017 and my firt song of pony of Eurobeat",
  2482.             "authorDisplayName": "Blade",
  2483.             "authorChannelUrl": "http://www.youtube.com/channel/UC29ALLv3HzP8llLoRiXT2Uw",
  2484.             "authorChannelId": {
  2485.               "value": "UC29ALLv3HzP8llLoRiXT2Uw"
  2486.             },
  2487.             "canRate": true,
  2488.             "viewerRating": "none",
  2489.             "likeCount": 3,
  2490.             "publishedAt": "2017-06-09T09:01:30Z",
  2491.             "updatedAt": "2017-06-09T09:01:30Z"
  2492.           }
  2493.         },
  2494.         "canReply": true,
  2495.         "totalReplyCount": 0,
  2496.         "isPublic": true
  2497.       }
  2498.     },
  2499.     {
  2500.       "kind": "youtube#commentThread",
  2501.       "etag": "2KD_wZxZJ-jjWqCSHyv6tu_yq7M",
  2502.       "id": "UgjBXT7j2OS5PngCoAEC",
  2503.       "snippet": {
  2504.         "videoId": "atnSTtiWU5E",
  2505.         "topLevelComment": {
  2506.           "kind": "youtube#comment",
  2507.           "etag": "I__W67J5beJX3Pikfw7mrbIWagM",
  2508.           "id": "UgjBXT7j2OS5PngCoAEC",
  2509.           "snippet": {
  2510.             "videoId": "atnSTtiWU5E",
  2511.             "textDisplay": "I miss those years",
  2512.             "textOriginal": "I miss those years",
  2513.             "authorDisplayName": "Optimus97",
  2514.             "authorChannelUrl": "http://www.youtube.com/channel/UCUeeVDg1NXWwyVvVSlYAeWg",
  2515.             "authorChannelId": {
  2516.               "value": "UCUeeVDg1NXWwyVvVSlYAeWg"
  2517.             },
  2518.             "canRate": true,
  2519.             "viewerRating": "none",
  2520.             "likeCount": 45,
  2521.             "publishedAt": "2017-06-02T09:34:59Z",
  2522.             "updatedAt": "2017-06-02T09:34:59Z"
  2523.           }
  2524.         },
  2525.         "canReply": true,
  2526.         "totalReplyCount": 0,
  2527.         "isPublic": true
  2528.       }
  2529.     },
  2530.     {
  2531.       "kind": "youtube#commentThread",
  2532.       "etag": "yOd7hculmb6Rsg_J3BVtm0nkQzc",
  2533.       "id": "UgjcCmyFdyuWS3gCoAEC",
  2534.       "snippet": {
  2535.         "videoId": "atnSTtiWU5E",
  2536.         "topLevelComment": {
  2537.           "kind": "youtube#comment",
  2538.           "etag": "tBQk9NAtWWNfxGs01VWLp56QCrQ",
  2539.           "id": "UgjcCmyFdyuWS3gCoAEC",
  2540.           "snippet": {
  2541.             "videoId": "atnSTtiWU5E",
  2542.             "textDisplay": "who else heard this song from luna game 1, luna game saga, or luna game 3d?",
  2543.             "textOriginal": "who else heard this song from luna game 1, luna game saga, or luna game 3d?",
  2544.             "authorDisplayName": "Bonillaluiso1",
  2545.             "authorChannelUrl": "http://www.youtube.com/channel/UCtCsZnXcgTQHSt2oegx6Wkw",
  2546.             "authorChannelId": {
  2547.               "value": "UCtCsZnXcgTQHSt2oegx6Wkw"
  2548.             },
  2549.             "canRate": true,
  2550.             "viewerRating": "none",
  2551.             "likeCount": 0,
  2552.             "publishedAt": "2017-04-19T07:56:37Z",
  2553.             "updatedAt": "2017-04-19T07:56:37Z"
  2554.           }
  2555.         },
  2556.         "canReply": true,
  2557.         "totalReplyCount": 0,
  2558.         "isPublic": true
  2559.       }
  2560.     },
  2561.     {
  2562.       "kind": "youtube#commentThread",
  2563.       "etag": "UbGWALq4kkAV1G0bwZSrQSBvILQ",
  2564.       "id": "UghOcItavW1i3HgCoAEC",
  2565.       "snippet": {
  2566.         "videoId": "atnSTtiWU5E",
  2567.         "topLevelComment": {
  2568.           "kind": "youtube#comment",
  2569.           "etag": "1v7mRfWryv8wnEd2S8_ohkwLO4E",
  2570.           "id": "UghOcItavW1i3HgCoAEC",
  2571.           "snippet": {
  2572.             "videoId": "atnSTtiWU5E",
  2573.             "textDisplay": "January 2011... holy shit.",
  2574.             "textOriginal": "January 2011... holy shit.",
  2575.             "authorDisplayName": "Mr. Clod",
  2576.             "authorChannelUrl": "http://www.youtube.com/channel/UCvNSIXAayHinLlR4jI4ILOQ",
  2577.             "authorChannelId": {
  2578.               "value": "UCvNSIXAayHinLlR4jI4ILOQ"
  2579.             },
  2580.             "canRate": true,
  2581.             "viewerRating": "none",
  2582.             "likeCount": 3,
  2583.             "publishedAt": "2017-01-01T18:01:27Z",
  2584.             "updatedAt": "2017-01-01T18:01:27Z"
  2585.           }
  2586.         },
  2587.         "canReply": true,
  2588.         "totalReplyCount": 0,
  2589.         "isPublic": true
  2590.       }
  2591.     },
  2592.     {
  2593.       "kind": "youtube#commentThread",
  2594.       "etag": "-LPdaMrtUd8v1wl8A4m4y4QLNvk",
  2595.       "id": "UgjmNkULHD_G7HgCoAEC",
  2596.       "snippet": {
  2597.         "videoId": "atnSTtiWU5E",
  2598.         "topLevelComment": {
  2599.           "kind": "youtube#comment",
  2600.           "etag": "SUWjKidcL4FVsxG0Gtk4yne1CMU",
  2601.           "id": "UgjmNkULHD_G7HgCoAEC",
  2602.           "snippet": {
  2603.             "videoId": "atnSTtiWU5E",
  2604.             "textDisplay": "I'm not a pegasister, why is this so good?",
  2605.             "textOriginal": "I'm not a pegasister, why is this so good?",
  2606.             "authorDisplayName": "PIX",
  2607.             "authorChannelUrl": "http://www.youtube.com/channel/UC11eD9S8EP7JJoDkqjoZu8Q",
  2608.             "authorChannelId": {
  2609.               "value": "UC11eD9S8EP7JJoDkqjoZu8Q"
  2610.             },
  2611.             "canRate": true,
  2612.             "viewerRating": "none",
  2613.             "likeCount": 0,
  2614.             "publishedAt": "2016-10-05T06:59:33Z",
  2615.             "updatedAt": "2016-10-05T06:59:33Z"
  2616.           }
  2617.         },
  2618.         "canReply": true,
  2619.         "totalReplyCount": 1,
  2620.         "isPublic": true
  2621.       },
  2622.       "replies": {
  2623.         "comments": [
  2624.           {
  2625.             "kind": "youtube#comment",
  2626.             "etag": "E3gDqDlaJSL6d42eZ6Jl5DQYtGA",
  2627.             "id": "UgjmNkULHD_G7HgCoAEC.8JdWaJ5r_NZ8LMdPH97-NO",
  2628.             "snippet": {
  2629.               "videoId": "atnSTtiWU5E",
  2630.               "textDisplay": "Because Eurobeat Odyssey is awesome",
  2631.               "textOriginal": "Because Eurobeat Odyssey is awesome",
  2632.               "parentId": "UgjmNkULHD_G7HgCoAEC",
  2633.               "authorDisplayName": "Wendy Domino",
  2634.               "authorChannelUrl": "http://www.youtube.com/channel/UCSZ7rfhP222iau6TReVkMKQ",
  2635.               "authorChannelId": {
  2636.                 "value": "UCSZ7rfhP222iau6TReVkMKQ"
  2637.               },
  2638.               "canRate": true,
  2639.               "viewerRating": "none",
  2640.               "likeCount": 1,
  2641.               "publishedAt": "2016-11-17T01:24:16Z",
  2642.               "updatedAt": "2016-11-17T01:24:16Z"
  2643.             }
  2644.           }
  2645.         ]
  2646.       }
  2647.     },
  2648.     {
  2649.       "kind": "youtube#commentThread",
  2650.       "etag": "Q9BJBtfn_CurjGI3Lg_3ET-EYy0",
  2651.       "id": "UgiJxfvoiPkk33gCoAEC",
  2652.       "snippet": {
  2653.         "videoId": "atnSTtiWU5E",
  2654.         "topLevelComment": {
  2655.           "kind": "youtube#comment",
  2656.           "etag": "wpSXbP0eQJrTa4U3YGbQ5WRLnV8",
  2657.           "id": "UgiJxfvoiPkk33gCoAEC",
  2658.           "snippet": {
  2659.             "videoId": "atnSTtiWU5E",
  2660.             "textDisplay": "This music sounds like it belongs in a megaman game",
  2661.             "textOriginal": "This music sounds like it belongs in a megaman game",
  2662.             "authorDisplayName": "Hayden Holm",
  2663.             "authorChannelUrl": "http://www.youtube.com/channel/UCHpLvwmhaxEnQJhxnp4kYng",
  2664.             "authorChannelId": {
  2665.               "value": "UCHpLvwmhaxEnQJhxnp4kYng"
  2666.             },
  2667.             "canRate": true,
  2668.             "viewerRating": "none",
  2669.             "likeCount": 0,
  2670.             "publishedAt": "2016-08-11T02:42:52Z",
  2671.             "updatedAt": "2016-08-11T02:42:52Z"
  2672.           }
  2673.         },
  2674.         "canReply": true,
  2675.         "totalReplyCount": 0,
  2676.         "isPublic": true
  2677.       }
  2678.     },
  2679.     {
  2680.       "kind": "youtube#commentThread",
  2681.       "etag": "BU1VF5A6Rh0kMkYz2uemrLCxnsM",
  2682.       "id": "Uggzer7UvWT6EXgCoAEC",
  2683.       "snippet": {
  2684.         "videoId": "atnSTtiWU5E",
  2685.         "topLevelComment": {
  2686.           "kind": "youtube#comment",
  2687.           "etag": "5gmeS3yl5Hr_Ak7saUPSupBY9u0",
  2688.           "id": "Uggzer7UvWT6EXgCoAEC",
  2689.           "snippet": {
  2690.             "videoId": "atnSTtiWU5E",
  2691.             "textDisplay": "So, this song is not only a main theme in Luna Game, but also the first MLP fan song ever...",
  2692.             "textOriginal": "So, this song is not only a main theme in Luna Game, but also the first MLP fan song ever...",
  2693.             "authorDisplayName": "SuperRadFotherMucker",
  2694.             "authorChannelUrl": "http://www.youtube.com/channel/UCD7Czhqpoq1PGqzoqwIdukw",
  2695.             "authorChannelId": {
  2696.               "value": "UCD7Czhqpoq1PGqzoqwIdukw"
  2697.             },
  2698.             "canRate": true,
  2699.             "viewerRating": "none",
  2700.             "likeCount": 222,
  2701.             "publishedAt": "2016-04-13T11:21:08Z",
  2702.             "updatedAt": "2016-04-13T11:21:08Z"
  2703.           }
  2704.         },
  2705.         "canReply": true,
  2706.         "totalReplyCount": 2,
  2707.         "isPublic": true
  2708.       },
  2709.       "replies": {
  2710.         "comments": [
  2711.           {
  2712.             "kind": "youtube#comment",
  2713.             "etag": "V_Vy0KYVVUxhPb2yWxCRac8_McY",
  2714.             "id": "Uggzer7UvWT6EXgCoAEC.8CbNQ2aCGhs96zs2L9lGH7",
  2715.             "snippet": {
  2716.               "videoId": "atnSTtiWU5E",
  2717.               "textDisplay": "I came looking for this song after hearing it in the Luna game because I really liked it.",
  2718.               "textOriginal": "I came looking for this song after hearing it in the Luna game because I really liked it.",
  2719.               "parentId": "Uggzer7UvWT6EXgCoAEC",
  2720.               "authorDisplayName": "Mirror Maiden",
  2721.               "authorChannelUrl": "http://www.youtube.com/channel/UCUK27goEtaCRa6bjBzlA4kQ",
  2722.               "authorChannelId": {
  2723.                 "value": "UCUK27goEtaCRa6bjBzlA4kQ"
  2724.               },
  2725.               "canRate": true,
  2726.               "viewerRating": "none",
  2727.               "likeCount": 0,
  2728.               "publishedAt": "2020-04-03T14:00:09Z",
  2729.               "updatedAt": "2020-04-03T14:00:09Z"
  2730.             }
  2731.           },
  2732.           {
  2733.             "kind": "youtube#comment",
  2734.             "etag": "xVNp5d97Rlu9lwnvzI9k1zmz4e8",
  2735.             "id": "Uggzer7UvWT6EXgCoAEC.8CbNQ2aCGhs960VvHbFkud",
  2736.             "snippet": {
  2737.               "videoId": "atnSTtiWU5E",
  2738.               "textDisplay": "Wait, it is?! :O",
  2739.               "textOriginal": "Wait, it is?! :O",
  2740.               "parentId": "Uggzer7UvWT6EXgCoAEC",
  2741.               "authorDisplayName": "Princess Abby Star",
  2742.               "authorChannelUrl": "http://www.youtube.com/channel/UClhJjyGlJA499IbhW57ccFw",
  2743.               "authorChannelId": {
  2744.                 "value": "UClhJjyGlJA499IbhW57ccFw"
  2745.               },
  2746.               "canRate": true,
  2747.               "viewerRating": "none",
  2748.               "likeCount": 3,
  2749.               "publishedAt": "2020-03-10T08:45:09Z",
  2750.               "updatedAt": "2020-03-10T08:45:09Z"
  2751.             }
  2752.           }
  2753.         ]
  2754.       }
  2755.     },
  2756.     {
  2757.       "kind": "youtube#commentThread",
  2758.       "etag": "ApD4FfEm8fqI-XDJYYBuMDXzG7g",
  2759.       "id": "UgiKnFftbMomUngCoAEC",
  2760.       "snippet": {
  2761.         "videoId": "atnSTtiWU5E",
  2762.         "topLevelComment": {
  2763.           "kind": "youtube#comment",
  2764.           "etag": "hRhVQgAJ8wbmvdDXMl3OV4aZWTU",
  2765.           "id": "UgiKnFftbMomUngCoAEC",
  2766.           "snippet": {
  2767.             "videoId": "atnSTtiWU5E",
  2768.             "textDisplay": "First pony music, and not the last one xD",
  2769.             "textOriginal": "First pony music, and not the last one xD",
  2770.             "authorDisplayName": "PeKaNo",
  2771.             "authorChannelUrl": "http://www.youtube.com/channel/UCEA_G-rfA4DwLZrm_WA0-Dg",
  2772.             "authorChannelId": {
  2773.               "value": "UCEA_G-rfA4DwLZrm_WA0-Dg"
  2774.             },
  2775.             "canRate": true,
  2776.             "viewerRating": "none",
  2777.             "likeCount": 0,
  2778.             "publishedAt": "2016-04-12T13:46:32Z",
  2779.             "updatedAt": "2016-04-12T13:46:32Z"
  2780.           }
  2781.         },
  2782.         "canReply": true,
  2783.         "totalReplyCount": 0,
  2784.         "isPublic": true
  2785.       }
  2786.     },
  2787.     {
  2788.       "kind": "youtube#commentThread",
  2789.       "etag": "xHPJ9i9TSOk6df03QsMWDiYTlCc",
  2790.       "id": "UgjJzahnHwlhxXgCoAEC",
  2791.       "snippet": {
  2792.         "videoId": "atnSTtiWU5E",
  2793.         "topLevelComment": {
  2794.           "kind": "youtube#comment",
  2795.           "etag": "wB_WJtMRWbMWHcec65Z1GWNrZF4",
  2796.           "id": "UgjJzahnHwlhxXgCoAEC",
  2797.           "snippet": {
  2798.             "videoId": "atnSTtiWU5E",
  2799.             "textDisplay": "January 27th, of 20 freaking 11. That's like... 4 months after the show's premiere. \u003cbr\u003eThis has to belong in a museum or something, right? Barely anything else in the fandom is this old.",
  2800.             "textOriginal": "January 27th, of 20 freaking 11. That's like... 4 months after the show's premiere. \nThis has to belong in a museum or something, right? Barely anything else in the fandom is this old.",
  2801.             "authorDisplayName": "Extantdread",
  2802.             "authorChannelUrl": "http://www.youtube.com/channel/UCiYNT6O-3UuNOENDqf_6QTw",
  2803.             "authorChannelId": {
  2804.               "value": "UCiYNT6O-3UuNOENDqf_6QTw"
  2805.             },
  2806.             "canRate": true,
  2807.             "viewerRating": "none",
  2808.             "likeCount": 156,
  2809.             "publishedAt": "2016-04-04T07:29:49Z",
  2810.             "updatedAt": "2016-04-04T07:29:49Z"
  2811.           }
  2812.         },
  2813.         "canReply": true,
  2814.         "totalReplyCount": 5,
  2815.         "isPublic": true
  2816.       },
  2817.       "replies": {
  2818.         "comments": [
  2819.           {
  2820.             "kind": "youtube#comment",
  2821.             "etag": "1ZB5pb6XpF1YZyhYlaqbrdHKxA8",
  2822.             "id": "UgjJzahnHwlhxXgCoAEC.8CEmmzeviRl99OKgwfUssR",
  2823.             "snippet": {
  2824.               "textDisplay": "nzar dude why would they do that?",
  2825.               "textOriginal": "nzar dude why would they do that?",
  2826.               "parentId": "UgjJzahnHwlhxXgCoAEC",
  2827.               "authorDisplayName": "Princess Abby Star",
  2828.               "authorChannelUrl": "http://www.youtube.com/channel/UClhJjyGlJA499IbhW57ccFw",
  2829.               "authorChannelId": {
  2830.                 "value": "UClhJjyGlJA499IbhW57ccFw"
  2831.               },
  2832.               "canRate": true,
  2833.               "viewerRating": "none",
  2834.               "likeCount": 0,
  2835.               "publishedAt": "2020-06-02T04:23:02Z",
  2836.               "updatedAt": "2020-06-02T04:23:02Z"
  2837.             }
  2838.           },
  2839.           {
  2840.             "kind": "youtube#comment",
  2841.             "etag": "va0H33pDKic0sWvrnLSrB7qFcQA",
  2842.             "id": "UgjJzahnHwlhxXgCoAEC.8CEmmzeviRl99MFrQ1Fbrr",
  2843.             "snippet": {
  2844.               "textDisplay": "@Princess Abby Star Yes but Hasbro taken down a lot of early videos, there is no MLP video left that was posted before January 2011",
  2845.               "textOriginal": "@Princess Abby Star Yes but Hasbro taken down a lot of early videos, there is no MLP video left that was posted before January 2011",
  2846.               "parentId": "UgjJzahnHwlhxXgCoAEC",
  2847.               "authorDisplayName": "account",
  2848.               "authorChannelUrl": "http://www.youtube.com/channel/UCetI0DGYH4fDRZOQ1r1tTWw",
  2849.               "authorChannelId": {
  2850.                 "value": "UCetI0DGYH4fDRZOQ1r1tTWw"
  2851.               },
  2852.               "canRate": true,
  2853.               "viewerRating": "none",
  2854.               "likeCount": 8,
  2855.               "publishedAt": "2020-06-01T09:02:17Z",
  2856.               "updatedAt": "2020-06-01T09:02:17Z"
  2857.             }
  2858.           },
  2859.           {
  2860.             "kind": "youtube#comment",
  2861.             "etag": "4k5roCT4xTu5ujnJpJdeEa7iYeM",
  2862.             "id": "UgjJzahnHwlhxXgCoAEC.8CEmmzeviRl960VsuRo4Ku",
  2863.             "snippet": {
  2864.               "textDisplay": "Wasn’t the fandom sailing since 2010? I think, after 2 months after the show premiere Bronies already did exist.",
  2865.               "textOriginal": "Wasn’t the fandom sailing since 2010? I think, after 2 months after the show premiere Bronies already did exist.",
  2866.               "parentId": "UgjJzahnHwlhxXgCoAEC",
  2867.               "authorDisplayName": "Princess Abby Star",
  2868.               "authorChannelUrl": "http://www.youtube.com/channel/UClhJjyGlJA499IbhW57ccFw",
  2869.               "authorChannelId": {
  2870.                 "value": "UClhJjyGlJA499IbhW57ccFw"
  2871.               },
  2872.               "canRate": true,
  2873.               "viewerRating": "none",
  2874.               "likeCount": 3,
  2875.               "publishedAt": "2020-03-10T08:44:50Z",
  2876.               "updatedAt": "2020-03-10T08:44:50Z"
  2877.             }
  2878.           }
  2879.         ]
  2880.       }
  2881.     },
  2882.     {
  2883.       "kind": "youtube#commentThread",
  2884.       "etag": "JarZm6HejSgX8i_qDJhswA_ILj8",
  2885.       "id": "Ugj7SVz4L4Z12ngCoAEC",
  2886.       "snippet": {
  2887.         "videoId": "atnSTtiWU5E",
  2888.         "topLevelComment": {
  2889.           "kind": "youtube#comment",
  2890.           "etag": "S1cNQlqlcQsF-grlajSYo8UpiEw",
  2891.           "id": "Ugj7SVz4L4Z12ngCoAEC",
  2892.           "snippet": {
  2893.             "videoId": "atnSTtiWU5E",
  2894.             "textDisplay": "omg",
  2895.             "textOriginal": "omg",
  2896.             "authorDisplayName": "LuciaLambda",
  2897.             "authorChannelUrl": "http://www.youtube.com/channel/UCa898yuWOBpUa2P6sKxFtWg",
  2898.             "authorChannelId": {
  2899.               "value": "UCa898yuWOBpUa2P6sKxFtWg"
  2900.             },
  2901.             "canRate": true,
  2902.             "viewerRating": "none",
  2903.             "likeCount": 0,
  2904.             "publishedAt": "2016-03-12T10:59:11Z",
  2905.             "updatedAt": "2016-03-12T10:59:11Z"
  2906.           }
  2907.         },
  2908.         "canReply": true,
  2909.         "totalReplyCount": 0,
  2910.         "isPublic": true
  2911.       }
  2912.     },
  2913.     {
  2914.       "kind": "youtube#commentThread",
  2915.       "etag": "EIiGHoIWsZjKo1Vc64vcOksy5mg",
  2916.       "id": "UgjnzMRgjJIWRngCoAEC",
  2917.       "snippet": {
  2918.         "videoId": "atnSTtiWU5E",
  2919.         "topLevelComment": {
  2920.           "kind": "youtube#comment",
  2921.           "etag": "IC5OAnyP5VISZhKE0QItG1L-2Q0",
  2922.           "id": "UgjnzMRgjJIWRngCoAEC",
  2923.           "snippet": {
  2924.             "videoId": "atnSTtiWU5E",
  2925.             "textDisplay": "So this is the first pony track/remix ever, eh... This is so momentous :)",
  2926.             "textOriginal": "So this is the first pony track/remix ever, eh... This is so momentous :)",
  2927.             "authorDisplayName": "Makenshi179",
  2928.             "authorChannelUrl": "http://www.youtube.com/channel/UCVPscIRJnhBl3IeLuuDlbRQ",
  2929.             "authorChannelId": {
  2930.               "value": "UCVPscIRJnhBl3IeLuuDlbRQ"
  2931.             },
  2932.             "canRate": true,
  2933.             "viewerRating": "none",
  2934.             "likeCount": 111,
  2935.             "publishedAt": "2016-02-26T14:07:16Z",
  2936.             "updatedAt": "2016-02-26T14:07:16Z"
  2937.           }
  2938.         },
  2939.         "canReply": true,
  2940.         "totalReplyCount": 1,
  2941.         "isPublic": true
  2942.       },
  2943.       "replies": {
  2944.         "comments": [
  2945.           {
  2946.             "kind": "youtube#comment",
  2947.             "etag": "TQ4-FOFudwQTmIhe5UkANk8w2SI",
  2948.             "id": "UgjnzMRgjJIWRngCoAEC.8Aie3j3HXpf8NCKHPeD84t",
  2949.             "snippet": {
  2950.               "videoId": "atnSTtiWU5E",
  2951.               "textDisplay": "It's the first on YouTube*\u003cbr\u003e\u003cbr\u003eApparently there were some before this on 4chan but, as is the nature of 4chan, that could be lost forever.\u003cbr\u003eespecially with all the bans that were going around for pony back then.",
  2952.               "textOriginal": "It's the first on YouTube*\n\nApparently there were some before this on 4chan but, as is the nature of 4chan, that could be lost forever.\nespecially with all the bans that were going around for pony back then.",
  2953.               "parentId": "UgjnzMRgjJIWRngCoAEC",
  2954.               "authorDisplayName": "Mr. Clod",
  2955.               "authorChannelUrl": "http://www.youtube.com/channel/UCvNSIXAayHinLlR4jI4ILOQ",
  2956.               "authorChannelId": {
  2957.                 "value": "UCvNSIXAayHinLlR4jI4ILOQ"
  2958.               },
  2959.               "canRate": true,
  2960.               "viewerRating": "none",
  2961.               "likeCount": 12,
  2962.               "publishedAt": "2017-01-01T18:18:49Z",
  2963.               "updatedAt": "2017-01-01T18:18:49Z"
  2964.             }
  2965.           }
  2966.         ]
  2967.       }
  2968.     },
  2969.     {
  2970.       "kind": "youtube#commentThread",
  2971.       "etag": "u_WNXLisebryJLErfSqyKGcnKd8",
  2972.       "id": "Ugg6n12AOgAO4HgCoAEC",
  2973.       "snippet": {
  2974.         "videoId": "atnSTtiWU5E",
  2975.         "topLevelComment": {
  2976.           "kind": "youtube#comment",
  2977.           "etag": "0VrZuV9aAVwMUKoh0VuoSY8yDyo",
  2978.           "id": "Ugg6n12AOgAO4HgCoAEC",
  2979.           "snippet": {
  2980.             "videoId": "atnSTtiWU5E",
  2981.             "textDisplay": "Le father of all brony fan made songs",
  2982.             "textOriginal": "Le father of all brony fan made songs",
  2983.             "authorDisplayName": "Templar Yvonne",
  2984.             "authorChannelUrl": "http://www.youtube.com/channel/UC-ODHz8yZYA3lwyJWhK7uaQ",
  2985.             "authorChannelId": {
  2986.               "value": "UC-ODHz8yZYA3lwyJWhK7uaQ"
  2987.             },
  2988.             "canRate": true,
  2989.             "viewerRating": "none",
  2990.             "likeCount": 34,
  2991.             "publishedAt": "2015-12-30T13:37:39Z",
  2992.             "updatedAt": "2015-12-30T13:37:39Z"
  2993.           }
  2994.         },
  2995.         "canReply": true,
  2996.         "totalReplyCount": 0,
  2997.         "isPublic": true
  2998.       }
  2999.     },
  3000.     {
  3001.       "kind": "youtube#commentThread",
  3002.       "etag": "0_e7gvgNIzO1jZ7ylMS_cEdv044",
  3003.       "id": "Ugh0vsWOxhJZHngCoAEC",
  3004.       "snippet": {
  3005.         "videoId": "atnSTtiWU5E",
  3006.         "topLevelComment": {
  3007.           "kind": "youtube#comment",
  3008.           "etag": "saWiCWSYVMCZaPfCJ_f-O1hyBAE",
  3009.           "id": "Ugh0vsWOxhJZHngCoAEC",
  3010.           "snippet": {
  3011.             "videoId": "atnSTtiWU5E",
  3012.             "textDisplay": "When I first heard this song on another video I thought it came from Initial D or something",
  3013.             "textOriginal": "When I first heard this song on another video I thought it came from Initial D or something",
  3014.             "authorDisplayName": "ManedWolfMonarch",
  3015.             "authorChannelUrl": "http://www.youtube.com/channel/UCcxOhvfv0ci5AGelGufoZgQ",
  3016.             "authorChannelId": {
  3017.               "value": "UCcxOhvfv0ci5AGelGufoZgQ"
  3018.             },
  3019.             "canRate": true,
  3020.             "viewerRating": "none",
  3021.             "likeCount": 0,
  3022.             "publishedAt": "2015-10-05T06:21:09Z",
  3023.             "updatedAt": "2015-10-05T06:21:09Z"
  3024.           }
  3025.         },
  3026.         "canReply": true,
  3027.         "totalReplyCount": 1,
  3028.         "isPublic": true
  3029.       },
  3030.       "replies": {
  3031.         "comments": [
  3032.           {
  3033.             "kind": "youtube#comment",
  3034.             "etag": "_8Kbe_ez10RZSk3BKzn3f5ZmAqw",
  3035.             "id": "Ugh0vsWOxhJZHngCoAEC.84v1FrIHfxw8BPZc1Zhojr",
  3036.             "snippet": {
  3037.               "videoId": "atnSTtiWU5E",
  3038.               "textDisplay": "I thought of 1,2,3,4 Fire for Eurobeat :-P",
  3039.               "textOriginal": "I thought of 1,2,3,4 Fire for Eurobeat :-P",
  3040.               "parentId": "Ugh0vsWOxhJZHngCoAEC",
  3041.               "authorDisplayName": "EXE Sasser",
  3042.               "authorChannelUrl": "http://www.youtube.com/channel/UCEQ9K1S_IVP0Dzc2kAjPxPg",
  3043.               "authorChannelId": {
  3044.                 "value": "UCEQ9K1S_IVP0Dzc2kAjPxPg"
  3045.               },
  3046.               "canRate": true,
  3047.               "viewerRating": "none",
  3048.               "likeCount": 0,
  3049.               "publishedAt": "2016-03-14T15:26:14Z",
  3050.               "updatedAt": "2016-03-14T15:26:14Z"
  3051.             }
  3052.           }
  3053.         ]
  3054.       }
  3055.     },
  3056.     {
  3057.       "kind": "youtube#commentThread",
  3058.       "etag": "GzthmeRBa5dArhnBQB3h2hKP_ek",
  3059.       "id": "Ugjz-SNYX4CVNngCoAEC",
  3060.       "snippet": {
  3061.         "videoId": "atnSTtiWU5E",
  3062.         "topLevelComment": {
  3063.           "kind": "youtube#comment",
  3064.           "etag": "a_XAd0TDBy2ldTrwJp5_1KByC8c",
  3065.           "id": "Ugjz-SNYX4CVNngCoAEC",
  3066.           "snippet": {
  3067.             "videoId": "atnSTtiWU5E",
  3068.             "textDisplay": "Yo...Its been awhile since i saw this.\u003cbr\u003ei left Luna game alone",
  3069.             "textOriginal": "Yo...Its been awhile since i saw this.\ni left Luna game alone",
  3070.             "authorDisplayName": "trashTM",
  3071.             "authorChannelUrl": "http://www.youtube.com/channel/UCd6i3W7F7nDLyE6Flqi-saQ",
  3072.             "authorChannelId": {
  3073.               "value": "UCd6i3W7F7nDLyE6Flqi-saQ"
  3074.             },
  3075.             "canRate": true,
  3076.             "viewerRating": "none",
  3077.             "likeCount": 0,
  3078.             "publishedAt": "2015-09-28T04:16:20Z",
  3079.             "updatedAt": "2015-09-28T04:16:20Z"
  3080.           }
  3081.         },
  3082.         "canReply": true,
  3083.         "totalReplyCount": 0,
  3084.         "isPublic": true
  3085.       }
  3086.     },
  3087.     {
  3088.       "kind": "youtube#commentThread",
  3089.       "etag": "CfQpeYr0edpyqxn38q5H0VI1W7c",
  3090.       "id": "Ugi7x3nMRPFUvHgCoAEC",
  3091.       "snippet": {
  3092.         "videoId": "atnSTtiWU5E",
  3093.         "topLevelComment": {
  3094.           "kind": "youtube#comment",
  3095.           "etag": "DfvnZz6y8qu2hm3xTp6W2s_0f2o",
  3096.           "id": "Ugi7x3nMRPFUvHgCoAEC",
  3097.           "snippet": {
  3098.             "videoId": "atnSTtiWU5E",
  3099.             "textDisplay": "Wow..haven't heard this since 2012.. Still awesome :D",
  3100.             "textOriginal": "Wow..haven't heard this since 2012.. Still awesome :D",
  3101.             "authorDisplayName": "Kai Gordon",
  3102.             "authorChannelUrl": "http://www.youtube.com/channel/UCoiioQ00hr8PcF9aMZlBd0g",
  3103.             "authorChannelId": {
  3104.               "value": "UCoiioQ00hr8PcF9aMZlBd0g"
  3105.             },
  3106.             "canRate": true,
  3107.             "viewerRating": "none",
  3108.             "likeCount": 13,
  3109.             "publishedAt": "2015-05-24T14:54:28Z",
  3110.             "updatedAt": "2015-05-24T14:54:28Z"
  3111.           }
  3112.         },
  3113.         "canReply": true,
  3114.         "totalReplyCount": 0,
  3115.         "isPublic": true
  3116.       }
  3117.     },
  3118.     {
  3119.       "kind": "youtube#commentThread",
  3120.       "etag": "gd9dvB8oZVOOWBFzcqzlu59rJrQ",
  3121.       "id": "UgjkrszVkohiHHgCoAEC",
  3122.       "snippet": {
  3123.         "videoId": "atnSTtiWU5E",
  3124.         "topLevelComment": {
  3125.           "kind": "youtube#comment",
  3126.           "etag": "ReN6ygyAYQeEk8R_x9CaZ5d9dgA",
  3127.           "id": "UgjkrszVkohiHHgCoAEC",
  3128.           "snippet": {
  3129.             "videoId": "atnSTtiWU5E",
  3130.             "textDisplay": "Luna game make me scare",
  3131.             "textOriginal": "Luna game make me scare",
  3132.             "authorDisplayName": "Sylvie Terleira",
  3133.             "authorChannelUrl": "http://www.youtube.com/channel/UCf2h_n-X9Wu4LYJTds1M5iQ",
  3134.             "authorChannelId": {
  3135.               "value": "UCf2h_n-X9Wu4LYJTds1M5iQ"
  3136.             },
  3137.             "canRate": true,
  3138.             "viewerRating": "none",
  3139.             "likeCount": 0,
  3140.             "publishedAt": "2015-03-28T22:38:50Z",
  3141.             "updatedAt": "2015-03-28T22:38:50Z"
  3142.           }
  3143.         },
  3144.         "canReply": true,
  3145.         "totalReplyCount": 0,
  3146.         "isPublic": true
  3147.       }
  3148.     },
  3149.     {
  3150.       "kind": "youtube#commentThread",
  3151.       "etag": "0HRbSya_oMx66x2r6ZMNas4hrBg",
  3152.       "id": "UghNPl9PuV6uengCoAEC",
  3153.       "snippet": {
  3154.         "videoId": "atnSTtiWU5E",
  3155.         "topLevelComment": {
  3156.           "kind": "youtube#comment",
  3157.           "etag": "-m-EjyTIbjilQ8Kr_PFhMoe_Dig",
  3158.           "id": "UghNPl9PuV6uengCoAEC",
  3159.           "snippet": {
  3160.             "videoId": "atnSTtiWU5E",
  3161.             "textDisplay": "I got a Charlie horse and now I can't get up from the computer... YESSSSSS",
  3162.             "textOriginal": "I got a Charlie horse and now I can't get up from the computer... YESSSSSS",
  3163.             "authorDisplayName": "Chica the Chick",
  3164.             "authorChannelUrl": "http://www.youtube.com/channel/UC6a1T0IItcO2Ftpk_n_3Jgw",
  3165.             "authorChannelId": {
  3166.               "value": "UC6a1T0IItcO2Ftpk_n_3Jgw"
  3167.             },
  3168.             "canRate": true,
  3169.             "viewerRating": "none",
  3170.             "likeCount": 0,
  3171.             "publishedAt": "2015-02-27T22:12:58Z",
  3172.             "updatedAt": "2015-02-27T22:12:58Z"
  3173.           }
  3174.         },
  3175.         "canReply": true,
  3176.         "totalReplyCount": 0,
  3177.         "isPublic": true
  3178.       }
  3179.     },
  3180.     {
  3181.       "kind": "youtube#commentThread",
  3182.       "etag": "QwFcsXaiOD0GFu7aH1VEMN6m5f8",
  3183.       "id": "UgjC8Zy5Lf0RSHgCoAEC",
  3184.       "snippet": {
  3185.         "videoId": "atnSTtiWU5E",
  3186.         "topLevelComment": {
  3187.           "kind": "youtube#comment",
  3188.           "etag": "PawLdmCV31D8mCUvyTZ6qhFK4GU",
  3189.           "id": "UgjC8Zy5Lf0RSHgCoAEC",
  3190.           "snippet": {
  3191.             "videoId": "atnSTtiWU5E",
  3192.             "textDisplay": "4 years old... hmm",
  3193.             "textOriginal": "4 years old... hmm",
  3194.             "authorDisplayName": "TwilySparky",
  3195.             "authorChannelUrl": "http://www.youtube.com/channel/UCjJlB82tvM3lXOMp_Pk0dNQ",
  3196.             "authorChannelId": {
  3197.               "value": "UCjJlB82tvM3lXOMp_Pk0dNQ"
  3198.             },
  3199.             "canRate": true,
  3200.             "viewerRating": "none",
  3201.             "likeCount": 1,
  3202.             "publishedAt": "2015-02-02T03:00:25Z",
  3203.             "updatedAt": "2015-02-02T03:00:25Z"
  3204.           }
  3205.         },
  3206.         "canReply": true,
  3207.         "totalReplyCount": 1,
  3208.         "isPublic": true
  3209.       },
  3210.       "replies": {
  3211.         "comments": [
  3212.           {
  3213.             "kind": "youtube#comment",
  3214.             "etag": "uQXCd8zZBkDlD9Q0g5WFuVjyDf4",
  3215.             "id": "UgjC8Zy5Lf0RSHgCoAEC.7-H0Z7-AghF8tvwAsl7wbd",
  3216.             "snippet": {
  3217.               "videoId": "atnSTtiWU5E",
  3218.               "textDisplay": "Wow. That's even better to read 4 years later.",
  3219.               "textOriginal": "Wow. That's even better to read 4 years later.",
  3220.               "parentId": "UgjC8Zy5Lf0RSHgCoAEC",
  3221.               "authorDisplayName": "Alexis Ross",
  3222.               "authorChannelUrl": "http://www.youtube.com/channel/UCCL75DbSpNzT9qRVmC21xPw",
  3223.               "authorChannelId": {
  3224.                 "value": "UCCL75DbSpNzT9qRVmC21xPw"
  3225.               },
  3226.               "canRate": true,
  3227.               "viewerRating": "none",
  3228.               "likeCount": 0,
  3229.               "publishedAt": "2019-04-20T01:59:47Z",
  3230.               "updatedAt": "2019-04-20T01:59:47Z"
  3231.             }
  3232.           }
  3233.         ]
  3234.       }
  3235.     },
  3236.     {
  3237.       "kind": "youtube#commentThread",
  3238.       "etag": "VIU_cjawq4EHJWDTcnuaXK4uExQ",
  3239.       "id": "Ugg-MqgCqCvVb3gCoAEC",
  3240.       "snippet": {
  3241.         "videoId": "atnSTtiWU5E",
  3242.         "topLevelComment": {
  3243.           "kind": "youtube#comment",
  3244.           "etag": "39oQvQxJsm7aJ4lpj3euTgDq4NA",
  3245.           "id": "Ugg-MqgCqCvVb3gCoAEC",
  3246.           "snippet": {
  3247.             "videoId": "atnSTtiWU5E",
  3248.             "textDisplay": "Roots of brony music!",
  3249.             "textOriginal": "Roots of brony music!",
  3250.             "authorDisplayName": "mastervule",
  3251.             "authorChannelUrl": "http://www.youtube.com/channel/UCo7HoVqW0eVSeCyekj04PcQ",
  3252.             "authorChannelId": {
  3253.               "value": "UCo7HoVqW0eVSeCyekj04PcQ"
  3254.             },
  3255.             "canRate": true,
  3256.             "viewerRating": "none",
  3257.             "likeCount": 11,
  3258.             "publishedAt": "2014-11-25T23:25:03Z",
  3259.             "updatedAt": "2014-11-25T23:25:03Z"
  3260.           }
  3261.         },
  3262.         "canReply": true,
  3263.         "totalReplyCount": 0,
  3264.         "isPublic": true
  3265.       }
  3266.     },
  3267.     {
  3268.       "kind": "youtube#commentThread",
  3269.       "etag": "m67-gsi4Od1VdmNqlusk4aqolss",
  3270.       "id": "Ugj4HVES7dUj6HgCoAEC",
  3271.       "snippet": {
  3272.         "videoId": "atnSTtiWU5E",
  3273.         "topLevelComment": {
  3274.           "kind": "youtube#comment",
  3275.           "etag": "e84LERh4yvO1BYlb8wd6VSJMQL8",
  3276.           "id": "Ugj4HVES7dUj6HgCoAEC",
  3277.           "snippet": {
  3278.             "videoId": "atnSTtiWU5E",
  3279.             "textDisplay": "Oh love this song! Thanks :)",
  3280.             "textOriginal": "Oh love this song! Thanks :)",
  3281.             "authorDisplayName": "Looh",
  3282.             "authorChannelUrl": "http://www.youtube.com/channel/UCzZ1eps5_oNuHSamFTKfmug",
  3283.             "authorChannelId": {
  3284.               "value": "UCzZ1eps5_oNuHSamFTKfmug"
  3285.             },
  3286.             "canRate": true,
  3287.             "viewerRating": "none",
  3288.             "likeCount": 1,
  3289.             "publishedAt": "2014-11-01T14:42:53Z",
  3290.             "updatedAt": "2014-11-01T14:42:53Z"
  3291.           }
  3292.         },
  3293.         "canReply": true,
  3294.         "totalReplyCount": 0,
  3295.         "isPublic": true
  3296.       }
  3297.     },
  3298.     {
  3299.       "kind": "youtube#commentThread",
  3300.       "etag": "Ty8ZIQhgzIo2c6XwLJpX_gkDwdM",
  3301.       "id": "UgiBureH6t4kK3gCoAEC",
  3302.       "snippet": {
  3303.         "videoId": "atnSTtiWU5E",
  3304.         "topLevelComment": {
  3305.           "kind": "youtube#comment",
  3306.           "etag": "1I2arwKC2hR1Argu12OP0SEN44g",
  3307.           "id": "UgiBureH6t4kK3gCoAEC",
  3308.           "snippet": {
  3309.             "videoId": "atnSTtiWU5E",
  3310.             "textDisplay": "GO GODZILLA GO!!!",
  3311.             "textOriginal": "GO GODZILLA GO!!!",
  3312.             "authorDisplayName": "Richo-senpai",
  3313.             "authorChannelUrl": "http://www.youtube.com/channel/UCwDfzBsel1EU1jWXIP8a4ng",
  3314.             "authorChannelId": {
  3315.               "value": "UCwDfzBsel1EU1jWXIP8a4ng"
  3316.             },
  3317.             "canRate": true,
  3318.             "viewerRating": "none",
  3319.             "likeCount": 2,
  3320.             "publishedAt": "2014-10-31T12:13:39Z",
  3321.             "updatedAt": "2014-10-31T12:13:39Z"
  3322.           }
  3323.         },
  3324.         "canReply": true,
  3325.         "totalReplyCount": 0,
  3326.         "isPublic": true
  3327.       }
  3328.     },
  3329.     {
  3330.       "kind": "youtube#commentThread",
  3331.       "etag": "IoAaD2NRaCCzogXYBjM8Mvr5Olc",
  3332.       "id": "UgjQYJMpyxVgU3gCoAEC",
  3333.       "snippet": {
  3334.         "videoId": "atnSTtiWU5E",
  3335.         "topLevelComment": {
  3336.           "kind": "youtube#comment",
  3337.           "etag": "fxvKc5Cb700Kk2n1nRH4eFodXuY",
  3338.           "id": "UgjQYJMpyxVgU3gCoAEC",
  3339.           "snippet": {
  3340.             "videoId": "atnSTtiWU5E",
  3341.             "textDisplay": "It's like Touhou ^^",
  3342.             "textOriginal": "It's like Touhou ^^",
  3343.             "authorDisplayName": "wyq808",
  3344.             "authorChannelUrl": "http://www.youtube.com/channel/UCtX6cj6N0_UcB_fSvgNW8kg",
  3345.             "authorChannelId": {
  3346.               "value": "UCtX6cj6N0_UcB_fSvgNW8kg"
  3347.             },
  3348.             "canRate": true,
  3349.             "viewerRating": "none",
  3350.             "likeCount": 1,
  3351.             "publishedAt": "2014-10-19T11:53:56Z",
  3352.             "updatedAt": "2014-10-19T11:53:56Z"
  3353.           }
  3354.         },
  3355.         "canReply": true,
  3356.         "totalReplyCount": 0,
  3357.         "isPublic": true
  3358.       }
  3359.     },
  3360.     {
  3361.       "kind": "youtube#commentThread",
  3362.       "etag": "n8giQN-31XI26chzxalZnmll0KQ",
  3363.       "id": "UgjAawM5Yzm9dXgCoAEC",
  3364.       "snippet": {
  3365.         "videoId": "atnSTtiWU5E",
  3366.         "topLevelComment": {
  3367.           "kind": "youtube#comment",
  3368.           "etag": "8Ga3CvS-zaeQD4aPg3aG5q-mE3U",
  3369.           "id": "UgjAawM5Yzm9dXgCoAEC",
  3370.           "snippet": {
  3371.             "videoId": "atnSTtiWU5E",
  3372.             "textDisplay": "Is that Twilight?",
  3373.             "textOriginal": "Is that Twilight?",
  3374.             "authorDisplayName": "Rechie Pina",
  3375.             "authorChannelUrl": "http://www.youtube.com/channel/UCQlVLueuwP9dic5rj31F81Q",
  3376.             "authorChannelId": {
  3377.               "value": "UCQlVLueuwP9dic5rj31F81Q"
  3378.             },
  3379.             "canRate": true,
  3380.             "viewerRating": "none",
  3381.             "likeCount": 0,
  3382.             "publishedAt": "2014-09-10T22:35:27Z",
  3383.             "updatedAt": "2014-09-10T22:35:27Z"
  3384.           }
  3385.         },
  3386.         "canReply": true,
  3387.         "totalReplyCount": 1,
  3388.         "isPublic": true
  3389.       },
  3390.       "replies": {
  3391.         "comments": [
  3392.           {
  3393.             "kind": "youtube#comment",
  3394.             "etag": "TGwIrFOHS9ImCqDyKzqsReZpKkA",
  3395.             "id": "UgjAawM5Yzm9dXgCoAEC.7-H0Z7-H_q670Ge1dhBOB8",
  3396.             "snippet": {
  3397.               "videoId": "atnSTtiWU5E",
  3398.               "textDisplay": "It's Fluttershy ^_^",
  3399.               "textOriginal": "It's Fluttershy ^_^",
  3400.               "parentId": "UgjAawM5Yzm9dXgCoAEC",
  3401.               "authorDisplayName": "Zai Gabriel",
  3402.               "authorChannelUrl": "http://www.youtube.com/channel/UCCEeIpooK6XxbdtMvqhsKsw",
  3403.               "authorChannelId": {
  3404.                 "value": "UCCEeIpooK6XxbdtMvqhsKsw"
  3405.               },
  3406.               "canRate": true,
  3407.               "viewerRating": "none",
  3408.               "likeCount": 1,
  3409.               "publishedAt": "2014-10-05T15:41:17Z",
  3410.               "updatedAt": "2014-10-05T15:41:17Z"
  3411.             }
  3412.           }
  3413.         ]
  3414.       }
  3415.     },
  3416.     {
  3417.       "kind": "youtube#commentThread",
  3418.       "etag": "wybSQchBureOCrcqtHss4UQQMIs",
  3419.       "id": "UgiLiy14Nkocc3gCoAEC",
  3420.       "snippet": {
  3421.         "videoId": "atnSTtiWU5E",
  3422.         "topLevelComment": {
  3423.           "kind": "youtube#comment",
  3424.           "etag": "xc561F-5jNsUIdrnIR-pntE-ZvY",
  3425.           "id": "UgiLiy14Nkocc3gCoAEC",
  3426.           "snippet": {
  3427.             "videoId": "atnSTtiWU5E",
  3428.             "textDisplay": "Perfect boss music,this stuff is my Jam!",
  3429.             "textOriginal": "Perfect boss music,this stuff is my Jam!",
  3430.             "authorDisplayName": "River Jacobs",
  3431.             "authorChannelUrl": "http://www.youtube.com/channel/UCCao0IgLXSkhqbT3MyIbh6A",
  3432.             "authorChannelId": {
  3433.               "value": "UCCao0IgLXSkhqbT3MyIbh6A"
  3434.             },
  3435.             "canRate": true,
  3436.             "viewerRating": "none",
  3437.             "likeCount": 0,
  3438.             "publishedAt": "2014-05-31T21:31:26Z",
  3439.             "updatedAt": "2014-05-31T21:31:26Z"
  3440.           }
  3441.         },
  3442.         "canReply": true,
  3443.         "totalReplyCount": 0,
  3444.         "isPublic": true
  3445.       }
  3446.     },
  3447.     {
  3448.       "kind": "youtube#commentThread",
  3449.       "etag": "sEZwX3DPO-BBLBNlQtJzsPIofdE",
  3450.       "id": "UgiO-hjyhM8hq3gCoAEC",
  3451.       "snippet": {
  3452.         "videoId": "atnSTtiWU5E",
  3453.         "topLevelComment": {
  3454.           "kind": "youtube#comment",
  3455.           "etag": "Dq_S5iDUVQb25LGKgoHV_nBZ8Ag",
  3456.           "id": "UgiO-hjyhM8hq3gCoAEC",
  3457.           "snippet": {
  3458.             "videoId": "atnSTtiWU5E",
  3459.             "textDisplay": "Man, i can only think of Ableton that can make this kind of music. Every other recording software is put to shame.",
  3460.             "textOriginal": "Man, i can only think of Ableton that can make this kind of music. Every other recording software is put to shame.",
  3461.             "authorDisplayName": "StarkosGuy",
  3462.             "authorChannelUrl": "http://www.youtube.com/channel/UCvEQKWK8-bfYYawEZDnEQ2g",
  3463.             "authorChannelId": {
  3464.               "value": "UCvEQKWK8-bfYYawEZDnEQ2g"
  3465.             },
  3466.             "canRate": true,
  3467.             "viewerRating": "none",
  3468.             "likeCount": 0,
  3469.             "publishedAt": "2014-03-31T19:42:20Z",
  3470.             "updatedAt": "2014-03-31T19:42:20Z"
  3471.           }
  3472.         },
  3473.         "canReply": true,
  3474.         "totalReplyCount": 4,
  3475.         "isPublic": true
  3476.       },
  3477.       "replies": {
  3478.         "comments": [
  3479.           {
  3480.             "kind": "youtube#comment",
  3481.             "etag": "6j_gNt6NE8aNsTN4bFsZ1-zmq9w",
  3482.             "id": "UgiO-hjyhM8hq3gCoAEC.7-H0Z7-RnzE75n5Nmzxgpu",
  3483.             "snippet": {
  3484.               "videoId": "atnSTtiWU5E",
  3485.               "textDisplay": "@Odyssey Eurobeat lmfao",
  3486.               "textOriginal": "@Odyssey Eurobeat lmfao",
  3487.               "parentId": "UgiO-hjyhM8hq3gCoAEC",
  3488.               "authorDisplayName": "TwilySparky",
  3489.               "authorChannelUrl": "http://www.youtube.com/channel/UCjJlB82tvM3lXOMp_Pk0dNQ",
  3490.               "authorChannelId": {
  3491.                 "value": "UCjJlB82tvM3lXOMp_Pk0dNQ"
  3492.               },
  3493.               "canRate": true,
  3494.               "viewerRating": "none",
  3495.               "likeCount": 0,
  3496.               "publishedAt": "2014-09-09T19:07:47Z",
  3497.               "updatedAt": "2014-09-09T19:07:47Z"
  3498.             }
  3499.           },
  3500.           {
  3501.             "kind": "youtube#comment",
  3502.             "etag": "SZmBjii4uXpDJQ54QAAOAnCoL6g",
  3503.             "id": "UgiO-hjyhM8hq3gCoAEC.7-H0Z7-RnzE71AD424tl-G",
  3504.             "snippet": {
  3505.               "videoId": "atnSTtiWU5E",
  3506.               "textDisplay": "I didn't know. Stupid typo",
  3507.               "textOriginal": "I didn't know. Stupid typo",
  3508.               "parentId": "UgiO-hjyhM8hq3gCoAEC",
  3509.               "authorDisplayName": "StarkosGuy",
  3510.               "authorChannelUrl": "http://www.youtube.com/channel/UCvEQKWK8-bfYYawEZDnEQ2g",
  3511.               "authorChannelId": {
  3512.                 "value": "UCvEQKWK8-bfYYawEZDnEQ2g"
  3513.               },
  3514.               "canRate": true,
  3515.               "viewerRating": "none",
  3516.               "likeCount": 0,
  3517.               "publishedAt": "2014-05-17T21:19:47Z",
  3518.               "updatedAt": "2014-05-17T21:19:47Z"
  3519.             }
  3520.           },
  3521.           {
  3522.             "kind": "youtube#comment",
  3523.             "etag": "4smIO6_ITffgUcijeL8fleEaGj8",
  3524.             "id": "UgiO-hjyhM8hq3gCoAEC.7-H0Z7-RnzE71AD1C48vkA",
  3525.             "snippet": {
  3526.               "videoId": "atnSTtiWU5E",
  3527.               "textDisplay": "Ah right. U didn't know logic can make stuff this good. I only use FL studio",
  3528.               "textOriginal": "Ah right. U didn't know logic can make stuff this good. I only use FL studio",
  3529.               "parentId": "UgiO-hjyhM8hq3gCoAEC",
  3530.               "authorDisplayName": "StarkosGuy",
  3531.               "authorChannelUrl": "http://www.youtube.com/channel/UCvEQKWK8-bfYYawEZDnEQ2g",
  3532.               "authorChannelId": {
  3533.                 "value": "UCvEQKWK8-bfYYawEZDnEQ2g"
  3534.               },
  3535.               "canRate": true,
  3536.               "viewerRating": "none",
  3537.               "likeCount": 0,
  3538.               "publishedAt": "2014-05-17T21:19:24Z",
  3539.               "updatedAt": "2014-05-17T21:19:24Z"
  3540.             }
  3541.           },
  3542.           {
  3543.             "kind": "youtube#comment",
  3544.             "etag": "5cgP2fH4U9aTmUzECpEHpEh17F0",
  3545.             "id": "UgiO-hjyhM8hq3gCoAEC.7-H0Z7-RnzE71AC5cZpvrA",
  3546.             "snippet": {
  3547.               "videoId": "atnSTtiWU5E",
  3548.               "textDisplay": "I made this song in Logic.",
  3549.               "textOriginal": "I made this song in Logic.",
  3550.               "parentId": "UgiO-hjyhM8hq3gCoAEC",
  3551.               "authorDisplayName": "Odyssey Eurobeat",
  3552.               "authorChannelUrl": "http://www.youtube.com/channel/UCpgDkOVtTbAHrHKOnOu7HJw",
  3553.               "authorChannelId": {
  3554.                 "value": "UCpgDkOVtTbAHrHKOnOu7HJw"
  3555.               },
  3556.               "canRate": true,
  3557.               "viewerRating": "none",
  3558.               "likeCount": 3,
  3559.               "publishedAt": "2014-05-17T21:11:16Z",
  3560.               "updatedAt": "2014-05-17T21:11:16Z"
  3561.             }
  3562.           }
  3563.         ]
  3564.       }
  3565.     },
  3566.     {
  3567.       "kind": "youtube#commentThread",
  3568.       "etag": "1-XDNhVGnSOgaUjVpG0IBYA_wJk",
  3569.       "id": "UghQeQxiu1ZLz3gCoAEC",
  3570.       "snippet": {
  3571.         "videoId": "atnSTtiWU5E",
  3572.         "topLevelComment": {
  3573.           "kind": "youtube#comment",
  3574.           "etag": "gpqSa1sqRQhd6z5tU2CcmdRo8WA",
  3575.           "id": "UghQeQxiu1ZLz3gCoAEC",
  3576.           "snippet": {
  3577.             "videoId": "atnSTtiWU5E",
  3578.             "textDisplay": "So this is where it started.",
  3579.             "textOriginal": "So this is where it started.",
  3580.             "authorDisplayName": "So says Mr. Stewart",
  3581.             "authorChannelUrl": "http://www.youtube.com/channel/UCsNZcv3vw_euOKquMYPjk8g",
  3582.             "authorChannelId": {
  3583.               "value": "UCsNZcv3vw_euOKquMYPjk8g"
  3584.             },
  3585.             "canRate": true,
  3586.             "viewerRating": "none",
  3587.             "likeCount": 18,
  3588.             "publishedAt": "2014-02-23T02:45:06Z",
  3589.             "updatedAt": "2014-02-23T02:45:06Z"
  3590.           }
  3591.         },
  3592.         "canReply": true,
  3593.         "totalReplyCount": 0,
  3594.         "isPublic": true
  3595.       }
  3596.     },
  3597.     {
  3598.       "kind": "youtube#commentThread",
  3599.       "etag": "sjrZZyybeUPPpvhT3JHgBIuJqgs",
  3600.       "id": "UggKYJnwuCqGfngCoAEC",
  3601.       "snippet": {
  3602.         "videoId": "atnSTtiWU5E",
  3603.         "topLevelComment": {
  3604.           "kind": "youtube#comment",
  3605.           "etag": "XfpLDzSQ-8e_TM5kf8OwvqfQ9qs",
  3606.           "id": "UggKYJnwuCqGfngCoAEC",
  3607.           "snippet": {
  3608.             "videoId": "atnSTtiWU5E",
  3609.             "textDisplay": "flutterguy sang it better XD",
  3610.             "textOriginal": "flutterguy sang it better XD",
  3611.             "authorDisplayName": "Ben Morton",
  3612.             "authorChannelUrl": "http://www.youtube.com/channel/UCUBHnvWkjc-zjcDgLWKZTaQ",
  3613.             "authorChannelId": {
  3614.               "value": "UCUBHnvWkjc-zjcDgLWKZTaQ"
  3615.             },
  3616.             "canRate": true,
  3617.             "viewerRating": "none",
  3618.             "likeCount": 5,
  3619.             "publishedAt": "2014-02-10T01:34:19Z",
  3620.             "updatedAt": "2014-02-10T01:34:19Z"
  3621.           }
  3622.         },
  3623.         "canReply": true,
  3624.         "totalReplyCount": 0,
  3625.         "isPublic": true
  3626.       }
  3627.     },
  3628.     {
  3629.       "kind": "youtube#commentThread",
  3630.       "etag": "HoIWpA_DC3SmB8XUsQaNp78sZbk",
  3631.       "id": "UgjqJ70k6yBW_XgCoAEC",
  3632.       "snippet": {
  3633.         "videoId": "atnSTtiWU5E",
  3634.         "topLevelComment": {
  3635.           "kind": "youtube#comment",
  3636.           "etag": "1anOYpsxTdzQOq1SpTJcywlNoKs",
  3637.           "id": "UgjqJ70k6yBW_XgCoAEC",
  3638.           "snippet": {
  3639.             "videoId": "atnSTtiWU5E",
  3640.             "textDisplay": "So according to Eurobeat on the livestream, this was the first ever brony song that started it all =D\u003cbr\u003e\u003cbr\u003eJust, wow, a brilliant way to kick off brony music. =)",
  3641.             "textOriginal": "So according to Eurobeat on the livestream, this was the first ever brony song that started it all =D\n\nJust, wow, a brilliant way to kick off brony music. =)",
  3642.             "authorDisplayName": "FritzyBeat",
  3643.             "authorChannelUrl": "http://www.youtube.com/channel/UCybhzNv4lLfKc1gQ09Cqx6g",
  3644.             "authorChannelId": {
  3645.               "value": "UCybhzNv4lLfKc1gQ09Cqx6g"
  3646.             },
  3647.             "canRate": true,
  3648.             "viewerRating": "none",
  3649.             "likeCount": 217,
  3650.             "publishedAt": "2014-02-03T04:11:30Z",
  3651.             "updatedAt": "2014-02-03T04:11:30Z"
  3652.           }
  3653.         },
  3654.         "canReply": true,
  3655.         "totalReplyCount": 3,
  3656.         "isPublic": true
  3657.       },
  3658.       "replies": {
  3659.         "comments": [
  3660.           {
  3661.             "kind": "youtube#comment",
  3662.             "etag": "xHqQIsLJoCTRayjlvG42iakft2E",
  3663.             "id": "UgjqJ70k6yBW_XgCoAEC.7-H0Z7-PMRV9RWbteuoVsd",
  3664.             "snippet": {
  3665.               "videoId": "atnSTtiWU5E",
  3666.               "textDisplay": "7 years ago oh my",
  3667.               "textOriginal": "7 years ago oh my",
  3668.               "parentId": "UgjqJ70k6yBW_XgCoAEC",
  3669.               "authorDisplayName": "fuyu",
  3670.               "authorChannelUrl": "http://www.youtube.com/channel/UCKrnke2BOTGluXimZHmJWaw",
  3671.               "authorChannelId": {
  3672.                 "value": "UCKrnke2BOTGluXimZHmJWaw"
  3673.               },
  3674.               "canRate": true,
  3675.               "viewerRating": "none",
  3676.               "likeCount": 0,
  3677.               "publishedAt": "2021-08-26T19:01:04Z",
  3678.               "updatedAt": "2021-08-26T19:01:04Z"
  3679.             }
  3680.           },
  3681.           {
  3682.             "kind": "youtube#comment",
  3683.             "etag": "BXjDgXJZQU3CTE3qy6Y-qyw37II",
  3684.             "id": "UgjqJ70k6yBW_XgCoAEC.7-H0Z7-PMRV76nhcfTg_x2",
  3685.             "snippet": {
  3686.               "videoId": "atnSTtiWU5E",
  3687.               "textDisplay": "@GDOutOfContextGD Haha, that's cool X3 I love going through all my old liked things to see what sort of stuff I was discovering when I first found out about the show X3 ",
  3688.               "textOriginal": "@GDOutOfContextGD Haha, that's cool X3 I love going through all my old liked things to see what sort of stuff I was discovering when I first found out about the show X3 ",
  3689.               "parentId": "UgjqJ70k6yBW_XgCoAEC",
  3690.               "authorDisplayName": "FritzyBeat",
  3691.               "authorChannelUrl": "http://www.youtube.com/channel/UCybhzNv4lLfKc1gQ09Cqx6g",
  3692.               "authorChannelId": {
  3693.                 "value": "UCybhzNv4lLfKc1gQ09Cqx6g"
  3694.               },
  3695.               "canRate": true,
  3696.               "viewerRating": "none",
  3697.               "likeCount": 3,
  3698.               "publishedAt": "2014-08-09T05:51:17Z",
  3699.               "updatedAt": "2014-08-09T05:51:17Z"
  3700.             }
  3701.           },
  3702.           {
  3703.             "kind": "youtube#comment",
  3704.             "etag": "q-zU7ZVAmwos1ORin54lnqa4Y4M",
  3705.             "id": "UgjqJ70k6yBW_XgCoAEC.7-H0Z7-PMRV76nYe6FT71_",
  3706.             "snippet": {
  3707.               "videoId": "atnSTtiWU5E",
  3708.               "textDisplay": "If I recall correctly, this was the first brony related piece of content I had ever heard/seen. I actually believed it was part of the show's OST, but I never looked into it (obviously).\u003cbr\u003e\u003cbr\u003eI actually found it again when looking through my Liked playlist after Youtube changed the Liked playlist so now you could see all of it (not just the last 100 items added).\u003cbr\u003e\u003cbr\u003eHaving said that, it was the first brony related content I liked. I can remember why.\u003cbr\u003e\u003cbr\u003eNote: I didn't really know what a brony was at the time.",
  3709.               "textOriginal": "If I recall correctly, this was the first brony related piece of content I had ever heard/seen. I actually believed it was part of the show's OST, but I never looked into it (obviously).\n\nI actually found it again when looking through my Liked playlist after Youtube changed the Liked playlist so now you could see all of it (not just the last 100 items added).\n\nHaving said that, it was the first brony related content I liked. I can remember why.\n\nNote: I didn't really know what a brony was at the time.",
  3710.               "parentId": "UgjqJ70k6yBW_XgCoAEC",
  3711.               "authorDisplayName": "GDOutOfContextGD",
  3712.               "authorChannelUrl": "http://www.youtube.com/channel/UCSYGyUN1XXIR8AV9geSq_wQ",
  3713.               "authorChannelId": {
  3714.                 "value": "UCSYGyUN1XXIR8AV9geSq_wQ"
  3715.               },
  3716.               "canRate": true,
  3717.               "viewerRating": "none",
  3718.               "likeCount": 7,
  3719.               "publishedAt": "2014-08-09T04:24:06Z",
  3720.               "updatedAt": "2014-08-09T04:24:06Z"
  3721.             }
  3722.           }
  3723.         ]
  3724.       }
  3725.     },
  3726.     {
  3727.       "kind": "youtube#commentThread",
  3728.       "etag": "VsPpV1obMiApH6qKq2_a6te5Xok",
  3729.       "id": "Ugh4-lzdhsfZuXgCoAEC",
  3730.       "snippet": {
  3731.         "videoId": "atnSTtiWU5E",
  3732.         "topLevelComment": {
  3733.           "kind": "youtube#comment",
  3734.           "etag": "Ewcu08xLUueiWH7m0zHTSBVN3Rk",
  3735.           "id": "Ugh4-lzdhsfZuXgCoAEC",
  3736.           "snippet": {
  3737.             "videoId": "atnSTtiWU5E",
  3738.             "textDisplay": "3 years old now.",
  3739.             "textOriginal": "3 years old now.",
  3740.             "authorDisplayName": "Kaira Fenir",
  3741.             "authorChannelUrl": "http://www.youtube.com/channel/UCb5Lz3RAqJs6EdO4s-HYyWQ",
  3742.             "authorChannelId": {
  3743.               "value": "UCb5Lz3RAqJs6EdO4s-HYyWQ"
  3744.             },
  3745.             "canRate": true,
  3746.             "viewerRating": "none",
  3747.             "likeCount": 0,
  3748.             "publishedAt": "2014-01-27T22:41:55Z",
  3749.             "updatedAt": "2014-01-27T22:41:55Z"
  3750.           }
  3751.         },
  3752.         "canReply": true,
  3753.         "totalReplyCount": 1,
  3754.         "isPublic": true
  3755.       },
  3756.       "replies": {
  3757.         "comments": [
  3758.           {
  3759.             "kind": "youtube#comment",
  3760.             "etag": "2hIFycmNLRToBWZ333uGTBxwuJc",
  3761.             "id": "Ugh4-lzdhsfZuXgCoAEC.7-H0Z7-M_CQ70cLYbxe1ck",
  3762.             "snippet": {
  3763.               "videoId": "atnSTtiWU5E",
  3764.               "textDisplay": "But still good :33",
  3765.               "textOriginal": "But still good :33",
  3766.               "parentId": "Ugh4-lzdhsfZuXgCoAEC",
  3767.               "authorDisplayName": "Wishy",
  3768.               "authorChannelUrl": "http://www.youtube.com/channel/UCjeli0BIw8K3LHrjrmLpmjw",
  3769.               "authorChannelId": {
  3770.                 "value": "UCjeli0BIw8K3LHrjrmLpmjw"
  3771.               },
  3772.               "canRate": true,
  3773.               "viewerRating": "none",
  3774.               "likeCount": 9,
  3775.               "publishedAt": "2014-03-02T11:20:03Z",
  3776.               "updatedAt": "2014-03-02T11:20:03Z"
  3777.             }
  3778.           }
  3779.         ]
  3780.       }
  3781.     },
  3782.     {
  3783.       "kind": "youtube#commentThread",
  3784.       "etag": "Y2AJUMZSQ6rJYAZBG8U-XnVi4lQ",
  3785.       "id": "UgipTrRG61pFkXgCoAEC",
  3786.       "snippet": {
  3787.         "videoId": "atnSTtiWU5E",
  3788.         "topLevelComment": {
  3789.           "kind": "youtube#comment",
  3790.           "etag": "sYE0hRa-bjXOygq1WUfXCt8RkXQ",
  3791.           "id": "UgipTrRG61pFkXgCoAEC",
  3792.           "snippet": {
  3793.             "videoId": "atnSTtiWU5E",
  3794.             "textDisplay": "luna 1",
  3795.             "textOriginal": "luna 1",
  3796.             "authorDisplayName": "Oneohtrix",
  3797.             "authorChannelUrl": "http://www.youtube.com/channel/UC2huOUkaEq6G5UbbKvtPrLg",
  3798.             "authorChannelId": {
  3799.               "value": "UC2huOUkaEq6G5UbbKvtPrLg"
  3800.             },
  3801.             "canRate": true,
  3802.             "viewerRating": "none",
  3803.             "likeCount": 0,
  3804.             "publishedAt": "2014-01-12T18:21:41Z",
  3805.             "updatedAt": "2014-01-12T18:21:41Z"
  3806.           }
  3807.         },
  3808.         "canReply": true,
  3809.         "totalReplyCount": 0,
  3810.         "isPublic": true
  3811.       }
  3812.     },
  3813.     {
  3814.       "kind": "youtube#commentThread",
  3815.       "etag": "CT2goZIrgxAPcJF2xkaSR40pUak",
  3816.       "id": "UghXBxfB1gFk3XgCoAEC",
  3817.       "snippet": {
  3818.         "videoId": "atnSTtiWU5E",
  3819.         "topLevelComment": {
  3820.           "kind": "youtube#comment",
  3821.           "etag": "7FP0zZ1bfedfgrVdj0yNfD85RU8",
  3822.           "id": "UghXBxfB1gFk3XgCoAEC",
  3823.           "snippet": {
  3824.             "videoId": "atnSTtiWU5E",
  3825.             "textDisplay": "SHOW!",
  3826.             "textOriginal": "SHOW!",
  3827.             "authorDisplayName": "juju gezinha",
  3828.             "authorChannelUrl": "http://www.youtube.com/channel/UCna_YZGefwf8FWC8Uj5m-CQ",
  3829.             "authorChannelId": {
  3830.               "value": "UCna_YZGefwf8FWC8Uj5m-CQ"
  3831.             },
  3832.             "canRate": true,
  3833.             "viewerRating": "none",
  3834.             "likeCount": 0,
  3835.             "publishedAt": "2013-12-22T15:59:22Z",
  3836.             "updatedAt": "2013-12-22T15:59:22Z"
  3837.           }
  3838.         },
  3839.         "canReply": true,
  3840.         "totalReplyCount": 0,
  3841.         "isPublic": true
  3842.       }
  3843.     },
  3844.     {
  3845.       "kind": "youtube#commentThread",
  3846.       "etag": "RZGAHr1vsj6LtdL3aOGBaEoNXfo",
  3847.       "id": "UghIhBfgNYhbcHgCoAEC",
  3848.       "snippet": {
  3849.         "videoId": "atnSTtiWU5E",
  3850.         "topLevelComment": {
  3851.           "kind": "youtube#comment",
  3852.           "etag": "P7GC6l6u-_kH0gaAdLbzlf3N9zY",
  3853.           "id": "UghIhBfgNYhbcHgCoAEC",
  3854.           "snippet": {
  3855.             "videoId": "atnSTtiWU5E",
  3856.             "textDisplay": "LUNA GAME",
  3857.             "textOriginal": "LUNA GAME",
  3858.             "authorDisplayName": "Jupiter9099",
  3859.             "authorChannelUrl": "http://www.youtube.com/channel/UC-3maGRiFhqDRa2FAT4IByQ",
  3860.             "authorChannelId": {
  3861.               "value": "UC-3maGRiFhqDRa2FAT4IByQ"
  3862.             },
  3863.             "canRate": true,
  3864.             "viewerRating": "none",
  3865.             "likeCount": 34,
  3866.             "publishedAt": "2013-11-17T19:15:24Z",
  3867.             "updatedAt": "2013-11-17T19:15:24Z"
  3868.           }
  3869.         },
  3870.         "canReply": true,
  3871.         "totalReplyCount": 1,
  3872.         "isPublic": true
  3873.       },
  3874.       "replies": {
  3875.         "comments": [
  3876.           {
  3877.             "kind": "youtube#comment",
  3878.             "etag": "SPoVpicM-5kdDg2srFm9LGCvkQg",
  3879.             "id": "UghIhBfgNYhbcHgCoAEC.7-H0Z7-2tdY7HYHjX_PcDo",
  3880.             "snippet": {
  3881.               "videoId": "atnSTtiWU5E",
  3882.               "textDisplay": "lololololol dat avatar\u003cbr\u003eP&S /w G",
  3883.               "textOriginal": "lololololol dat avatar\nP&S /w G",
  3884.               "parentId": "UghIhBfgNYhbcHgCoAEC",
  3885.               "authorDisplayName": "Nannerpuss",
  3886.               "authorChannelUrl": "http://www.youtube.com/channel/UCtW3BItvvsQtJXtP97rew3Q",
  3887.               "authorChannelId": {
  3888.                 "value": "UCtW3BItvvsQtJXtP97rew3Q"
  3889.               },
  3890.               "canRate": true,
  3891.               "viewerRating": "none",
  3892.               "likeCount": 1,
  3893.               "publishedAt": "2015-02-14T21:37:42Z",
  3894.               "updatedAt": "2015-02-14T21:37:42Z"
  3895.             }
  3896.           }
  3897.         ]
  3898.       }
  3899.     },
  3900.     {
  3901.       "kind": "youtube#commentThread",
  3902.       "etag": "dbLeF0-LL0Nj2SDVAfgYo46if0A",
  3903.       "id": "UggLes4gsOD3f3gCoAEC",
  3904.       "snippet": {
  3905.         "videoId": "atnSTtiWU5E",
  3906.         "topLevelComment": {
  3907.           "kind": "youtube#comment",
  3908.           "etag": "cxjgckI4JCUsGe5sA8q8gdGjwtM",
  3909.           "id": "UggLes4gsOD3f3gCoAEC",
  3910.           "snippet": {
  3911.             "videoId": "atnSTtiWU5E",
  3912.             "textDisplay": "Luna Game 1 o_0\u003cbr\u003e\u003cbr\u003eNice!!",
  3913.             "textOriginal": "Luna Game 1 o_0\n\nNice!!",
  3914.             "authorDisplayName": "SamXala",
  3915.             "authorChannelUrl": "http://www.youtube.com/channel/UC0i672IzvAV_huMs8lO0S8w",
  3916.             "authorChannelId": {
  3917.               "value": "UC0i672IzvAV_huMs8lO0S8w"
  3918.             },
  3919.             "canRate": true,
  3920.             "viewerRating": "none",
  3921.             "likeCount": 7,
  3922.             "publishedAt": "2013-11-14T04:05:03Z",
  3923.             "updatedAt": "2013-11-14T04:05:03Z"
  3924.           }
  3925.         },
  3926.         "canReply": true,
  3927.         "totalReplyCount": 0,
  3928.         "isPublic": true
  3929.       }
  3930.     }
  3931.   ]
  3932. }
  3933. {
  3934.   "kind": "youtube#commentThreadListResponse",
  3935.   "etag": "RMKcfx6Xc-gk58n6SoST1avrbXM",
  3936.   "nextPageToken": "QURTSl9pMzd2cklrcC0tZGNEU0xpOUd0OXpqVDVkR0NjUkxGR2laTEZnRDczRDdpdWZBWU5KLTdvSUh4bWtFU2NXX2FlVFR3TE5PMnZmdw==",
  3937.   "pageInfo": {
  3938.     "totalResults": 100,
  3939.     "resultsPerPage": 100
  3940.   },
  3941.   "items": [
  3942.     {
  3943.       "kind": "youtube#commentThread",
  3944.       "etag": "mXOsFfxVG3nV3HtIZEK42c9ZujE",
  3945.       "id": "UgxJKqoz4jjPQhTAaQF4AaABAg",
  3946.       "snippet": {
  3947.         "videoId": "atnSTtiWU5E",
  3948.         "topLevelComment": {
  3949.           "kind": "youtube#comment",
  3950.           "etag": "cCCXcCXL7bxhTQM00jsMmf4R-tE",
  3951.           "id": "UgxJKqoz4jjPQhTAaQF4AaABAg",
  3952.           "snippet": {
  3953.             "videoId": "atnSTtiWU5E",
  3954.             "textDisplay": "two of my favorite fandoms together? creepypasta's and bronys? oh my gosh oh my gosh oh my gosh oh my gosh!",
  3955.             "textOriginal": "two of my favorite fandoms together? creepypasta's and bronys? oh my gosh oh my gosh oh my gosh oh my gosh!",
  3956.             "authorDisplayName": "Akko Chan",
  3957.             "authorChannelUrl": "http://www.youtube.com/channel/UCSZyX0m0kJG_RxIi1rKKcPg",
  3958.             "authorChannelId": {
  3959.               "value": "UCSZyX0m0kJG_RxIi1rKKcPg"
  3960.             },
  3961.             "canRate": true,
  3962.             "viewerRating": "none",
  3963.             "likeCount": 0,
  3964.             "publishedAt": "2013-10-02T21:30:33Z",
  3965.             "updatedAt": "2013-10-02T21:30:33Z"
  3966.           }
  3967.         },
  3968.         "canReply": true,
  3969.         "totalReplyCount": 0,
  3970.         "isPublic": true
  3971.       }
  3972.     },
  3973.     {
  3974.       "kind": "youtube#commentThread",
  3975.       "etag": "Tir_dHrdwocldpcK947PMEWXVRk",
  3976.       "id": "UgzQQMMGcqet1qPumkp4AaABAg",
  3977.       "snippet": {
  3978.         "videoId": "atnSTtiWU5E",
  3979.         "topLevelComment": {
  3980.           "kind": "youtube#comment",
  3981.           "etag": "LPKJsVTiz3eaVwpQRy0_KKrP_4I",
  3982.           "id": "UgzQQMMGcqet1qPumkp4AaABAg",
  3983.           "snippet": {
  3984.             "videoId": "atnSTtiWU5E",
  3985.             "textDisplay": "Scroll down anthem",
  3986.             "textOriginal": "Scroll down anthem",
  3987.             "authorDisplayName": "Sammy Afe",
  3988.             "authorChannelUrl": "http://www.youtube.com/channel/UCyjnTH9m8D_49l4VZWgpzxg",
  3989.             "authorChannelId": {
  3990.               "value": "UCyjnTH9m8D_49l4VZWgpzxg"
  3991.             },
  3992.             "canRate": true,
  3993.             "viewerRating": "none",
  3994.             "likeCount": 0,
  3995.             "publishedAt": "2013-09-26T01:40:14Z",
  3996.             "updatedAt": "2013-09-26T01:40:14Z"
  3997.           }
  3998.         },
  3999.         "canReply": true,
  4000.         "totalReplyCount": 0,
  4001.         "isPublic": true
  4002.       }
  4003.     },
  4004.     {
  4005.       "kind": "youtube#commentThread",
  4006.       "etag": "R5ksR6dGgQgErudim1Wk4D8Lm9E",
  4007.       "id": "UgyUiNLtpcdL_496o6F4AaABAg",
  4008.       "snippet": {
  4009.         "videoId": "atnSTtiWU5E",
  4010.         "topLevelComment": {
  4011.           "kind": "youtube#comment",
  4012.           "etag": "zn8N3t_R4qPe99IciLbiZKFGWMk",
  4013.           "id": "UgyUiNLtpcdL_496o6F4AaABAg",
  4014.           "snippet": {
  4015.             "videoId": "atnSTtiWU5E",
  4016.             "textDisplay": "The start sounds like the Sonic Heroes boss theme.",
  4017.             "textOriginal": "The start sounds like the Sonic Heroes boss theme.",
  4018.             "authorDisplayName": "Magikarpador",
  4019.             "authorChannelUrl": "http://www.youtube.com/channel/UCZqlZavZCrK3UJPcAhxlttA",
  4020.             "authorChannelId": {
  4021.               "value": "UCZqlZavZCrK3UJPcAhxlttA"
  4022.             },
  4023.             "canRate": true,
  4024.             "viewerRating": "none",
  4025.             "likeCount": 0,
  4026.             "publishedAt": "2013-08-25T07:36:59Z",
  4027.             "updatedAt": "2013-08-25T07:36:59Z"
  4028.           }
  4029.         },
  4030.         "canReply": true,
  4031.         "totalReplyCount": 0,
  4032.         "isPublic": true
  4033.       }
  4034.     },
  4035.     {
  4036.       "kind": "youtube#commentThread",
  4037.       "etag": "73ZZdb135EmKDJNP-xxf-IcsBjw",
  4038.       "id": "Ugy8wcr1BwndqVZ3mqV4AaABAg",
  4039.       "snippet": {
  4040.         "videoId": "atnSTtiWU5E",
  4041.         "topLevelComment": {
  4042.           "kind": "youtube#comment",
  4043.           "etag": "PKmoCPPvur5mnJN9wqYMAbUhSZg",
  4044.           "id": "Ugy8wcr1BwndqVZ3mqV4AaABAg",
  4045.           "snippet": {
  4046.             "videoId": "atnSTtiWU5E",
  4047.             "textDisplay": "Brony's will always amaze me, one short song or even a sentance! like fluttershy wanting to be a tree can turn into a full 3 minute long song!",
  4048.             "textOriginal": "Brony's will always amaze me, one short song or even a sentance! like fluttershy wanting to be a tree can turn into a full 3 minute long song!",
  4049.             "authorDisplayName": "Akko Chan",
  4050.             "authorChannelUrl": "http://www.youtube.com/channel/UCSZyX0m0kJG_RxIi1rKKcPg",
  4051.             "authorChannelId": {
  4052.               "value": "UCSZyX0m0kJG_RxIi1rKKcPg"
  4053.             },
  4054.             "canRate": true,
  4055.             "viewerRating": "none",
  4056.             "likeCount": 0,
  4057.             "publishedAt": "2013-08-14T23:17:17Z",
  4058.             "updatedAt": "2013-08-14T23:17:17Z"
  4059.           }
  4060.         },
  4061.         "canReply": true,
  4062.         "totalReplyCount": 0,
  4063.         "isPublic": true
  4064.       }
  4065.     },
  4066.     {
  4067.       "kind": "youtube#commentThread",
  4068.       "etag": "Gch8rflMm5yC0p6B4GkjmnqYdQ8",
  4069.       "id": "UgyKl4ZT1mThuB3iXz94AaABAg",
  4070.       "snippet": {
  4071.         "videoId": "atnSTtiWU5E",
  4072.         "topLevelComment": {
  4073.           "kind": "youtube#comment",
  4074.           "etag": "j3tDjPcZ-QkO5Ecbp0-VpIgwW7Q",
  4075.           "id": "UgyKl4ZT1mThuB3iXz94AaABAg",
  4076.           "snippet": {
  4077.             "videoId": "atnSTtiWU5E",
  4078.             "textDisplay": "I love it",
  4079.             "textOriginal": "I love it",
  4080.             "authorDisplayName": "Nikola Damnjanovic",
  4081.             "authorChannelUrl": "http://www.youtube.com/channel/UCioDPhjxoDDe_c-j0LY8Zhw",
  4082.             "authorChannelId": {
  4083.               "value": "UCioDPhjxoDDe_c-j0LY8Zhw"
  4084.             },
  4085.             "canRate": true,
  4086.             "viewerRating": "none",
  4087.             "likeCount": 0,
  4088.             "publishedAt": "2013-08-02T18:49:38Z",
  4089.             "updatedAt": "2013-08-02T18:49:38Z"
  4090.           }
  4091.         },
  4092.         "canReply": true,
  4093.         "totalReplyCount": 0,
  4094.         "isPublic": true
  4095.       }
  4096.     },
  4097.     {
  4098.       "kind": "youtube#commentThread",
  4099.       "etag": "zrCxZSZhDd-UIvylbkOHMMswAcI",
  4100.       "id": "Ugxj-jZRfN3cZu1dyex4AaABAg",
  4101.       "snippet": {
  4102.         "videoId": "atnSTtiWU5E",
  4103.         "topLevelComment": {
  4104.           "kind": "youtube#comment",
  4105.           "etag": "dKzvX_CUr4KY7UWI6b533FIJX4g",
  4106.           "id": "Ugxj-jZRfN3cZu1dyex4AaABAg",
  4107.           "snippet": {
  4108.             "videoId": "atnSTtiWU5E",
  4109.             "textDisplay": "And my favourite too :)",
  4110.             "textOriginal": "And my favourite too :)",
  4111.             "authorDisplayName": "MultiGoban",
  4112.             "authorChannelUrl": "http://www.youtube.com/channel/UCQ59ADAdG-gC1ViI8cU6JRg",
  4113.             "authorChannelId": {
  4114.               "value": "UCQ59ADAdG-gC1ViI8cU6JRg"
  4115.             },
  4116.             "canRate": true,
  4117.             "viewerRating": "none",
  4118.             "likeCount": 0,
  4119.             "publishedAt": "2013-08-02T18:39:02Z",
  4120.             "updatedAt": "2013-08-02T18:39:02Z"
  4121.           }
  4122.         },
  4123.         "canReply": true,
  4124.         "totalReplyCount": 0,
  4125.         "isPublic": true
  4126.       }
  4127.     },
  4128.     {
  4129.       "kind": "youtube#commentThread",
  4130.       "etag": "wMHD_PWl1AbkVDTTpXZn2orq4L8",
  4131.       "id": "Ugxheizu1mDRwSqCO194AaABAg",
  4132.       "snippet": {
  4133.         "videoId": "atnSTtiWU5E",
  4134.         "topLevelComment": {
  4135.           "kind": "youtube#comment",
  4136.           "etag": "PT63HGwgsaH3vdwCIA3gHmJ8g-E",
  4137.           "id": "Ugxheizu1mDRwSqCO194AaABAg",
  4138.           "snippet": {
  4139.             "videoId": "atnSTtiWU5E",
  4140.             "textDisplay": "I wish this was on iTunes",
  4141.             "textOriginal": "I wish this was on iTunes",
  4142.             "authorDisplayName": "Joseph Wittbrodt",
  4143.             "authorChannelUrl": "http://www.youtube.com/channel/UCtHLdzPjlf2nwbDml7SsTOg",
  4144.             "authorChannelId": {
  4145.               "value": "UCtHLdzPjlf2nwbDml7SsTOg"
  4146.             },
  4147.             "canRate": true,
  4148.             "viewerRating": "none",
  4149.             "likeCount": 0,
  4150.             "publishedAt": "2013-08-02T09:08:31Z",
  4151.             "updatedAt": "2013-08-02T09:08:31Z"
  4152.           }
  4153.         },
  4154.         "canReply": true,
  4155.         "totalReplyCount": 0,
  4156.         "isPublic": true
  4157.       }
  4158.     },
  4159.     {
  4160.       "kind": "youtube#commentThread",
  4161.       "etag": "p0B_XCNKSp_yPyiIeVYVgcs5dMU",
  4162.       "id": "UgzsYAoGvUrMSJ-LqJN4AaABAg",
  4163.       "snippet": {
  4164.         "videoId": "atnSTtiWU5E",
  4165.         "topLevelComment": {
  4166.           "kind": "youtube#comment",
  4167.           "etag": "TMeRZEgvqr74N0G-O19H47Uz8sY",
  4168.           "id": "UgzsYAoGvUrMSJ-LqJN4AaABAg",
  4169.           "snippet": {
  4170.             "videoId": "atnSTtiWU5E",
  4171.             "textDisplay": "Ho.Lee.Shiet.",
  4172.             "textOriginal": "Ho.Lee.Shiet.",
  4173.             "authorDisplayName": "Valla hai",
  4174.             "authorChannelUrl": "http://www.youtube.com/channel/UClP_VLFSdS88OUXcCvqmBPg",
  4175.             "authorChannelId": {
  4176.               "value": "UClP_VLFSdS88OUXcCvqmBPg"
  4177.             },
  4178.             "canRate": true,
  4179.             "viewerRating": "none",
  4180.             "likeCount": 0,
  4181.             "publishedAt": "2013-08-02T02:49:38Z",
  4182.             "updatedAt": "2013-08-02T02:49:38Z"
  4183.           }
  4184.         },
  4185.         "canReply": true,
  4186.         "totalReplyCount": 0,
  4187.         "isPublic": true
  4188.       }
  4189.     },
  4190.     {
  4191.       "kind": "youtube#commentThread",
  4192.       "etag": "OfPZAtTCoVoOZMbS-zcRG7saI5E",
  4193.       "id": "UgxC22yeEFtkY6BLy-h4AaABAg",
  4194.       "snippet": {
  4195.         "videoId": "atnSTtiWU5E",
  4196.         "topLevelComment": {
  4197.           "kind": "youtube#comment",
  4198.           "etag": "WIxl_JruubXZJBk-w53-tVk3BhY",
  4199.           "id": "UgxC22yeEFtkY6BLy-h4AaABAg",
  4200.           "snippet": {
  4201.             "videoId": "atnSTtiWU5E",
  4202.             "textDisplay": "Probably scared your pants off eh Jeff?\n\nWell its time to go sleep.\n\n[Last known comment of this user]",
  4203.             "textOriginal": "Probably scared your pants off eh Jeff?\n\nWell its time to go sleep.\n\n[Last known comment of this user]",
  4204.             "authorDisplayName": "Sammy Afe",
  4205.             "authorChannelUrl": "http://www.youtube.com/channel/UCyjnTH9m8D_49l4VZWgpzxg",
  4206.             "authorChannelId": {
  4207.               "value": "UCyjnTH9m8D_49l4VZWgpzxg"
  4208.             },
  4209.             "canRate": true,
  4210.             "viewerRating": "none",
  4211.             "likeCount": 0,
  4212.             "publishedAt": "2013-07-28T01:56:41Z",
  4213.             "updatedAt": "2013-07-28T01:56:41Z"
  4214.           }
  4215.         },
  4216.         "canReply": true,
  4217.         "totalReplyCount": 0,
  4218.         "isPublic": true
  4219.       }
  4220.     },
  4221.     {
  4222.       "kind": "youtube#commentThread",
  4223.       "etag": "YVNo8SwHCuDCu-xvhlANUZPAIio",
  4224.       "id": "UgwJPX7RUD7aQ2oB-AB4AaABAg",
  4225.       "snippet": {
  4226.         "videoId": "atnSTtiWU5E",
  4227.         "topLevelComment": {
  4228.           "kind": "youtube#comment",
  4229.           "etag": "WNtzkeoGLpAVX8SSLzjJGk1-zuU",
  4230.           "id": "UgwJPX7RUD7aQ2oB-AB4AaABAg",
  4231.           "snippet": {
  4232.             "videoId": "atnSTtiWU5E",
  4233.             "textDisplay": "... and a new youtube legens is born",
  4234.             "textOriginal": "... and a new youtube legens is born",
  4235.             "authorDisplayName": "Young Discord",
  4236.             "authorChannelUrl": "http://www.youtube.com/channel/UCdrXymCfRJEFBQ3mlcqLkIg",
  4237.             "authorChannelId": {
  4238.               "value": "UCdrXymCfRJEFBQ3mlcqLkIg"
  4239.             },
  4240.             "canRate": true,
  4241.             "viewerRating": "none",
  4242.             "likeCount": 0,
  4243.             "publishedAt": "2013-07-23T06:45:05Z",
  4244.             "updatedAt": "2013-07-23T06:45:05Z"
  4245.           }
  4246.         },
  4247.         "canReply": true,
  4248.         "totalReplyCount": 0,
  4249.         "isPublic": true
  4250.       }
  4251.     },
  4252.     {
  4253.       "kind": "youtube#commentThread",
  4254.       "etag": "HJPY8868Fm74Y8Nuwzk_pp__NzY",
  4255.       "id": "UgxSkEa1ZpBWJq84jrl4AaABAg",
  4256.       "snippet": {
  4257.         "videoId": "atnSTtiWU5E",
  4258.         "topLevelComment": {
  4259.           "kind": "youtube#comment",
  4260.           "etag": "jOkIFNBy8tg59CQvwuhlFDLkYkg",
  4261.           "id": "UgxSkEa1ZpBWJq84jrl4AaABAg",
  4262.           "snippet": {
  4263.             "videoId": "atnSTtiWU5E",
  4264.             "textDisplay": "I know I'm starting to sound like a smartass, but my Google Research shows that it is one of the few realistic anime's :)\nP.S. HELL YEAH IT IS!",
  4265.             "textOriginal": "I know I'm starting to sound like a smartass, but my Google Research shows that it is one of the few realistic anime's :)\nP.S. HELL YEAH IT IS!",
  4266.             "authorDisplayName": "Nigami",
  4267.             "authorChannelUrl": "http://www.youtube.com/channel/UC9hRhPnrnCoo1Y2bsyrZfVQ",
  4268.             "authorChannelId": {
  4269.               "value": "UC9hRhPnrnCoo1Y2bsyrZfVQ"
  4270.             },
  4271.             "canRate": true,
  4272.             "viewerRating": "none",
  4273.             "likeCount": 0,
  4274.             "publishedAt": "2013-07-22T15:12:13Z",
  4275.             "updatedAt": "2013-07-22T15:12:13Z"
  4276.           }
  4277.         },
  4278.         "canReply": true,
  4279.         "totalReplyCount": 0,
  4280.         "isPublic": true
  4281.       }
  4282.     },
  4283.     {
  4284.       "kind": "youtube#commentThread",
  4285.       "etag": "mvMjeZvMzOxNAfHkQr_siQwxlec",
  4286.       "id": "Ugw9VCO49cgQKFUgFvx4AaABAg",
  4287.       "snippet": {
  4288.         "videoId": "atnSTtiWU5E",
  4289.         "topLevelComment": {
  4290.           "kind": "youtube#comment",
  4291.           "etag": "TyyAvMCIiCjjJp7yRAmRWWj1GZE",
  4292.           "id": "Ugw9VCO49cgQKFUgFvx4AaABAg",
  4293.           "snippet": {
  4294.             "videoId": "atnSTtiWU5E",
  4295.             "textDisplay": "Initial D is the best anime ever!",
  4296.             "textOriginal": "Initial D is the best anime ever!",
  4297.             "authorDisplayName": "Young Punky",
  4298.             "authorChannelUrl": "http://www.youtube.com/channel/UCTOndd1hUrWg0b-zGSeXo9Q",
  4299.             "authorChannelId": {
  4300.               "value": "UCTOndd1hUrWg0b-zGSeXo9Q"
  4301.             },
  4302.             "canRate": true,
  4303.             "viewerRating": "none",
  4304.             "likeCount": 6,
  4305.             "publishedAt": "2013-07-21T05:56:03Z",
  4306.             "updatedAt": "2013-07-21T05:56:03Z"
  4307.           }
  4308.         },
  4309.         "canReply": true,
  4310.         "totalReplyCount": 0,
  4311.         "isPublic": true
  4312.       }
  4313.     },
  4314.     {
  4315.       "kind": "youtube#commentThread",
  4316.       "etag": "1aNzsgnxIju7lqFS8Qdyd_ck5Wc",
  4317.       "id": "UgwVguEsYUACaryQeCB4AaABAg",
  4318.       "snippet": {
  4319.         "videoId": "atnSTtiWU5E",
  4320.         "topLevelComment": {
  4321.           "kind": "youtube#comment",
  4322.           "etag": "N2LCFAChyVlf1zodywtmD49qmHE",
  4323.           "id": "UgwVguEsYUACaryQeCB4AaABAg",
  4324.           "snippet": {
  4325.             "videoId": "atnSTtiWU5E",
  4326.             "textDisplay": "same type of music :) (Super Eurobeat) I'm glad I'm not the only one who likes ponies AND initial D. BROHOOF! /) (unless you're NOT a brony?)",
  4327.             "textOriginal": "same type of music :) (Super Eurobeat) I'm glad I'm not the only one who likes ponies AND initial D. BROHOOF! /) (unless you're NOT a brony?)",
  4328.             "authorDisplayName": "Nigami",
  4329.             "authorChannelUrl": "http://www.youtube.com/channel/UC9hRhPnrnCoo1Y2bsyrZfVQ",
  4330.             "authorChannelId": {
  4331.               "value": "UC9hRhPnrnCoo1Y2bsyrZfVQ"
  4332.             },
  4333.             "canRate": true,
  4334.             "viewerRating": "none",
  4335.             "likeCount": 1,
  4336.             "publishedAt": "2013-07-18T14:56:48Z",
  4337.             "updatedAt": "2013-07-18T14:56:48Z"
  4338.           }
  4339.         },
  4340.         "canReply": true,
  4341.         "totalReplyCount": 0,
  4342.         "isPublic": true
  4343.       }
  4344.     },
  4345.     {
  4346.       "kind": "youtube#commentThread",
  4347.       "etag": "d_I88rxuH3thvL9Xti70_X5gjzM",
  4348.       "id": "Ugwut_OVydoXb_lBq4d4AaABAg",
  4349.       "snippet": {
  4350.         "videoId": "atnSTtiWU5E",
  4351.         "topLevelComment": {
  4352.           "kind": "youtube#comment",
  4353.           "etag": "DAUjMVpNFA14NicgJq24UUD7AC4",
  4354.           "id": "Ugwut_OVydoXb_lBq4d4AaABAg",
  4355.           "snippet": {
  4356.             "videoId": "atnSTtiWU5E",
  4357.             "textDisplay": "This sounds like it should be in a fighting game!",
  4358.             "textOriginal": "This sounds like it should be in a fighting game!",
  4359.             "authorDisplayName": "RabidBunny",
  4360.             "authorChannelUrl": "http://www.youtube.com/channel/UC4fzztuHyXiC6990sgu9URQ",
  4361.             "authorChannelId": {
  4362.               "value": "UC4fzztuHyXiC6990sgu9URQ"
  4363.             },
  4364.             "canRate": true,
  4365.             "viewerRating": "none",
  4366.             "likeCount": 0,
  4367.             "publishedAt": "2013-07-15T16:11:52Z",
  4368.             "updatedAt": "2013-07-15T16:11:52Z"
  4369.           }
  4370.         },
  4371.         "canReply": true,
  4372.         "totalReplyCount": 0,
  4373.         "isPublic": true
  4374.       }
  4375.     },
  4376.     {
  4377.       "kind": "youtube#commentThread",
  4378.       "etag": "OJU5rOk5mvLVUb6I3SzAIr4Ayl4",
  4379.       "id": "UgwI92IllMKugzbnFYl4AaABAg",
  4380.       "snippet": {
  4381.         "videoId": "atnSTtiWU5E",
  4382.         "topLevelComment": {
  4383.           "kind": "youtube#comment",
  4384.           "etag": "nYhC9y8lcQI2uX5sFBXrokE3nww",
  4385.           "id": "UgwI92IllMKugzbnFYl4AaABAg",
  4386.           "snippet": {
  4387.             "videoId": "atnSTtiWU5E",
  4388.             "textDisplay": "I think it's distortion guitar.",
  4389.             "textOriginal": "I think it's distortion guitar.",
  4390.             "authorDisplayName": "anxiousCrescendo",
  4391.             "authorChannelUrl": "http://www.youtube.com/channel/UCg_TcB8ES8xnkvJzgigXHdg",
  4392.             "authorChannelId": {
  4393.               "value": "UCg_TcB8ES8xnkvJzgigXHdg"
  4394.             },
  4395.             "canRate": true,
  4396.             "viewerRating": "none",
  4397.             "likeCount": 0,
  4398.             "publishedAt": "2013-07-03T16:54:41Z",
  4399.             "updatedAt": "2013-07-03T16:54:41Z"
  4400.           }
  4401.         },
  4402.         "canReply": true,
  4403.         "totalReplyCount": 0,
  4404.         "isPublic": true
  4405.       }
  4406.     },
  4407.     {
  4408.       "kind": "youtube#commentThread",
  4409.       "etag": "IPRuWttgU4uAgQq3n1cHqikj144",
  4410.       "id": "UgwyY5c1V4xILubyaxh4AaABAg",
  4411.       "snippet": {
  4412.         "videoId": "atnSTtiWU5E",
  4413.         "topLevelComment": {
  4414.           "kind": "youtube#comment",
  4415.           "etag": "82E3z_khbeFvcR2LdTvKa5x-JHQ",
  4416.           "id": "UgwyY5c1V4xILubyaxh4AaABAg",
  4417.           "snippet": {
  4418.             "videoId": "atnSTtiWU5E",
  4419.             "textDisplay": "ok why am I reminded of Initial D?",
  4420.             "textOriginal": "ok why am I reminded of Initial D?",
  4421.             "authorDisplayName": "Magic Berries Arcade",
  4422.             "authorChannelUrl": "http://www.youtube.com/channel/UCqXUbWB_DL8zt2zXxnSWU1Q",
  4423.             "authorChannelId": {
  4424.               "value": "UCqXUbWB_DL8zt2zXxnSWU1Q"
  4425.             },
  4426.             "canRate": true,
  4427.             "viewerRating": "none",
  4428.             "likeCount": 0,
  4429.             "publishedAt": "2013-06-23T11:20:50Z",
  4430.             "updatedAt": "2013-06-23T11:20:50Z"
  4431.           }
  4432.         },
  4433.         "canReply": true,
  4434.         "totalReplyCount": 0,
  4435.         "isPublic": true
  4436.       }
  4437.     },
  4438.     {
  4439.       "kind": "youtube#commentThread",
  4440.       "etag": "fAgVLqEWGOrqOXDwOLNcy0es0FY",
  4441.       "id": "UgzQepdJASonUnagAx54AaABAg",
  4442.       "snippet": {
  4443.         "videoId": "atnSTtiWU5E",
  4444.         "topLevelComment": {
  4445.           "kind": "youtube#comment",
  4446.           "etag": "xwAnxaPGwMKjJ88OewOzhORQQfU",
  4447.           "id": "UgzQepdJASonUnagAx54AaABAg",
  4448.           "snippet": {
  4449.             "videoId": "atnSTtiWU5E",
  4450.             "textDisplay": "ive set this as an ubercharge theme on my medigun on tf2",
  4451.             "textOriginal": "ive set this as an ubercharge theme on my medigun on tf2",
  4452.             "authorDisplayName": "Procrastinator64ds",
  4453.             "authorChannelUrl": "http://www.youtube.com/channel/UCJzcqEGHpzyD3T1XrkQcuuA",
  4454.             "authorChannelId": {
  4455.               "value": "UCJzcqEGHpzyD3T1XrkQcuuA"
  4456.             },
  4457.             "canRate": true,
  4458.             "viewerRating": "none",
  4459.             "likeCount": 0,
  4460.             "publishedAt": "2013-06-10T11:03:10Z",
  4461.             "updatedAt": "2013-06-10T11:03:10Z"
  4462.           }
  4463.         },
  4464.         "canReply": true,
  4465.         "totalReplyCount": 0,
  4466.         "isPublic": true
  4467.       }
  4468.     },
  4469.     {
  4470.       "kind": "youtube#commentThread",
  4471.       "etag": "iPGk95EYLP5TusOepbwbjfiHOAs",
  4472.       "id": "UgyjScaS_HLjlizrHgx4AaABAg",
  4473.       "snippet": {
  4474.         "videoId": "atnSTtiWU5E",
  4475.         "topLevelComment": {
  4476.           "kind": "youtube#comment",
  4477.           "etag": "0Q0NEWk0DVdio1Wy2aEJW4JIgpE",
  4478.           "id": "UgyjScaS_HLjlizrHgx4AaABAg",
  4479.           "snippet": {
  4480.             "videoId": "atnSTtiWU5E",
  4481.             "textDisplay": "Megaman X anybody?",
  4482.             "textOriginal": "Megaman X anybody?",
  4483.             "authorDisplayName": "Breathe_DAH",
  4484.             "authorChannelUrl": "http://www.youtube.com/channel/UC7IbU0hSPMZCbrZwMKv938A",
  4485.             "authorChannelId": {
  4486.               "value": "UC7IbU0hSPMZCbrZwMKv938A"
  4487.             },
  4488.             "canRate": true,
  4489.             "viewerRating": "none",
  4490.             "likeCount": 0,
  4491.             "publishedAt": "2013-06-06T20:18:36Z",
  4492.             "updatedAt": "2013-06-06T20:18:36Z"
  4493.           }
  4494.         },
  4495.         "canReply": true,
  4496.         "totalReplyCount": 0,
  4497.         "isPublic": true
  4498.       }
  4499.     },
  4500.     {
  4501.       "kind": "youtube#commentThread",
  4502.       "etag": "0Q6h4ymN0fdhcGsPyiY5rw3BOYs",
  4503.       "id": "Ugx9wDDtzMzUxx0Qd7p4AaABAg",
  4504.       "snippet": {
  4505.         "videoId": "atnSTtiWU5E",
  4506.         "topLevelComment": {
  4507.           "kind": "youtube#comment",
  4508.           "etag": "OC0i7ouQciXgML4Ly7fHylLTmlQ",
  4509.           "id": "Ugx9wDDtzMzUxx0Qd7p4AaABAg",
  4510.           "snippet": {
  4511.             "videoId": "atnSTtiWU5E",
  4512.             "textDisplay": "Wait, This is a remix I DO HAVE THE FIRST COVER",
  4513.             "textOriginal": "Wait, This is a remix I DO HAVE THE FIRST COVER",
  4514.             "authorDisplayName": "Joecoolman26",
  4515.             "authorChannelUrl": "http://www.youtube.com/channel/UCEIPN2HA3vol0H5Gm4romHA",
  4516.             "authorChannelId": {
  4517.               "value": "UCEIPN2HA3vol0H5Gm4romHA"
  4518.             },
  4519.             "canRate": true,
  4520.             "viewerRating": "none",
  4521.             "likeCount": 0,
  4522.             "publishedAt": "2013-05-18T04:04:30Z",
  4523.             "updatedAt": "2013-05-18T04:04:30Z"
  4524.           }
  4525.         },
  4526.         "canReply": true,
  4527.         "totalReplyCount": 0,
  4528.         "isPublic": true
  4529.       }
  4530.     },
  4531.     {
  4532.       "kind": "youtube#commentThread",
  4533.       "etag": "FZobk_0soBA8Ngyds05znmWp2fw",
  4534.       "id": "UgzTgAk1E7dfdMSl8Mh4AaABAg",
  4535.       "snippet": {
  4536.         "videoId": "atnSTtiWU5E",
  4537.         "topLevelComment": {
  4538.           "kind": "youtube#comment",
  4539.           "etag": "W0pUTOzdWVxD655MskUlZS6TTG4",
  4540.           "id": "UgzTgAk1E7dfdMSl8Mh4AaABAg",
  4541.           "snippet": {
  4542.             "videoId": "atnSTtiWU5E",
  4543.             "textDisplay": "Damnit!!!!!!! if I was four days earlier I would have the first FiM Remake/cover on the Internet!",
  4544.             "textOriginal": "Damnit!!!!!!! if I was four days earlier I would have the first FiM Remake/cover on the Internet!",
  4545.             "authorDisplayName": "Joecoolman26",
  4546.             "authorChannelUrl": "http://www.youtube.com/channel/UCEIPN2HA3vol0H5Gm4romHA",
  4547.             "authorChannelId": {
  4548.               "value": "UCEIPN2HA3vol0H5Gm4romHA"
  4549.             },
  4550.             "canRate": true,
  4551.             "viewerRating": "none",
  4552.             "likeCount": 0,
  4553.             "publishedAt": "2013-05-18T03:55:49Z",
  4554.             "updatedAt": "2013-05-18T03:55:49Z"
  4555.           }
  4556.         },
  4557.         "canReply": true,
  4558.         "totalReplyCount": 0,
  4559.         "isPublic": true
  4560.       }
  4561.     },
  4562.     {
  4563.       "kind": "youtube#commentThread",
  4564.       "etag": "kOG9xR7n1WF2a0a4cOLHkcGXj4w",
  4565.       "id": "UgysZepJ-d_xNYn9w7h4AaABAg",
  4566.       "snippet": {
  4567.         "videoId": "atnSTtiWU5E",
  4568.         "topLevelComment": {
  4569.           "kind": "youtube#comment",
  4570.           "etag": "v4BTYQw8sFAd85hbZqFBlR960Lo",
  4571.           "id": "UgysZepJ-d_xNYn9w7h4AaABAg",
  4572.           "snippet": {
  4573.             "videoId": "atnSTtiWU5E",
  4574.             "textDisplay": "isn't it steel guitar? im not sure",
  4575.             "textOriginal": "isn't it steel guitar? im not sure",
  4576.             "authorDisplayName": "Runagate",
  4577.             "authorChannelUrl": "http://www.youtube.com/channel/UCd3sbark8DzLRZp3BjsjW5w",
  4578.             "authorChannelId": {
  4579.               "value": "UCd3sbark8DzLRZp3BjsjW5w"
  4580.             },
  4581.             "canRate": true,
  4582.             "viewerRating": "none",
  4583.             "likeCount": 0,
  4584.             "publishedAt": "2013-05-16T18:55:14Z",
  4585.             "updatedAt": "2013-05-16T18:55:14Z"
  4586.           }
  4587.         },
  4588.         "canReply": true,
  4589.         "totalReplyCount": 0,
  4590.         "isPublic": true
  4591.       }
  4592.     },
  4593.     {
  4594.       "kind": "youtube#commentThread",
  4595.       "etag": "dPJePqq-J6BHS1w48V8yWAhBl9U",
  4596.       "id": "Ugzsaquiy4KsqkHs6TV4AaABAg",
  4597.       "snippet": {
  4598.         "videoId": "atnSTtiWU5E",
  4599.         "topLevelComment": {
  4600.           "kind": "youtube#comment",
  4601.           "etag": "VdmfqPn2gMRjfun1yldky-oRmrI",
  4602.           "id": "Ugzsaquiy4KsqkHs6TV4AaABAg",
  4603.           "snippet": {
  4604.             "videoId": "atnSTtiWU5E",
  4605.             "textDisplay": "whats the name of that guitar in 1:40???",
  4606.             "textOriginal": "whats the name of that guitar in 1:40???",
  4607.             "authorDisplayName": "Runagate",
  4608.             "authorChannelUrl": "http://www.youtube.com/channel/UCd3sbark8DzLRZp3BjsjW5w",
  4609.             "authorChannelId": {
  4610.               "value": "UCd3sbark8DzLRZp3BjsjW5w"
  4611.             },
  4612.             "canRate": true,
  4613.             "viewerRating": "none",
  4614.             "likeCount": 0,
  4615.             "publishedAt": "2013-05-16T18:54:56Z",
  4616.             "updatedAt": "2013-05-16T18:54:56Z"
  4617.           }
  4618.         },
  4619.         "canReply": true,
  4620.         "totalReplyCount": 0,
  4621.         "isPublic": true
  4622.       }
  4623.     },
  4624.     {
  4625.       "kind": "youtube#commentThread",
  4626.       "etag": "GPZmVrKrxL-ErLfkrFplKp5xsIE",
  4627.       "id": "UgwByiFrU4vs8decZhJ4AaABAg",
  4628.       "snippet": {
  4629.         "videoId": "atnSTtiWU5E",
  4630.         "topLevelComment": {
  4631.           "kind": "youtube#comment",
  4632.           "etag": "5woRqS4Ni22UP6-TzEG1ZUy8mjw",
  4633.           "id": "UgwByiFrU4vs8decZhJ4AaABAg",
  4634.           "snippet": {
  4635.             "videoId": "atnSTtiWU5E",
  4636.             "textDisplay": "Fluttershy is so cute!!!!",
  4637.             "textOriginal": "Fluttershy is so cute!!!!",
  4638.             "authorDisplayName": "amazonparrot975",
  4639.             "authorChannelUrl": "http://www.youtube.com/channel/UCpbYog4H7-zQ0HITGzKTDLw",
  4640.             "authorChannelId": {
  4641.               "value": "UCpbYog4H7-zQ0HITGzKTDLw"
  4642.             },
  4643.             "canRate": true,
  4644.             "viewerRating": "none",
  4645.             "likeCount": 0,
  4646.             "publishedAt": "2013-05-06T05:06:52Z",
  4647.             "updatedAt": "2013-05-06T05:06:52Z"
  4648.           }
  4649.         },
  4650.         "canReply": true,
  4651.         "totalReplyCount": 0,
  4652.         "isPublic": true
  4653.       }
  4654.     },
  4655.     {
  4656.       "kind": "youtube#commentThread",
  4657.       "etag": "A6h7gr5GJxxqY9vu153ayuD1E5A",
  4658.       "id": "UgysErJXQIJpajy7YL54AaABAg",
  4659.       "snippet": {
  4660.         "videoId": "atnSTtiWU5E",
  4661.         "topLevelComment": {
  4662.           "kind": "youtube#comment",
  4663.           "etag": "gZsi62E3l_kfsebj7zTHBbGcXBI",
  4664.           "id": "UgysErJXQIJpajy7YL54AaABAg",
  4665.           "snippet": {
  4666.             "videoId": "atnSTtiWU5E",
  4667.             "textDisplay": "dat game... hope i could get i legally...",
  4668.             "textOriginal": "dat game... hope i could get i legally...",
  4669.             "authorDisplayName": "Runagate",
  4670.             "authorChannelUrl": "http://www.youtube.com/channel/UCd3sbark8DzLRZp3BjsjW5w",
  4671.             "authorChannelId": {
  4672.               "value": "UCd3sbark8DzLRZp3BjsjW5w"
  4673.             },
  4674.             "canRate": true,
  4675.             "viewerRating": "none",
  4676.             "likeCount": 0,
  4677.             "publishedAt": "2013-04-28T08:31:31Z",
  4678.             "updatedAt": "2013-04-28T08:31:31Z"
  4679.           }
  4680.         },
  4681.         "canReply": true,
  4682.         "totalReplyCount": 0,
  4683.         "isPublic": true
  4684.       }
  4685.     },
  4686.     {
  4687.       "kind": "youtube#commentThread",
  4688.       "etag": "PpGeiqJLkuD_r_0FugWtr8hbJ6k",
  4689.       "id": "UgzywlR5cJhXgikXC614AaABAg",
  4690.       "snippet": {
  4691.         "videoId": "atnSTtiWU5E",
  4692.         "topLevelComment": {
  4693.           "kind": "youtube#comment",
  4694.           "etag": "LBawETa3k1uCG0WZxu68Mhiu_kU",
  4695.           "id": "UgzywlR5cJhXgikXC614AaABAg",
  4696.           "snippet": {
  4697.             "videoId": "atnSTtiWU5E",
  4698.             "textDisplay": "reminds me of Touhou",
  4699.             "textOriginal": "reminds me of Touhou",
  4700.             "authorDisplayName": "Baer Thrine",
  4701.             "authorChannelUrl": "http://www.youtube.com/channel/UCuvxUw1rBp7oSHqkVoYq4cQ",
  4702.             "authorChannelId": {
  4703.               "value": "UCuvxUw1rBp7oSHqkVoYq4cQ"
  4704.             },
  4705.             "canRate": true,
  4706.             "viewerRating": "none",
  4707.             "likeCount": 0,
  4708.             "publishedAt": "2013-04-20T11:28:44Z",
  4709.             "updatedAt": "2013-04-20T11:28:44Z"
  4710.           }
  4711.         },
  4712.         "canReply": true,
  4713.         "totalReplyCount": 0,
  4714.         "isPublic": true
  4715.       }
  4716.     },
  4717.     {
  4718.       "kind": "youtube#commentThread",
  4719.       "etag": "k-SI9r7G0VJ82s8V5fu0nE4wUfo",
  4720.       "id": "UgzncHxJf7u10Ov1iGh4AaABAg",
  4721.       "snippet": {
  4722.         "videoId": "atnSTtiWU5E",
  4723.         "topLevelComment": {
  4724.           "kind": "youtube#comment",
  4725.           "etag": "cU-TUxa-_fX5HiPq4E-VZtdxHIc",
  4726.           "id": "UgzncHxJf7u10Ov1iGh4AaABAg",
  4727.           "snippet": {
  4728.             "videoId": "atnSTtiWU5E",
  4729.             "textDisplay": "I find funny how, at some points, this sounds like something that would come from Bayonetta. Y'know, "evil enchantress".",
  4730.             "textOriginal": "I find funny how, at some points, this sounds like something that would come from Bayonetta. Y'know, \"evil enchantress\".",
  4731.             "authorDisplayName": "Personoide",
  4732.             "authorChannelUrl": "http://www.youtube.com/channel/UCetz-Hm3Wk_Lz5BPwEenCHQ",
  4733.             "authorChannelId": {
  4734.               "value": "UCetz-Hm3Wk_Lz5BPwEenCHQ"
  4735.             },
  4736.             "canRate": true,
  4737.             "viewerRating": "none",
  4738.             "likeCount": 0,
  4739.             "publishedAt": "2013-04-17T15:55:30Z",
  4740.             "updatedAt": "2013-04-17T15:55:30Z"
  4741.           }
  4742.         },
  4743.         "canReply": true,
  4744.         "totalReplyCount": 0,
  4745.         "isPublic": true
  4746.       }
  4747.     },
  4748.     {
  4749.       "kind": "youtube#commentThread",
  4750.       "etag": "Ljom_DMOnmhxcfcus6gc7TdI1x4",
  4751.       "id": "UgwR3JNA0B7fu_T_h394AaABAg",
  4752.       "snippet": {
  4753.         "videoId": "atnSTtiWU5E",
  4754.         "topLevelComment": {
  4755.           "kind": "youtube#comment",
  4756.           "etag": "9DXvkRtQiKAHcw43xANBRGPK3fg",
  4757.           "id": "UgwR3JNA0B7fu_T_h394AaABAg",
  4758.           "snippet": {
  4759.             "videoId": "atnSTtiWU5E",
  4760.             "textDisplay": "This would go great with an AMV.",
  4761.             "textOriginal": "This would go great with an AMV.",
  4762.             "authorDisplayName": "patu8010",
  4763.             "authorChannelUrl": "http://www.youtube.com/channel/UCqUM72_gbRzm4JtyGM6ssmw",
  4764.             "authorChannelId": {
  4765.               "value": "UCqUM72_gbRzm4JtyGM6ssmw"
  4766.             },
  4767.             "canRate": true,
  4768.             "viewerRating": "none",
  4769.             "likeCount": 0,
  4770.             "publishedAt": "2013-03-09T19:08:36Z",
  4771.             "updatedAt": "2013-03-09T19:08:36Z"
  4772.           }
  4773.         },
  4774.         "canReply": true,
  4775.         "totalReplyCount": 0,
  4776.         "isPublic": true
  4777.       }
  4778.     },
  4779.     {
  4780.       "kind": "youtube#commentThread",
  4781.       "etag": "Ot_vijvVa2_N9pC8V-0b0YJBzQY",
  4782.       "id": "Ugy58bwKUs8cj6hXRRR4AaABAg",
  4783.       "snippet": {
  4784.         "videoId": "atnSTtiWU5E",
  4785.         "topLevelComment": {
  4786.           "kind": "youtube#comment",
  4787.           "etag": "ybI79ULSjyafJXqHFP5R0L6n9do",
  4788.           "id": "Ugy58bwKUs8cj6hXRRR4AaABAg",
  4789.           "snippet": {
  4790.             "videoId": "atnSTtiWU5E",
  4791.             "textDisplay": "Creepypie, as in, me?",
  4792.             "textOriginal": "Creepypie, as in, me?",
  4793.             "authorDisplayName": "Pinka Mena Diane Pie",
  4794.             "authorChannelUrl": "http://www.youtube.com/channel/UCHT-M__E2f2isE1UuD8DpKg",
  4795.             "authorChannelId": {
  4796.               "value": "UCHT-M__E2f2isE1UuD8DpKg"
  4797.             },
  4798.             "canRate": true,
  4799.             "viewerRating": "none",
  4800.             "likeCount": 0,
  4801.             "publishedAt": "2013-02-27T00:29:37Z",
  4802.             "updatedAt": "2013-02-27T00:29:37Z"
  4803.           }
  4804.         },
  4805.         "canReply": true,
  4806.         "totalReplyCount": 0,
  4807.         "isPublic": true
  4808.       }
  4809.     },
  4810.     {
  4811.       "kind": "youtube#commentThread",
  4812.       "etag": "WFptoz-A-5O0uj6fcZ9od5aZ7sU",
  4813.       "id": "Ugwx1mpI-IEzMqr1tUp4AaABAg",
  4814.       "snippet": {
  4815.         "videoId": "atnSTtiWU5E",
  4816.         "topLevelComment": {
  4817.           "kind": "youtube#comment",
  4818.           "etag": "N4fWXoH4nB7y8ksf6P65gl-PXGc",
  4819.           "id": "Ugwx1mpI-IEzMqr1tUp4AaABAg",
  4820.           "snippet": {
  4821.             "videoId": "atnSTtiWU5E",
  4822.             "textDisplay": "What am I? ",
  4823.             "textOriginal": "What am I? ",
  4824.             "authorDisplayName": "Pinka Mena Diane Pie",
  4825.             "authorChannelUrl": "http://www.youtube.com/channel/UCHT-M__E2f2isE1UuD8DpKg",
  4826.             "authorChannelId": {
  4827.               "value": "UCHT-M__E2f2isE1UuD8DpKg"
  4828.             },
  4829.             "canRate": true,
  4830.             "viewerRating": "none",
  4831.             "likeCount": 0,
  4832.             "publishedAt": "2013-02-27T00:29:01Z",
  4833.             "updatedAt": "2013-02-27T00:29:01Z"
  4834.           }
  4835.         },
  4836.         "canReply": true,
  4837.         "totalReplyCount": 0,
  4838.         "isPublic": true
  4839.       }
  4840.     },
  4841.     {
  4842.       "kind": "youtube#commentThread",
  4843.       "etag": "6R85jf5UCjIJDi-efyfo_ZJJ-Zk",
  4844.       "id": "UgzEdMDx5kAUiyP0gsd4AaABAg",
  4845.       "snippet": {
  4846.         "videoId": "atnSTtiWU5E",
  4847.         "topLevelComment": {
  4848.           "kind": "youtube#comment",
  4849.           "etag": "Gz2df1F6Y2CBeE7YOJLDUg9kqhs",
  4850.           "id": "UgzEdMDx5kAUiyP0gsd4AaABAg",
  4851.           "snippet": {
  4852.             "videoId": "atnSTtiWU5E",
  4853.             "textDisplay": "holy mother of sweet baby Luna. This was the first MLP song evar?!?!?!?!?!",
  4854.             "textOriginal": "holy mother of sweet baby Luna. This was the first MLP song evar?!?!?!?!?!",
  4855.             "authorDisplayName": "Night Shine",
  4856.             "authorChannelUrl": "http://www.youtube.com/channel/UCMJHUqSdqRqOqs7FlzUDJJQ",
  4857.             "authorChannelId": {
  4858.               "value": "UCMJHUqSdqRqOqs7FlzUDJJQ"
  4859.             },
  4860.             "canRate": true,
  4861.             "viewerRating": "none",
  4862.             "likeCount": 0,
  4863.             "publishedAt": "2013-02-15T10:45:28Z",
  4864.             "updatedAt": "2013-02-15T10:45:28Z"
  4865.           }
  4866.         },
  4867.         "canReply": true,
  4868.         "totalReplyCount": 0,
  4869.         "isPublic": true
  4870.       }
  4871.     },
  4872.     {
  4873.       "kind": "youtube#commentThread",
  4874.       "etag": "a_6sKEvuAqRYftK3qb4LdbrOBrA",
  4875.       "id": "Ugx-wEKev9zN3gKfW2R4AaABAg",
  4876.       "snippet": {
  4877.         "videoId": "atnSTtiWU5E",
  4878.         "topLevelComment": {
  4879.           "kind": "youtube#comment",
  4880.           "etag": "BT-f8l035PdvnVsw8-k2BL4LjHQ",
  4881.           "id": "Ugx-wEKev9zN3gKfW2R4AaABAg",
  4882.           "snippet": {
  4883.             "videoId": "atnSTtiWU5E",
  4884.             "textDisplay": "All hail Bandpuffs?\n\n*Bows down*",
  4885.             "textOriginal": "All hail Bandpuffs?\n\n*Bows down*",
  4886.             "authorDisplayName": "PrinceMcStallion",
  4887.             "authorChannelUrl": "http://www.youtube.com/channel/UCrx2empBkmVOWsUmOyXG63A",
  4888.             "authorChannelId": {
  4889.               "value": "UCrx2empBkmVOWsUmOyXG63A"
  4890.             },
  4891.             "canRate": true,
  4892.             "viewerRating": "none",
  4893.             "likeCount": 0,
  4894.             "publishedAt": "2013-02-15T02:21:19Z",
  4895.             "updatedAt": "2013-02-15T02:21:19Z"
  4896.           }
  4897.         },
  4898.         "canReply": true,
  4899.         "totalReplyCount": 0,
  4900.         "isPublic": true
  4901.       }
  4902.     },
  4903.     {
  4904.       "kind": "youtube#commentThread",
  4905.       "etag": "v_45lmCo7RKenw1ttSz5lvg4fGQ",
  4906.       "id": "UgxLCtwvx84YvRwK32h4AaABAg",
  4907.       "snippet": {
  4908.         "videoId": "atnSTtiWU5E",
  4909.         "topLevelComment": {
  4910.           "kind": "youtube#comment",
  4911.           "etag": "aQNIDP7A38lxN-fzDZGoZV0sM0o",
  4912.           "id": "UgxLCtwvx84YvRwK32h4AaABAg",
  4913.           "snippet": {
  4914.             "videoId": "atnSTtiWU5E",
  4915.             "textDisplay": "I feel like I should be playing Initial D arcade stage when listening to this.",
  4916.             "textOriginal": "I feel like I should be playing Initial D arcade stage when listening to this.",
  4917.             "authorDisplayName": "Tim Initial D Fan",
  4918.             "authorChannelUrl": "http://www.youtube.com/channel/UCgm_KngPtW2UI14_49bQ8JQ",
  4919.             "authorChannelId": {
  4920.               "value": "UCgm_KngPtW2UI14_49bQ8JQ"
  4921.             },
  4922.             "canRate": true,
  4923.             "viewerRating": "none",
  4924.             "likeCount": 0,
  4925.             "publishedAt": "2013-02-12T06:22:14Z",
  4926.             "updatedAt": "2013-02-12T06:22:14Z"
  4927.           }
  4928.         },
  4929.         "canReply": true,
  4930.         "totalReplyCount": 1,
  4931.         "isPublic": true
  4932.       },
  4933.       "replies": {
  4934.         "comments": [
  4935.           {
  4936.             "kind": "youtube#comment",
  4937.             "etag": "ih06MzV_rlzrhmB-XGxCm4wvg0k",
  4938.             "id": "UgxLCtwvx84YvRwK32h4AaABAg.8GcCh7bWN4K9fJxXLuxgec",
  4939.             "snippet": {
  4940.               "videoId": "atnSTtiWU5E",
  4941.               "textDisplay": "Maybe arcade stage 2 and 7",
  4942.               "textOriginal": "Maybe arcade stage 2 and 7",
  4943.               "parentId": "UgxLCtwvx84YvRwK32h4AaABAg",
  4944.               "authorDisplayName": "Γεωργία Νασιούδη",
  4945.               "authorChannelUrl": "http://www.youtube.com/channel/UC4nz8mASd3FvOgfqUWuukWQ",
  4946.               "authorChannelId": {
  4947.                 "value": "UC4nz8mASd3FvOgfqUWuukWQ"
  4948.               },
  4949.               "canRate": true,
  4950.               "viewerRating": "none",
  4951.               "likeCount": 1,
  4952.               "publishedAt": "2022-08-29T16:50:55Z",
  4953.               "updatedAt": "2022-08-29T16:50:55Z"
  4954.             }
  4955.           }
  4956.         ]
  4957.       }
  4958.     },
  4959.     {
  4960.       "kind": "youtube#commentThread",
  4961.       "etag": "x7FWH_BdFumLSTbawvC1RjgVhe0",
  4962.       "id": "UgzNB49IYNzsHDpikdJ4AaABAg",
  4963.       "snippet": {
  4964.         "videoId": "atnSTtiWU5E",
  4965.         "topLevelComment": {
  4966.           "kind": "youtube#comment",
  4967.           "etag": "qzvhEyTFLqi3dmLOwmErzlQHJ8E",
  4968.           "id": "UgzNB49IYNzsHDpikdJ4AaABAg",
  4969.           "snippet": {
  4970.             "videoId": "atnSTtiWU5E",
  4971.             "textDisplay": "You dude\nshould be SO honored.",
  4972.             "textOriginal": "You dude\nshould be SO honored.",
  4973.             "authorDisplayName": "Isissa125",
  4974.             "authorChannelUrl": "http://www.youtube.com/channel/UCxQ4InnxHZtzRxOu8iIDfig",
  4975.             "authorChannelId": {
  4976.               "value": "UCxQ4InnxHZtzRxOu8iIDfig"
  4977.             },
  4978.             "canRate": true,
  4979.             "viewerRating": "none",
  4980.             "likeCount": 0,
  4981.             "publishedAt": "2013-02-12T02:42:36Z",
  4982.             "updatedAt": "2013-02-12T02:42:36Z"
  4983.           }
  4984.         },
  4985.         "canReply": true,
  4986.         "totalReplyCount": 0,
  4987.         "isPublic": true
  4988.       }
  4989.     },
  4990.     {
  4991.       "kind": "youtube#commentThread",
  4992.       "etag": "l23Gc9AzTL5qCoMptzPYAqMMG-0",
  4993.       "id": "UgxAXb1tMgJZBHh_O-F4AaABAg",
  4994.       "snippet": {
  4995.         "videoId": "atnSTtiWU5E",
  4996.         "topLevelComment": {
  4997.           "kind": "youtube#comment",
  4998.           "etag": "rHr2asOVfz2b50CawnDllMtssDU",
  4999.           "id": "UgxAXb1tMgJZBHh_O-F4AaABAg",
  5000.           "snippet": {
  5001.             "videoId": "atnSTtiWU5E",
  5002.             "textDisplay": "when i played luna 5 i got to where my cd player opened and i was scared also when pinkie eats me im in a white area is that a glitch",
  5003.             "textOriginal": "when i played luna 5 i got to where my cd player opened and i was scared also when pinkie eats me im in a white area is that a glitch",
  5004.             "authorDisplayName": "baltoist",
  5005.             "authorChannelUrl": "http://www.youtube.com/channel/UC27LhOdOlOm5ane3nWcCzjw",
  5006.             "authorChannelId": {
  5007.               "value": "UC27LhOdOlOm5ane3nWcCzjw"
  5008.             },
  5009.             "canRate": true,
  5010.             "viewerRating": "none",
  5011.             "likeCount": 0,
  5012.             "publishedAt": "2013-02-10T15:28:49Z",
  5013.             "updatedAt": "2013-02-10T15:28:49Z"
  5014.           }
  5015.         },
  5016.         "canReply": true,
  5017.         "totalReplyCount": 0,
  5018.         "isPublic": true
  5019.       }
  5020.     },
  5021.     {
  5022.       "kind": "youtube#commentThread",
  5023.       "etag": "uvDMpEjwlmvcRsXen5y1ExgsCq4",
  5024.       "id": "UgzZz5fUp6bF1uOrUWd4AaABAg",
  5025.       "snippet": {
  5026.         "videoId": "atnSTtiWU5E",
  5027.         "topLevelComment": {
  5028.           "kind": "youtube#comment",
  5029.           "etag": "UiUb1lENpK2CnVJq7WxrMCDrOdQ",
  5030.           "id": "UgzZz5fUp6bF1uOrUWd4AaABAg",
  5031.           "snippet": {
  5032.             "videoId": "atnSTtiWU5E",
  5033.             "textDisplay": "this music is so touhou xD",
  5034.             "textOriginal": "this music is so touhou xD",
  5035.             "authorDisplayName": "Runagate",
  5036.             "authorChannelUrl": "http://www.youtube.com/channel/UCd3sbark8DzLRZp3BjsjW5w",
  5037.             "authorChannelId": {
  5038.               "value": "UCd3sbark8DzLRZp3BjsjW5w"
  5039.             },
  5040.             "canRate": true,
  5041.             "viewerRating": "none",
  5042.             "likeCount": 1,
  5043.             "publishedAt": "2013-02-01T10:36:48Z",
  5044.             "updatedAt": "2013-02-01T10:36:48Z"
  5045.           }
  5046.         },
  5047.         "canReply": true,
  5048.         "totalReplyCount": 0,
  5049.         "isPublic": true
  5050.       }
  5051.     },
  5052.     {
  5053.       "kind": "youtube#commentThread",
  5054.       "etag": "kDJFkt2MMQvUYeuAnNnEq9FBz8Q",
  5055.       "id": "UgzjbsPic_UDwFSSYzZ4AaABAg",
  5056.       "snippet": {
  5057.         "videoId": "atnSTtiWU5E",
  5058.         "topLevelComment": {
  5059.           "kind": "youtube#comment",
  5060.           "etag": "FSftfTxr2CLSxqsBps-KE6jLdUM",
  5061.           "id": "UgzjbsPic_UDwFSSYzZ4AaABAg",
  5062.           "snippet": {
  5063.             "videoId": "atnSTtiWU5E",
  5064.             "textDisplay": "After a year, this is still my favorite remix yet!",
  5065.             "textOriginal": "After a year, this is still my favorite remix yet!",
  5066.             "authorDisplayName": "Maverick Brony",
  5067.             "authorChannelUrl": "http://www.youtube.com/channel/UC8kOTiC7-htpu0khfAu9Xzw",
  5068.             "authorChannelId": {
  5069.               "value": "UC8kOTiC7-htpu0khfAu9Xzw"
  5070.             },
  5071.             "canRate": true,
  5072.             "viewerRating": "none",
  5073.             "likeCount": 1,
  5074.             "publishedAt": "2013-02-01T06:02:09Z",
  5075.             "updatedAt": "2013-02-01T06:02:09Z"
  5076.           }
  5077.         },
  5078.         "canReply": true,
  5079.         "totalReplyCount": 0,
  5080.         "isPublic": true
  5081.       }
  5082.     },
  5083.     {
  5084.       "kind": "youtube#commentThread",
  5085.       "etag": "ImUTsuOD3F1WO0kThIROg-5tr5U",
  5086.       "id": "UgwbrtE5Oue6YEFbYqt4AaABAg",
  5087.       "snippet": {
  5088.         "videoId": "atnSTtiWU5E",
  5089.         "topLevelComment": {
  5090.           "kind": "youtube#comment",
  5091.           "etag": "4Fsza8OfQsvsUxUbKR0Yr6tbO1M",
  5092.           "id": "UgwbrtE5Oue6YEFbYqt4AaABAg",
  5093.           "snippet": {
  5094.             "videoId": "atnSTtiWU5E",
  5095.             "textDisplay": "First I heard this on Luna game, I would just stay at the start and jam out. Next I heard it in my little bloopers mistakes are forever! Then I was like: oh mah gawd Luna game! then the link this popped up then I was like, :0 and now I'm here.",
  5096.             "textOriginal": "First I heard this on Luna game, I would just stay at the start and jam out. Next I heard it in my little bloopers mistakes are forever! Then I was like: oh mah gawd Luna game! then the link this popped up then I was like, :0 and now I'm here.",
  5097.             "authorDisplayName": "Sugar Worms",
  5098.             "authorChannelUrl": "http://www.youtube.com/channel/UC29enwyWKJI4O2xjw0oT-YA",
  5099.             "authorChannelId": {
  5100.               "value": "UC29enwyWKJI4O2xjw0oT-YA"
  5101.             },
  5102.             "canRate": true,
  5103.             "viewerRating": "none",
  5104.             "likeCount": 0,
  5105.             "publishedAt": "2013-01-21T03:49:35Z",
  5106.             "updatedAt": "2013-01-21T03:49:35Z"
  5107.           }
  5108.         },
  5109.         "canReply": true,
  5110.         "totalReplyCount": 0,
  5111.         "isPublic": true
  5112.       }
  5113.     },
  5114.     {
  5115.       "kind": "youtube#commentThread",
  5116.       "etag": "1rgfhcuLqJQQOBQAYI4G3Fl8JGY",
  5117.       "id": "UgxW_d0KKegdbpXmOHl4AaABAg",
  5118.       "snippet": {
  5119.         "videoId": "atnSTtiWU5E",
  5120.         "topLevelComment": {
  5121.           "kind": "youtube#comment",
  5122.           "etag": "NA6p0N7GpAcvP9bo-zKVminom3s",
  5123.           "id": "UgxW_d0KKegdbpXmOHl4AaABAg",
  5124.           "snippet": {
  5125.             "videoId": "atnSTtiWU5E",
  5126.             "textDisplay": "nice remix bro",
  5127.             "textOriginal": "nice remix bro",
  5128.             "authorDisplayName": "ZFRobin",
  5129.             "authorChannelUrl": "http://www.youtube.com/channel/UCXRhC7b2Gv2SOw9UsmRuaIg",
  5130.             "authorChannelId": {
  5131.               "value": "UCXRhC7b2Gv2SOw9UsmRuaIg"
  5132.             },
  5133.             "canRate": true,
  5134.             "viewerRating": "none",
  5135.             "likeCount": 0,
  5136.             "publishedAt": "2013-01-19T22:15:51Z",
  5137.             "updatedAt": "2013-01-19T22:15:51Z"
  5138.           }
  5139.         },
  5140.         "canReply": true,
  5141.         "totalReplyCount": 0,
  5142.         "isPublic": true
  5143.       }
  5144.     },
  5145.     {
  5146.       "kind": "youtube#commentThread",
  5147.       "etag": "qohpZ-_QKEwziYF-geMV-LkxUWE",
  5148.       "id": "UgxDa8lkC0D5iPlsGpN4AaABAg",
  5149.       "snippet": {
  5150.         "videoId": "atnSTtiWU5E",
  5151.         "topLevelComment": {
  5152.           "kind": "youtube#comment",
  5153.           "etag": "1X0U712jJ7ZYc-pDFdVt7LnMrPQ",
  5154.           "id": "UgxDa8lkC0D5iPlsGpN4AaABAg",
  5155.           "snippet": {
  5156.             "videoId": "atnSTtiWU5E",
  5157.             "textDisplay": "thats no bad ",
  5158.             "textOriginal": "thats no bad ",
  5159.             "authorDisplayName": "raquel ibáñez martinez",
  5160.             "authorChannelUrl": "http://www.youtube.com/channel/UCQ4fsTdCdsiPlwNkcuOtOZw",
  5161.             "authorChannelId": {
  5162.               "value": "UCQ4fsTdCdsiPlwNkcuOtOZw"
  5163.             },
  5164.             "canRate": true,
  5165.             "viewerRating": "none",
  5166.             "likeCount": 0,
  5167.             "publishedAt": "2013-01-14T14:54:06Z",
  5168.             "updatedAt": "2013-01-14T14:54:06Z"
  5169.           }
  5170.         },
  5171.         "canReply": true,
  5172.         "totalReplyCount": 0,
  5173.         "isPublic": true
  5174.       }
  5175.     },
  5176.     {
  5177.       "kind": "youtube#commentThread",
  5178.       "etag": "47ct4Fax84VgSM5o0rf7iwdsXHw",
  5179.       "id": "UgwU95BNsJwd-Rz8JCt4AaABAg",
  5180.       "snippet": {
  5181.         "videoId": "atnSTtiWU5E",
  5182.         "topLevelComment": {
  5183.           "kind": "youtube#comment",
  5184.           "etag": "0MUZFCoiIiZkZon_ozrqBxXWejg",
  5185.           "id": "UgwU95BNsJwd-Rz8JCt4AaABAg",
  5186.           "snippet": {
  5187.             "videoId": "atnSTtiWU5E",
  5188.             "textDisplay": "This almost sounds like it could belong in Initial D.",
  5189.             "textOriginal": "This almost sounds like it could belong in Initial D.",
  5190.             "authorDisplayName": "SpikesOmega",
  5191.             "authorChannelUrl": "http://www.youtube.com/channel/UCmumLRCwl88LI06xEPb59sQ",
  5192.             "authorChannelId": {
  5193.               "value": "UCmumLRCwl88LI06xEPb59sQ"
  5194.             },
  5195.             "canRate": true,
  5196.             "viewerRating": "none",
  5197.             "likeCount": 0,
  5198.             "publishedAt": "2013-01-11T10:29:35Z",
  5199.             "updatedAt": "2013-01-11T10:29:35Z"
  5200.           }
  5201.         },
  5202.         "canReply": true,
  5203.         "totalReplyCount": 0,
  5204.         "isPublic": true
  5205.       }
  5206.     },
  5207.     {
  5208.       "kind": "youtube#commentThread",
  5209.       "etag": "L73sO62jvoyNCx8YJLZ1I8q0kBE",
  5210.       "id": "Ugwx7h4HiqLaiT7LrYh4AaABAg",
  5211.       "snippet": {
  5212.         "videoId": "atnSTtiWU5E",
  5213.         "topLevelComment": {
  5214.           "kind": "youtube#comment",
  5215.           "etag": "pTjMrbLl8z4DFCj03FGbj8GNJsg",
  5216.           "id": "Ugwx7h4HiqLaiT7LrYh4AaABAg",
  5217.           "snippet": {
  5218.             "videoId": "atnSTtiWU5E",
  5219.             "textDisplay": "well im glad the first remix is a good one",
  5220.             "textOriginal": "well im glad the first remix is a good one",
  5221.             "authorDisplayName": "DemiDragonQueen",
  5222.             "authorChannelUrl": "http://www.youtube.com/channel/UCflhJ04zeMgQYoiLVyjn1Lg",
  5223.             "authorChannelId": {
  5224.               "value": "UCflhJ04zeMgQYoiLVyjn1Lg"
  5225.             },
  5226.             "canRate": true,
  5227.             "viewerRating": "none",
  5228.             "likeCount": 0,
  5229.             "publishedAt": "2013-01-11T02:23:18Z",
  5230.             "updatedAt": "2013-01-11T02:23:18Z"
  5231.           }
  5232.         },
  5233.         "canReply": true,
  5234.         "totalReplyCount": 0,
  5235.         "isPublic": true
  5236.       }
  5237.     },
  5238.     {
  5239.       "kind": "youtube#commentThread",
  5240.       "etag": "zrljfddQM4j8GxKU9tlTZqUu5d4",
  5241.       "id": "UgxAm8JJsXtDThBVKWR4AaABAg",
  5242.       "snippet": {
  5243.         "videoId": "atnSTtiWU5E",
  5244.         "topLevelComment": {
  5245.           "kind": "youtube#comment",
  5246.           "etag": "rcj97Si7AcDf6izOTCCh8qQl_eo",
  5247.           "id": "UgxAm8JJsXtDThBVKWR4AaABAg",
  5248.           "snippet": {
  5249.             "videoId": "atnSTtiWU5E",
  5250.             "textDisplay": "This should be in fighting is magic as zacoras fight theme I'm just saiyan.",
  5251.             "textOriginal": "This should be in fighting is magic as zacoras fight theme I'm just saiyan.",
  5252.             "authorDisplayName": "FelixL0L",
  5253.             "authorChannelUrl": "http://www.youtube.com/channel/UCrRcQJqj-9e51L-G71F8lGQ",
  5254.             "authorChannelId": {
  5255.               "value": "UCrRcQJqj-9e51L-G71F8lGQ"
  5256.             },
  5257.             "canRate": true,
  5258.             "viewerRating": "none",
  5259.             "likeCount": 0,
  5260.             "publishedAt": "2013-01-10T09:29:25Z",
  5261.             "updatedAt": "2013-01-10T09:29:25Z"
  5262.           }
  5263.         },
  5264.         "canReply": true,
  5265.         "totalReplyCount": 0,
  5266.         "isPublic": true
  5267.       }
  5268.     },
  5269.     {
  5270.       "kind": "youtube#commentThread",
  5271.       "etag": "6LFCp4K4Btsl3I9toXfwmrqkukk",
  5272.       "id": "UgzbdAPMf4xVZrPayoF4AaABAg",
  5273.       "snippet": {
  5274.         "videoId": "atnSTtiWU5E",
  5275.         "topLevelComment": {
  5276.           "kind": "youtube#comment",
  5277.           "etag": "j4jzXA4OB5TTk2Li9DAp8yZAfOI",
  5278.           "id": "UgzbdAPMf4xVZrPayoF4AaABAg",
  5279.           "snippet": {
  5280.             "videoId": "atnSTtiWU5E",
  5281.             "textDisplay": "so... this is where it all started? amazing :D",
  5282.             "textOriginal": "so... this is where it all started? amazing :D",
  5283.             "authorDisplayName": "xXaltowolfXxmp3",
  5284.             "authorChannelUrl": "http://www.youtube.com/channel/UCx4gcMGEiTWHZdWtvDxtXwA",
  5285.             "authorChannelId": {
  5286.               "value": "UCx4gcMGEiTWHZdWtvDxtXwA"
  5287.             },
  5288.             "canRate": true,
  5289.             "viewerRating": "none",
  5290.             "likeCount": 0,
  5291.             "publishedAt": "2013-01-06T05:13:32Z",
  5292.             "updatedAt": "2013-01-06T05:13:32Z"
  5293.           }
  5294.         },
  5295.         "canReply": true,
  5296.         "totalReplyCount": 0,
  5297.         "isPublic": true
  5298.       }
  5299.     },
  5300.     {
  5301.       "kind": "youtube#commentThread",
  5302.       "etag": "8jGUBkFXAaGAkrOPcP052rqfnY8",
  5303.       "id": "Ugy-2u28QKAwox8h8BF4AaABAg",
  5304.       "snippet": {
  5305.         "videoId": "atnSTtiWU5E",
  5306.         "topLevelComment": {
  5307.           "kind": "youtube#comment",
  5308.           "etag": "FKmNiqaJC-TTV0hjHSGHx5jWgNE",
  5309.           "id": "Ugy-2u28QKAwox8h8BF4AaABAg",
  5310.           "snippet": {
  5311.             "videoId": "atnSTtiWU5E",
  5312.             "textDisplay": "I think it's either 0 or 5, even though it's a fan game",
  5313.             "textOriginal": "I think it's either 0 or 5, even though it's a fan game",
  5314.             "authorDisplayName": "XXPedia",
  5315.             "authorChannelUrl": "http://www.youtube.com/channel/UCssZTQGNzz-qOoD6XI-5tdA",
  5316.             "authorChannelId": {
  5317.               "value": "UCssZTQGNzz-qOoD6XI-5tdA"
  5318.             },
  5319.             "canRate": true,
  5320.             "viewerRating": "none",
  5321.             "likeCount": 0,
  5322.             "publishedAt": "2013-01-04T22:51:22Z",
  5323.             "updatedAt": "2013-01-04T22:51:22Z"
  5324.           }
  5325.         },
  5326.         "canReply": true,
  5327.         "totalReplyCount": 0,
  5328.         "isPublic": true
  5329.       }
  5330.     },
  5331.     {
  5332.       "kind": "youtube#commentThread",
  5333.       "etag": "I4E_uUo1uCmlsWFohV_lhZU-kwg",
  5334.       "id": "UgxAPsq1TqsIkpSgHKN4AaABAg",
  5335.       "snippet": {
  5336.         "videoId": "atnSTtiWU5E",
  5337.         "topLevelComment": {
  5338.           "kind": "youtube#comment",
  5339.           "etag": "JQDtrqcI8DifWTrftiHNbZ1yZVI",
  5340.           "id": "UgxAPsq1TqsIkpSgHKN4AaABAg",
  5341.           "snippet": {
  5342.             "videoId": "atnSTtiWU5E",
  5343.             "textDisplay": "which do u think is scaryist luna 2 for me",
  5344.             "textOriginal": "which do u think is scaryist luna 2 for me",
  5345.             "authorDisplayName": "baltoist",
  5346.             "authorChannelUrl": "http://www.youtube.com/channel/UC27LhOdOlOm5ane3nWcCzjw",
  5347.             "authorChannelId": {
  5348.               "value": "UC27LhOdOlOm5ane3nWcCzjw"
  5349.             },
  5350.             "canRate": true,
  5351.             "viewerRating": "none",
  5352.             "likeCount": 0,
  5353.             "publishedAt": "2013-01-04T01:14:56Z",
  5354.             "updatedAt": "2013-01-04T01:14:56Z"
  5355.           }
  5356.         },
  5357.         "canReply": true,
  5358.         "totalReplyCount": 0,
  5359.         "isPublic": true
  5360.       }
  5361.     },
  5362.     {
  5363.       "kind": "youtube#commentThread",
  5364.       "etag": "-oca8hCPRdpMR4MA-3p4hFV_6-w",
  5365.       "id": "UgyjlQkJar0AaR8yBVh4AaABAg",
  5366.       "snippet": {
  5367.         "videoId": "atnSTtiWU5E",
  5368.         "topLevelComment": {
  5369.           "kind": "youtube#comment",
  5370.           "etag": "9E840yoAJmhbdg2hWn5LyvnmUas",
  5371.           "id": "UgyjlQkJar0AaR8yBVh4AaABAg",
  5372.           "snippet": {
  5373.             "videoId": "atnSTtiWU5E",
  5374.             "textDisplay": "Yup.",
  5375.             "textOriginal": "Yup.",
  5376.             "authorDisplayName": "ForlanceAbice",
  5377.             "authorChannelUrl": "http://www.youtube.com/channel/UCu-9ymQB1WlwT-0_gqbkk0Q",
  5378.             "authorChannelId": {
  5379.               "value": "UCu-9ymQB1WlwT-0_gqbkk0Q"
  5380.             },
  5381.             "canRate": true,
  5382.             "viewerRating": "none",
  5383.             "likeCount": 0,
  5384.             "publishedAt": "2013-01-03T18:41:25Z",
  5385.             "updatedAt": "2013-01-03T18:41:25Z"
  5386.           }
  5387.         },
  5388.         "canReply": true,
  5389.         "totalReplyCount": 0,
  5390.         "isPublic": true
  5391.       }
  5392.     },
  5393.     {
  5394.       "kind": "youtube#commentThread",
  5395.       "etag": "xt97tlM_RvitygLglePxEvDbX_M",
  5396.       "id": "UgwrHpNLJkBQwqCajGx4AaABAg",
  5397.       "snippet": {
  5398.         "videoId": "atnSTtiWU5E",
  5399.         "topLevelComment": {
  5400.           "kind": "youtube#comment",
  5401.           "etag": "UQ--Cr2fjeXnK-7Jn6fChqVHdVk",
  5402.           "id": "UgwrHpNLJkBQwqCajGx4AaABAg",
  5403.           "snippet": {
  5404.             "videoId": "atnSTtiWU5E",
  5405.             "textDisplay": "Luna Game. I always think of Luna Game, anyone else?",
  5406.             "textOriginal": "Luna Game. I always think of Luna Game, anyone else?",
  5407.             "authorDisplayName": "XXPedia",
  5408.             "authorChannelUrl": "http://www.youtube.com/channel/UCssZTQGNzz-qOoD6XI-5tdA",
  5409.             "authorChannelId": {
  5410.               "value": "UCssZTQGNzz-qOoD6XI-5tdA"
  5411.             },
  5412.             "canRate": true,
  5413.             "viewerRating": "none",
  5414.             "likeCount": 0,
  5415.             "publishedAt": "2012-12-26T20:17:55Z",
  5416.             "updatedAt": "2012-12-26T20:17:55Z"
  5417.           }
  5418.         },
  5419.         "canReply": true,
  5420.         "totalReplyCount": 0,
  5421.         "isPublic": true
  5422.       }
  5423.     },
  5424.     {
  5425.       "kind": "youtube#commentThread",
  5426.       "etag": "jUuQbBifGa5JkKwbelZsabgwcNY",
  5427.       "id": "UgzTpGb4EFbf3iyhliV4AaABAg",
  5428.       "snippet": {
  5429.         "videoId": "atnSTtiWU5E",
  5430.         "topLevelComment": {
  5431.           "kind": "youtube#comment",
  5432.           "etag": "c_Vc9l-4xYbxMGYpvy_Ymzt-66Q",
  5433.           "id": "UgzTpGb4EFbf3iyhliV4AaABAg",
  5434.           "snippet": {
  5435.             "videoId": "atnSTtiWU5E",
  5436.             "textDisplay": "I can't press the like button enough times for this song",
  5437.             "textOriginal": "I can't press the like button enough times for this song",
  5438.             "authorDisplayName": "Cameron Davis",
  5439.             "authorChannelUrl": "http://www.youtube.com/channel/UCta5gdMXAr-wzq6d9LT-zPA",
  5440.             "authorChannelId": {
  5441.               "value": "UCta5gdMXAr-wzq6d9LT-zPA"
  5442.             },
  5443.             "canRate": true,
  5444.             "viewerRating": "none",
  5445.             "likeCount": 0,
  5446.             "publishedAt": "2012-12-23T23:37:32Z",
  5447.             "updatedAt": "2012-12-23T23:37:32Z"
  5448.           }
  5449.         },
  5450.         "canReply": true,
  5451.         "totalReplyCount": 0,
  5452.         "isPublic": true
  5453.       }
  5454.     },
  5455.     {
  5456.       "kind": "youtube#commentThread",
  5457.       "etag": "zy-bTSeg7d5bNtQS9h3I8-QpV7c",
  5458.       "id": "UgywrCJuaacoSzMhl_J4AaABAg",
  5459.       "snippet": {
  5460.         "videoId": "atnSTtiWU5E",
  5461.         "topLevelComment": {
  5462.           "kind": "youtube#comment",
  5463.           "etag": "7Eh_SDL0F6-Af1svG1aF1HxGg5E",
  5464.           "id": "UgywrCJuaacoSzMhl_J4AaABAg",
  5465.           "snippet": {
  5466.             "videoId": "atnSTtiWU5E",
  5467.             "textDisplay": "This sounds like Touhou",
  5468.             "textOriginal": "This sounds like Touhou",
  5469.             "authorDisplayName": "Sofia Lafitte",
  5470.             "authorChannelUrl": "http://www.youtube.com/channel/UCMI9Oj9efhmh2KaQUdrk9Dw",
  5471.             "authorChannelId": {
  5472.               "value": "UCMI9Oj9efhmh2KaQUdrk9Dw"
  5473.             },
  5474.             "canRate": true,
  5475.             "viewerRating": "none",
  5476.             "likeCount": 0,
  5477.             "publishedAt": "2012-12-20T20:19:24Z",
  5478.             "updatedAt": "2012-12-20T20:19:24Z"
  5479.           }
  5480.         },
  5481.         "canReply": true,
  5482.         "totalReplyCount": 0,
  5483.         "isPublic": true
  5484.       }
  5485.     },
  5486.     {
  5487.       "kind": "youtube#commentThread",
  5488.       "etag": "Jnr3GIm1Cga63FQQSPHtAbgamC0",
  5489.       "id": "UgzBn0MCvUDr_NNzq7R4AaABAg",
  5490.       "snippet": {
  5491.         "videoId": "atnSTtiWU5E",
  5492.         "topLevelComment": {
  5493.           "kind": "youtube#comment",
  5494.           "etag": "jBGydvVwjOsUpQlJM_dsdMROmPE",
  5495.           "id": "UgzBn0MCvUDr_NNzq7R4AaABAg",
  5496.           "snippet": {
  5497.             "videoId": "atnSTtiWU5E",
  5498.             "textDisplay": "Best. Remix. Ever!\nDat Ouran Highschool Host Clubs -->",
  5499.             "textOriginal": "Best. Remix. Ever!\nDat Ouran Highschool Host Clubs --\u003e",
  5500.             "authorDisplayName": "Suomalaizet",
  5501.             "authorChannelUrl": "http://www.youtube.com/channel/UCjZ2uR1IB3oYdNquRfbFA8w",
  5502.             "authorChannelId": {
  5503.               "value": "UCjZ2uR1IB3oYdNquRfbFA8w"
  5504.             },
  5505.             "canRate": true,
  5506.             "viewerRating": "none",
  5507.             "likeCount": 0,
  5508.             "publishedAt": "2012-12-13T17:04:35Z",
  5509.             "updatedAt": "2012-12-13T17:04:35Z"
  5510.           }
  5511.         },
  5512.         "canReply": true,
  5513.         "totalReplyCount": 0,
  5514.         "isPublic": true
  5515.       }
  5516.     },
  5517.     {
  5518.       "kind": "youtube#commentThread",
  5519.       "etag": "XcBDuhj-mqq8SZMpRUpN6Ti0ejc",
  5520.       "id": "UgxgPhENabmqzrUT5p14AaABAg",
  5521.       "snippet": {
  5522.         "videoId": "atnSTtiWU5E",
  5523.         "topLevelComment": {
  5524.           "kind": "youtube#comment",
  5525.           "etag": "YCD_k5C5wvEzIxI9GMihL3_BSj0",
  5526.           "id": "UgxgPhENabmqzrUT5p14AaABAg",
  5527.           "snippet": {
  5528.             "videoId": "atnSTtiWU5E",
  5529.             "textDisplay": "i totally get ya'. back when there were hardly any cloppers, or any other type of sick shit like that... i guess, if you enjoy getting yourself off to it, i can't stop you. but i still think it's unpleasant.",
  5530.             "textOriginal": "i totally get ya'. back when there were hardly any cloppers, or any other type of sick shit like that... i guess, if you enjoy getting yourself off to it, i can't stop you. but i still think it's unpleasant.",
  5531.             "authorDisplayName": "kitkat424",
  5532.             "authorChannelUrl": "http://www.youtube.com/channel/UCrL0Sbsc10OwPJH_irgzlQg",
  5533.             "authorChannelId": {
  5534.               "value": "UCrL0Sbsc10OwPJH_irgzlQg"
  5535.             },
  5536.             "canRate": true,
  5537.             "viewerRating": "none",
  5538.             "likeCount": 0,
  5539.             "publishedAt": "2012-12-13T00:35:29Z",
  5540.             "updatedAt": "2012-12-13T00:35:29Z"
  5541.           }
  5542.         },
  5543.         "canReply": true,
  5544.         "totalReplyCount": 0,
  5545.         "isPublic": true
  5546.       }
  5547.     },
  5548.     {
  5549.       "kind": "youtube#commentThread",
  5550.       "etag": "Fh1nS7DINe_wMmSutMCPWQPdrIc",
  5551.       "id": "Ugw6YuSiO8Ds64juPPV4AaABAg",
  5552.       "snippet": {
  5553.         "videoId": "atnSTtiWU5E",
  5554.         "topLevelComment": {
  5555.           "kind": "youtube#comment",
  5556.           "etag": "psyF7w8PO8V7dYRKa6Ed-mvvrF0",
  5557.           "id": "Ugw6YuSiO8Ds64juPPV4AaABAg",
  5558.           "snippet": {
  5559.             "videoId": "atnSTtiWU5E",
  5560.             "textDisplay": "Poyfect",
  5561.             "textOriginal": "Poyfect",
  5562.             "authorDisplayName": "Cheesy Cat",
  5563.             "authorChannelUrl": "http://www.youtube.com/channel/UCYRfNDwjvADsm3BxDUC9MFw",
  5564.             "authorChannelId": {
  5565.               "value": "UCYRfNDwjvADsm3BxDUC9MFw"
  5566.             },
  5567.             "canRate": true,
  5568.             "viewerRating": "none",
  5569.             "likeCount": 0,
  5570.             "publishedAt": "2012-12-09T09:00:45Z",
  5571.             "updatedAt": "2012-12-09T09:00:45Z"
  5572.           }
  5573.         },
  5574.         "canReply": true,
  5575.         "totalReplyCount": 0,
  5576.         "isPublic": true
  5577.       }
  5578.     },
  5579.     {
  5580.       "kind": "youtube#commentThread",
  5581.       "etag": "P8yO0xHcQZKgALs6zlHpbvNGjT8",
  5582.       "id": "UgydzLEsMeEnw4mopCZ4AaABAg",
  5583.       "snippet": {
  5584.         "videoId": "atnSTtiWU5E",
  5585.         "topLevelComment": {
  5586.           "kind": "youtube#comment",
  5587.           "etag": "FFA7gjlO3_gRVMBLdLReJxDvNtM",
  5588.           "id": "UgydzLEsMeEnw4mopCZ4AaABAg",
  5589.           "snippet": {
  5590.             "videoId": "atnSTtiWU5E",
  5591.             "textDisplay": "welcome to the herd (\\\n",
  5592.             "textOriginal": "welcome to the herd (\\\n",
  5593.             "authorDisplayName": "MrDonarion",
  5594.             "authorChannelUrl": "http://www.youtube.com/channel/UCOGI2B_E9o7UwvIoUTMnRxw",
  5595.             "authorChannelId": {
  5596.               "value": "UCOGI2B_E9o7UwvIoUTMnRxw"
  5597.             },
  5598.             "canRate": true,
  5599.             "viewerRating": "none",
  5600.             "likeCount": 0,
  5601.             "publishedAt": "2012-12-06T22:00:06Z",
  5602.             "updatedAt": "2012-12-06T22:00:06Z"
  5603.           }
  5604.         },
  5605.         "canReply": true,
  5606.         "totalReplyCount": 0,
  5607.         "isPublic": true
  5608.       }
  5609.     },
  5610.     {
  5611.       "kind": "youtube#commentThread",
  5612.       "etag": "RM1harwytxGHWOmNm6N7NU0opQw",
  5613.       "id": "UgwGPnSg0MvsmMvcmEl4AaABAg",
  5614.       "snippet": {
  5615.         "videoId": "atnSTtiWU5E",
  5616.         "topLevelComment": {
  5617.           "kind": "youtube#comment",
  5618.           "etag": "McRLowZBEpn-QrgK5504piBotrE",
  5619.           "id": "UgwGPnSg0MvsmMvcmEl4AaABAg",
  5620.           "snippet": {
  5621.             "videoId": "atnSTtiWU5E",
  5622.             "textDisplay": "Oh Man. The Nostalgia.\n;~;",
  5623.             "textOriginal": "Oh Man. The Nostalgia.\n;~;",
  5624.             "authorDisplayName": "Walpurgisnacht",
  5625.             "authorChannelUrl": "http://www.youtube.com/channel/UCsQN7vabYwGn1UgFhYO_c9Q",
  5626.             "authorChannelId": {
  5627.               "value": "UCsQN7vabYwGn1UgFhYO_c9Q"
  5628.             },
  5629.             "canRate": true,
  5630.             "viewerRating": "none",
  5631.             "likeCount": 0,
  5632.             "publishedAt": "2012-11-14T07:07:03Z",
  5633.             "updatedAt": "2012-11-14T07:07:03Z"
  5634.           }
  5635.         },
  5636.         "canReply": true,
  5637.         "totalReplyCount": 0,
  5638.         "isPublic": true
  5639.       }
  5640.     },
  5641.     {
  5642.       "kind": "youtube#commentThread",
  5643.       "etag": "yFuiSKX6irQsSUvOw_4QLIR4VXs",
  5644.       "id": "UgwM1yFZll5xA8pixXt4AaABAg",
  5645.       "snippet": {
  5646.         "videoId": "atnSTtiWU5E",
  5647.         "topLevelComment": {
  5648.           "kind": "youtube#comment",
  5649.           "etag": "pKbeAT8keAdlbqjEBdBT-qHO52k",
  5650.           "id": "UgwM1yFZll5xA8pixXt4AaABAg",
  5651.           "snippet": {
  5652.             "videoId": "atnSTtiWU5E",
  5653.             "textDisplay": "I LIKE IT ! ",
  5654.             "textOriginal": "I LIKE IT ! ",
  5655.             "authorDisplayName": "Sofiia Andy Loo",
  5656.             "authorChannelUrl": "http://www.youtube.com/channel/UC4WhudUJjgLJ_DvZDQoMDbw",
  5657.             "authorChannelId": {
  5658.               "value": "UC4WhudUJjgLJ_DvZDQoMDbw"
  5659.             },
  5660.             "canRate": true,
  5661.             "viewerRating": "none",
  5662.             "likeCount": 0,
  5663.             "publishedAt": "2012-11-11T19:57:52Z",
  5664.             "updatedAt": "2012-11-11T19:57:52Z"
  5665.           }
  5666.         },
  5667.         "canReply": true,
  5668.         "totalReplyCount": 0,
  5669.         "isPublic": true
  5670.       }
  5671.     },
  5672.     {
  5673.       "kind": "youtube#commentThread",
  5674.       "etag": "D_C7NJFBCjb5Mj4Jy7B5PM-Ckw4",
  5675.       "id": "UgwhuzuYiDlXg6vomNt4AaABAg",
  5676.       "snippet": {
  5677.         "videoId": "atnSTtiWU5E",
  5678.         "topLevelComment": {
  5679.           "kind": "youtube#comment",
  5680.           "etag": "JGwhu3STQx71p0PXrxnwWrrwtgc",
  5681.           "id": "UgwhuzuYiDlXg6vomNt4AaABAg",
  5682.           "snippet": {
  5683.             "videoId": "atnSTtiWU5E",
  5684.             "textDisplay": "I'm a new brony",
  5685.             "textOriginal": "I'm a new brony",
  5686.             "authorDisplayName": "Ron Anonimity",
  5687.             "authorChannelUrl": "http://www.youtube.com/channel/UCy-8n_M7gJJLE51gNOo0Y1w",
  5688.             "authorChannelId": {
  5689.               "value": "UCy-8n_M7gJJLE51gNOo0Y1w"
  5690.             },
  5691.             "canRate": true,
  5692.             "viewerRating": "none",
  5693.             "likeCount": 0,
  5694.             "publishedAt": "2012-11-04T16:19:18Z",
  5695.             "updatedAt": "2012-11-04T16:19:18Z"
  5696.           }
  5697.         },
  5698.         "canReply": true,
  5699.         "totalReplyCount": 0,
  5700.         "isPublic": true
  5701.       }
  5702.     },
  5703.     {
  5704.       "kind": "youtube#commentThread",
  5705.       "etag": "BbaDo-KhBmV75stfWfjdqE14U3k",
  5706.       "id": "UgxyDn3abjmsdWL9J4x4AaABAg",
  5707.       "snippet": {
  5708.         "videoId": "atnSTtiWU5E",
  5709.         "topLevelComment": {
  5710.           "kind": "youtube#comment",
  5711.           "etag": "ndHSocLSPceIhe5ndPlufD8f63A",
  5712.           "id": "UgxyDn3abjmsdWL9J4x4AaABAg",
  5713.           "snippet": {
  5714.             "videoId": "atnSTtiWU5E",
  5715.             "textDisplay": "Holy Hoof! This music is awesomesauce. I had listened to it all day while doing my chores. Brohoof to you, dude. /)",
  5716.             "textOriginal": "Holy Hoof! This music is awesomesauce. I had listened to it all day while doing my chores. Brohoof to you, dude. /)",
  5717.             "authorDisplayName": "Mini SweetGhostGirl",
  5718.             "authorChannelUrl": "http://www.youtube.com/channel/UCL2i1ZqEukiYjOBGvijY7iA",
  5719.             "authorChannelId": {
  5720.               "value": "UCL2i1ZqEukiYjOBGvijY7iA"
  5721.             },
  5722.             "canRate": true,
  5723.             "viewerRating": "none",
  5724.             "likeCount": 0,
  5725.             "publishedAt": "2012-11-01T15:36:13Z",
  5726.             "updatedAt": "2012-11-01T15:36:13Z"
  5727.           }
  5728.         },
  5729.         "canReply": true,
  5730.         "totalReplyCount": 0,
  5731.         "isPublic": true
  5732.       }
  5733.     },
  5734.     {
  5735.       "kind": "youtube#commentThread",
  5736.       "etag": "JB4ZRo3mC809A0-HOg0nrpaMOfQ",
  5737.       "id": "UgzLJ8Ka2Wls_5OmYUl4AaABAg",
  5738.       "snippet": {
  5739.         "videoId": "atnSTtiWU5E",
  5740.         "topLevelComment": {
  5741.           "kind": "youtube#comment",
  5742.           "etag": "9eZyZTRonDQYKSiF2kFdVmU6z6Q",
  5743.           "id": "UgzLJ8Ka2Wls_5OmYUl4AaABAg",
  5744.           "snippet": {
  5745.             "videoId": "atnSTtiWU5E",
  5746.             "textDisplay": "Yes, check the Date in the description. This was the first ever FIM Remix, ever.",
  5747.             "textOriginal": "Yes, check the Date in the description. This was the first ever FIM Remix, ever.",
  5748.             "authorDisplayName": "Bandpuffs",
  5749.             "authorChannelUrl": "http://www.youtube.com/channel/UC0YPokWZTBVtN7AhxtEfDeQ",
  5750.             "authorChannelId": {
  5751.               "value": "UC0YPokWZTBVtN7AhxtEfDeQ"
  5752.             },
  5753.             "canRate": true,
  5754.             "viewerRating": "none",
  5755.             "likeCount": 11,
  5756.             "publishedAt": "2012-10-24T14:47:38Z",
  5757.             "updatedAt": "2012-10-24T14:47:38Z"
  5758.           }
  5759.         },
  5760.         "canReply": true,
  5761.         "totalReplyCount": 0,
  5762.         "isPublic": true
  5763.       }
  5764.     },
  5765.     {
  5766.       "kind": "youtube#commentThread",
  5767.       "etag": "_UMbD8HTD8fp27RbZjVcVA3m-MQ",
  5768.       "id": "UgxIqPycnLBnHTkupPJ4AaABAg",
  5769.       "snippet": {
  5770.         "videoId": "atnSTtiWU5E",
  5771.         "topLevelComment": {
  5772.           "kind": "youtube#comment",
  5773.           "etag": "8aXfqCeDT5b3YuF6bGg7X_zypUI",
  5774.           "id": "UgxIqPycnLBnHTkupPJ4AaABAg",
  5775.           "snippet": {
  5776.             "videoId": "atnSTtiWU5E",
  5777.             "textDisplay": "HOLY CRAP! IS THIS THE FIRST MLP SONG EVER MADE!?",
  5778.             "textOriginal": "HOLY CRAP! IS THIS THE FIRST MLP SONG EVER MADE!?",
  5779.             "authorDisplayName": "newsearching",
  5780.             "authorChannelUrl": "http://www.youtube.com/channel/UClrQ8bmd3yujiVmQ6_J1zSQ",
  5781.             "authorChannelId": {
  5782.               "value": "UClrQ8bmd3yujiVmQ6_J1zSQ"
  5783.             },
  5784.             "canRate": true,
  5785.             "viewerRating": "none",
  5786.             "likeCount": 0,
  5787.             "publishedAt": "2012-10-24T06:08:03Z",
  5788.             "updatedAt": "2012-10-24T06:08:03Z"
  5789.           }
  5790.         },
  5791.         "canReply": true,
  5792.         "totalReplyCount": 0,
  5793.         "isPublic": true
  5794.       }
  5795.     },
  5796.     {
  5797.       "kind": "youtube#commentThread",
  5798.       "etag": "8End4ZUvTUS1SIUifP-NplS3nDY",
  5799.       "id": "Ugzuw8cJ-ix2lSWdvIJ4AaABAg",
  5800.       "snippet": {
  5801.         "videoId": "atnSTtiWU5E",
  5802.         "topLevelComment": {
  5803.           "kind": "youtube#comment",
  5804.           "etag": "mrrHzNnq1oy2JiY4xJVTx_UGzRE",
  5805.           "id": "Ugzuw8cJ-ix2lSWdvIJ4AaABAg",
  5806.           "snippet": {
  5807.             "videoId": "atnSTtiWU5E",
  5808.             "textDisplay": "26 poeple played the Luna Game...",
  5809.             "textOriginal": "26 poeple played the Luna Game...",
  5810.             "authorDisplayName": "Exerlin",
  5811.             "authorChannelUrl": "http://www.youtube.com/channel/UC9J12K4RUqBNS1rKWG9yA2g",
  5812.             "authorChannelId": {
  5813.               "value": "UC9J12K4RUqBNS1rKWG9yA2g"
  5814.             },
  5815.             "canRate": true,
  5816.             "viewerRating": "none",
  5817.             "likeCount": 0,
  5818.             "publishedAt": "2012-10-23T22:47:21Z",
  5819.             "updatedAt": "2012-10-23T22:47:21Z"
  5820.           }
  5821.         },
  5822.         "canReply": true,
  5823.         "totalReplyCount": 0,
  5824.         "isPublic": true
  5825.       }
  5826.     },
  5827.     {
  5828.       "kind": "youtube#commentThread",
  5829.       "etag": "s3BKWFO5runAkeRzYuIB-gt5bu8",
  5830.       "id": "UgwDweSei2VKfMHoFxF4AaABAg",
  5831.       "snippet": {
  5832.         "videoId": "atnSTtiWU5E",
  5833.         "topLevelComment": {
  5834.           "kind": "youtube#comment",
  5835.           "etag": "T32HUosM3d_qvTLTjmaIYJbMFdc",
  5836.           "id": "UgwDweSei2VKfMHoFxF4AaABAg",
  5837.           "snippet": {
  5838.             "videoId": "atnSTtiWU5E",
  5839.             "textDisplay": "this reminds me of debug mode in sonic 3 and knuckles",
  5840.             "textOriginal": "this reminds me of debug mode in sonic 3 and knuckles",
  5841.             "authorDisplayName": "Louize Andrei",
  5842.             "authorChannelUrl": "http://www.youtube.com/channel/UCyaaY9uox9TdCgnvGfhim0g",
  5843.             "authorChannelId": {
  5844.               "value": "UCyaaY9uox9TdCgnvGfhim0g"
  5845.             },
  5846.             "canRate": true,
  5847.             "viewerRating": "none",
  5848.             "likeCount": 0,
  5849.             "publishedAt": "2012-10-21T05:45:21Z",
  5850.             "updatedAt": "2012-10-21T05:45:21Z"
  5851.           }
  5852.         },
  5853.         "canReply": true,
  5854.         "totalReplyCount": 0,
  5855.         "isPublic": true
  5856.       }
  5857.     },
  5858.     {
  5859.       "kind": "youtube#commentThread",
  5860.       "etag": "CGkrH2Ek_1C78OlwM_evFTNpcd8",
  5861.       "id": "Ugyhag78Tb9F66DXYUh4AaABAg",
  5862.       "snippet": {
  5863.         "videoId": "atnSTtiWU5E",
  5864.         "topLevelComment": {
  5865.           "kind": "youtube#comment",
  5866.           "etag": "Z7MSyHFmFuCecslLRELdhgi_iuA",
  5867.           "id": "Ugyhag78Tb9F66DXYUh4AaABAg",
  5868.           "snippet": {
  5869.             "videoId": "atnSTtiWU5E",
  5870.             "textDisplay": "reminds me of  traditional sonic X background music",
  5871.             "textOriginal": "reminds me of  traditional sonic X background music",
  5872.             "authorDisplayName": "akhutchison",
  5873.             "authorChannelUrl": "http://www.youtube.com/channel/UC9vm7xmcljChwmnIEbM7ySQ",
  5874.             "authorChannelId": {
  5875.               "value": "UC9vm7xmcljChwmnIEbM7ySQ"
  5876.             },
  5877.             "canRate": true,
  5878.             "viewerRating": "none",
  5879.             "likeCount": 0,
  5880.             "publishedAt": "2012-10-21T02:05:48Z",
  5881.             "updatedAt": "2012-10-21T02:05:48Z"
  5882.           }
  5883.         },
  5884.         "canReply": true,
  5885.         "totalReplyCount": 0,
  5886.         "isPublic": true
  5887.       }
  5888.     },
  5889.     {
  5890.       "kind": "youtube#commentThread",
  5891.       "etag": "8FwR9ZwjfE9VYdzkfjNBCmAL8A8",
  5892.       "id": "UgyvVFJthqEw7im2XS14AaABAg",
  5893.       "snippet": {
  5894.         "videoId": "atnSTtiWU5E",
  5895.         "topLevelComment": {
  5896.           "kind": "youtube#comment",
  5897.           "etag": "QGMT80RzqmED4b99Di3fS57XyKo",
  5898.           "id": "UgyvVFJthqEw7im2XS14AaABAg",
  5899.           "snippet": {
  5900.             "videoId": "atnSTtiWU5E",
  5901.             "textDisplay": "I keep expecting to see creepybloom pop up at around. 0:19 fucking luna game",
  5902.             "textOriginal": "I keep expecting to see creepybloom pop up at around. 0:19 fucking luna game",
  5903.             "authorDisplayName": "BonesAreAlwaysWatching",
  5904.             "authorChannelUrl": "http://www.youtube.com/channel/UCBnjQ8FtWEex_4-1iB0RKUw",
  5905.             "authorChannelId": {
  5906.               "value": "UCBnjQ8FtWEex_4-1iB0RKUw"
  5907.             },
  5908.             "canRate": true,
  5909.             "viewerRating": "none",
  5910.             "likeCount": 0,
  5911.             "publishedAt": "2012-10-18T23:01:35Z",
  5912.             "updatedAt": "2012-10-18T23:01:35Z"
  5913.           }
  5914.         },
  5915.         "canReply": true,
  5916.         "totalReplyCount": 0,
  5917.         "isPublic": true
  5918.       }
  5919.     },
  5920.     {
  5921.       "kind": "youtube#commentThread",
  5922.       "etag": "aF1g89PB0f287W15Xl_5lF8Dkco",
  5923.       "id": "Ugwf6fUG68LWdvL9wTZ4AaABAg",
  5924.       "snippet": {
  5925.         "videoId": "atnSTtiWU5E",
  5926.         "topLevelComment": {
  5927.           "kind": "youtube#comment",
  5928.           "etag": "vN1UZPrXdeCIVBIK0YSqGDjoTts",
  5929.           "id": "Ugwf6fUG68LWdvL9wTZ4AaABAg",
  5930.           "snippet": {
  5931.             "videoId": "atnSTtiWU5E",
  5932.             "textDisplay": "The official Zecora boss battle theme! :D",
  5933.             "textOriginal": "The official Zecora boss battle theme! :D",
  5934.             "authorDisplayName": "Hunter Cative",
  5935.             "authorChannelUrl": "http://www.youtube.com/channel/UCIYEW_XLesat9pyVtPPWIzw",
  5936.             "authorChannelId": {
  5937.               "value": "UCIYEW_XLesat9pyVtPPWIzw"
  5938.             },
  5939.             "canRate": true,
  5940.             "viewerRating": "none",
  5941.             "likeCount": 0,
  5942.             "publishedAt": "2012-10-15T05:14:23Z",
  5943.             "updatedAt": "2012-10-15T05:14:23Z"
  5944.           }
  5945.         },
  5946.         "canReply": true,
  5947.         "totalReplyCount": 0,
  5948.         "isPublic": true
  5949.       }
  5950.     },
  5951.     {
  5952.       "kind": "youtube#commentThread",
  5953.       "etag": "rLBFFxa1Q47i_0LEYqa2bSWpOnQ",
  5954.       "id": "Ugxh4NFAKOsqm823GX94AaABAg",
  5955.       "snippet": {
  5956.         "videoId": "atnSTtiWU5E",
  5957.         "topLevelComment": {
  5958.           "kind": "youtube#comment",
  5959.           "etag": "7fjn0YtvL9N-hBEaxhsbeoQC5vk",
  5960.           "id": "Ugxh4NFAKOsqm823GX94AaABAg",
  5961.           "snippet": {
  5962.             "videoId": "atnSTtiWU5E",
  5963.             "textDisplay": "He's watching the video because he likes the music... He said that.",
  5964.             "textOriginal": "He's watching the video because he likes the music... He said that.",
  5965.             "authorDisplayName": "ronniedarko",
  5966.             "authorChannelUrl": "http://www.youtube.com/channel/UCJ0zr99aMhBuPPQa9C7F7sw",
  5967.             "authorChannelId": {
  5968.               "value": "UCJ0zr99aMhBuPPQa9C7F7sw"
  5969.             },
  5970.             "canRate": true,
  5971.             "viewerRating": "none",
  5972.             "likeCount": 0,
  5973.             "publishedAt": "2012-09-28T01:45:08Z",
  5974.             "updatedAt": "2012-09-28T01:45:08Z"
  5975.           }
  5976.         },
  5977.         "canReply": true,
  5978.         "totalReplyCount": 0,
  5979.         "isPublic": true
  5980.       }
  5981.     },
  5982.     {
  5983.       "kind": "youtube#commentThread",
  5984.       "etag": "yivUqoQuXFogWzwG305MAMVkxXs",
  5985.       "id": "Ugzj0Wg5NN1gCFaxc6N4AaABAg",
  5986.       "snippet": {
  5987.         "videoId": "atnSTtiWU5E",
  5988.         "topLevelComment": {
  5989.           "kind": "youtube#comment",
  5990.           "etag": "7qNXsnawRHvemxLvKQHNJZ9hsGE",
  5991.           "id": "Ugzj0Wg5NN1gCFaxc6N4AaABAg",
  5992.           "snippet": {
  5993.             "videoId": "atnSTtiWU5E",
  5994.             "textDisplay": "OMG LOOOOVE IT!\n",
  5995.             "textOriginal": "OMG LOOOOVE IT!\n",
  5996.             "authorDisplayName": "Mac Honry",
  5997.             "authorChannelUrl": "http://www.youtube.com/channel/UCUV_UjrR9nPlelJOB_9SDng",
  5998.             "authorChannelId": {
  5999.               "value": "UCUV_UjrR9nPlelJOB_9SDng"
  6000.             },
  6001.             "canRate": true,
  6002.             "viewerRating": "none",
  6003.             "likeCount": 0,
  6004.             "publishedAt": "2012-09-25T23:58:39Z",
  6005.             "updatedAt": "2012-09-25T23:58:39Z"
  6006.           }
  6007.         },
  6008.         "canReply": true,
  6009.         "totalReplyCount": 0,
  6010.         "isPublic": true
  6011.       }
  6012.     },
  6013.     {
  6014.       "kind": "youtube#commentThread",
  6015.       "etag": "anu-cE9X46Jx7HXT57V3v7AukW4",
  6016.       "id": "Ugwg9NpGjtxWPQ8TrT14AaABAg",
  6017.       "snippet": {
  6018.         "videoId": "atnSTtiWU5E",
  6019.         "topLevelComment": {
  6020.           "kind": "youtube#comment",
  6021.           "etag": "FpMIFyNdl11SXZRAx-Z-ZbH9zgw",
  6022.           "id": "Ugwg9NpGjtxWPQ8TrT14AaABAg",
  6023.           "snippet": {
  6024.             "videoId": "atnSTtiWU5E",
  6025.             "textDisplay": "thats how i became a Brony actually. liked the show, LOVED the high quality community generated music, art, and literature.",
  6026.             "textOriginal": "thats how i became a Brony actually. liked the show, LOVED the high quality community generated music, art, and literature.",
  6027.             "authorDisplayName": "ninjamoonshine7",
  6028.             "authorChannelUrl": "http://www.youtube.com/channel/UCGLNPC47GCDkKH9nPybZn_Q",
  6029.             "authorChannelId": {
  6030.               "value": "UCGLNPC47GCDkKH9nPybZn_Q"
  6031.             },
  6032.             "canRate": true,
  6033.             "viewerRating": "none",
  6034.             "likeCount": 6,
  6035.             "publishedAt": "2012-09-19T21:09:32Z",
  6036.             "updatedAt": "2012-09-19T21:09:32Z"
  6037.           }
  6038.         },
  6039.         "canReply": true,
  6040.         "totalReplyCount": 0,
  6041.         "isPublic": true
  6042.       }
  6043.     },
  6044.     {
  6045.       "kind": "youtube#commentThread",
  6046.       "etag": "mNM-uNL3R80xYPoavuALem9BAJ8",
  6047.       "id": "UgzbwAHcj4U3IJK2Ds54AaABAg",
  6048.       "snippet": {
  6049.         "videoId": "atnSTtiWU5E",
  6050.         "topLevelComment": {
  6051.           "kind": "youtube#comment",
  6052.           "etag": "zVck8f_WKkDOOwNsf48IwIPwWWg",
  6053.           "id": "UgzbwAHcj4U3IJK2Ds54AaABAg",
  6054.           "snippet": {
  6055.             "videoId": "atnSTtiWU5E",
  6056.             "textDisplay": "That's one way to become a brony, Trough the music and other things by the community.",
  6057.             "textOriginal": "That's one way to become a brony, Trough the music and other things by the community.",
  6058.             "authorDisplayName": "Kalwei",
  6059.             "authorChannelUrl": "http://www.youtube.com/channel/UCqckMU5wAi7klSNt3t424pQ",
  6060.             "authorChannelId": {
  6061.               "value": "UCqckMU5wAi7klSNt3t424pQ"
  6062.             },
  6063.             "canRate": true,
  6064.             "viewerRating": "none",
  6065.             "likeCount": 0,
  6066.             "publishedAt": "2012-09-19T19:43:51Z",
  6067.             "updatedAt": "2012-09-19T19:43:51Z"
  6068.           }
  6069.         },
  6070.         "canReply": true,
  6071.         "totalReplyCount": 0,
  6072.         "isPublic": true
  6073.       }
  6074.     },
  6075.     {
  6076.       "kind": "youtube#commentThread",
  6077.       "etag": "myzBdIvznOU8_2rEjaYr-I7hCOc",
  6078.       "id": "UgyS0gTXGSUBaCiRmHx4AaABAg",
  6079.       "snippet": {
  6080.         "videoId": "atnSTtiWU5E",
  6081.         "topLevelComment": {
  6082.           "kind": "youtube#comment",
  6083.           "etag": "8ObxCmtRINKgqhfZ-3Bh6DS6O4o",
  6084.           "id": "UgyS0gTXGSUBaCiRmHx4AaABAg",
  6085.           "snippet": {
  6086.             "videoId": "atnSTtiWU5E",
  6087.             "textDisplay": "i'm seeing a distinct lack of love and tolerance man.  if the guy hates Bronies thats his personal issue, at least he likes the music",
  6088.             "textOriginal": "i'm seeing a distinct lack of love and tolerance man.  if the guy hates Bronies thats his personal issue, at least he likes the music",
  6089.             "authorDisplayName": "ninjamoonshine7",
  6090.             "authorChannelUrl": "http://www.youtube.com/channel/UCGLNPC47GCDkKH9nPybZn_Q",
  6091.             "authorChannelId": {
  6092.               "value": "UCGLNPC47GCDkKH9nPybZn_Q"
  6093.             },
  6094.             "canRate": true,
  6095.             "viewerRating": "none",
  6096.             "likeCount": 0,
  6097.             "publishedAt": "2012-09-15T16:43:00Z",
  6098.             "updatedAt": "2012-09-15T16:43:00Z"
  6099.           }
  6100.         },
  6101.         "canReply": true,
  6102.         "totalReplyCount": 0,
  6103.         "isPublic": true
  6104.       }
  6105.     },
  6106.     {
  6107.       "kind": "youtube#commentThread",
  6108.       "etag": "mredTS9DsT3G-CcePr-PqwqWsqU",
  6109.       "id": "UgylxGaneVYX4gzKy9l4AaABAg",
  6110.       "snippet": {
  6111.         "videoId": "atnSTtiWU5E",
  6112.         "topLevelComment": {
  6113.           "kind": "youtube#comment",
  6114.           "etag": "7Xq2Id5kOkwZZpKK9zXae0mo5GY",
  6115.           "id": "UgylxGaneVYX4gzKy9l4AaABAg",
  6116.           "snippet": {
  6117.             "videoId": "atnSTtiWU5E",
  6118.             "textDisplay": "Initial d?",
  6119.             "textOriginal": "Initial d?",
  6120.             "authorDisplayName": "VTOL",
  6121.             "authorChannelUrl": "http://www.youtube.com/channel/UC8MK-Ivk_ef8m7fGxi6eyNg",
  6122.             "authorChannelId": {
  6123.               "value": "UC8MK-Ivk_ef8m7fGxi6eyNg"
  6124.             },
  6125.             "canRate": true,
  6126.             "viewerRating": "none",
  6127.             "likeCount": 0,
  6128.             "publishedAt": "2012-09-04T21:48:19Z",
  6129.             "updatedAt": "2012-09-04T21:48:19Z"
  6130.           }
  6131.         },
  6132.         "canReply": true,
  6133.         "totalReplyCount": 0,
  6134.         "isPublic": true
  6135.       }
  6136.     },
  6137.     {
  6138.       "kind": "youtube#commentThread",
  6139.       "etag": "JSq6139ALZrvGsqG7nGKBMMJFpA",
  6140.       "id": "UgxyIPPR_NH1FUb-ght4AaABAg",
  6141.       "snippet": {
  6142.         "videoId": "atnSTtiWU5E",
  6143.         "topLevelComment": {
  6144.           "kind": "youtube#comment",
  6145.           "etag": "2NUgfETzoz6wTYIaiAVFgU9TXyU",
  6146.           "id": "UgxyIPPR_NH1FUb-ght4AaABAg",
  6147.           "snippet": {
  6148.             "videoId": "atnSTtiWU5E",
  6149.             "textDisplay": "This belongs in Fighting is Magic, as the swamp stage song!",
  6150.             "textOriginal": "This belongs in Fighting is Magic, as the swamp stage song!",
  6151.             "authorDisplayName": "Justin",
  6152.             "authorChannelUrl": "http://www.youtube.com/channel/UC769wtpYMlFDUsKajUZa0dg",
  6153.             "authorChannelId": {
  6154.               "value": "UC769wtpYMlFDUsKajUZa0dg"
  6155.             },
  6156.             "canRate": true,
  6157.             "viewerRating": "none",
  6158.             "likeCount": 0,
  6159.             "publishedAt": "2012-08-29T09:07:09Z",
  6160.             "updatedAt": "2012-08-29T09:07:09Z"
  6161.           }
  6162.         },
  6163.         "canReply": true,
  6164.         "totalReplyCount": 0,
  6165.         "isPublic": true
  6166.       }
  6167.     },
  6168.     {
  6169.       "kind": "youtube#commentThread",
  6170.       "etag": "PZ9Eu9wmlWS2peo0CSgC6vA9F1k",
  6171.       "id": "UgzgDJo5hKgIsh8BIIN4AaABAg",
  6172.       "snippet": {
  6173.         "videoId": "atnSTtiWU5E",
  6174.         "topLevelComment": {
  6175.           "kind": "youtube#comment",
  6176.           "etag": "UfnZEpwSV1RVQualJlrW3Tt7LlI",
  6177.           "id": "UgzgDJo5hKgIsh8BIIN4AaABAg",
  6178.           "snippet": {
  6179.             "videoId": "atnSTtiWU5E",
  6180.             "textDisplay": "shes an evil enchantress and she does evil dances and when she looks you in the eye she will put you in trances what will she do she'll mix up an evil brew and she'll gobble you up in a big tasty stew so.....WATCH OUT!!!!!!!!!!!!!",
  6181.             "textOriginal": "shes an evil enchantress and she does evil dances and when she looks you in the eye she will put you in trances what will she do she'll mix up an evil brew and she'll gobble you up in a big tasty stew so.....WATCH OUT!!!!!!!!!!!!!",
  6182.             "authorDisplayName": "Emily Jordan",
  6183.             "authorChannelUrl": "http://www.youtube.com/channel/UCucCwq_pQdZBouZQYsSMiLg",
  6184.             "authorChannelId": {
  6185.               "value": "UCucCwq_pQdZBouZQYsSMiLg"
  6186.             },
  6187.             "canRate": true,
  6188.             "viewerRating": "none",
  6189.             "likeCount": 0,
  6190.             "publishedAt": "2012-08-28T22:17:37Z",
  6191.             "updatedAt": "2012-08-28T22:17:37Z"
  6192.           }
  6193.         },
  6194.         "canReply": true,
  6195.         "totalReplyCount": 0,
  6196.         "isPublic": true
  6197.       }
  6198.     },
  6199.     {
  6200.       "kind": "youtube#commentThread",
  6201.       "etag": "CcK7gPB7lat8rYWS7Hcik7TlHSE",
  6202.       "id": "UgxbyGUomeU3g1hHF6V4AaABAg",
  6203.       "snippet": {
  6204.         "videoId": "atnSTtiWU5E",
  6205.         "topLevelComment": {
  6206.           "kind": "youtube#comment",
  6207.           "etag": "PPzzg-bgz-bANcn9Y7mh-klXOl8",
  6208.           "id": "UgxbyGUomeU3g1hHF6V4AaABAg",
  6209.           "snippet": {
  6210.             "videoId": "atnSTtiWU5E",
  6211.             "textDisplay": "*note skin   shouldve said",
  6212.             "textOriginal": "*note skin   shouldve said",
  6213.             "authorDisplayName": "BenTennison16",
  6214.             "authorChannelUrl": "http://www.youtube.com/channel/UCgoP2SuTfuA6KPDe2BASAnQ",
  6215.             "authorChannelId": {
  6216.               "value": "UCgoP2SuTfuA6KPDe2BASAnQ"
  6217.             },
  6218.             "canRate": true,
  6219.             "viewerRating": "none",
  6220.             "likeCount": 0,
  6221.             "publishedAt": "2012-08-19T21:44:07Z",
  6222.             "updatedAt": "2012-08-19T21:44:07Z"
  6223.           }
  6224.         },
  6225.         "canReply": true,
  6226.         "totalReplyCount": 0,
  6227.         "isPublic": true
  6228.       }
  6229.     },
  6230.     {
  6231.       "kind": "youtube#commentThread",
  6232.       "etag": "0tQEJh_roWdjdliUYO-RTFQRHZs",
  6233.       "id": "UgyIESbi8wYvEAp3Qdt4AaABAg",
  6234.       "snippet": {
  6235.         "videoId": "atnSTtiWU5E",
  6236.         "topLevelComment": {
  6237.           "kind": "youtube#comment",
  6238.           "etag": "N7T9fxmX8FQhTr1iE2gH7JvhR4E",
  6239.           "id": "UgyIESbi8wYvEAp3Qdt4AaABAg",
  6240.           "snippet": {
  6241.             "videoId": "atnSTtiWU5E",
  6242.             "textDisplay": "i play this on ITG :) much nicer, fuller arrows, love it",
  6243.             "textOriginal": "i play this on ITG :) much nicer, fuller arrows, love it",
  6244.             "authorDisplayName": "BenTennison16",
  6245.             "authorChannelUrl": "http://www.youtube.com/channel/UCgoP2SuTfuA6KPDe2BASAnQ",
  6246.             "authorChannelId": {
  6247.               "value": "UCgoP2SuTfuA6KPDe2BASAnQ"
  6248.             },
  6249.             "canRate": true,
  6250.             "viewerRating": "none",
  6251.             "likeCount": 0,
  6252.             "publishedAt": "2012-08-19T21:43:45Z",
  6253.             "updatedAt": "2012-08-19T21:43:45Z"
  6254.           }
  6255.         },
  6256.         "canReply": true,
  6257.         "totalReplyCount": 0,
  6258.         "isPublic": true
  6259.       }
  6260.     },
  6261.     {
  6262.       "kind": "youtube#commentThread",
  6263.       "etag": "1k3zfam394FuKySA2ZreQ0FiTuQ",
  6264.       "id": "UgzP2FWhd3ZKnOdcHZV4AaABAg",
  6265.       "snippet": {
  6266.         "videoId": "atnSTtiWU5E",
  6267.         "topLevelComment": {
  6268.           "kind": "youtube#comment",
  6269.           "etag": "eAQdyxlTlH0ypoTwrG7dwJpLFWc",
  6270.           "id": "UgzP2FWhd3ZKnOdcHZV4AaABAg",
  6271.           "snippet": {
  6272.             "videoId": "atnSTtiWU5E",
  6273.             "textDisplay": "oh no, nm, on stepmania its a shortened version",
  6274.             "textOriginal": "oh no, nm, on stepmania its a shortened version",
  6275.             "authorDisplayName": "Bartelemeus Van Den Tillaart",
  6276.             "authorChannelUrl": "http://www.youtube.com/channel/UC2LWpEjGFUCCTPi1n4N2gjg",
  6277.             "authorChannelId": {
  6278.               "value": "UC2LWpEjGFUCCTPi1n4N2gjg"
  6279.             },
  6280.             "canRate": true,
  6281.             "viewerRating": "none",
  6282.             "likeCount": 0,
  6283.             "publishedAt": "2012-08-19T05:31:41Z",
  6284.             "updatedAt": "2012-08-19T05:31:41Z"
  6285.           }
  6286.         },
  6287.         "canReply": true,
  6288.         "totalReplyCount": 0,
  6289.         "isPublic": true
  6290.       }
  6291.     },
  6292.     {
  6293.       "kind": "youtube#commentThread",
  6294.       "etag": "16B9jhot8izlf1HhWMhGQ8JQMOo",
  6295.       "id": "Ugy8snG3pHHfcwEMiCN4AaABAg",
  6296.       "snippet": {
  6297.         "videoId": "atnSTtiWU5E",
  6298.         "topLevelComment": {
  6299.           "kind": "youtube#comment",
  6300.           "etag": "3zDOhQg1yEO4D7siI8ny1pqb8A8",
  6301.           "id": "Ugy8snG3pHHfcwEMiCN4AaABAg",
  6302.           "snippet": {
  6303.             "videoId": "atnSTtiWU5E",
  6304.             "textDisplay": "got this one on STEPMANIA, but than a little defferent ",
  6305.             "textOriginal": "got this one on STEPMANIA, but than a little defferent ",
  6306.             "authorDisplayName": "Bartelemeus Van Den Tillaart",
  6307.             "authorChannelUrl": "http://www.youtube.com/channel/UC2LWpEjGFUCCTPi1n4N2gjg",
  6308.             "authorChannelId": {
  6309.               "value": "UC2LWpEjGFUCCTPi1n4N2gjg"
  6310.             },
  6311.             "canRate": true,
  6312.             "viewerRating": "none",
  6313.             "likeCount": 0,
  6314.             "publishedAt": "2012-08-19T05:30:38Z",
  6315.             "updatedAt": "2012-08-19T05:30:38Z"
  6316.           }
  6317.         },
  6318.         "canReply": true,
  6319.         "totalReplyCount": 0,
  6320.         "isPublic": true
  6321.       }
  6322.     },
  6323.     {
  6324.       "kind": "youtube#commentThread",
  6325.       "etag": "ZXRynk8EWPwFq-7j2ka4CU_iol0",
  6326.       "id": "UgzI0rdhxeoHLIHQjOd4AaABAg",
  6327.       "snippet": {
  6328.         "videoId": "atnSTtiWU5E",
  6329.         "topLevelComment": {
  6330.           "kind": "youtube#comment",
  6331.           "etag": "j9s2IEYF1okPyFx09-O2AyeaOeI",
  6332.           "id": "UgzI0rdhxeoHLIHQjOd4AaABAg",
  6333.           "snippet": {
  6334.             "videoId": "atnSTtiWU5E",
  6335.             "textDisplay": "You can sing Discord with the beat of this song. And it kind of fits.",
  6336.             "textOriginal": "You can sing Discord with the beat of this song. And it kind of fits.",
  6337.             "authorDisplayName": "Baevex",
  6338.             "authorChannelUrl": "http://www.youtube.com/channel/UCfPkBpxeIodh-OfCINadUhQ",
  6339.             "authorChannelId": {
  6340.               "value": "UCfPkBpxeIodh-OfCINadUhQ"
  6341.             },
  6342.             "canRate": true,
  6343.             "viewerRating": "none",
  6344.             "likeCount": 0,
  6345.             "publishedAt": "2012-08-12T23:38:45Z",
  6346.             "updatedAt": "2012-08-12T23:38:45Z"
  6347.           }
  6348.         },
  6349.         "canReply": true,
  6350.         "totalReplyCount": 0,
  6351.         "isPublic": true
  6352.       }
  6353.     },
  6354.     {
  6355.       "kind": "youtube#commentThread",
  6356.       "etag": "-U65ZeoLQ2cpBtJ5FmJrHczKLVM",
  6357.       "id": "UgzDOvhB8X-UXAqOuEV4AaABAg",
  6358.       "snippet": {
  6359.         "videoId": "atnSTtiWU5E",
  6360.         "topLevelComment": {
  6361.           "kind": "youtube#comment",
  6362.           "etag": "hdCd6drQJGoDtYoQYOjUhBENoqw",
  6363.           "id": "UgzDOvhB8X-UXAqOuEV4AaABAg",
  6364.           "snippet": {
  6365.             "videoId": "atnSTtiWU5E",
  6366.             "textDisplay": "initial D pony stage\n",
  6367.             "textOriginal": "initial D pony stage\n",
  6368.             "authorDisplayName": "Nigami",
  6369.             "authorChannelUrl": "http://www.youtube.com/channel/UC9hRhPnrnCoo1Y2bsyrZfVQ",
  6370.             "authorChannelId": {
  6371.               "value": "UC9hRhPnrnCoo1Y2bsyrZfVQ"
  6372.             },
  6373.             "canRate": true,
  6374.             "viewerRating": "none",
  6375.             "likeCount": 0,
  6376.             "publishedAt": "2012-08-10T06:18:36Z",
  6377.             "updatedAt": "2012-08-10T06:18:36Z"
  6378.           }
  6379.         },
  6380.         "canReply": true,
  6381.         "totalReplyCount": 0,
  6382.         "isPublic": true
  6383.       }
  6384.     },
  6385.     {
  6386.       "kind": "youtube#commentThread",
  6387.       "etag": "jxfr7Xx27zaNdO8cScoEOYSi2ag",
  6388.       "id": "UgzQs3pD1xNXiMWSQI54AaABAg",
  6389.       "snippet": {
  6390.         "videoId": "atnSTtiWU5E",
  6391.         "topLevelComment": {
  6392.           "kind": "youtube#comment",
  6393.           "etag": "-4z4MpcEUo2x5N4s5NwsdTTO3Qg",
  6394.           "id": "UgzQs3pD1xNXiMWSQI54AaABAg",
  6395.           "snippet": {
  6396.             "videoId": "atnSTtiWU5E",
  6397.             "textDisplay": "Just watch Ballad of the Brony. It's an hour long...and will explain everything",
  6398.             "textOriginal": "Just watch Ballad of the Brony. It's an hour long...and will explain everything",
  6399.             "authorDisplayName": "Kaito Gillscale",
  6400.             "authorChannelUrl": "http://www.youtube.com/channel/UCcytoJHNKm8uP7G8edE1sBA",
  6401.             "authorChannelId": {
  6402.               "value": "UCcytoJHNKm8uP7G8edE1sBA"
  6403.             },
  6404.             "canRate": true,
  6405.             "viewerRating": "none",
  6406.             "likeCount": 0,
  6407.             "publishedAt": "2012-08-06T23:11:03Z",
  6408.             "updatedAt": "2012-08-06T23:11:03Z"
  6409.           }
  6410.         },
  6411.         "canReply": true,
  6412.         "totalReplyCount": 0,
  6413.         "isPublic": true
  6414.       }
  6415.     },
  6416.     {
  6417.       "kind": "youtube#commentThread",
  6418.       "etag": "zVQH0JZdYQsJsuJ9qGQRjwx2tqw",
  6419.       "id": "UgzTaf-6rHNb9q0ZvO94AaABAg",
  6420.       "snippet": {
  6421.         "videoId": "atnSTtiWU5E",
  6422.         "topLevelComment": {
  6423.           "kind": "youtube#comment",
  6424.           "etag": "iryLsOw66fzGhqCHCj8CiQ7k_y4",
  6425.           "id": "UgzTaf-6rHNb9q0ZvO94AaABAg",
  6426.           "snippet": {
  6427.             "videoId": "atnSTtiWU5E",
  6428.             "textDisplay": "We all do... then we become the so called "Fags" we hate n realive "oh wait.. theyre awesome... i hate myself...." then we Gain in the 1000s and so on XD i dont understand why people hate us we all have our likeings\n~Box",
  6429.             "textOriginal": "We all do... then we become the so called \"Fags\" we hate n realive \"oh wait.. theyre awesome... i hate myself....\" then we Gain in the 1000s and so on XD i dont understand why people hate us we all have our likeings\n~Box",
  6430.             "authorDisplayName": "Zero 'AkaBox",
  6431.             "authorChannelUrl": "http://www.youtube.com/channel/UCxY5NxyTK7iMb8qttjjzDMw",
  6432.             "authorChannelId": {
  6433.               "value": "UCxY5NxyTK7iMb8qttjjzDMw"
  6434.             },
  6435.             "canRate": true,
  6436.             "viewerRating": "none",
  6437.             "likeCount": 0,
  6438.             "publishedAt": "2012-08-03T23:05:06Z",
  6439.             "updatedAt": "2012-08-03T23:05:06Z"
  6440.           }
  6441.         },
  6442.         "canReply": true,
  6443.         "totalReplyCount": 0,
  6444.         "isPublic": true
  6445.       }
  6446.     },
  6447.     {
  6448.       "kind": "youtube#commentThread",
  6449.       "etag": "SdxeZ1F8urHae0s6vfX7CHflqVw",
  6450.       "id": "UgxouaQk41ZGYoKVOyd4AaABAg",
  6451.       "snippet": {
  6452.         "videoId": "atnSTtiWU5E",
  6453.         "topLevelComment": {
  6454.           "kind": "youtube#comment",
  6455.           "etag": "iSJ5sFszMib4AMH59KgFwrLkohw",
  6456.           "id": "UgxouaQk41ZGYoKVOyd4AaABAg",
  6457.           "snippet": {
  6458.             "videoId": "atnSTtiWU5E",
  6459.             "textDisplay": "um... thanks?",
  6460.             "textOriginal": "um... thanks?",
  6461.             "authorDisplayName": "jamofthetoe",
  6462.             "authorChannelUrl": "http://www.youtube.com/channel/UCXfxAiA2Sh8pxfypTKLRLig",
  6463.             "authorChannelId": {
  6464.               "value": "UCXfxAiA2Sh8pxfypTKLRLig"
  6465.             },
  6466.             "canRate": true,
  6467.             "viewerRating": "none",
  6468.             "likeCount": 0,
  6469.             "publishedAt": "2012-08-02T04:08:29Z",
  6470.             "updatedAt": "2012-08-02T04:08:29Z"
  6471.           }
  6472.         },
  6473.         "canReply": true,
  6474.         "totalReplyCount": 0,
  6475.         "isPublic": true
  6476.       }
  6477.     },
  6478.     {
  6479.       "kind": "youtube#commentThread",
  6480.       "etag": "-M_My3o163t_f4q-KYj4NC5Ctd8",
  6481.       "id": "UgxRoziRSCt6YzR58Up4AaABAg",
  6482.       "snippet": {
  6483.         "videoId": "atnSTtiWU5E",
  6484.         "topLevelComment": {
  6485.           "kind": "youtube#comment",
  6486.           "etag": "q-CxZFHTnCPvh93-PW0A-Jeu6_c",
  6487.           "id": "UgxRoziRSCt6YzR58Up4AaABAg",
  6488.           "snippet": {
  6489.             "videoId": "atnSTtiWU5E",
  6490.             "textDisplay": "Sounds like boos music. Awesome!\n",
  6491.             "textOriginal": "Sounds like boos music. Awesome!\n",
  6492.             "authorDisplayName": "Alfgate",
  6493.             "authorChannelUrl": "http://www.youtube.com/channel/UCloX5iXskXJmSImCyoWCafw",
  6494.             "authorChannelId": {
  6495.               "value": "UCloX5iXskXJmSImCyoWCafw"
  6496.             },
  6497.             "canRate": true,
  6498.             "viewerRating": "none",
  6499.             "likeCount": 0,
  6500.             "publishedAt": "2012-07-29T02:45:22Z",
  6501.             "updatedAt": "2012-07-29T02:45:22Z"
  6502.           }
  6503.         },
  6504.         "canReply": true,
  6505.         "totalReplyCount": 0,
  6506.         "isPublic": true
  6507.       }
  6508.     },
  6509.     {
  6510.       "kind": "youtube#commentThread",
  6511.       "etag": "z8LHLDYK2RSEZ_mZRn2-V5Iu9PE",
  6512.       "id": "UgzjhdIo3fT6QzR_XnB4AaABAg",
  6513.       "snippet": {
  6514.         "videoId": "atnSTtiWU5E",
  6515.         "topLevelComment": {
  6516.           "kind": "youtube#comment",
  6517.           "etag": "F6E2ai1mvgnoUP0TxJ4LZu-hNuk",
  6518.           "id": "UgzjhdIo3fT6QzR_XnB4AaABAg",
  6519.           "snippet": {
  6520.             "videoId": "atnSTtiWU5E",
  6521.             "textDisplay": "Then Applebloom stares menacingly at you, with a sadistic look on her face while creepy, ominous music plays in the background a.k.a. Luna Game",
  6522.             "textOriginal": "Then Applebloom stares menacingly at you, with a sadistic look on her face while creepy, ominous music plays in the background a.k.a. Luna Game",
  6523.             "authorDisplayName": "ManeGunner6",
  6524.             "authorChannelUrl": "http://www.youtube.com/channel/UCvpq_imdNdT-l1ZSd-Ch-Tw",
  6525.             "authorChannelId": {
  6526.               "value": "UCvpq_imdNdT-l1ZSd-Ch-Tw"
  6527.             },
  6528.             "canRate": true,
  6529.             "viewerRating": "none",
  6530.             "likeCount": 1,
  6531.             "publishedAt": "2012-07-26T12:28:13Z",
  6532.             "updatedAt": "2012-07-26T12:28:13Z"
  6533.           }
  6534.         },
  6535.         "canReply": true,
  6536.         "totalReplyCount": 0,
  6537.         "isPublic": true
  6538.       }
  6539.     },
  6540.     {
  6541.       "kind": "youtube#commentThread",
  6542.       "etag": "Pi0BVdzas_kv5Nm-92_bkEsaEVo",
  6543.       "id": "UgzAZIYzLRo28ZRuOOB4AaABAg",
  6544.       "snippet": {
  6545.         "videoId": "atnSTtiWU5E",
  6546.         "topLevelComment": {
  6547.           "kind": "youtube#comment",
  6548.           "etag": "nxDQIGZfjbR7_c-Y3VfhocvbJSI",
  6549.           "id": "UgzAZIYzLRo28ZRuOOB4AaABAg",
  6550.           "snippet": {
  6551.             "videoId": "atnSTtiWU5E",
  6552.             "textDisplay": "There are one or two dvd's available to buy and you can also find episodes on youtube or tv on the Hub. As for the music, I don't think so as these are all fan-made songs.",
  6553.             "textOriginal": "There are one or two dvd's available to buy and you can also find episodes on youtube or tv on the Hub. As for the music, I don't think so as these are all fan-made songs.",
  6554.             "authorDisplayName": "Nobody-in-Particular",
  6555.             "authorChannelUrl": "http://www.youtube.com/channel/UCZ3tEJGqaWZKZeUuT-oldMA",
  6556.             "authorChannelId": {
  6557.               "value": "UCZ3tEJGqaWZKZeUuT-oldMA"
  6558.             },
  6559.             "canRate": true,
  6560.             "viewerRating": "none",
  6561.             "likeCount": 0,
  6562.             "publishedAt": "2012-07-23T19:20:21Z",
  6563.             "updatedAt": "2012-07-23T19:20:21Z"
  6564.           }
  6565.         },
  6566.         "canReply": true,
  6567.         "totalReplyCount": 0,
  6568.         "isPublic": true
  6569.       }
  6570.     },
  6571.     {
  6572.       "kind": "youtube#commentThread",
  6573.       "etag": "e4HltIRlF7w2hYMoCrp8OtDeo9M",
  6574.       "id": "Ugz1y07FtdC_cLFPm914AaABAg",
  6575.       "snippet": {
  6576.         "videoId": "atnSTtiWU5E",
  6577.         "topLevelComment": {
  6578.           "kind": "youtube#comment",
  6579.           "etag": "1HzmHAEA2vBbLBuFhMLbhtoIvEY",
  6580.           "id": "Ugz1y07FtdC_cLFPm914AaABAg",
  6581.           "snippet": {
  6582.             "videoId": "atnSTtiWU5E",
  6583.             "textDisplay": "hmm interesting. so its just 2 yrs old now.thts good.  so can you like buy a dvd of this show? or is it simply a free internet show? and what about these eurobeat/techno remixes, is there a CD or something?",
  6584.             "textOriginal": "hmm interesting. so its just 2 yrs old now.thts good.  so can you like buy a dvd of this show? or is it simply a free internet show? and what about these eurobeat/techno remixes, is there a CD or something?",
  6585.             "authorDisplayName": "BenTennison16",
  6586.             "authorChannelUrl": "http://www.youtube.com/channel/UCgoP2SuTfuA6KPDe2BASAnQ",
  6587.             "authorChannelId": {
  6588.               "value": "UCgoP2SuTfuA6KPDe2BASAnQ"
  6589.             },
  6590.             "canRate": true,
  6591.             "viewerRating": "none",
  6592.             "likeCount": 0,
  6593.             "publishedAt": "2012-07-23T13:27:57Z",
  6594.             "updatedAt": "2012-07-23T13:27:57Z"
  6595.           }
  6596.         },
  6597.         "canReply": true,
  6598.         "totalReplyCount": 0,
  6599.         "isPublic": true
  6600.       }
  6601.     },
  6602.     {
  6603.       "kind": "youtube#commentThread",
  6604.       "etag": "aGBFENm_z4wkXDfIvPI47Ag_we8",
  6605.       "id": "UgzLwh3ekC64Kl5dudh4AaABAg",
  6606.       "snippet": {
  6607.         "videoId": "atnSTtiWU5E",
  6608.         "topLevelComment": {
  6609.           "kind": "youtube#comment",
  6610.           "etag": "wEKJZZo75OlPIcIraERpDg23m8E",
  6611.           "id": "UgzLwh3ekC64Kl5dudh4AaABAg",
  6612.           "snippet": {
  6613.             "videoId": "atnSTtiWU5E",
  6614.             "textDisplay": "Eventually it spread past 4chan and they simply became known as bronies. The reason we like the show is that we find the show humorous with references your avg. little girl wouldn't understand(Huffy the Dragon, Appletini, Chocolate Rain and more), well characterized, and well written. Plus, the community is rather close knit, has a great relationship with the cast and crew of the show and produces great music and stories...and art....and animations.",
  6615.             "textOriginal": "Eventually it spread past 4chan and they simply became known as bronies. The reason we like the show is that we find the show humorous with references your avg. little girl wouldn't understand(Huffy the Dragon, Appletini, Chocolate Rain and more), well characterized, and well written. Plus, the community is rather close knit, has a great relationship with the cast and crew of the show and produces great music and stories...and art....and animations.",
  6616.             "authorDisplayName": "Nobody-in-Particular",
  6617.             "authorChannelUrl": "http://www.youtube.com/channel/UCZ3tEJGqaWZKZeUuT-oldMA",
  6618.             "authorChannelId": {
  6619.               "value": "UCZ3tEJGqaWZKZeUuT-oldMA"
  6620.             },
  6621.             "canRate": true,
  6622.             "viewerRating": "none",
  6623.             "likeCount": 0,
  6624.             "publishedAt": "2012-07-18T17:28:23Z",
  6625.             "updatedAt": "2012-07-18T17:28:23Z"
  6626.           }
  6627.         },
  6628.         "canReply": true,
  6629.         "totalReplyCount": 0,
  6630.         "isPublic": true
  6631.       }
  6632.     },
  6633.     {
  6634.       "kind": "youtube#commentThread",
  6635.       "etag": "UBHJeYv0MGJQnVAjitHzVRHunbc",
  6636.       "id": "UgwVBHQDhrr-wISp1xV4AaABAg",
  6637.       "snippet": {
  6638.         "videoId": "atnSTtiWU5E",
  6639.         "topLevelComment": {
  6640.           "kind": "youtube#comment",
  6641.           "etag": "x9k8BrZ9il4Nlu7LrdhGwRNWKv0",
  6642.           "id": "UgwVBHQDhrr-wISp1xV4AaABAg",
  6643.           "snippet": {
  6644.             "videoId": "atnSTtiWU5E",
  6645.             "textDisplay": "When it came out almost 2 yrs ago, someone wrote an article saying how it was the end of  creator driven animation because Lauren Faust was making(she;s is famous for her shows) . Well the /co/ boards got a hold of the article and in order to rip on the guy watched the show. Well, many of them liked it more then they expected, and the show spread to /b/. Once /b/ got a hold of it, it exploded into popularity(and infamy) and fans from /b/ quickly became known as /b/ronies.",
  6646.             "textOriginal": "When it came out almost 2 yrs ago, someone wrote an article saying how it was the end of  creator driven animation because Lauren Faust was making(she;s is famous for her shows) . Well the /co/ boards got a hold of the article and in order to rip on the guy watched the show. Well, many of them liked it more then they expected, and the show spread to /b/. Once /b/ got a hold of it, it exploded into popularity(and infamy) and fans from /b/ quickly became known as /b/ronies.",
  6647.             "authorDisplayName": "Nobody-in-Particular",
  6648.             "authorChannelUrl": "http://www.youtube.com/channel/UCZ3tEJGqaWZKZeUuT-oldMA",
  6649.             "authorChannelId": {
  6650.               "value": "UCZ3tEJGqaWZKZeUuT-oldMA"
  6651.             },
  6652.             "canRate": true,
  6653.             "viewerRating": "none",
  6654.             "likeCount": 0,
  6655.             "publishedAt": "2012-07-18T17:24:41Z",
  6656.             "updatedAt": "2012-07-18T17:24:41Z"
  6657.           }
  6658.         },
  6659.         "canReply": true,
  6660.         "totalReplyCount": 0,
  6661.         "isPublic": true
  6662.       }
  6663.     },
  6664.     {
  6665.       "kind": "youtube#commentThread",
  6666.       "etag": "EqpqKH5spqgxnZoovJ_c-ALRkeE",
  6667.       "id": "UgxKBXvVVoE7jY935SN4AaABAg",
  6668.       "snippet": {
  6669.         "videoId": "atnSTtiWU5E",
  6670.         "topLevelComment": {
  6671.           "kind": "youtube#comment",
  6672.           "etag": "MjEjfQAtLnkEOjzs-eY4s6xQE-U",
  6673.           "id": "UgxKBXvVVoE7jY935SN4AaABAg",
  6674.           "snippet": {
  6675.             "videoId": "atnSTtiWU5E",
  6676.             "textDisplay": "hi people. can someone please explain to me the recent obsession with this new version of MLP. i thought it was an old cartoon i used to watch as a child.   I do like these remixes though- a lot. thanks for your answers.",
  6677.             "textOriginal": "hi people. can someone please explain to me the recent obsession with this new version of MLP. i thought it was an old cartoon i used to watch as a child.   I do like these remixes though- a lot. thanks for your answers.",
  6678.             "authorDisplayName": "BenTennison16",
  6679.             "authorChannelUrl": "http://www.youtube.com/channel/UCgoP2SuTfuA6KPDe2BASAnQ",
  6680.             "authorChannelId": {
  6681.               "value": "UCgoP2SuTfuA6KPDe2BASAnQ"
  6682.             },
  6683.             "canRate": true,
  6684.             "viewerRating": "none",
  6685.             "likeCount": 0,
  6686.             "publishedAt": "2012-07-18T09:29:21Z",
  6687.             "updatedAt": "2012-07-18T09:29:21Z"
  6688.           }
  6689.         },
  6690.         "canReply": true,
  6691.         "totalReplyCount": 0,
  6692.         "isPublic": true
  6693.       }
  6694.     },
  6695.     {
  6696.       "kind": "youtube#commentThread",
  6697.       "etag": "sNYMuBaEcKt1O_B8KHsTB2pwfBg",
  6698.       "id": "UgwKItG411v9zrIxebR4AaABAg",
  6699.       "snippet": {
  6700.         "videoId": "atnSTtiWU5E",
  6701.         "topLevelComment": {
  6702.           "kind": "youtube#comment",
  6703.           "etag": "2DN-3nLGdi7EZny5sMHdO4y-uaU",
  6704.           "id": "UgwKItG411v9zrIxebR4AaABAg",
  6705.           "snippet": {
  6706.             "videoId": "atnSTtiWU5E",
  6707.             "textDisplay": "What is your problem? I was only stating a fact, not all of us bronies are like "those" guys. No need to hate on all of us. I understand where your hate comes from, yes, but you need to learn that most of us are not socially awkward freaks that clop to R34 and stuff like that. Me, I just watch the show and that is it.",
  6708.             "textOriginal": "What is your problem? I was only stating a fact, not all of us bronies are like \"those\" guys. No need to hate on all of us. I understand where your hate comes from, yes, but you need to learn that most of us are not socially awkward freaks that clop to R34 and stuff like that. Me, I just watch the show and that is it.",
  6709.             "authorDisplayName": "Gamerguy2123",
  6710.             "authorChannelUrl": "http://www.youtube.com/channel/UCmeW5TZjCd1eg9WTsPlkRJQ",
  6711.             "authorChannelId": {
  6712.               "value": "UCmeW5TZjCd1eg9WTsPlkRJQ"
  6713.             },
  6714.             "canRate": true,
  6715.             "viewerRating": "none",
  6716.             "likeCount": 0,
  6717.             "publishedAt": "2012-07-15T18:27:29Z",
  6718.             "updatedAt": "2012-07-15T18:27:29Z"
  6719.           }
  6720.         },
  6721.         "canReply": true,
  6722.         "totalReplyCount": 0,
  6723.         "isPublic": true
  6724.       }
  6725.     },
  6726.     {
  6727.       "kind": "youtube#commentThread",
  6728.       "etag": "QcPWRgM6TG6uvwDEXS73Fid13eM",
  6729.       "id": "UgwPzyn_951WrPu1h3l4AaABAg",
  6730.       "snippet": {
  6731.         "videoId": "atnSTtiWU5E",
  6732.         "topLevelComment": {
  6733.           "kind": "youtube#comment",
  6734.           "etag": "DrCLR2ewVyKBC7uqmuCIlB563v8",
  6735.           "id": "UgwPzyn_951WrPu1h3l4AaABAg",
  6736.           "snippet": {
  6737.             "videoId": "atnSTtiWU5E",
  6738.             "textDisplay": "Dude, seriously. Did you forget about love and tolerate? And besides, he's entitled to his opinion.",
  6739.             "textOriginal": "Dude, seriously. Did you forget about love and tolerate? And besides, he's entitled to his opinion.",
  6740.             "authorDisplayName": "PlatniumClip",
  6741.             "authorChannelUrl": "http://www.youtube.com/channel/UClx93wYq2FogRQNNQ5kyzTA",
  6742.             "authorChannelId": {
  6743.               "value": "UClx93wYq2FogRQNNQ5kyzTA"
  6744.             },
  6745.             "canRate": true,
  6746.             "viewerRating": "none",
  6747.             "likeCount": 0,
  6748.             "publishedAt": "2012-07-11T16:13:04Z",
  6749.             "updatedAt": "2012-07-11T16:13:04Z"
  6750.           }
  6751.         },
  6752.         "canReply": true,
  6753.         "totalReplyCount": 0,
  6754.         "isPublic": true
  6755.       }
  6756.     },
  6757.     {
  6758.       "kind": "youtube#commentThread",
  6759.       "etag": "iCu3rA46jqF6BhVW29EM5thFp8U",
  6760.       "id": "UgwYLTqHr6HmGQ4InfF4AaABAg",
  6761.       "snippet": {
  6762.         "videoId": "atnSTtiWU5E",
  6763.         "topLevelComment": {
  6764.           "kind": "youtube#comment",
  6765.           "etag": "dya_AsV4It08cFguhW-Ll629FZM",
  6766.           "id": "UgwYLTqHr6HmGQ4InfF4AaABAg",
  6767.           "snippet": {
  6768.             "videoId": "atnSTtiWU5E",
  6769.             "textDisplay": "That's a cool idea. And because Applejack is Appletini, all the obstacles will be huge versions of normal things which is why she is having trouble catching up with Applebloom in the first place! LOL",
  6770.             "textOriginal": "That's a cool idea. And because Applejack is Appletini, all the obstacles will be huge versions of normal things which is why she is having trouble catching up with Applebloom in the first place! LOL",
  6771.             "authorDisplayName": "Metqa",
  6772.             "authorChannelUrl": "http://www.youtube.com/channel/UCKmh6enAtzYY3uPmsgGDH-w",
  6773.             "authorChannelId": {
  6774.               "value": "UCKmh6enAtzYY3uPmsgGDH-w"
  6775.             },
  6776.             "canRate": true,
  6777.             "viewerRating": "none",
  6778.             "likeCount": 0,
  6779.             "publishedAt": "2012-07-10T20:22:30Z",
  6780.             "updatedAt": "2012-07-10T20:22:30Z"
  6781.           }
  6782.         },
  6783.         "canReply": true,
  6784.         "totalReplyCount": 0,
  6785.         "isPublic": true
  6786.       }
  6787.     },
  6788.     {
  6789.       "kind": "youtube#commentThread",
  6790.       "etag": "41qTclwQql0b1bgSGpwocID1xwA",
  6791.       "id": "Ugy4IKelI2-LHjhHGUt4AaABAg",
  6792.       "snippet": {
  6793.         "videoId": "atnSTtiWU5E",
  6794.         "topLevelComment": {
  6795.           "kind": "youtube#comment",
  6796.           "etag": "AjwDF2oUCQc_QDo6iVbGbp-al1I",
  6797.           "id": "Ugy4IKelI2-LHjhHGUt4AaABAg",
  6798.           "snippet": {
  6799.             "videoId": "atnSTtiWU5E",
  6800.             "textDisplay": "Hate? That's a pretty strong word. Care to quantify the statement?",
  6801.             "textOriginal": "Hate? That's a pretty strong word. Care to quantify the statement?",
  6802.             "authorDisplayName": "someguywhocanfly",
  6803.             "authorChannelUrl": "http://www.youtube.com/channel/UCkrvVm6xYxp8a4Oa1EFtU2Q",
  6804.             "authorChannelId": {
  6805.               "value": "UCkrvVm6xYxp8a4Oa1EFtU2Q"
  6806.             },
  6807.             "canRate": true,
  6808.             "viewerRating": "none",
  6809.             "likeCount": 0,
  6810.             "publishedAt": "2012-07-09T23:23:52Z",
  6811.             "updatedAt": "2012-07-09T23:23:52Z"
  6812.           }
  6813.         },
  6814.         "canReply": true,
  6815.         "totalReplyCount": 0,
  6816.         "isPublic": true
  6817.       }
  6818.     },
  6819.     {
  6820.       "kind": "youtube#commentThread",
  6821.       "etag": "CgUNLTTeQWvCVMQgBw-FEh7Qkno",
  6822.       "id": "Ugw3jL40ACPHACrKbLl4AaABAg",
  6823.       "snippet": {
  6824.         "videoId": "atnSTtiWU5E",
  6825.         "topLevelComment": {
  6826.           "kind": "youtube#comment",
  6827.           "etag": "LbfYq8GBZg16TUGRyWfSUKpTwhw",
  6828.           "id": "Ugw3jL40ACPHACrKbLl4AaABAg",
  6829.           "snippet": {
  6830.             "videoId": "atnSTtiWU5E",
  6831.             "textDisplay": "That's a shame, but the decision is yours",
  6832.             "textOriginal": "That's a shame, but the decision is yours",
  6833.             "authorDisplayName": "Kaito Gillscale",
  6834.             "authorChannelUrl": "http://www.youtube.com/channel/UCcytoJHNKm8uP7G8edE1sBA",
  6835.             "authorChannelId": {
  6836.               "value": "UCcytoJHNKm8uP7G8edE1sBA"
  6837.             },
  6838.             "canRate": true,
  6839.             "viewerRating": "none",
  6840.             "likeCount": 0,
  6841.             "publishedAt": "2012-07-08T22:36:34Z",
  6842.             "updatedAt": "2012-07-08T22:36:34Z"
  6843.           }
  6844.         },
  6845.         "canReply": true,
  6846.         "totalReplyCount": 0,
  6847.         "isPublic": true
  6848.       }
  6849.     },
  6850.     {
  6851.       "kind": "youtube#commentThread",
  6852.       "etag": "v_kIoVyhBxE6drFbmRRVCsf7WLM",
  6853.       "id": "Ugw2WqxMMOfsQYjORrJ4AaABAg",
  6854.       "snippet": {
  6855.         "videoId": "atnSTtiWU5E",
  6856.         "topLevelComment": {
  6857.           "kind": "youtube#comment",
  6858.           "etag": "EFMh5sIKnyRiRPpjZehQHrgX1Jw",
  6859.           "id": "Ugw2WqxMMOfsQYjORrJ4AaABAg",
  6860.           "snippet": {
  6861.             "videoId": "atnSTtiWU5E",
  6862.             "textDisplay": "Makes me wonder how you ended up here then...",
  6863.             "textOriginal": "Makes me wonder how you ended up here then...",
  6864.             "authorDisplayName": "FANevanescenceFAN",
  6865.             "authorChannelUrl": "http://www.youtube.com/channel/UCpOobq6Ch6NUbbfKU-lZMuQ",
  6866.             "authorChannelId": {
  6867.               "value": "UCpOobq6Ch6NUbbfKU-lZMuQ"
  6868.             },
  6869.             "canRate": true,
  6870.             "viewerRating": "none",
  6871.             "likeCount": 0,
  6872.             "publishedAt": "2012-07-05T17:51:31Z",
  6873.             "updatedAt": "2012-07-05T17:51:31Z"
  6874.           }
  6875.         },
  6876.         "canReply": true,
  6877.         "totalReplyCount": 0,
  6878.         "isPublic": true
  6879.       }
  6880.     },
  6881.     {
  6882.       "kind": "youtube#commentThread",
  6883.       "etag": "v25EwMCRVI4tvprZsPPBxJ8Bt50",
  6884.       "id": "UgzF5-1xDWp6k2tLF154AaABAg",
  6885.       "snippet": {
  6886.         "videoId": "atnSTtiWU5E",
  6887.         "topLevelComment": {
  6888.           "kind": "youtube#comment",
  6889.           "etag": "JGpcUm1EGgEE0yV6xwYw4UtzqdM",
  6890.           "id": "UgzF5-1xDWp6k2tLF154AaABAg",
  6891.           "snippet": {
  6892.             "videoId": "atnSTtiWU5E",
  6893.             "textDisplay": "The reminds me of the Casino levels in Sonic the Hedgehog.",
  6894.             "textOriginal": "The reminds me of the Casino levels in Sonic the Hedgehog.",
  6895.             "authorDisplayName": "Sonar009",
  6896.             "authorChannelUrl": "http://www.youtube.com/channel/UCeSayulni9wMtbJdktndMDA",
  6897.             "authorChannelId": {
  6898.               "value": "UCeSayulni9wMtbJdktndMDA"
  6899.             },
  6900.             "canRate": true,
  6901.             "viewerRating": "none",
  6902.             "likeCount": 0,
  6903.             "publishedAt": "2012-07-05T03:45:58Z",
  6904.             "updatedAt": "2012-07-05T03:45:58Z"
  6905.           }
  6906.         },
  6907.         "canReply": true,
  6908.         "totalReplyCount": 0,
  6909.         "isPublic": true
  6910.       }
  6911.     },
  6912.     {
  6913.       "kind": "youtube#commentThread",
  6914.       "etag": "10H6K_NPd-glCzreop8wR40OOtw",
  6915.       "id": "Ugw1HNNJyP5Ry5848oJ4AaABAg",
  6916.       "snippet": {
  6917.         "videoId": "atnSTtiWU5E",
  6918.         "topLevelComment": {
  6919.           "kind": "youtube#comment",
  6920.           "etag": "Aw6nZSMaiDzFbjEuhLKNXx13saY",
  6921.           "id": "Ugw1HNNJyP5Ry5848oJ4AaABAg",
  6922.           "snippet": {
  6923.             "videoId": "atnSTtiWU5E",
  6924.             "textDisplay": "please atleast give the show a go :) its kinda like the new disney movies, they can be enjoyed by everyone :)",
  6925.             "textOriginal": "please atleast give the show a go :) its kinda like the new disney movies, they can be enjoyed by everyone :)",
  6926.             "authorDisplayName": "thebigbadwolf96",
  6927.             "authorChannelUrl": "http://www.youtube.com/channel/UCNgQdK91QgRAt5_PkzLok7Q",
  6928.             "authorChannelId": {
  6929.               "value": "UCNgQdK91QgRAt5_PkzLok7Q"
  6930.             },
  6931.             "canRate": true,
  6932.             "viewerRating": "none",
  6933.             "likeCount": 0,
  6934.             "publishedAt": "2012-06-27T00:03:12Z",
  6935.             "updatedAt": "2012-06-27T00:03:12Z"
  6936.           }
  6937.         },
  6938.         "canReply": true,
  6939.         "totalReplyCount": 0,
  6940.         "isPublic": true
  6941.       }
  6942.     },
  6943.     {
  6944.       "kind": "youtube#commentThread",
  6945.       "etag": "G3opLJivWPFmuxl0fmfm87qiL3M",
  6946.       "id": "UgxKmktOn8aN0n2qiNh4AaABAg",
  6947.       "snippet": {
  6948.         "videoId": "atnSTtiWU5E",
  6949.         "topLevelComment": {
  6950.           "kind": "youtube#comment",
  6951.           "etag": "81AK7_N4Nlla9raaQLg0ozR9CKs",
  6952.           "id": "UgxKmktOn8aN0n2qiNh4AaABAg",
  6953.           "snippet": {
  6954.             "videoId": "atnSTtiWU5E",
  6955.             "textDisplay": "looks like bandpuffs stopped having fun\n\nreally, the community is what you make of it.  if you take the time to look around and find the people who're still actually nice and fun and interesting like when the whole pony thing was 'fresh', it's still really great.  if you let the strange ones and weird things and not-so-great parts that obviously happen in every conceivable community get to you, you become... well, how you seem to have become, sadly\n\ni, at least, am still having fun",
  6956.             "textOriginal": "looks like bandpuffs stopped having fun\n\nreally, the community is what you make of it.  if you take the time to look around and find the people who're still actually nice and fun and interesting like when the whole pony thing was 'fresh', it's still really great.  if you let the strange ones and weird things and not-so-great parts that obviously happen in every conceivable community get to you, you become... well, how you seem to have become, sadly\n\ni, at least, am still having fun",
  6957.             "authorDisplayName": "hip indeed",
  6958.             "authorChannelUrl": "http://www.youtube.com/channel/UC-CKPQ92B3T3jxzpobos5jg",
  6959.             "authorChannelId": {
  6960.               "value": "UC-CKPQ92B3T3jxzpobos5jg"
  6961.             },
  6962.             "canRate": true,
  6963.             "viewerRating": "none",
  6964.             "likeCount": 0,
  6965.             "publishedAt": "2012-06-26T00:43:36Z",
  6966.             "updatedAt": "2012-06-26T00:43:36Z"
  6967.           }
  6968.         },
  6969.         "canReply": true,
  6970.         "totalReplyCount": 0,
  6971.         "isPublic": true
  6972.       }
  6973.     },
  6974.     {
  6975.       "kind": "youtube#commentThread",
  6976.       "etag": "_4ZTxPteX_KDchC2h3Weuhk5z1s",
  6977.       "id": "UgxQbYPfyWQy6vw_IrV4AaABAg",
  6978.       "snippet": {
  6979.         "videoId": "atnSTtiWU5E",
  6980.         "topLevelComment": {
  6981.           "kind": "youtube#comment",
  6982.           "etag": "Ygcqe-q2QLZSS9i2n0wi6Qax7yI",
  6983.           "id": "UgxQbYPfyWQy6vw_IrV4AaABAg",
  6984.           "snippet": {
  6985.             "videoId": "atnSTtiWU5E",
  6986.             "textDisplay": "This is the best micspam on TF2",
  6987.             "textOriginal": "This is the best micspam on TF2",
  6988.             "authorDisplayName": "GoogleRuinedYoutube",
  6989.             "authorChannelUrl": "http://www.youtube.com/channel/UC0Rc4vXahb0LTRQyXjYMa9A",
  6990.             "authorChannelId": {
  6991.               "value": "UC0Rc4vXahb0LTRQyXjYMa9A"
  6992.             },
  6993.             "canRate": true,
  6994.             "viewerRating": "none",
  6995.             "likeCount": 0,
  6996.             "publishedAt": "2012-06-25T21:50:58Z",
  6997.             "updatedAt": "2012-06-25T21:50:58Z"
  6998.           }
  6999.         },
  7000.         "canReply": true,
  7001.         "totalReplyCount": 0,
  7002.         "isPublic": true
  7003.       }
  7004.     },
  7005.     {
  7006.       "kind": "youtube#commentThread",
  7007.       "etag": "a0PFnlMpwHfcn7Oo3bfDHnb9Fms",
  7008.       "id": "UgzA1F8gGDYko4cm__l4AaABAg",
  7009.       "snippet": {
  7010.         "videoId": "atnSTtiWU5E",
  7011.         "topLevelComment": {
  7012.           "kind": "youtube#comment",
  7013.           "etag": "NQFUgLVD3P1CTMphwJc86oQn7aQ",
  7014.           "id": "UgzA1F8gGDYko4cm__l4AaABAg",
  7015.           "snippet": {
  7016.             "videoId": "atnSTtiWU5E",
  7017.             "textDisplay": "The best and most fun people that I've found on the internet is via something that has to do with MLP. That's what I meant. Not more, not less.",
  7018.             "textOriginal": "The best and most fun people that I've found on the internet is via something that has to do with MLP. That's what I meant. Not more, not less.",
  7019.             "authorDisplayName": "daniel355273",
  7020.             "authorChannelUrl": "http://www.youtube.com/channel/UC3Omo8oF0C64BPqxpYIvDYQ",
  7021.             "authorChannelId": {
  7022.               "value": "UC3Omo8oF0C64BPqxpYIvDYQ"
  7023.             },
  7024.             "canRate": true,
  7025.             "viewerRating": "none",
  7026.             "likeCount": 0,
  7027.             "publishedAt": "2012-06-24T09:45:15Z",
  7028.             "updatedAt": "2012-06-24T09:45:15Z"
  7029.           }
  7030.         },
  7031.         "canReply": true,
  7032.         "totalReplyCount": 0,
  7033.         "isPublic": true
  7034.       }
  7035.     },
  7036.     {
  7037.       "kind": "youtube#commentThread",
  7038.       "etag": "krAgKKdj43t4r52oR7LI8SJ0otg",
  7039.       "id": "Ugy_Az0G4pvz0GlhtGl4AaABAg",
  7040.       "snippet": {
  7041.         "videoId": "atnSTtiWU5E",
  7042.         "topLevelComment": {
  7043.           "kind": "youtube#comment",
  7044.           "etag": "fCjzp_6QHFMS7pUW_C9ZIt9e4DE",
  7045.           "id": "Ugy_Az0G4pvz0GlhtGl4AaABAg",
  7046.           "snippet": {
  7047.             "videoId": "atnSTtiWU5E",
  7048.             "textDisplay": "Well good sir...I will ignore the first part of your comment and love and tolerate what I cannot ignore, as for the rest. I thank you for the comment and I'm glad you appreciate it, but for your sake, be careful when you download this onto your Ipod and get caught listening to it by all your other hater friends.I bid you farewell.",
  7049.             "textOriginal": "Well good sir...I will ignore the first part of your comment and love and tolerate what I cannot ignore, as for the rest. I thank you for the comment and I'm glad you appreciate it, but for your sake, be careful when you download this onto your Ipod and get caught listening to it by all your other hater friends.I bid you farewell.",
  7050.             "authorDisplayName": "Nyalator",
  7051.             "authorChannelUrl": "http://www.youtube.com/channel/UCBWt7WMObJPMzxaVcRYaJvQ",
  7052.             "authorChannelId": {
  7053.               "value": "UCBWt7WMObJPMzxaVcRYaJvQ"
  7054.             },
  7055.             "canRate": true,
  7056.             "viewerRating": "none",
  7057.             "likeCount": 0,
  7058.             "publishedAt": "2012-06-24T07:58:24Z",
  7059.             "updatedAt": "2012-06-24T07:58:24Z"
  7060.           }
  7061.         },
  7062.         "canReply": true,
  7063.         "totalReplyCount": 0,
  7064.         "isPublic": true
  7065.       }
  7066.     }
  7067.   ]
  7068. }
  7069. {
  7070.   "kind": "youtube#commentThreadListResponse",
  7071.   "etag": "xiju9ocNqBYZK5fwDt_Hq45R1Jg",
  7072.   "nextPageToken": "QURTSl9pMlJ5bU1RSkdaeHhhTURrQWZIUlRuX1A4ZV9PQzA5YVR6NUZZSVBYRWVQUE93VnNvLWlMR0lCWk4ySVJtVHJ4SDhSdkl2bjNUOA==",
  7073.   "pageInfo": {
  7074.     "totalResults": 100,
  7075.     "resultsPerPage": 100
  7076.   },
  7077.   "items": [
  7078.     {
  7079.       "kind": "youtube#commentThread",
  7080.       "etag": "aUIOx2rB7bnvdKRh_F7uEyKM85g",
  7081.       "id": "UgwZkb9KqU44falHfJZ4AaABAg",
  7082.       "snippet": {
  7083.         "videoId": "atnSTtiWU5E",
  7084.         "topLevelComment": {
  7085.           "kind": "youtube#comment",
  7086.           "etag": "MMfhglVi1f413mnchjx0UeaiSCk",
  7087.           "id": "UgwZkb9KqU44falHfJZ4AaABAg",
  7088.           "snippet": {
  7089.             "videoId": "atnSTtiWU5E",
  7090.             "textDisplay": "I'll agree with the part about the show, but not about the "community". It's a tv program, it's an animation, a cartoon. It's not a lifestyle, religion, or counter culture movement contrary to popular belief. Bear in mind that my opinions do not reflect, nor represent the person who made these songs.",
  7091.             "textOriginal": "I'll agree with the part about the show, but not about the \"community\". It's a tv program, it's an animation, a cartoon. It's not a lifestyle, religion, or counter culture movement contrary to popular belief. Bear in mind that my opinions do not reflect, nor represent the person who made these songs.",
  7092.             "authorDisplayName": "Bandpuffs",
  7093.             "authorChannelUrl": "http://www.youtube.com/channel/UC0YPokWZTBVtN7AhxtEfDeQ",
  7094.             "authorChannelId": {
  7095.               "value": "UC0YPokWZTBVtN7AhxtEfDeQ"
  7096.             },
  7097.             "canRate": true,
  7098.             "viewerRating": "none",
  7099.             "likeCount": 0,
  7100.             "publishedAt": "2012-06-23T22:31:54Z",
  7101.             "updatedAt": "2012-06-23T22:31:54Z"
  7102.           }
  7103.         },
  7104.         "canReply": true,
  7105.         "totalReplyCount": 0,
  7106.         "isPublic": true
  7107.       }
  7108.     },
  7109.     {
  7110.       "kind": "youtube#commentThread",
  7111.       "etag": "xgsSxd8A2FOZg2vO2LB0G5hjRMc",
  7112.       "id": "Ugzy0ZHlWyAIgLO7kCZ4AaABAg",
  7113.       "snippet": {
  7114.         "videoId": "atnSTtiWU5E",
  7115.         "topLevelComment": {
  7116.           "kind": "youtube#comment",
  7117.           "etag": "DT178tq_M99GjuHPKNhTlXSqiGs",
  7118.           "id": "Ugzy0ZHlWyAIgLO7kCZ4AaABAg",
  7119.           "snippet": {
  7120.             "videoId": "atnSTtiWU5E",
  7121.             "textDisplay": "Let him be prejudging if he wants to. It's not you that is missing out on such an amazing community and show.",
  7122.             "textOriginal": "Let him be prejudging if he wants to. It's not you that is missing out on such an amazing community and show.",
  7123.             "authorDisplayName": "daniel355273",
  7124.             "authorChannelUrl": "http://www.youtube.com/channel/UC3Omo8oF0C64BPqxpYIvDYQ",
  7125.             "authorChannelId": {
  7126.               "value": "UC3Omo8oF0C64BPqxpYIvDYQ"
  7127.             },
  7128.             "canRate": true,
  7129.             "viewerRating": "none",
  7130.             "likeCount": 0,
  7131.             "publishedAt": "2012-06-23T21:07:52Z",
  7132.             "updatedAt": "2012-06-23T21:07:52Z"
  7133.           }
  7134.         },
  7135.         "canReply": true,
  7136.         "totalReplyCount": 0,
  7137.         "isPublic": true
  7138.       }
  7139.     },
  7140.     {
  7141.       "kind": "youtube#commentThread",
  7142.       "etag": "Oq4oK2zEL6SOa2BLMK_7EyRRQ5Q",
  7143.       "id": "UgzeQ-tmS7caqjmzwkt4AaABAg",
  7144.       "snippet": {
  7145.         "videoId": "atnSTtiWU5E",
  7146.         "topLevelComment": {
  7147.           "kind": "youtube#comment",
  7148.           "etag": "lZHTb2Kxx6gaTg7tdfryPHcvScw",
  7149.           "id": "UgzeQ-tmS7caqjmzwkt4AaABAg",
  7150.           "snippet": {
  7151.             "videoId": "atnSTtiWU5E",
  7152.             "textDisplay": "my thoughts exactly before watching the first couple of episodes",
  7153.             "textOriginal": "my thoughts exactly before watching the first couple of episodes",
  7154.             "authorDisplayName": "TehTr0nik",
  7155.             "authorChannelUrl": "http://www.youtube.com/channel/UCp0wqlDOdhPk28733k7EcVQ",
  7156.             "authorChannelId": {
  7157.               "value": "UCp0wqlDOdhPk28733k7EcVQ"
  7158.             },
  7159.             "canRate": true,
  7160.             "viewerRating": "none",
  7161.             "likeCount": 0,
  7162.             "publishedAt": "2012-06-20T22:40:41Z",
  7163.             "updatedAt": "2012-06-20T22:40:41Z"
  7164.           }
  7165.         },
  7166.         "canReply": true,
  7167.         "totalReplyCount": 0,
  7168.         "isPublic": true
  7169.       }
  7170.     },
  7171.     {
  7172.       "kind": "youtube#commentThread",
  7173.       "etag": "70eaDrCl4hWksccM3FARY-sA3Fc",
  7174.       "id": "UgyzuUlQLjpKcAkpE2t4AaABAg",
  7175.       "snippet": {
  7176.         "videoId": "atnSTtiWU5E",
  7177.         "topLevelComment": {
  7178.           "kind": "youtube#comment",
  7179.           "etag": "1kS35_aP7wAesnIyJnmxkVjY_dk",
  7180.           "id": "UgyzuUlQLjpKcAkpE2t4AaABAg",
  7181.           "snippet": {
  7182.             "videoId": "atnSTtiWU5E",
  7183.             "textDisplay": "Hater.\n",
  7184.             "textOriginal": "Hater.\n",
  7185.             "authorDisplayName": "Tupper0829",
  7186.             "authorChannelUrl": "http://www.youtube.com/channel/UC3MqQrOuStVPJ3PHz-XBrQg",
  7187.             "authorChannelId": {
  7188.               "value": "UC3MqQrOuStVPJ3PHz-XBrQg"
  7189.             },
  7190.             "canRate": true,
  7191.             "viewerRating": "none",
  7192.             "likeCount": 0,
  7193.             "publishedAt": "2012-06-20T17:02:09Z",
  7194.             "updatedAt": "2012-06-20T17:02:09Z"
  7195.           }
  7196.         },
  7197.         "canReply": true,
  7198.         "totalReplyCount": 0,
  7199.         "isPublic": true
  7200.       }
  7201.     },
  7202.     {
  7203.       "kind": "youtube#commentThread",
  7204.       "etag": "_QTbQFovs_HBRlCCIw6H2Nv9qLQ",
  7205.       "id": "UgwkZPWiq3am0H9hV2Z4AaABAg",
  7206.       "snippet": {
  7207.         "videoId": "atnSTtiWU5E",
  7208.         "topLevelComment": {
  7209.           "kind": "youtube#comment",
  7210.           "etag": "M0RRIHKOdGFIqxjbZCCeR6xfiCw",
  7211.           "id": "UgwkZPWiq3am0H9hV2Z4AaABAg",
  7212.           "snippet": {
  7213.             "videoId": "atnSTtiWU5E",
  7214.             "textDisplay": "i love overriding haters brains with great stuff with ponies.\nok,i love overriding brains with everything",
  7215.             "textOriginal": "i love overriding haters brains with great stuff with ponies.\nok,i love overriding brains with everything",
  7216.             "authorDisplayName": "Danipp",
  7217.             "authorChannelUrl": "http://www.youtube.com/channel/UCyQLTB7dGoUab4Il8CprAuA",
  7218.             "authorChannelId": {
  7219.               "value": "UCyQLTB7dGoUab4Il8CprAuA"
  7220.             },
  7221.             "canRate": true,
  7222.             "viewerRating": "none",
  7223.             "likeCount": 0,
  7224.             "publishedAt": "2012-06-19T21:40:38Z",
  7225.             "updatedAt": "2012-06-19T21:40:38Z"
  7226.           }
  7227.         },
  7228.         "canReply": true,
  7229.         "totalReplyCount": 0,
  7230.         "isPublic": true
  7231.       }
  7232.     },
  7233.     {
  7234.       "kind": "youtube#commentThread",
  7235.       "etag": "hnjbOnNTtAyXlwJe-6sJcEfXVzw",
  7236.       "id": "UgxnrpTktq3lJOr9-tZ4AaABAg",
  7237.       "snippet": {
  7238.         "videoId": "atnSTtiWU5E",
  7239.         "topLevelComment": {
  7240.           "kind": "youtube#comment",
  7241.           "etag": "qeilmfqpYDvTg0bduEHSLVj__go",
  7242.           "id": "UgxnrpTktq3lJOr9-tZ4AaABAg",
  7243.           "snippet": {
  7244.             "videoId": "atnSTtiWU5E",
  7245.             "textDisplay": "Need...download........NOW.",
  7246.             "textOriginal": "Need...download........NOW.",
  7247.             "authorDisplayName": "NoodleCaboodle",
  7248.             "authorChannelUrl": "http://www.youtube.com/channel/UCsV5bTqTtmPQrB1t398v9ig",
  7249.             "authorChannelId": {
  7250.               "value": "UCsV5bTqTtmPQrB1t398v9ig"
  7251.             },
  7252.             "canRate": true,
  7253.             "viewerRating": "none",
  7254.             "likeCount": 0,
  7255.             "publishedAt": "2012-06-18T05:16:16Z",
  7256.             "updatedAt": "2012-06-18T05:16:16Z"
  7257.           }
  7258.         },
  7259.         "canReply": true,
  7260.         "totalReplyCount": 0,
  7261.         "isPublic": true
  7262.       }
  7263.     },
  7264.     {
  7265.       "kind": "youtube#commentThread",
  7266.       "etag": "dwZzhfFzGN0iWSZkPVfSWUKedfs",
  7267.       "id": "Ugy6fBufl63xWH8fwVl4AaABAg",
  7268.       "snippet": {
  7269.         "videoId": "atnSTtiWU5E",
  7270.         "topLevelComment": {
  7271.           "kind": "youtube#comment",
  7272.           "etag": "NAw_0bYDKKEqLfdinJtUYDWkRfc",
  7273.           "id": "Ugy6fBufl63xWH8fwVl4AaABAg",
  7274.           "snippet": {
  7275.             "videoId": "atnSTtiWU5E",
  7276.             "textDisplay": "I know that feel bro",
  7277.             "textOriginal": "I know that feel bro",
  7278.             "authorDisplayName": "Bandpuffs",
  7279.             "authorChannelUrl": "http://www.youtube.com/channel/UC0YPokWZTBVtN7AhxtEfDeQ",
  7280.             "authorChannelId": {
  7281.               "value": "UC0YPokWZTBVtN7AhxtEfDeQ"
  7282.             },
  7283.             "canRate": true,
  7284.             "viewerRating": "none",
  7285.             "likeCount": 0,
  7286.             "publishedAt": "2012-06-18T00:56:53Z",
  7287.             "updatedAt": "2012-06-18T00:56:53Z"
  7288.           }
  7289.         },
  7290.         "canReply": true,
  7291.         "totalReplyCount": 0,
  7292.         "isPublic": true
  7293.       }
  7294.     },
  7295.     {
  7296.       "kind": "youtube#commentThread",
  7297.       "etag": "MHb_0ABcpfIH3qgBiyWo5UCHs88",
  7298.       "id": "UgwT9NcVG6dGrIGyzuN4AaABAg",
  7299.       "snippet": {
  7300.         "videoId": "atnSTtiWU5E",
  7301.         "topLevelComment": {
  7302.           "kind": "youtube#comment",
  7303.           "etag": "3WnRf5Z_HYefvdqO3I_REs311wU",
  7304.           "id": "UgwT9NcVG6dGrIGyzuN4AaABAg",
  7305.           "snippet": {
  7306.             "videoId": "atnSTtiWU5E",
  7307.             "textDisplay": "the luna game....",
  7308.             "textOriginal": "the luna game....",
  7309.             "authorDisplayName": "Mihail Cristian",
  7310.             "authorChannelUrl": "http://www.youtube.com/channel/UCgSmPtw4Kh7QhDp73cYIztQ",
  7311.             "authorChannelId": {
  7312.               "value": "UCgSmPtw4Kh7QhDp73cYIztQ"
  7313.             },
  7314.             "canRate": true,
  7315.             "viewerRating": "none",
  7316.             "likeCount": 0,
  7317.             "publishedAt": "2012-06-10T19:13:23Z",
  7318.             "updatedAt": "2012-06-10T19:13:23Z"
  7319.           }
  7320.         },
  7321.         "canReply": true,
  7322.         "totalReplyCount": 0,
  7323.         "isPublic": true
  7324.       }
  7325.     },
  7326.     {
  7327.       "kind": "youtube#commentThread",
  7328.       "etag": "PlBgEcgGF7rKfEIgsRctFWlNRIM",
  7329.       "id": "UgwUXkM4Dl9pPV6FjZt4AaABAg",
  7330.       "snippet": {
  7331.         "videoId": "atnSTtiWU5E",
  7332.         "topLevelComment": {
  7333.           "kind": "youtube#comment",
  7334.           "etag": "abwsxHT0xhWAD5xEshz1-P2m9yU",
  7335.           "id": "UgwUXkM4Dl9pPV6FjZt4AaABAg",
  7336.           "snippet": {
  7337.             "videoId": "atnSTtiWU5E",
  7338.             "textDisplay": "This was the first Brony song I ever came across. It was at that point that I knew there was something awesome about this fandom. :D",
  7339.             "textOriginal": "This was the first Brony song I ever came across. It was at that point that I knew there was something awesome about this fandom. :D",
  7340.             "authorDisplayName": "joshbotnik",
  7341.             "authorChannelUrl": "http://www.youtube.com/channel/UCt6jeiZchDuJe5kzPL7wzog",
  7342.             "authorChannelId": {
  7343.               "value": "UCt6jeiZchDuJe5kzPL7wzog"
  7344.             },
  7345.             "canRate": true,
  7346.             "viewerRating": "none",
  7347.             "likeCount": 0,
  7348.             "publishedAt": "2012-06-09T10:45:06Z",
  7349.             "updatedAt": "2012-06-09T10:45:06Z"
  7350.           }
  7351.         },
  7352.         "canReply": true,
  7353.         "totalReplyCount": 0,
  7354.         "isPublic": true
  7355.       }
  7356.     },
  7357.     {
  7358.       "kind": "youtube#commentThread",
  7359.       "etag": "3bGOahLkGP5acNlrhrkF8bXQjwc",
  7360.       "id": "UgzE1h8RuIDUbQ2juzV4AaABAg",
  7361.       "snippet": {
  7362.         "videoId": "atnSTtiWU5E",
  7363.         "topLevelComment": {
  7364.           "kind": "youtube#comment",
  7365.           "etag": "smBwg691dC2e5suXzUFyScxm_lQ",
  7366.           "id": "UgzE1h8RuIDUbQ2juzV4AaABAg",
  7367.           "snippet": {
  7368.             "videoId": "atnSTtiWU5E",
  7369.             "textDisplay": "no 1080p HD",
  7370.             "textOriginal": "no 1080p HD",
  7371.             "authorDisplayName": "STINGRACING",
  7372.             "authorChannelUrl": "http://www.youtube.com/channel/UCSfgZaL7nHOw-P3XQgMdpzQ",
  7373.             "authorChannelId": {
  7374.               "value": "UCSfgZaL7nHOw-P3XQgMdpzQ"
  7375.             },
  7376.             "canRate": true,
  7377.             "viewerRating": "none",
  7378.             "likeCount": 0,
  7379.             "publishedAt": "2012-06-08T12:34:28Z",
  7380.             "updatedAt": "2012-06-08T12:34:28Z"
  7381.           }
  7382.         },
  7383.         "canReply": true,
  7384.         "totalReplyCount": 0,
  7385.         "isPublic": true
  7386.       }
  7387.     },
  7388.     {
  7389.       "kind": "youtube#commentThread",
  7390.       "etag": "sYa-B-zO8dlkGwK7EIf9oq7HcQs",
  7391.       "id": "Ugwzt7SS1f2vnpgIFXt4AaABAg",
  7392.       "snippet": {
  7393.         "videoId": "atnSTtiWU5E",
  7394.         "topLevelComment": {
  7395.           "kind": "youtube#comment",
  7396.           "etag": "HzjXqM9_CNCK41sb9LAYu8Wkkls",
  7397.           "id": "Ugwzt7SS1f2vnpgIFXt4AaABAg",
  7398.           "snippet": {
  7399.             "videoId": "atnSTtiWU5E",
  7400.             "textDisplay": "You should watch some of the walkthroughs...\nAt night, in 720p and full screen :D",
  7401.             "textOriginal": "You should watch some of the walkthroughs...\nAt night, in 720p and full screen :D",
  7402.             "authorDisplayName": "COOLGUY985",
  7403.             "authorChannelUrl": "http://www.youtube.com/channel/UCmT49DGQzqdWn3IdzeUbdhw",
  7404.             "authorChannelId": {
  7405.               "value": "UCmT49DGQzqdWn3IdzeUbdhw"
  7406.             },
  7407.             "canRate": true,
  7408.             "viewerRating": "none",
  7409.             "likeCount": 0,
  7410.             "publishedAt": "2012-06-05T16:53:47Z",
  7411.             "updatedAt": "2012-06-05T16:53:47Z"
  7412.           }
  7413.         },
  7414.         "canReply": true,
  7415.         "totalReplyCount": 0,
  7416.         "isPublic": true
  7417.       }
  7418.     },
  7419.     {
  7420.       "kind": "youtube#commentThread",
  7421.       "etag": "RhKf5IKzOOX2VXgJhROG9IG0Ors",
  7422.       "id": "UgzsmGdJRXLycB9oaVV4AaABAg",
  7423.       "snippet": {
  7424.         "videoId": "atnSTtiWU5E",
  7425.         "topLevelComment": {
  7426.           "kind": "youtube#comment",
  7427.           "etag": "1t-S5WtGUMtt_UOkpFiftdM5PzM",
  7428.           "id": "UgzsmGdJRXLycB9oaVV4AaABAg",
  7429.           "snippet": {
  7430.             "videoId": "atnSTtiWU5E",
  7431.             "textDisplay": "If I ever make an IWBTG fangame, I'll use this as the theme for an mlp-styled level.",
  7432.             "textOriginal": "If I ever make an IWBTG fangame, I'll use this as the theme for an mlp-styled level.",
  7433.             "authorDisplayName": "stopeatingthepizza",
  7434.             "authorChannelUrl": "http://www.youtube.com/channel/UCFrZOQtXRU7ylQOnIc9_XNQ",
  7435.             "authorChannelId": {
  7436.               "value": "UCFrZOQtXRU7ylQOnIc9_XNQ"
  7437.             },
  7438.             "canRate": true,
  7439.             "viewerRating": "none",
  7440.             "likeCount": 0,
  7441.             "publishedAt": "2012-05-16T05:16:47Z",
  7442.             "updatedAt": "2012-05-16T05:16:47Z"
  7443.           }
  7444.         },
  7445.         "canReply": true,
  7446.         "totalReplyCount": 0,
  7447.         "isPublic": true
  7448.       }
  7449.     },
  7450.     {
  7451.       "kind": "youtube#commentThread",
  7452.       "etag": "NLuiM1clKGEHTGgoVLio-WnHUNA",
  7453.       "id": "UgxcVG7hAFjGYnstLRt4AaABAg",
  7454.       "snippet": {
  7455.         "videoId": "atnSTtiWU5E",
  7456.         "topLevelComment": {
  7457.           "kind": "youtube#comment",
  7458.           "etag": "8Q-Efd3D9BE2gZiNc8nFKm2EzHY",
  7459.           "id": "UgxcVG7hAFjGYnstLRt4AaABAg",
  7460.           "snippet": {
  7461.             "videoId": "atnSTtiWU5E",
  7462.             "textDisplay": "Almost sounds like something from Madness Combat.",
  7463.             "textOriginal": "Almost sounds like something from Madness Combat.",
  7464.             "authorDisplayName": "Al Nes",
  7465.             "authorChannelUrl": "http://www.youtube.com/channel/UCFIXQYKCFEJnxehD0C7D-Gg",
  7466.             "authorChannelId": {
  7467.               "value": "UCFIXQYKCFEJnxehD0C7D-Gg"
  7468.             },
  7469.             "canRate": true,
  7470.             "viewerRating": "none",
  7471.             "likeCount": 0,
  7472.             "publishedAt": "2012-05-09T16:52:30Z",
  7473.             "updatedAt": "2012-05-09T16:52:30Z"
  7474.           }
  7475.         },
  7476.         "canReply": true,
  7477.         "totalReplyCount": 0,
  7478.         "isPublic": true
  7479.       }
  7480.     },
  7481.     {
  7482.       "kind": "youtube#commentThread",
  7483.       "etag": "i8kWQ86Vf1AStwXvkp6r5DuhEBs",
  7484.       "id": "UgxOyHtnGyaY6nqMF2l4AaABAg",
  7485.       "snippet": {
  7486.         "videoId": "atnSTtiWU5E",
  7487.         "topLevelComment": {
  7488.           "kind": "youtube#comment",
  7489.           "etag": "u1Dg1I0iy8GV79dPNifSu5DXnPg",
  7490.           "id": "UgxOyHtnGyaY6nqMF2l4AaABAg",
  7491.           "snippet": {
  7492.             "videoId": "atnSTtiWU5E",
  7493.             "textDisplay": "it does i just finished megaman zero 4 btw",
  7494.             "textOriginal": "it does i just finished megaman zero 4 btw",
  7495.             "authorDisplayName": "CuteLittleFoxyGirl",
  7496.             "authorChannelUrl": "http://www.youtube.com/channel/UC6d6P1iX9J9hlrWKPBjz5pA",
  7497.             "authorChannelId": {
  7498.               "value": "UC6d6P1iX9J9hlrWKPBjz5pA"
  7499.             },
  7500.             "canRate": true,
  7501.             "viewerRating": "none",
  7502.             "likeCount": 0,
  7503.             "publishedAt": "2012-05-05T01:50:56Z",
  7504.             "updatedAt": "2012-05-05T01:50:56Z"
  7505.           }
  7506.         },
  7507.         "canReply": true,
  7508.         "totalReplyCount": 0,
  7509.         "isPublic": true
  7510.       }
  7511.     },
  7512.     {
  7513.       "kind": "youtube#commentThread",
  7514.       "etag": "s0lj44nXFX1rjig1J4ZUwFO3Cmc",
  7515.       "id": "Ugz-ya-1Xhw6gBpbsst4AaABAg",
  7516.       "snippet": {
  7517.         "videoId": "atnSTtiWU5E",
  7518.         "topLevelComment": {
  7519.           "kind": "youtube#comment",
  7520.           "etag": "vDn2TRqFp-VCcHB5sOWYhiYJhnU",
  7521.           "id": "Ugz-ya-1Xhw6gBpbsst4AaABAg",
  7522.           "snippet": {
  7523.             "videoId": "atnSTtiWU5E",
  7524.             "textDisplay": "Found it :D",
  7525.             "textOriginal": "Found it :D",
  7526.             "authorDisplayName": "Kay",
  7527.             "authorChannelUrl": "http://www.youtube.com/channel/UCmIsCJfwodpKjbDgk8QBKlg",
  7528.             "authorChannelId": {
  7529.               "value": "UCmIsCJfwodpKjbDgk8QBKlg"
  7530.             },
  7531.             "canRate": true,
  7532.             "viewerRating": "none",
  7533.             "likeCount": 0,
  7534.             "publishedAt": "2012-04-27T23:56:11Z",
  7535.             "updatedAt": "2012-04-27T23:56:11Z"
  7536.           }
  7537.         },
  7538.         "canReply": true,
  7539.         "totalReplyCount": 0,
  7540.         "isPublic": true
  7541.       }
  7542.     },
  7543.     {
  7544.       "kind": "youtube#commentThread",
  7545.       "etag": "qAXkTIqdAqgJGX-4-UWrm6yWGXo",
  7546.       "id": "Ugwl7Rppm1oRyUnt2254AaABAg",
  7547.       "snippet": {
  7548.         "videoId": "atnSTtiWU5E",
  7549.         "topLevelComment": {
  7550.           "kind": "youtube#comment",
  7551.           "etag": "mgbDCKlvsGoNzVHUCxRwa95uVRM",
  7552.           "id": "Ugwl7Rppm1oRyUnt2254AaABAg",
  7553.           "snippet": {
  7554.             "videoId": "atnSTtiWU5E",
  7555.             "textDisplay": "Wow... dat boss theme",
  7556.             "textOriginal": "Wow... dat boss theme",
  7557.             "authorDisplayName": "Chris Withers",
  7558.             "authorChannelUrl": "http://www.youtube.com/channel/UC0SpqSfoOzoCroCZ7Q09BlQ",
  7559.             "authorChannelId": {
  7560.               "value": "UC0SpqSfoOzoCroCZ7Q09BlQ"
  7561.             },
  7562.             "canRate": true,
  7563.             "viewerRating": "none",
  7564.             "likeCount": 0,
  7565.             "publishedAt": "2012-04-24T23:08:17Z",
  7566.             "updatedAt": "2012-04-24T23:08:17Z"
  7567.           }
  7568.         },
  7569.         "canReply": true,
  7570.         "totalReplyCount": 0,
  7571.         "isPublic": true
  7572.       }
  7573.     },
  7574.     {
  7575.       "kind": "youtube#commentThread",
  7576.       "etag": "WhRGJr72Rm_ZXCED7rN6bvzes14",
  7577.       "id": "UgziuvBer0YsJvSx7c94AaABAg",
  7578.       "snippet": {
  7579.         "videoId": "atnSTtiWU5E",
  7580.         "topLevelComment": {
  7581.           "kind": "youtube#comment",
  7582.           "etag": "HMrcldGnTp-Ni3jsh5NvjGxoQ3Y",
  7583.           "id": "UgziuvBer0YsJvSx7c94AaABAg",
  7584.           "snippet": {
  7585.             "videoId": "atnSTtiWU5E",
  7586.             "textDisplay": "I go running to your music all the time. it gets me SO hyped, not to mention its MLP and everybody I show this to just thinks its eurobeats ahahha. \nITS GOOD SHIT.\nPlus, I can see how people can't see the resemblance to the actual evil enchantress song by fluttershy. I hear it, and sing it, but at first I was kind of confused to how it related to the song at all, then I heard it. :D ",
  7587.             "textOriginal": "I go running to your music all the time. it gets me SO hyped, not to mention its MLP and everybody I show this to just thinks its eurobeats ahahha. \nITS GOOD SHIT.\nPlus, I can see how people can't see the resemblance to the actual evil enchantress song by fluttershy. I hear it, and sing it, but at first I was kind of confused to how it related to the song at all, then I heard it. :D ",
  7588.             "authorDisplayName": "Ihasface",
  7589.             "authorChannelUrl": "http://www.youtube.com/channel/UC-Onig4zKh5e9RBkmF2x0PA",
  7590.             "authorChannelId": {
  7591.               "value": "UC-Onig4zKh5e9RBkmF2x0PA"
  7592.             },
  7593.             "canRate": true,
  7594.             "viewerRating": "none",
  7595.             "likeCount": 0,
  7596.             "publishedAt": "2012-04-24T19:40:57Z",
  7597.             "updatedAt": "2012-04-24T19:40:57Z"
  7598.           }
  7599.         },
  7600.         "canReply": true,
  7601.         "totalReplyCount": 0,
  7602.         "isPublic": true
  7603.       }
  7604.     },
  7605.     {
  7606.       "kind": "youtube#commentThread",
  7607.       "etag": "KRB7rCF4eC0-9BU2VqS0uRPfUJY",
  7608.       "id": "UgzpNgTN_G-fUSKJwtF4AaABAg",
  7609.       "snippet": {
  7610.         "videoId": "atnSTtiWU5E",
  7611.         "topLevelComment": {
  7612.           "kind": "youtube#comment",
  7613.           "etag": "x0Z-U1lExVI0ccW7LQDtpzs1KD8",
  7614.           "id": "UgzpNgTN_G-fUSKJwtF4AaABAg",
  7615.           "snippet": {
  7616.             "videoId": "atnSTtiWU5E",
  7617.             "textDisplay": "perfect for games...",
  7618.             "textOriginal": "perfect for games...",
  7619.             "authorDisplayName": "MilanesaAlHorno",
  7620.             "authorChannelUrl": "http://www.youtube.com/channel/UC66KqIawzenbUsl_KOYzdEg",
  7621.             "authorChannelId": {
  7622.               "value": "UC66KqIawzenbUsl_KOYzdEg"
  7623.             },
  7624.             "canRate": true,
  7625.             "viewerRating": "none",
  7626.             "likeCount": 0,
  7627.             "publishedAt": "2012-04-23T16:57:16Z",
  7628.             "updatedAt": "2012-04-23T16:57:16Z"
  7629.           }
  7630.         },
  7631.         "canReply": true,
  7632.         "totalReplyCount": 0,
  7633.         "isPublic": true
  7634.       }
  7635.     },
  7636.     {
  7637.       "kind": "youtube#commentThread",
  7638.       "etag": "GLif1TBM7bT7xWNQ1sgkTePyzrc",
  7639.       "id": "UgxJJLvr9lXVJJDTSpV4AaABAg",
  7640.       "snippet": {
  7641.         "videoId": "atnSTtiWU5E",
  7642.         "topLevelComment": {
  7643.           "kind": "youtube#comment",
  7644.           "etag": "HqzCXQQ_XOjTlPOdTfDU_eRTKec",
  7645.           "id": "UgxJJLvr9lXVJJDTSpV4AaABAg",
  7646.           "snippet": {
  7647.             "videoId": "atnSTtiWU5E",
  7648.             "textDisplay": "Sounds like the evil enchantress for the 10 first second. Then it goes Super Meatboy.\nAwesome, simply magnificent",
  7649.             "textOriginal": "Sounds like the evil enchantress for the 10 first second. Then it goes Super Meatboy.\nAwesome, simply magnificent",
  7650.             "authorDisplayName": "Master Betty",
  7651.             "authorChannelUrl": "http://www.youtube.com/channel/UCDpeJihrwU_lx3-QZiIHzKg",
  7652.             "authorChannelId": {
  7653.               "value": "UCDpeJihrwU_lx3-QZiIHzKg"
  7654.             },
  7655.             "canRate": true,
  7656.             "viewerRating": "none",
  7657.             "likeCount": 0,
  7658.             "publishedAt": "2012-04-14T20:51:46Z",
  7659.             "updatedAt": "2012-04-14T20:51:46Z"
  7660.           }
  7661.         },
  7662.         "canReply": true,
  7663.         "totalReplyCount": 0,
  7664.         "isPublic": true
  7665.       }
  7666.     },
  7667.     {
  7668.       "kind": "youtube#commentThread",
  7669.       "etag": "i-VTXUUd2YEH_orZpAV0t3Zcgrw",
  7670.       "id": "UgwdU36pSgL_E1ZfkdZ4AaABAg",
  7671.       "snippet": {
  7672.         "videoId": "atnSTtiWU5E",
  7673.         "topLevelComment": {
  7674.           "kind": "youtube#comment",
  7675.           "etag": "PwQQ-hEuqoo2W1S231Jkte4TFXE",
  7676.           "id": "UgwdU36pSgL_E1ZfkdZ4AaABAg",
  7677.           "snippet": {
  7678.             "videoId": "atnSTtiWU5E",
  7679.             "textDisplay": "Guess what video I went on IMMEDIATELY after this.",
  7680.             "textOriginal": "Guess what video I went on IMMEDIATELY after this.",
  7681.             "authorDisplayName": "ManeGunner6",
  7682.             "authorChannelUrl": "http://www.youtube.com/channel/UCvpq_imdNdT-l1ZSd-Ch-Tw",
  7683.             "authorChannelId": {
  7684.               "value": "UCvpq_imdNdT-l1ZSd-Ch-Tw"
  7685.             },
  7686.             "canRate": true,
  7687.             "viewerRating": "none",
  7688.             "likeCount": 0,
  7689.             "publishedAt": "2012-04-14T11:42:19Z",
  7690.             "updatedAt": "2012-04-14T11:42:19Z"
  7691.           }
  7692.         },
  7693.         "canReply": true,
  7694.         "totalReplyCount": 0,
  7695.         "isPublic": true
  7696.       }
  7697.     },
  7698.     {
  7699.       "kind": "youtube#commentThread",
  7700.       "etag": "0lEidSgJ0DkjgtPYDBbw5ijH_3c",
  7701.       "id": "UgyROVs-AooktePmJV54AaABAg",
  7702.       "snippet": {
  7703.         "videoId": "atnSTtiWU5E",
  7704.         "topLevelComment": {
  7705.           "kind": "youtube#comment",
  7706.           "etag": "0YKkAQ2ta2sMtM5GQB_r1oxxUy8",
  7707.           "id": "UgyROVs-AooktePmJV54AaABAg",
  7708.           "snippet": {
  7709.             "videoId": "atnSTtiWU5E",
  7710.             "textDisplay": "Or as a boss theme...",
  7711.             "textOriginal": "Or as a boss theme...",
  7712.             "authorDisplayName": "ZaleAcon",
  7713.             "authorChannelUrl": "http://www.youtube.com/channel/UCqmyG_-iGqHoCoo-lKVf5tA",
  7714.             "authorChannelId": {
  7715.               "value": "UCqmyG_-iGqHoCoo-lKVf5tA"
  7716.             },
  7717.             "canRate": true,
  7718.             "viewerRating": "none",
  7719.             "likeCount": 0,
  7720.             "publishedAt": "2012-04-12T20:49:22Z",
  7721.             "updatedAt": "2012-04-12T20:49:22Z"
  7722.           }
  7723.         },
  7724.         "canReply": true,
  7725.         "totalReplyCount": 0,
  7726.         "isPublic": true
  7727.       }
  7728.     },
  7729.     {
  7730.       "kind": "youtube#commentThread",
  7731.       "etag": "zSnNA6jY8cUKcktqQ7NwZzF-UP8",
  7732.       "id": "UgzWHZvifGyy05nnfyN4AaABAg",
  7733.       "snippet": {
  7734.         "videoId": "atnSTtiWU5E",
  7735.         "topLevelComment": {
  7736.           "kind": "youtube#comment",
  7737.           "etag": "lna8l21iOekdC3B4MZuNtAc0WXs",
  7738.           "id": "UgzWHZvifGyy05nnfyN4AaABAg",
  7739.           "snippet": {
  7740.             "videoId": "atnSTtiWU5E",
  7741.             "textDisplay": "You should put vocals! :D Amazing! >w<",
  7742.             "textOriginal": "You should put vocals! :D Amazing! \u003ew\u003c",
  7743.             "authorDisplayName": "leegirl18leesprite",
  7744.             "authorChannelUrl": "http://www.youtube.com/channel/UCYGrd6-Q4YRbJ5LV3moIYog",
  7745.             "authorChannelId": {
  7746.               "value": "UCYGrd6-Q4YRbJ5LV3moIYog"
  7747.             },
  7748.             "canRate": true,
  7749.             "viewerRating": "none",
  7750.             "likeCount": 0,
  7751.             "publishedAt": "2012-04-08T21:56:46Z",
  7752.             "updatedAt": "2012-04-08T21:56:46Z"
  7753.           }
  7754.         },
  7755.         "canReply": true,
  7756.         "totalReplyCount": 0,
  7757.         "isPublic": true
  7758.       }
  7759.     },
  7760.     {
  7761.       "kind": "youtube#commentThread",
  7762.       "etag": "keCLhRiWKWaLr4lVKjysXBgo8ds",
  7763.       "id": "UgweC-jEg46fV4n679p4AaABAg",
  7764.       "snippet": {
  7765.         "videoId": "atnSTtiWU5E",
  7766.         "topLevelComment": {
  7767.           "kind": "youtube#comment",
  7768.           "etag": "NbTdVmW6v9DbLkKNJzKSri_Jk9o",
  7769.           "id": "UgweC-jEg46fV4n679p4AaABAg",
  7770.           "snippet": {
  7771.             "videoId": "atnSTtiWU5E",
  7772.             "textDisplay": "Why does the opening sound a little bit like MK theme...",
  7773.             "textOriginal": "Why does the opening sound a little bit like MK theme...",
  7774.             "authorDisplayName": "HiD",
  7775.             "authorChannelUrl": "http://www.youtube.com/channel/UC6mdnQ3Lvbctea-cGdP28RA",
  7776.             "authorChannelId": {
  7777.               "value": "UC6mdnQ3Lvbctea-cGdP28RA"
  7778.             },
  7779.             "canRate": true,
  7780.             "viewerRating": "none",
  7781.             "likeCount": 0,
  7782.             "publishedAt": "2012-04-04T17:19:13Z",
  7783.             "updatedAt": "2012-04-04T17:19:13Z"
  7784.           }
  7785.         },
  7786.         "canReply": true,
  7787.         "totalReplyCount": 0,
  7788.         "isPublic": true
  7789.       }
  7790.     },
  7791.     {
  7792.       "kind": "youtube#commentThread",
  7793.       "etag": "66gFrisNWKMMaOdSf1bd4FLd9Pc",
  7794.       "id": "UgyYL28xU8ubTcl2l8N4AaABAg",
  7795.       "snippet": {
  7796.         "videoId": "atnSTtiWU5E",
  7797.         "topLevelComment": {
  7798.           "kind": "youtube#comment",
  7799.           "etag": "yicGS4OZxls1ehYA72IQ7Z-_kqM",
  7800.           "id": "UgyYL28xU8ubTcl2l8N4AaABAg",
  7801.           "snippet": {
  7802.             "videoId": "atnSTtiWU5E",
  7803.             "textDisplay": "228k hits and only 23 dislikes \ngratz man :D",
  7804.             "textOriginal": "228k hits and only 23 dislikes \ngratz man :D",
  7805.             "authorDisplayName": "emilsen101",
  7806.             "authorChannelUrl": "http://www.youtube.com/channel/UCH45PBepT8rikTpI82o3LlA",
  7807.             "authorChannelId": {
  7808.               "value": "UCH45PBepT8rikTpI82o3LlA"
  7809.             },
  7810.             "canRate": true,
  7811.             "viewerRating": "none",
  7812.             "likeCount": 0,
  7813.             "publishedAt": "2012-04-04T14:08:12Z",
  7814.             "updatedAt": "2012-04-04T14:08:12Z"
  7815.           }
  7816.         },
  7817.         "canReply": true,
  7818.         "totalReplyCount": 0,
  7819.         "isPublic": true
  7820.       }
  7821.     },
  7822.     {
  7823.       "kind": "youtube#commentThread",
  7824.       "etag": "EYv7sgPg50pBsdMFfApKsGZVM94",
  7825.       "id": "Ugx5KwDRgvqbud4tp7F4AaABAg",
  7826.       "snippet": {
  7827.         "videoId": "atnSTtiWU5E",
  7828.         "topLevelComment": {
  7829.           "kind": "youtube#comment",
  7830.           "etag": "TvOxtyp-gdDbI2mX__l-MR0ZadA",
  7831.           "id": "Ugx5KwDRgvqbud4tp7F4AaABAg",
  7832.           "snippet": {
  7833.             "videoId": "atnSTtiWU5E",
  7834.             "textDisplay": "I wanna drive my sweet Mitsubishi Eclipse 95 blasting this with strobing neon.",
  7835.             "textOriginal": "I wanna drive my sweet Mitsubishi Eclipse 95 blasting this with strobing neon.",
  7836.             "authorDisplayName": "HeXeN",
  7837.             "authorChannelUrl": "http://www.youtube.com/channel/UCXPxB8TOafHsB2rgTGyYBiA",
  7838.             "authorChannelId": {
  7839.               "value": "UCXPxB8TOafHsB2rgTGyYBiA"
  7840.             },
  7841.             "canRate": true,
  7842.             "viewerRating": "none",
  7843.             "likeCount": 0,
  7844.             "publishedAt": "2012-04-02T11:57:23Z",
  7845.             "updatedAt": "2012-04-02T11:57:23Z"
  7846.           }
  7847.         },
  7848.         "canReply": true,
  7849.         "totalReplyCount": 0,
  7850.         "isPublic": true
  7851.       }
  7852.     },
  7853.     {
  7854.       "kind": "youtube#commentThread",
  7855.       "etag": "ahPNibMVv1jT3Cg1VAHs0Yma53s",
  7856.       "id": "UgwCLrzUnbT-RBXWegJ4AaABAg",
  7857.       "snippet": {
  7858.         "videoId": "atnSTtiWU5E",
  7859.         "topLevelComment": {
  7860.           "kind": "youtube#comment",
  7861.           "etag": "xdtLqujpWknafYoJwrIdr6jmBHQ",
  7862.           "id": "UgwCLrzUnbT-RBXWegJ4AaABAg",
  7863.           "snippet": {
  7864.             "videoId": "atnSTtiWU5E",
  7865.             "textDisplay": "I never get tired of this *______*\n",
  7866.             "textOriginal": "I never get tired of this *______*\n",
  7867.             "authorDisplayName": "Stellaria",
  7868.             "authorChannelUrl": "http://www.youtube.com/channel/UCrWuXnIJ_hYi8zM8hOGNrbw",
  7869.             "authorChannelId": {
  7870.               "value": "UCrWuXnIJ_hYi8zM8hOGNrbw"
  7871.             },
  7872.             "canRate": true,
  7873.             "viewerRating": "none",
  7874.             "likeCount": 0,
  7875.             "publishedAt": "2012-04-01T20:53:27Z",
  7876.             "updatedAt": "2012-04-01T20:53:27Z"
  7877.           }
  7878.         },
  7879.         "canReply": true,
  7880.         "totalReplyCount": 0,
  7881.         "isPublic": true
  7882.       }
  7883.     },
  7884.     {
  7885.       "kind": "youtube#commentThread",
  7886.       "etag": "WDvS9ci8vxiCjvcqzOslzmAQdQ0",
  7887.       "id": "UgyLuQmzOT1TnG-fpjl4AaABAg",
  7888.       "snippet": {
  7889.         "videoId": "atnSTtiWU5E",
  7890.         "topLevelComment": {
  7891.           "kind": "youtube#comment",
  7892.           "etag": "7tSLl4kjYCLD72P0p2hjQgR3Emo",
  7893.           "id": "UgyLuQmzOT1TnG-fpjl4AaABAg",
  7894.           "snippet": {
  7895.             "videoId": "atnSTtiWU5E",
  7896.             "textDisplay": "as par of your opinion only. I love the evil enchantress from flutterguy.",
  7897.             "textOriginal": "as par of your opinion only. I love the evil enchantress from flutterguy.",
  7898.             "authorDisplayName": "TLViolynn",
  7899.             "authorChannelUrl": "http://www.youtube.com/channel/UCtZsonhIqztWLwTvb1nIZ_g",
  7900.             "authorChannelId": {
  7901.               "value": "UCtZsonhIqztWLwTvb1nIZ_g"
  7902.             },
  7903.             "canRate": true,
  7904.             "viewerRating": "none",
  7905.             "likeCount": 0,
  7906.             "publishedAt": "2012-03-31T10:10:42Z",
  7907.             "updatedAt": "2012-03-31T10:10:42Z"
  7908.           }
  7909.         },
  7910.         "canReply": true,
  7911.         "totalReplyCount": 0,
  7912.         "isPublic": true
  7913.       }
  7914.     },
  7915.     {
  7916.       "kind": "youtube#commentThread",
  7917.       "etag": "QXDVwo5i7jpSo3bRn0k1Q4WlCrY",
  7918.       "id": "UgyO5MJw_pJGe0eohu94AaABAg",
  7919.       "snippet": {
  7920.         "videoId": "atnSTtiWU5E",
  7921.         "topLevelComment": {
  7922.           "kind": "youtube#comment",
  7923.           "etag": "zBAeogRYHQyADXuYW97mDHpW0-8",
  7924.           "id": "UgyO5MJw_pJGe0eohu94AaABAg",
  7925.           "snippet": {
  7926.             "videoId": "atnSTtiWU5E",
  7927.             "textDisplay": "She's an evil enchantress, she does evil dances, when you look deep in her eyes, she'll put you in trances, then what'll she do? She'll cook up an evil brew, then she'll gobble you up in a big tasty stew, so WATCH OUT!",
  7928.             "textOriginal": "She's an evil enchantress, she does evil dances, when you look deep in her eyes, she'll put you in trances, then what'll she do? She'll cook up an evil brew, then she'll gobble you up in a big tasty stew, so WATCH OUT!",
  7929.             "authorDisplayName": "Derpy Hooves",
  7930.             "authorChannelUrl": "http://www.youtube.com/channel/UCmnCNUB1q0d3SampgNzvCNA",
  7931.             "authorChannelId": {
  7932.               "value": "UCmnCNUB1q0d3SampgNzvCNA"
  7933.             },
  7934.             "canRate": true,
  7935.             "viewerRating": "none",
  7936.             "likeCount": 0,
  7937.             "publishedAt": "2012-03-26T16:41:31Z",
  7938.             "updatedAt": "2012-03-26T16:41:31Z"
  7939.           }
  7940.         },
  7941.         "canReply": true,
  7942.         "totalReplyCount": 0,
  7943.         "isPublic": true
  7944.       }
  7945.     },
  7946.     {
  7947.       "kind": "youtube#commentThread",
  7948.       "etag": "HctGii5GoMSbKAr25fWtJSm05Ss",
  7949.       "id": "UgwwIbKhYHD096AhWcZ4AaABAg",
  7950.       "snippet": {
  7951.         "videoId": "atnSTtiWU5E",
  7952.         "topLevelComment": {
  7953.           "kind": "youtube#comment",
  7954.           "etag": "8oW22EmuCgIC-P5qJurGEL9O3i4",
  7955.           "id": "UgwwIbKhYHD096AhWcZ4AaABAg",
  7956.           "snippet": {
  7957.             "videoId": "atnSTtiWU5E",
  7958.             "textDisplay": "I'm using this to drown out a rickroll...\nWOOHOO!",
  7959.             "textOriginal": "I'm using this to drown out a rickroll...\nWOOHOO!",
  7960.             "authorDisplayName": "Sheila the Intern",
  7961.             "authorChannelUrl": "http://www.youtube.com/channel/UCONGnjB2eDlcgnMZtUNRZ9w",
  7962.             "authorChannelId": {
  7963.               "value": "UCONGnjB2eDlcgnMZtUNRZ9w"
  7964.             },
  7965.             "canRate": true,
  7966.             "viewerRating": "none",
  7967.             "likeCount": 0,
  7968.             "publishedAt": "2012-03-25T17:18:37Z",
  7969.             "updatedAt": "2012-03-25T17:18:37Z"
  7970.           }
  7971.         },
  7972.         "canReply": true,
  7973.         "totalReplyCount": 0,
  7974.         "isPublic": true
  7975.       }
  7976.     },
  7977.     {
  7978.       "kind": "youtube#commentThread",
  7979.       "etag": "Kw9mSNyNva0gsmFyE-aUiw31PWU",
  7980.       "id": "UgxoYBcDAIL509PZ5yJ4AaABAg",
  7981.       "snippet": {
  7982.         "videoId": "atnSTtiWU5E",
  7983.         "topLevelComment": {
  7984.           "kind": "youtube#comment",
  7985.           "etag": "avuBgrWP9qgLg-dpamFpw0dJt-s",
  7986.           "id": "UgxoYBcDAIL509PZ5yJ4AaABAg",
  7987.           "snippet": {
  7988.             "videoId": "atnSTtiWU5E",
  7989.             "textDisplay": "this would be great in a pony video game. this is the level where you play applejack and are chasing trying to catch up to apple bloom while avoiding obstacles  XD",
  7990.             "textOriginal": "this would be great in a pony video game. this is the level where you play applejack and are chasing trying to catch up to apple bloom while avoiding obstacles  XD",
  7991.             "authorDisplayName": "The_Dolhaus",
  7992.             "authorChannelUrl": "http://www.youtube.com/channel/UCrUar-8zzeCgshGMwvuWFEQ",
  7993.             "authorChannelId": {
  7994.               "value": "UCrUar-8zzeCgshGMwvuWFEQ"
  7995.             },
  7996.             "canRate": true,
  7997.             "viewerRating": "none",
  7998.             "likeCount": 0,
  7999.             "publishedAt": "2012-03-23T00:26:48Z",
  8000.             "updatedAt": "2012-03-23T00:26:48Z"
  8001.           }
  8002.         },
  8003.         "canReply": true,
  8004.         "totalReplyCount": 0,
  8005.         "isPublic": true
  8006.       }
  8007.     },
  8008.     {
  8009.       "kind": "youtube#commentThread",
  8010.       "etag": "J1IiljU23pcjOOfE9_tLvp22IwA",
  8011.       "id": "UgzQAlmrJXlywkxdYex4AaABAg",
  8012.       "snippet": {
  8013.         "videoId": "atnSTtiWU5E",
  8014.         "topLevelComment": {
  8015.           "kind": "youtube#comment",
  8016.           "etag": "TzIMgf__OlneaIRIGoM8PNIoVMk",
  8017.           "id": "UgzQAlmrJXlywkxdYex4AaABAg",
  8018.           "snippet": {
  8019.             "videoId": "atnSTtiWU5E",
  8020.             "textDisplay": "I demand a pmv",
  8021.             "textOriginal": "I demand a pmv",
  8022.             "authorDisplayName": "Anthony Nieto",
  8023.             "authorChannelUrl": "http://www.youtube.com/channel/UCAO3BByGypb8JhRnH8A0vxA",
  8024.             "authorChannelId": {
  8025.               "value": "UCAO3BByGypb8JhRnH8A0vxA"
  8026.             },
  8027.             "canRate": true,
  8028.             "viewerRating": "none",
  8029.             "likeCount": 0,
  8030.             "publishedAt": "2012-03-22T18:08:20Z",
  8031.             "updatedAt": "2012-03-22T18:08:20Z"
  8032.           }
  8033.         },
  8034.         "canReply": true,
  8035.         "totalReplyCount": 0,
  8036.         "isPublic": true
  8037.       }
  8038.     },
  8039.     {
  8040.       "kind": "youtube#commentThread",
  8041.       "etag": "dDbyUxLfgzXvnMpUjuOPQUu2i9Q",
  8042.       "id": "Ugxfl19crvlnOAwi3_B4AaABAg",
  8043.       "snippet": {
  8044.         "videoId": "atnSTtiWU5E",
  8045.         "topLevelComment": {
  8046.           "kind": "youtube#comment",
  8047.           "etag": "Q6ze_iSgRNpUXJ1psMKhKRw4c48",
  8048.           "id": "Ugxfl19crvlnOAwi3_B4AaABAg",
  8049.           "snippet": {
  8050.             "videoId": "atnSTtiWU5E",
  8051.             "textDisplay": "@TerrorWolfX I have had the opposite experience... I started by liking MLP, and this turned me on to Eurobeat, which I didn't like before.",
  8052.             "textOriginal": "@TerrorWolfX I have had the opposite experience... I started by liking MLP, and this turned me on to Eurobeat, which I didn't like before.",
  8053.             "authorDisplayName": "johannhowitzer",
  8054.             "authorChannelUrl": "http://www.youtube.com/channel/UC76vZIZbBlHfBmKOdif2JIg",
  8055.             "authorChannelId": {
  8056.               "value": "UC76vZIZbBlHfBmKOdif2JIg"
  8057.             },
  8058.             "canRate": true,
  8059.             "viewerRating": "none",
  8060.             "likeCount": 0,
  8061.             "publishedAt": "2012-03-17T21:59:17Z",
  8062.             "updatedAt": "2012-03-17T21:59:17Z"
  8063.           }
  8064.         },
  8065.         "canReply": true,
  8066.         "totalReplyCount": 0,
  8067.         "isPublic": true
  8068.       }
  8069.     },
  8070.     {
  8071.       "kind": "youtube#commentThread",
  8072.       "etag": "4xvi-OZMBj1cRiuGyPItQhb03_Q",
  8073.       "id": "UgymkDMad7tTvujG1ah4AaABAg",
  8074.       "snippet": {
  8075.         "videoId": "atnSTtiWU5E",
  8076.         "topLevelComment": {
  8077.           "kind": "youtube#comment",
  8078.           "etag": "vrzVlm49cnl6zmwX4mXe79yjrpQ",
  8079.           "id": "UgymkDMad7tTvujG1ah4AaABAg",
  8080.           "snippet": {
  8081.             "videoId": "atnSTtiWU5E",
  8082.             "textDisplay": "One of the worst songs from the series --> one of the best Super Pony Beat songs. Awesome work.",
  8083.             "textOriginal": "One of the worst songs from the series --\u003e one of the best Super Pony Beat songs. Awesome work.",
  8084.             "authorDisplayName": "ǝɹɐɯʇɥᵷᴉu evergreen",
  8085.             "authorChannelUrl": "http://www.youtube.com/channel/UCYqYaP4c3XHlROrBsKtbmFA",
  8086.             "authorChannelId": {
  8087.               "value": "UCYqYaP4c3XHlROrBsKtbmFA"
  8088.             },
  8089.             "canRate": true,
  8090.             "viewerRating": "none",
  8091.             "likeCount": 0,
  8092.             "publishedAt": "2012-03-16T12:34:48Z",
  8093.             "updatedAt": "2012-03-16T12:34:48Z"
  8094.           }
  8095.         },
  8096.         "canReply": true,
  8097.         "totalReplyCount": 0,
  8098.         "isPublic": true
  8099.       }
  8100.     },
  8101.     {
  8102.       "kind": "youtube#commentThread",
  8103.       "etag": "xkDX5bHXDNclH1A-0YIFK9NTgLA",
  8104.       "id": "Ugzndq2tGH5DM9YO3TB4AaABAg",
  8105.       "snippet": {
  8106.         "videoId": "atnSTtiWU5E",
  8107.         "topLevelComment": {
  8108.           "kind": "youtube#comment",
  8109.           "etag": "WZOHzD3kE5llHrxBV40fNamGN_g",
  8110.           "id": "Ugzndq2tGH5DM9YO3TB4AaABAg",
  8111.           "snippet": {
  8112.             "videoId": "atnSTtiWU5E",
  8113.             "textDisplay": "I'm sorry but I just cant listen to this song without thinking that the creepy Applebloom will pop up at around 0:20 in the song.",
  8114.             "textOriginal": "I'm sorry but I just cant listen to this song without thinking that the creepy Applebloom will pop up at around 0:20 in the song.",
  8115.             "authorDisplayName": "BonesAreAlwaysWatching",
  8116.             "authorChannelUrl": "http://www.youtube.com/channel/UCBnjQ8FtWEex_4-1iB0RKUw",
  8117.             "authorChannelId": {
  8118.               "value": "UCBnjQ8FtWEex_4-1iB0RKUw"
  8119.             },
  8120.             "canRate": true,
  8121.             "viewerRating": "none",
  8122.             "likeCount": 0,
  8123.             "publishedAt": "2012-03-15T21:48:16Z",
  8124.             "updatedAt": "2012-03-15T21:48:16Z"
  8125.           }
  8126.         },
  8127.         "canReply": true,
  8128.         "totalReplyCount": 0,
  8129.         "isPublic": true
  8130.       }
  8131.     },
  8132.     {
  8133.       "kind": "youtube#commentThread",
  8134.       "etag": "cSd9NpWGN4aAQlZiUEC4hQpMgR0",
  8135.       "id": "UgytxcWyw0Pv5grWsc94AaABAg",
  8136.       "snippet": {
  8137.         "videoId": "atnSTtiWU5E",
  8138.         "topLevelComment": {
  8139.           "kind": "youtube#comment",
  8140.           "etag": "LXTwHimrxY8EN3U9rjN0-8lGsjo",
  8141.           "id": "UgytxcWyw0Pv5grWsc94AaABAg",
  8142.           "snippet": {
  8143.             "videoId": "atnSTtiWU5E",
  8144.             "textDisplay": "@MisslemikeTheBrony Best description iv'e heard!  But is The Luna Game really as bad as people say?",
  8145.             "textOriginal": "@MisslemikeTheBrony Best description iv'e heard!  But is The Luna Game really as bad as people say?",
  8146.             "authorDisplayName": "sasumekyoto34",
  8147.             "authorChannelUrl": "http://www.youtube.com/channel/UCkdOMQ_EGNNKu3NnJEfMQJw",
  8148.             "authorChannelId": {
  8149.               "value": "UCkdOMQ_EGNNKu3NnJEfMQJw"
  8150.             },
  8151.             "canRate": true,
  8152.             "viewerRating": "none",
  8153.             "likeCount": 0,
  8154.             "publishedAt": "2012-03-14T23:30:42Z",
  8155.             "updatedAt": "2012-03-14T23:30:42Z"
  8156.           }
  8157.         },
  8158.         "canReply": true,
  8159.         "totalReplyCount": 0,
  8160.         "isPublic": true
  8161.       }
  8162.     },
  8163.     {
  8164.       "kind": "youtube#commentThread",
  8165.       "etag": "53VxwFHONj_QMYa2cWvgu7cDJj0",
  8166.       "id": "UgyIsLf_CUmmJfEIZHV4AaABAg",
  8167.       "snippet": {
  8168.         "videoId": "atnSTtiWU5E",
  8169.         "topLevelComment": {
  8170.           "kind": "youtube#comment",
  8171.           "etag": "0ST_kM3571-v1cVWjz5em4CyMFI",
  8172.           "id": "UgyIsLf_CUmmJfEIZHV4AaABAg",
  8173.           "snippet": {
  8174.             "videoId": "atnSTtiWU5E",
  8175.             "textDisplay": "@Bisharpfanatic101 Your ears would become jelly. Literally. Cherry flavored and everything. it would be awful.",
  8176.             "textOriginal": "@Bisharpfanatic101 Your ears would become jelly. Literally. Cherry flavored and everything. it would be awful.",
  8177.             "authorDisplayName": "Alanox",
  8178.             "authorChannelUrl": "http://www.youtube.com/channel/UC5w0sGv17aVSArwg3wurhIw",
  8179.             "authorChannelId": {
  8180.               "value": "UC5w0sGv17aVSArwg3wurhIw"
  8181.             },
  8182.             "canRate": true,
  8183.             "viewerRating": "none",
  8184.             "likeCount": 0,
  8185.             "publishedAt": "2012-03-14T17:38:09Z",
  8186.             "updatedAt": "2012-03-14T17:38:09Z"
  8187.           }
  8188.         },
  8189.         "canReply": true,
  8190.         "totalReplyCount": 0,
  8191.         "isPublic": true
  8192.       }
  8193.     },
  8194.     {
  8195.       "kind": "youtube#commentThread",
  8196.       "etag": "snUYWY2xLdB7s78HXVLFQ5Lv_e0",
  8197.       "id": "UgzvHV2-4FnqnFFSumN4AaABAg",
  8198.       "snippet": {
  8199.         "videoId": "atnSTtiWU5E",
  8200.         "topLevelComment": {
  8201.           "kind": "youtube#comment",
  8202.           "etag": "8kxz1ppAUstbECwea7mDa1g1FYk",
  8203.           "id": "UgzvHV2-4FnqnFFSumN4AaABAg",
  8204.           "snippet": {
  8205.             "videoId": "atnSTtiWU5E",
  8206.             "textDisplay": "Somehow touhou",
  8207.             "textOriginal": "Somehow touhou",
  8208.             "authorDisplayName": "Giancarlo Jorge",
  8209.             "authorChannelUrl": "http://www.youtube.com/channel/UCaTwzlZXaJqaA8g7skJE-mw",
  8210.             "authorChannelId": {
  8211.               "value": "UCaTwzlZXaJqaA8g7skJE-mw"
  8212.             },
  8213.             "canRate": true,
  8214.             "viewerRating": "none",
  8215.             "likeCount": 0,
  8216.             "publishedAt": "2012-03-11T09:06:14Z",
  8217.             "updatedAt": "2012-03-11T09:06:14Z"
  8218.           }
  8219.         },
  8220.         "canReply": true,
  8221.         "totalReplyCount": 0,
  8222.         "isPublic": true
  8223.       }
  8224.     },
  8225.     {
  8226.       "kind": "youtube#commentThread",
  8227.       "etag": "hHe1c-YZcxp7ko7qjXdOhfoYxQk",
  8228.       "id": "UgzXn_dgyl5DGmW-RlJ4AaABAg",
  8229.       "snippet": {
  8230.         "videoId": "atnSTtiWU5E",
  8231.         "topLevelComment": {
  8232.           "kind": "youtube#comment",
  8233.           "etag": "XaIZg8s3eOyt1Nh4R3ciRSqfJys",
  8234.           "id": "UgzXn_dgyl5DGmW-RlJ4AaABAg",
  8235.           "snippet": {
  8236.             "videoId": "atnSTtiWU5E",
  8237.             "textDisplay": "@TeleporterFIN Why is that?",
  8238.             "textOriginal": "@TeleporterFIN Why is that?",
  8239.             "authorDisplayName": "Dasha M",
  8240.             "authorChannelUrl": "http://www.youtube.com/channel/UC74sgSPvXDiAWTikr10Ih6g",
  8241.             "authorChannelId": {
  8242.               "value": "UC74sgSPvXDiAWTikr10Ih6g"
  8243.             },
  8244.             "canRate": true,
  8245.             "viewerRating": "none",
  8246.             "likeCount": 0,
  8247.             "publishedAt": "2012-03-07T13:38:22Z",
  8248.             "updatedAt": "2012-03-07T13:38:22Z"
  8249.           }
  8250.         },
  8251.         "canReply": true,
  8252.         "totalReplyCount": 0,
  8253.         "isPublic": true
  8254.       }
  8255.     },
  8256.     {
  8257.       "kind": "youtube#commentThread",
  8258.       "etag": "pH16Cq-pySgWc9qgKLL8FEG88hE",
  8259.       "id": "UgzYGNm_45jbfvVeabN4AaABAg",
  8260.       "snippet": {
  8261.         "videoId": "atnSTtiWU5E",
  8262.         "topLevelComment": {
  8263.           "kind": "youtube#comment",
  8264.           "etag": "zefDj9oRaWwHJfe4oOS455fm-U4",
  8265.           "id": "UgzYGNm_45jbfvVeabN4AaABAg",
  8266.           "snippet": {
  8267.             "videoId": "atnSTtiWU5E",
  8268.             "textDisplay": "This sounds familiar, like I heard it somewhere before. And no not the original song that it's based on. But this sounds like some weird mix of touhou and Sonic the Fighters.",
  8269.             "textOriginal": "This sounds familiar, like I heard it somewhere before. And no not the original song that it's based on. But this sounds like some weird mix of touhou and Sonic the Fighters.",
  8270.             "authorDisplayName": "wthpink",
  8271.             "authorChannelUrl": "http://www.youtube.com/channel/UCzVDcn0PnM2KQJiUVysaz1g",
  8272.             "authorChannelId": {
  8273.               "value": "UCzVDcn0PnM2KQJiUVysaz1g"
  8274.             },
  8275.             "canRate": true,
  8276.             "viewerRating": "none",
  8277.             "likeCount": 0,
  8278.             "publishedAt": "2012-03-07T09:36:20Z",
  8279.             "updatedAt": "2012-03-07T09:36:20Z"
  8280.           }
  8281.         },
  8282.         "canReply": true,
  8283.         "totalReplyCount": 0,
  8284.         "isPublic": true
  8285.       }
  8286.     },
  8287.     {
  8288.       "kind": "youtube#commentThread",
  8289.       "etag": "lknp5GH3Gt_ceNmvPOS47_uEuaE",
  8290.       "id": "UgzzzKLgHeb7VaY4jYF4AaABAg",
  8291.       "snippet": {
  8292.         "videoId": "atnSTtiWU5E",
  8293.         "topLevelComment": {
  8294.           "kind": "youtube#comment",
  8295.           "etag": "lhUcYJNwvG_8oOEIAKDBUmK-zDU",
  8296.           "id": "UgzzzKLgHeb7VaY4jYF4AaABAg",
  8297.           "snippet": {
  8298.             "videoId": "atnSTtiWU5E",
  8299.             "textDisplay": "Love this song :3",
  8300.             "textOriginal": "Love this song :3",
  8301.             "authorDisplayName": "Sulfali Avia",
  8302.             "authorChannelUrl": "http://www.youtube.com/channel/UCNiIZntCgG10DxhWlIN8DoA",
  8303.             "authorChannelId": {
  8304.               "value": "UCNiIZntCgG10DxhWlIN8DoA"
  8305.             },
  8306.             "canRate": true,
  8307.             "viewerRating": "none",
  8308.             "likeCount": 0,
  8309.             "publishedAt": "2012-03-07T00:09:20Z",
  8310.             "updatedAt": "2012-03-07T00:09:20Z"
  8311.           }
  8312.         },
  8313.         "canReply": true,
  8314.         "totalReplyCount": 0,
  8315.         "isPublic": true
  8316.       }
  8317.     },
  8318.     {
  8319.       "kind": "youtube#commentThread",
  8320.       "etag": "AM-9fhV1NngEdi0VhsAtfKNganw",
  8321.       "id": "UgyxYHs_dM_ApAxjfvB4AaABAg",
  8322.       "snippet": {
  8323.         "videoId": "atnSTtiWU5E",
  8324.         "topLevelComment": {
  8325.           "kind": "youtube#comment",
  8326.           "etag": "SuIPM8cE8TJ1EcMoh2_0YVoF-2E",
  8327.           "id": "UgyxYHs_dM_ApAxjfvB4AaABAg",
  8328.           "snippet": {
  8329.             "videoId": "atnSTtiWU5E",
  8330.             "textDisplay": "Initial P: Equestria Stage",
  8331.             "textOriginal": "Initial P: Equestria Stage",
  8332.             "authorDisplayName": "Riosnyper",
  8333.             "authorChannelUrl": "http://www.youtube.com/channel/UCzXnSFvHOxXkFRhOFSZK_Bg",
  8334.             "authorChannelId": {
  8335.               "value": "UCzXnSFvHOxXkFRhOFSZK_Bg"
  8336.             },
  8337.             "canRate": true,
  8338.             "viewerRating": "none",
  8339.             "likeCount": 0,
  8340.             "publishedAt": "2012-03-06T04:20:11Z",
  8341.             "updatedAt": "2012-03-06T04:20:11Z"
  8342.           }
  8343.         },
  8344.         "canReply": true,
  8345.         "totalReplyCount": 0,
  8346.         "isPublic": true
  8347.       }
  8348.     },
  8349.     {
  8350.       "kind": "youtube#commentThread",
  8351.       "etag": "Arq8nssv7fJZqRJl5KG8R7Ikqb8",
  8352.       "id": "UgzW_A5S-p5Dis-8xgx4AaABAg",
  8353.       "snippet": {
  8354.         "videoId": "atnSTtiWU5E",
  8355.         "topLevelComment": {
  8356.           "kind": "youtube#comment",
  8357.           "etag": "zTi43H0konN2hI3l1NjWfXrWATw",
  8358.           "id": "UgzW_A5S-p5Dis-8xgx4AaABAg",
  8359.           "snippet": {
  8360.             "videoId": "atnSTtiWU5E",
  8361.             "textDisplay": "This one is my most favorite from the Ponybeat songs...\nmaybe because it sounds a little bit like "remember me" or maybe not <.<",
  8362.             "textOriginal": "This one is my most favorite from the Ponybeat songs...\nmaybe because it sounds a little bit like \"remember me\" or maybe not \u003c.\u003c",
  8363.             "authorDisplayName": "Droid P.",
  8364.             "authorChannelUrl": "http://www.youtube.com/channel/UCQcPWuypcbLD2dE67NgL9Iw",
  8365.             "authorChannelId": {
  8366.               "value": "UCQcPWuypcbLD2dE67NgL9Iw"
  8367.             },
  8368.             "canRate": true,
  8369.             "viewerRating": "none",
  8370.             "likeCount": 0,
  8371.             "publishedAt": "2012-03-04T17:53:48Z",
  8372.             "updatedAt": "2012-03-04T17:53:48Z"
  8373.           }
  8374.         },
  8375.         "canReply": true,
  8376.         "totalReplyCount": 0,
  8377.         "isPublic": true
  8378.       }
  8379.     },
  8380.     {
  8381.       "kind": "youtube#commentThread",
  8382.       "etag": "PVGVCkfBiHkmeKj065Pk3I_ZrAY",
  8383.       "id": "Ugxy2Wd6_5lqv3F5QgJ4AaABAg",
  8384.       "snippet": {
  8385.         "videoId": "atnSTtiWU5E",
  8386.         "topLevelComment": {
  8387.           "kind": "youtube#comment",
  8388.           "etag": "8gLAdIYvBP0pYxiUmNwNHj4qXTs",
  8389.           "id": "Ugxy2Wd6_5lqv3F5QgJ4AaABAg",
  8390.           "snippet": {
  8391.             "videoId": "atnSTtiWU5E",
  8392.             "textDisplay": "Bau5 5ght!",
  8393.             "textOriginal": "Bau5 5ght!",
  8394.             "authorDisplayName": "BattleKai  バトルカイ",
  8395.             "authorChannelUrl": "http://www.youtube.com/channel/UCXY5OReTl553Dk0IvDHkpVA",
  8396.             "authorChannelId": {
  8397.               "value": "UCXY5OReTl553Dk0IvDHkpVA"
  8398.             },
  8399.             "canRate": true,
  8400.             "viewerRating": "none",
  8401.             "likeCount": 0,
  8402.             "publishedAt": "2012-03-03T18:58:07Z",
  8403.             "updatedAt": "2012-03-03T18:58:07Z"
  8404.           }
  8405.         },
  8406.         "canReply": true,
  8407.         "totalReplyCount": 0,
  8408.         "isPublic": true
  8409.       }
  8410.     },
  8411.     {
  8412.       "kind": "youtube#commentThread",
  8413.       "etag": "o30G31MY9tzs5LTjOQCwwP4J10M",
  8414.       "id": "Ugwkt5kNTSe-xzUHLjN4AaABAg",
  8415.       "snippet": {
  8416.         "videoId": "atnSTtiWU5E",
  8417.         "topLevelComment": {
  8418.           "kind": "youtube#comment",
  8419.           "etag": "drhzEyTcyqVO8_88fkl4X8UM-LI",
  8420.           "id": "Ugwkt5kNTSe-xzUHLjN4AaABAg",
  8421.           "snippet": {
  8422.             "videoId": "atnSTtiWU5E",
  8423.             "textDisplay": "Boss battle music.",
  8424.             "textOriginal": "Boss battle music.",
  8425.             "authorDisplayName": "Handsome Squidward",
  8426.             "authorChannelUrl": "http://www.youtube.com/channel/UCS4tOpEjAj7cv2aA6rvvVPg",
  8427.             "authorChannelId": {
  8428.               "value": "UCS4tOpEjAj7cv2aA6rvvVPg"
  8429.             },
  8430.             "canRate": true,
  8431.             "viewerRating": "none",
  8432.             "likeCount": 0,
  8433.             "publishedAt": "2012-02-28T21:04:35Z",
  8434.             "updatedAt": "2012-02-28T21:04:35Z"
  8435.           }
  8436.         },
  8437.         "canReply": true,
  8438.         "totalReplyCount": 0,
  8439.         "isPublic": true
  8440.       }
  8441.     },
  8442.     {
  8443.       "kind": "youtube#commentThread",
  8444.       "etag": "ZdNOTFjoyoucquCxwHU8VxaYFCM",
  8445.       "id": "Ugz9DbAFF7eCmJ-n5B94AaABAg",
  8446.       "snippet": {
  8447.         "videoId": "atnSTtiWU5E",
  8448.         "topLevelComment": {
  8449.           "kind": "youtube#comment",
  8450.           "etag": "ztPKPD4UAO7bDdgxwBPiVdt99Ic",
  8451.           "id": "Ugz9DbAFF7eCmJ-n5B94AaABAg",
  8452.           "snippet": {
  8453.             "videoId": "atnSTtiWU5E",
  8454.             "textDisplay": "This music has some bit of Running in The 90's in it. Maybe its just me.",
  8455.             "textOriginal": "This music has some bit of Running in The 90's in it. Maybe its just me.",
  8456.             "authorDisplayName": "cardboardsnail",
  8457.             "authorChannelUrl": "http://www.youtube.com/channel/UCl1wTkjkt1GtY5QFsPrxR_Q",
  8458.             "authorChannelId": {
  8459.               "value": "UCl1wTkjkt1GtY5QFsPrxR_Q"
  8460.             },
  8461.             "canRate": true,
  8462.             "viewerRating": "none",
  8463.             "likeCount": 0,
  8464.             "publishedAt": "2012-02-27T17:45:44Z",
  8465.             "updatedAt": "2012-02-27T17:45:44Z"
  8466.           }
  8467.         },
  8468.         "canReply": true,
  8469.         "totalReplyCount": 0,
  8470.         "isPublic": true
  8471.       }
  8472.     },
  8473.     {
  8474.       "kind": "youtube#commentThread",
  8475.       "etag": "DE5ob3TyY3qiYdx6j-FUfNb6rG4",
  8476.       "id": "UgxMi0DWQyHs-g2DigR4AaABAg",
  8477.       "snippet": {
  8478.         "videoId": "atnSTtiWU5E",
  8479.         "topLevelComment": {
  8480.           "kind": "youtube#comment",
  8481.           "etag": "gt5Q0PJfSW9qJZX3gHjnHeL4Y8Q",
  8482.           "id": "UgxMi0DWQyHs-g2DigR4AaABAg",
  8483.           "snippet": {
  8484.             "videoId": "atnSTtiWU5E",
  8485.             "textDisplay": "> Uploaded by Bandpuffs on Jan 27, 2011\n\nCrazy - this was made well over a year ago, possibly the first ever pony remix, and STILL possibly the best of them all! Awesome stuff.",
  8486.             "textOriginal": "\u003e Uploaded by Bandpuffs on Jan 27, 2011\n\nCrazy - this was made well over a year ago, possibly the first ever pony remix, and STILL possibly the best of them all! Awesome stuff.",
  8487.             "authorDisplayName": "wloffblizz",
  8488.             "authorChannelUrl": "http://www.youtube.com/channel/UC7GP88BgOH0XB48SWBhc93A",
  8489.             "authorChannelId": {
  8490.               "value": "UC7GP88BgOH0XB48SWBhc93A"
  8491.             },
  8492.             "canRate": true,
  8493.             "viewerRating": "none",
  8494.             "likeCount": 0,
  8495.             "publishedAt": "2012-02-17T23:10:26Z",
  8496.             "updatedAt": "2012-02-17T23:10:26Z"
  8497.           }
  8498.         },
  8499.         "canReply": true,
  8500.         "totalReplyCount": 0,
  8501.         "isPublic": true
  8502.       }
  8503.     },
  8504.     {
  8505.       "kind": "youtube#commentThread",
  8506.       "etag": "YSJrNlTd7mcvEnKSYQs03-ocvXg",
  8507.       "id": "Ugz4GfEBUONQp2VTdB54AaABAg",
  8508.       "snippet": {
  8509.         "videoId": "atnSTtiWU5E",
  8510.         "topLevelComment": {
  8511.           "kind": "youtube#comment",
  8512.           "etag": "00chKP7DYXYO1OXfGPcm50yPar4",
  8513.           "id": "Ugz4GfEBUONQp2VTdB54AaABAg",
  8514.           "snippet": {
  8515.             "videoId": "atnSTtiWU5E",
  8516.             "textDisplay": "Another quality upload, thanks a bunch!\n",
  8517.             "textOriginal": "Another quality upload, thanks a bunch!\n",
  8518.             "authorDisplayName": "Nonohino R",
  8519.             "authorChannelUrl": "http://www.youtube.com/channel/UCnC5EiDrpupDP43bzhOl2lw",
  8520.             "authorChannelId": {
  8521.               "value": "UCnC5EiDrpupDP43bzhOl2lw"
  8522.             },
  8523.             "canRate": true,
  8524.             "viewerRating": "none",
  8525.             "likeCount": 0,
  8526.             "publishedAt": "2012-02-15T11:00:40Z",
  8527.             "updatedAt": "2012-02-15T11:00:40Z"
  8528.           }
  8529.         },
  8530.         "canReply": true,
  8531.         "totalReplyCount": 0,
  8532.         "isPublic": true
  8533.       }
  8534.     },
  8535.     {
  8536.       "kind": "youtube#commentThread",
  8537.       "etag": "md7M5DZoyN7Z8kxgA3Co46njbus",
  8538.       "id": "UgwRr5VM769BpdgVLgB4AaABAg",
  8539.       "snippet": {
  8540.         "videoId": "atnSTtiWU5E",
  8541.         "topLevelComment": {
  8542.           "kind": "youtube#comment",
  8543.           "etag": "_u5K6LJVAxwQf9rP4p1IT2ZMgbA",
  8544.           "id": "UgwRr5VM769BpdgVLgB4AaABAg",
  8545.           "snippet": {
  8546.             "videoId": "atnSTtiWU5E",
  8547.             "textDisplay": "@hissinggoose No problem man, you're just not as musically inclined/versed as others and the guy who made it. Happens all the time. You should hear my step dad try to *whistle* the right tone of a song.",
  8548.             "textOriginal": "@hissinggoose No problem man, you're just not as musically inclined/versed as others and the guy who made it. Happens all the time. You should hear my step dad try to *whistle* the right tone of a song.",
  8549.             "authorDisplayName": "Bandpuffs",
  8550.             "authorChannelUrl": "http://www.youtube.com/channel/UC0YPokWZTBVtN7AhxtEfDeQ",
  8551.             "authorChannelId": {
  8552.               "value": "UC0YPokWZTBVtN7AhxtEfDeQ"
  8553.             },
  8554.             "canRate": true,
  8555.             "viewerRating": "none",
  8556.             "likeCount": 0,
  8557.             "publishedAt": "2012-02-15T04:05:12Z",
  8558.             "updatedAt": "2012-02-15T04:05:12Z"
  8559.           }
  8560.         },
  8561.         "canReply": true,
  8562.         "totalReplyCount": 0,
  8563.         "isPublic": true
  8564.       }
  8565.     },
  8566.     {
  8567.       "kind": "youtube#commentThread",
  8568.       "etag": "La0jk4KU3i6xEVfqf2syixBfXDY",
  8569.       "id": "UgwLiiSdyoHulELppQd4AaABAg",
  8570.       "snippet": {
  8571.         "videoId": "atnSTtiWU5E",
  8572.         "topLevelComment": {
  8573.           "kind": "youtube#comment",
  8574.           "etag": "oZhsTJdpaN8LMDXrJZu5rVCmJY4",
  8575.           "id": "UgwLiiSdyoHulELppQd4AaABAg",
  8576.           "snippet": {
  8577.             "videoId": "atnSTtiWU5E",
  8578.             "textDisplay": "I dont know if im doing something wrong but i can never see the resemblance. Don't get me wrong though I love the songs but if im just listening to this without listening to the real song i barely ever see any similarity.",
  8579.             "textOriginal": "I dont know if im doing something wrong but i can never see the resemblance. Don't get me wrong though I love the songs but if im just listening to this without listening to the real song i barely ever see any similarity.",
  8580.             "authorDisplayName": "hissinggoose",
  8581.             "authorChannelUrl": "http://www.youtube.com/channel/UCUvTn3Rm9AQP3vK36b4i60g",
  8582.             "authorChannelId": {
  8583.               "value": "UCUvTn3Rm9AQP3vK36b4i60g"
  8584.             },
  8585.             "canRate": true,
  8586.             "viewerRating": "none",
  8587.             "likeCount": 0,
  8588.             "publishedAt": "2012-02-15T04:02:21Z",
  8589.             "updatedAt": "2012-02-15T04:02:21Z"
  8590.           }
  8591.         },
  8592.         "canReply": true,
  8593.         "totalReplyCount": 0,
  8594.         "isPublic": true
  8595.       }
  8596.     },
  8597.     {
  8598.       "kind": "youtube#commentThread",
  8599.       "etag": "vzGyq6MEZkjCaW_sTheB7O5SsJw",
  8600.       "id": "UgwpJafDkEZyaa8m1WB4AaABAg",
  8601.       "snippet": {
  8602.         "videoId": "atnSTtiWU5E",
  8603.         "topLevelComment": {
  8604.           "kind": "youtube#comment",
  8605.           "etag": "1AzuYnAbduhcKKKGYBvDzrdY-3c",
  8606.           "id": "UgwpJafDkEZyaa8m1WB4AaABAg",
  8607.           "snippet": {
  8608.             "videoId": "atnSTtiWU5E",
  8609.             "textDisplay": "@TeleporterFIN And what are those?",
  8610.             "textOriginal": "@TeleporterFIN And what are those?",
  8611.             "authorDisplayName": "patu8010",
  8612.             "authorChannelUrl": "http://www.youtube.com/channel/UCqUM72_gbRzm4JtyGM6ssmw",
  8613.             "authorChannelId": {
  8614.               "value": "UCqUM72_gbRzm4JtyGM6ssmw"
  8615.             },
  8616.             "canRate": true,
  8617.             "viewerRating": "none",
  8618.             "likeCount": 0,
  8619.             "publishedAt": "2012-02-13T08:18:32Z",
  8620.             "updatedAt": "2012-02-13T08:18:32Z"
  8621.           }
  8622.         },
  8623.         "canReply": true,
  8624.         "totalReplyCount": 0,
  8625.         "isPublic": true
  8626.       }
  8627.     },
  8628.     {
  8629.       "kind": "youtube#commentThread",
  8630.       "etag": "aXA0bcCG9YBwb4sTMTa3ot37QvM",
  8631.       "id": "UgxuWYvvwkka5FTb8vp4AaABAg",
  8632.       "snippet": {
  8633.         "videoId": "atnSTtiWU5E",
  8634.         "topLevelComment": {
  8635.           "kind": "youtube#comment",
  8636.           "etag": "sa2LglemimahLsDWiFJLVjwK_-A",
  8637.           "id": "UgxuWYvvwkka5FTb8vp4AaABAg",
  8638.           "snippet": {
  8639.             "videoId": "atnSTtiWU5E",
  8640.             "textDisplay": "@alpha00zero w...w...WH...WHY WOULD YOU TAKE OUT THE PONY STUFF!??!?!?",
  8641.             "textOriginal": "@alpha00zero w...w...WH...WHY WOULD YOU TAKE OUT THE PONY STUFF!??!?!?",
  8642.             "authorDisplayName": "chynnaar",
  8643.             "authorChannelUrl": "http://www.youtube.com/channel/UCSPzdmF8fQ8FriVRfHR2T0Q",
  8644.             "authorChannelId": {
  8645.               "value": "UCSPzdmF8fQ8FriVRfHR2T0Q"
  8646.             },
  8647.             "canRate": true,
  8648.             "viewerRating": "none",
  8649.             "likeCount": 0,
  8650.             "publishedAt": "2012-02-12T13:14:49Z",
  8651.             "updatedAt": "2012-02-12T13:14:49Z"
  8652.           }
  8653.         },
  8654.         "canReply": true,
  8655.         "totalReplyCount": 0,
  8656.         "isPublic": true
  8657.       }
  8658.     },
  8659.     {
  8660.       "kind": "youtube#commentThread",
  8661.       "etag": "wNHvudnIF70SWFhRG8WPuEYpAbc",
  8662.       "id": "UgwYnN1vfybeeZoMt4p4AaABAg",
  8663.       "snippet": {
  8664.         "videoId": "atnSTtiWU5E",
  8665.         "topLevelComment": {
  8666.           "kind": "youtube#comment",
  8667.           "etag": "RBKRImldg0GwRx3PlvnQyoCr0oA",
  8668.           "id": "UgwYnN1vfybeeZoMt4p4AaABAg",
  8669.           "snippet": {
  8670.             "videoId": "atnSTtiWU5E",
  8671.             "textDisplay": "@SurfingCA2 i never said you didnt warn me ;)",
  8672.             "textOriginal": "@SurfingCA2 i never said you didnt warn me ;)",
  8673.             "authorDisplayName": "BrinnyThe Brave",
  8674.             "authorChannelUrl": "http://www.youtube.com/channel/UCXR_3oJc2IJTlPOa3hIxVUA",
  8675.             "authorChannelId": {
  8676.               "value": "UCXR_3oJc2IJTlPOa3hIxVUA"
  8677.             },
  8678.             "canRate": true,
  8679.             "viewerRating": "none",
  8680.             "likeCount": 0,
  8681.             "publishedAt": "2012-02-03T02:57:49Z",
  8682.             "updatedAt": "2012-02-03T02:57:49Z"
  8683.           }
  8684.         },
  8685.         "canReply": true,
  8686.         "totalReplyCount": 0,
  8687.         "isPublic": true
  8688.       }
  8689.     },
  8690.     {
  8691.       "kind": "youtube#commentThread",
  8692.       "etag": "oFfhXqzpt0N2G5x34VGoFQzpePU",
  8693.       "id": "UgyImcmCcJ4JnZ6iro94AaABAg",
  8694.       "snippet": {
  8695.         "videoId": "atnSTtiWU5E",
  8696.         "topLevelComment": {
  8697.           "kind": "youtube#comment",
  8698.           "etag": "YaOWqMkK_2fEAsOTbsfNGozd2TI",
  8699.           "id": "UgyImcmCcJ4JnZ6iro94AaABAg",
  8700.           "snippet": {
  8701.             "videoId": "atnSTtiWU5E",
  8702.             "textDisplay": "@AnimalAnimeFan Can't say I didn't warn you.",
  8703.             "textOriginal": "@AnimalAnimeFan Can't say I didn't warn you.",
  8704.             "authorDisplayName": "Fandom Mused",
  8705.             "authorChannelUrl": "http://www.youtube.com/channel/UCjIeDYQ4VafcoR84ZOcvwuA",
  8706.             "authorChannelId": {
  8707.               "value": "UCjIeDYQ4VafcoR84ZOcvwuA"
  8708.             },
  8709.             "canRate": true,
  8710.             "viewerRating": "none",
  8711.             "likeCount": 0,
  8712.             "publishedAt": "2012-02-01T22:43:05Z",
  8713.             "updatedAt": "2012-02-01T22:43:05Z"
  8714.           }
  8715.         },
  8716.         "canReply": true,
  8717.         "totalReplyCount": 0,
  8718.         "isPublic": true
  8719.       }
  8720.     },
  8721.     {
  8722.       "kind": "youtube#commentThread",
  8723.       "etag": "Qm0-02hzx99UaFlbVkcWvmeRYcY",
  8724.       "id": "UgwsArWtbJQPUGhTrux4AaABAg",
  8725.       "snippet": {
  8726.         "videoId": "atnSTtiWU5E",
  8727.         "topLevelComment": {
  8728.           "kind": "youtube#comment",
  8729.           "etag": "242DO06PwU7P5psj3PUm3Ti6unM",
  8730.           "id": "UgwsArWtbJQPUGhTrux4AaABAg",
  8731.           "snippet": {
  8732.             "videoId": "atnSTtiWU5E",
  8733.             "textDisplay": "@SurfingCA2 oh. i see what you mean XD ",
  8734.             "textOriginal": "@SurfingCA2 oh. i see what you mean XD ",
  8735.             "authorDisplayName": "BrinnyThe Brave",
  8736.             "authorChannelUrl": "http://www.youtube.com/channel/UCXR_3oJc2IJTlPOa3hIxVUA",
  8737.             "authorChannelId": {
  8738.               "value": "UCXR_3oJc2IJTlPOa3hIxVUA"
  8739.             },
  8740.             "canRate": true,
  8741.             "viewerRating": "none",
  8742.             "likeCount": 0,
  8743.             "publishedAt": "2012-02-01T19:31:15Z",
  8744.             "updatedAt": "2012-02-01T19:31:15Z"
  8745.           }
  8746.         },
  8747.         "canReply": true,
  8748.         "totalReplyCount": 0,
  8749.         "isPublic": true
  8750.       }
  8751.     },
  8752.     {
  8753.       "kind": "youtube#commentThread",
  8754.       "etag": "MHaYWouvwbhL3RNzQ8JEp_mOTk4",
  8755.       "id": "UgxOT0abXu7fHcDFOm94AaABAg",
  8756.       "snippet": {
  8757.         "videoId": "atnSTtiWU5E",
  8758.         "topLevelComment": {
  8759.           "kind": "youtube#comment",
  8760.           "etag": "U2oM97yQE89cwjKvgxt0Rsx27hY",
  8761.           "id": "UgxOT0abXu7fHcDFOm94AaABAg",
  8762.           "snippet": {
  8763.             "videoId": "atnSTtiWU5E",
  8764.             "textDisplay": "@AnimalAnimeFan It's a screamer. The first one isn't bad, but the other ones...I didn't sleep for a few nights.",
  8765.             "textOriginal": "@AnimalAnimeFan It's a screamer. The first one isn't bad, but the other ones...I didn't sleep for a few nights.",
  8766.             "authorDisplayName": "Fandom Mused",
  8767.             "authorChannelUrl": "http://www.youtube.com/channel/UCjIeDYQ4VafcoR84ZOcvwuA",
  8768.             "authorChannelId": {
  8769.               "value": "UCjIeDYQ4VafcoR84ZOcvwuA"
  8770.             },
  8771.             "canRate": true,
  8772.             "viewerRating": "none",
  8773.             "likeCount": 0,
  8774.             "publishedAt": "2012-01-31T23:40:22Z",
  8775.             "updatedAt": "2012-01-31T23:40:22Z"
  8776.           }
  8777.         },
  8778.         "canReply": true,
  8779.         "totalReplyCount": 0,
  8780.         "isPublic": true
  8781.       }
  8782.     },
  8783.     {
  8784.       "kind": "youtube#commentThread",
  8785.       "etag": "9MUjS-vhilWUsP103mc8N7AO9yc",
  8786.       "id": "UgxtFS27Z7WkA--aODB4AaABAg",
  8787.       "snippet": {
  8788.         "videoId": "atnSTtiWU5E",
  8789.         "topLevelComment": {
  8790.           "kind": "youtube#comment",
  8791.           "etag": "6d1ZJAPWCTkpcpNhvvDKLvy3uOI",
  8792.           "id": "UgxtFS27Z7WkA--aODB4AaABAg",
  8793.           "snippet": {
  8794.             "videoId": "atnSTtiWU5E",
  8795.             "textDisplay": "@SurfingCA2 i still want the game :P why did it give you nightmares?",
  8796.             "textOriginal": "@SurfingCA2 i still want the game :P why did it give you nightmares?",
  8797.             "authorDisplayName": "BrinnyThe Brave",
  8798.             "authorChannelUrl": "http://www.youtube.com/channel/UCXR_3oJc2IJTlPOa3hIxVUA",
  8799.             "authorChannelId": {
  8800.               "value": "UCXR_3oJc2IJTlPOa3hIxVUA"
  8801.             },
  8802.             "canRate": true,
  8803.             "viewerRating": "none",
  8804.             "likeCount": 0,
  8805.             "publishedAt": "2012-01-31T23:37:28Z",
  8806.             "updatedAt": "2012-01-31T23:37:28Z"
  8807.           }
  8808.         },
  8809.         "canReply": true,
  8810.         "totalReplyCount": 1,
  8811.         "isPublic": true
  8812.       },
  8813.       "replies": {
  8814.         "comments": [
  8815.           {
  8816.             "kind": "youtube#comment",
  8817.             "etag": "zh4_HmabaUrb6ggRurIoQqF1hUE",
  8818.             "id": "UgxtFS27Z7WkA--aODB4AaABAg.8GbS18V-jd692nJMfZxQOA",
  8819.             "snippet": {
  8820.               "videoId": "atnSTtiWU5E",
  8821.               "textDisplay": "Just look up Luna Game.",
  8822.               "textOriginal": "Just look up Luna Game.",
  8823.               "parentId": "UgxtFS27Z7WkA--aODB4AaABAg",
  8824.               "authorDisplayName": "StarForce97",
  8825.               "authorChannelUrl": "http://www.youtube.com/channel/UCh8_1ZwKYvDfXNhg0kN-M2g",
  8826.               "authorChannelId": {
  8827.                 "value": "UCh8_1ZwKYvDfXNhg0kN-M2g"
  8828.               },
  8829.               "canRate": true,
  8830.               "viewerRating": "none",
  8831.               "likeCount": 0,
  8832.               "publishedAt": "2019-12-21T06:51:53Z",
  8833.               "updatedAt": "2019-12-21T06:51:53Z"
  8834.             }
  8835.           }
  8836.         ]
  8837.       }
  8838.     },
  8839.     {
  8840.       "kind": "youtube#commentThread",
  8841.       "etag": "Hj-xRki5m9APSm-CPbo7peRBwQo",
  8842.       "id": "UgyWCA5Jig429lY2HKF4AaABAg",
  8843.       "snippet": {
  8844.         "videoId": "atnSTtiWU5E",
  8845.         "topLevelComment": {
  8846.           "kind": "youtube#comment",
  8847.           "etag": "MPnlX1obPxUoHDEHhjH3zualEdU",
  8848.           "id": "UgyWCA5Jig429lY2HKF4AaABAg",
  8849.           "snippet": {
  8850.             "videoId": "atnSTtiWU5E",
  8851.             "textDisplay": "@AnimalAnimeFan yeah, It gave me nightmares.",
  8852.             "textOriginal": "@AnimalAnimeFan yeah, It gave me nightmares.",
  8853.             "authorDisplayName": "Fandom Mused",
  8854.             "authorChannelUrl": "http://www.youtube.com/channel/UCjIeDYQ4VafcoR84ZOcvwuA",
  8855.             "authorChannelId": {
  8856.               "value": "UCjIeDYQ4VafcoR84ZOcvwuA"
  8857.             },
  8858.             "canRate": true,
  8859.             "viewerRating": "none",
  8860.             "likeCount": 0,
  8861.             "publishedAt": "2012-01-31T00:00:00Z",
  8862.             "updatedAt": "2012-01-31T00:00:00Z"
  8863.           }
  8864.         },
  8865.         "canReply": true,
  8866.         "totalReplyCount": 0,
  8867.         "isPublic": true
  8868.       }
  8869.     },
  8870.     {
  8871.       "kind": "youtube#commentThread",
  8872.       "etag": "UofnIqL3cWC7Kb_2VlePgLHHzNo",
  8873.       "id": "UgwQXicLmoDAqoCGx3J4AaABAg",
  8874.       "snippet": {
  8875.         "videoId": "atnSTtiWU5E",
  8876.         "topLevelComment": {
  8877.           "kind": "youtube#comment",
  8878.           "etag": "xQXh1deqkl78luX_84DgNzbTyc4",
  8879.           "id": "UgwQXicLmoDAqoCGx3J4AaABAg",
  8880.           "snippet": {
  8881.             "videoId": "atnSTtiWU5E",
  8882.             "textDisplay": "@SurfingCA2  wait what... but we're talking about the Princess Luna game right? ",
  8883.             "textOriginal": "@SurfingCA2  wait what... but we're talking about the Princess Luna game right? ",
  8884.             "authorDisplayName": "BrinnyThe Brave",
  8885.             "authorChannelUrl": "http://www.youtube.com/channel/UCXR_3oJc2IJTlPOa3hIxVUA",
  8886.             "authorChannelId": {
  8887.               "value": "UCXR_3oJc2IJTlPOa3hIxVUA"
  8888.             },
  8889.             "canRate": true,
  8890.             "viewerRating": "none",
  8891.             "likeCount": 0,
  8892.             "publishedAt": "2012-01-30T20:10:33Z",
  8893.             "updatedAt": "2012-01-30T20:10:33Z"
  8894.           }
  8895.         },
  8896.         "canReply": true,
  8897.         "totalReplyCount": 0,
  8898.         "isPublic": true
  8899.       }
  8900.     },
  8901.     {
  8902.       "kind": "youtube#commentThread",
  8903.       "etag": "NKobIMT-bHcrbqD8bqN_M8h6Jio",
  8904.       "id": "Ugyia0dXBBqv5CwkXxJ4AaABAg",
  8905.       "snippet": {
  8906.         "videoId": "atnSTtiWU5E",
  8907.         "topLevelComment": {
  8908.           "kind": "youtube#comment",
  8909.           "etag": "GxIOzrVAckCQgpOyQFBHz1oqlII",
  8910.           "id": "Ugyia0dXBBqv5CwkXxJ4AaABAg",
  8911.           "snippet": {
  8912.             "videoId": "atnSTtiWU5E",
  8913.             "textDisplay": "@AnimalAnimeFan I played it. It's extremely creepy and it does give you nightmares.",
  8914.             "textOriginal": "@AnimalAnimeFan I played it. It's extremely creepy and it does give you nightmares.",
  8915.             "authorDisplayName": "Fandom Mused",
  8916.             "authorChannelUrl": "http://www.youtube.com/channel/UCjIeDYQ4VafcoR84ZOcvwuA",
  8917.             "authorChannelId": {
  8918.               "value": "UCjIeDYQ4VafcoR84ZOcvwuA"
  8919.             },
  8920.             "canRate": true,
  8921.             "viewerRating": "none",
  8922.             "likeCount": 0,
  8923.             "publishedAt": "2012-01-29T04:56:38Z",
  8924.             "updatedAt": "2012-01-29T04:56:38Z"
  8925.           }
  8926.         },
  8927.         "canReply": true,
  8928.         "totalReplyCount": 0,
  8929.         "isPublic": true
  8930.       }
  8931.     },
  8932.     {
  8933.       "kind": "youtube#commentThread",
  8934.       "etag": "SHjVRMGpzkPRf4vYbpIqbj7HWd8",
  8935.       "id": "Ugx3DD7GzQ9-IJjBbo54AaABAg",
  8936.       "snippet": {
  8937.         "videoId": "atnSTtiWU5E",
  8938.         "topLevelComment": {
  8939.           "kind": "youtube#comment",
  8940.           "etag": "ICSzSaohljxd7NA0kSYUatYYfnk",
  8941.           "id": "Ugx3DD7GzQ9-IJjBbo54AaABAg",
  8942.           "snippet": {
  8943.             "videoId": "atnSTtiWU5E",
  8944.             "textDisplay": "This sounds like something I would dance to on Dance Dance Revolution.",
  8945.             "textOriginal": "This sounds like something I would dance to on Dance Dance Revolution.",
  8946.             "authorDisplayName": "Fandom Mused",
  8947.             "authorChannelUrl": "http://www.youtube.com/channel/UCjIeDYQ4VafcoR84ZOcvwuA",
  8948.             "authorChannelId": {
  8949.               "value": "UCjIeDYQ4VafcoR84ZOcvwuA"
  8950.             },
  8951.             "canRate": true,
  8952.             "viewerRating": "none",
  8953.             "likeCount": 0,
  8954.             "publishedAt": "2012-01-29T04:55:56Z",
  8955.             "updatedAt": "2012-01-29T04:55:56Z"
  8956.           }
  8957.         },
  8958.         "canReply": true,
  8959.         "totalReplyCount": 0,
  8960.         "isPublic": true
  8961.       }
  8962.     },
  8963.     {
  8964.       "kind": "youtube#commentThread",
  8965.       "etag": "ERWB7gJJQfp6msdCQ9PlM-SADcU",
  8966.       "id": "UgwydSD-mFZbRvWkaHl4AaABAg",
  8967.       "snippet": {
  8968.         "videoId": "atnSTtiWU5E",
  8969.         "topLevelComment": {
  8970.           "kind": "youtube#comment",
  8971.           "etag": "Dy_Tcuotvg3a1sJuDx-y-gLVd5U",
  8972.           "id": "UgwydSD-mFZbRvWkaHl4AaABAg",
  8973.           "snippet": {
  8974.             "videoId": "atnSTtiWU5E",
  8975.             "textDisplay": "@MisslemikeTheBrony 0.0 THERE'S A LUNA GAME??!! give it now!! i want! :D ",
  8976.             "textOriginal": "@MisslemikeTheBrony 0.0 THERE'S A LUNA GAME??!! give it now!! i want! :D ",
  8977.             "authorDisplayName": "BrinnyThe Brave",
  8978.             "authorChannelUrl": "http://www.youtube.com/channel/UCXR_3oJc2IJTlPOa3hIxVUA",
  8979.             "authorChannelId": {
  8980.               "value": "UCXR_3oJc2IJTlPOa3hIxVUA"
  8981.             },
  8982.             "canRate": true,
  8983.             "viewerRating": "none",
  8984.             "likeCount": 0,
  8985.             "publishedAt": "2012-01-27T19:38:58Z",
  8986.             "updatedAt": "2012-01-27T19:38:58Z"
  8987.           }
  8988.         },
  8989.         "canReply": true,
  8990.         "totalReplyCount": 0,
  8991.         "isPublic": true
  8992.       }
  8993.     },
  8994.     {
  8995.       "kind": "youtube#commentThread",
  8996.       "etag": "SiiB2JINv5xLbTIODZ7iWozURNM",
  8997.       "id": "UgwM_VG-PsJI22b9zul4AaABAg",
  8998.       "snippet": {
  8999.         "videoId": "atnSTtiWU5E",
  9000.         "topLevelComment": {
  9001.           "kind": "youtube#comment",
  9002.           "etag": "m0G7fWciXIXXOMCDDss8iRkcegA",
  9003.           "id": "UgwM_VG-PsJI22b9zul4AaABAg",
  9004.           "snippet": {
  9005.             "videoId": "atnSTtiWU5E",
  9006.             "textDisplay": "@kablamoid96 0.0 IMMA STEAL YOUR IDEA haha :3 ",
  9007.             "textOriginal": "@kablamoid96 0.0 IMMA STEAL YOUR IDEA haha :3 ",
  9008.             "authorDisplayName": "BrinnyThe Brave",
  9009.             "authorChannelUrl": "http://www.youtube.com/channel/UCXR_3oJc2IJTlPOa3hIxVUA",
  9010.             "authorChannelId": {
  9011.               "value": "UCXR_3oJc2IJTlPOa3hIxVUA"
  9012.             },
  9013.             "canRate": true,
  9014.             "viewerRating": "none",
  9015.             "likeCount": 0,
  9016.             "publishedAt": "2012-01-27T19:37:56Z",
  9017.             "updatedAt": "2012-01-27T19:37:56Z"
  9018.           }
  9019.         },
  9020.         "canReply": true,
  9021.         "totalReplyCount": 0,
  9022.         "isPublic": true
  9023.       }
  9024.     },
  9025.     {
  9026.       "kind": "youtube#commentThread",
  9027.       "etag": "gExswSeZLiFHYNyuQz7P918a_lc",
  9028.       "id": "UgxbBE9wKMFTEI6MCyh4AaABAg",
  9029.       "snippet": {
  9030.         "videoId": "atnSTtiWU5E",
  9031.         "topLevelComment": {
  9032.           "kind": "youtube#comment",
  9033.           "etag": "eLgJzg2_RZZJX5PrJX5whjdLKO4",
  9034.           "id": "UgxbBE9wKMFTEI6MCyh4AaABAg",
  9035.           "snippet": {
  9036.             "videoId": "atnSTtiWU5E",
  9037.             "textDisplay": "@kablamoid96 HAHAHA i don't believe you but it would be cool if it did happen.",
  9038.             "textOriginal": "@kablamoid96 HAHAHA i don't believe you but it would be cool if it did happen.",
  9039.             "authorDisplayName": "SAU",
  9040.             "authorChannelUrl": "http://www.youtube.com/channel/UC6kDHrwf8PF7wv_GJkl_N2A",
  9041.             "authorChannelId": {
  9042.               "value": "UC6kDHrwf8PF7wv_GJkl_N2A"
  9043.             },
  9044.             "canRate": true,
  9045.             "viewerRating": "none",
  9046.             "likeCount": 0,
  9047.             "publishedAt": "2012-01-25T23:15:02Z",
  9048.             "updatedAt": "2012-01-25T23:15:02Z"
  9049.           }
  9050.         },
  9051.         "canReply": true,
  9052.         "totalReplyCount": 0,
  9053.         "isPublic": true
  9054.       }
  9055.     },
  9056.     {
  9057.       "kind": "youtube#commentThread",
  9058.       "etag": "eXEZaG2udLG0__ocICtbtFqVHF8",
  9059.       "id": "Ugza2inkoiChWfthfFR4AaABAg",
  9060.       "snippet": {
  9061.         "videoId": "atnSTtiWU5E",
  9062.         "topLevelComment": {
  9063.           "kind": "youtube#comment",
  9064.           "etag": "jjSt0-wEw1busYAW2TABQ48nfDY",
  9065.           "id": "Ugza2inkoiChWfthfFR4AaABAg",
  9066.           "snippet": {
  9067.             "videoId": "atnSTtiWU5E",
  9068.             "textDisplay": "Would be awesome for a racing game.\n>Initial P(ony)\n>shit bricks, drool rainbows",
  9069.             "textOriginal": "Would be awesome for a racing game.\n\u003eInitial P(ony)\n\u003eshit bricks, drool rainbows",
  9070.             "authorDisplayName": "ikt93",
  9071.             "authorChannelUrl": "http://www.youtube.com/channel/UCc82gm8x7tWUPGjppaE-rWA",
  9072.             "authorChannelId": {
  9073.               "value": "UCc82gm8x7tWUPGjppaE-rWA"
  9074.             },
  9075.             "canRate": true,
  9076.             "viewerRating": "none",
  9077.             "likeCount": 0,
  9078.             "publishedAt": "2012-01-19T08:51:24Z",
  9079.             "updatedAt": "2012-01-19T08:51:24Z"
  9080.           }
  9081.         },
  9082.         "canReply": true,
  9083.         "totalReplyCount": 0,
  9084.         "isPublic": true
  9085.       }
  9086.     },
  9087.     {
  9088.       "kind": "youtube#commentThread",
  9089.       "etag": "--M5psCzmdr6FLG8edadYFNvRWA",
  9090.       "id": "UgwmSIl9YBE12qieGD94AaABAg",
  9091.       "snippet": {
  9092.         "videoId": "atnSTtiWU5E",
  9093.         "topLevelComment": {
  9094.           "kind": "youtube#comment",
  9095.           "etag": "04bZJCQmf6nORHX0zmZTMygMCf0",
  9096.           "id": "UgwmSIl9YBE12qieGD94AaABAg",
  9097.           "snippet": {
  9098.             "videoId": "atnSTtiWU5E",
  9099.             "textDisplay": "I was half expecting creepy Apple Bloom to pop on the screen. Anyone else?",
  9100.             "textOriginal": "I was half expecting creepy Apple Bloom to pop on the screen. Anyone else?",
  9101.             "authorDisplayName": "Evdog Music",
  9102.             "authorChannelUrl": "http://www.youtube.com/channel/UC0yqeZeqn6F-dUB9zIQGiww",
  9103.             "authorChannelId": {
  9104.               "value": "UC0yqeZeqn6F-dUB9zIQGiww"
  9105.             },
  9106.             "canRate": true,
  9107.             "viewerRating": "none",
  9108.             "likeCount": 0,
  9109.             "publishedAt": "2012-01-17T13:24:41Z",
  9110.             "updatedAt": "2012-01-17T13:24:41Z"
  9111.           }
  9112.         },
  9113.         "canReply": true,
  9114.         "totalReplyCount": 0,
  9115.         "isPublic": true
  9116.       }
  9117.     },
  9118.     {
  9119.       "kind": "youtube#commentThread",
  9120.       "etag": "ULtXsbZFR_ziKfA8u3a01Exuzos",
  9121.       "id": "UgzBWZ1smR9hf6pmyZ54AaABAg",
  9122.       "snippet": {
  9123.         "videoId": "atnSTtiWU5E",
  9124.         "topLevelComment": {
  9125.           "kind": "youtube#comment",
  9126.           "etag": "5ISeK7WQvXi11Och72c-qzYjb98",
  9127.           "id": "UgzBWZ1smR9hf6pmyZ54AaABAg",
  9128.           "snippet": {
  9129.             "videoId": "atnSTtiWU5E",
  9130.             "textDisplay": "@TheKiteLegacy Hurr hurr hurr shame\n",
  9131.             "textOriginal": "@TheKiteLegacy Hurr hurr hurr shame\n",
  9132.             "authorDisplayName": "Okayy.itz.Jello",
  9133.             "authorChannelUrl": "http://www.youtube.com/channel/UC0bWqs_NdB2U7t-0IrXwNPA",
  9134.             "authorChannelId": {
  9135.               "value": "UC0bWqs_NdB2U7t-0IrXwNPA"
  9136.             },
  9137.             "canRate": true,
  9138.             "viewerRating": "none",
  9139.             "likeCount": 0,
  9140.             "publishedAt": "2012-01-15T03:46:14Z",
  9141.             "updatedAt": "2012-01-15T03:46:14Z"
  9142.           }
  9143.         },
  9144.         "canReply": true,
  9145.         "totalReplyCount": 0,
  9146.         "isPublic": true
  9147.       }
  9148.     },
  9149.     {
  9150.       "kind": "youtube#commentThread",
  9151.       "etag": "_fIei-xuAhSU-CARLZ4qQ7ppLNQ",
  9152.       "id": "UgxU9RbISgzpF5t_krp4AaABAg",
  9153.       "snippet": {
  9154.         "videoId": "atnSTtiWU5E",
  9155.         "topLevelComment": {
  9156.           "kind": "youtube#comment",
  9157.           "etag": "7eP9pPNBg4Oyoi0BH9TQcAM14YY",
  9158.           "id": "UgxU9RbISgzpF5t_krp4AaABAg",
  9159.           "snippet": {
  9160.             "videoId": "atnSTtiWU5E",
  9161.             "textDisplay": "@Spagettieater9000 I've seen the vids for them. They are, along with Rainbow Dream",
  9162.             "textOriginal": "@Spagettieater9000 I've seen the vids for them. They are, along with Rainbow Dream",
  9163.             "authorDisplayName": "Matthew Schnorr",
  9164.             "authorChannelUrl": "http://www.youtube.com/channel/UCRpbk9iZW8IsdhtIcjTt7aw",
  9165.             "authorChannelId": {
  9166.               "value": "UCRpbk9iZW8IsdhtIcjTt7aw"
  9167.             },
  9168.             "canRate": true,
  9169.             "viewerRating": "none",
  9170.             "likeCount": 0,
  9171.             "publishedAt": "2012-01-12T03:41:06Z",
  9172.             "updatedAt": "2012-01-12T03:41:06Z"
  9173.           }
  9174.         },
  9175.         "canReply": true,
  9176.         "totalReplyCount": 0,
  9177.         "isPublic": true
  9178.       }
  9179.     },
  9180.     {
  9181.       "kind": "youtube#commentThread",
  9182.       "etag": "hD01sNgvLA6MV89FaoTNbQGd76w",
  9183.       "id": "Ugx2Z0f5Ov8aHKp1ozZ4AaABAg",
  9184.       "snippet": {
  9185.         "videoId": "atnSTtiWU5E",
  9186.         "topLevelComment": {
  9187.           "kind": "youtube#comment",
  9188.           "etag": "07oUUmCEdp6xot2LlNCcZOK81Bg",
  9189.           "id": "Ugx2Z0f5Ov8aHKp1ozZ4AaABAg",
  9190.           "snippet": {
  9191.             "videoId": "atnSTtiWU5E",
  9192.             "textDisplay": "@bees32189v2 That one is REALLY creepy...",
  9193.             "textOriginal": "@bees32189v2 That one is REALLY creepy...",
  9194.             "authorDisplayName": "CreedOfSatisfaction4",
  9195.             "authorChannelUrl": "http://www.youtube.com/channel/UCtSF2QQ4MZ7Y3RUDBbDfYfw",
  9196.             "authorChannelId": {
  9197.               "value": "UCtSF2QQ4MZ7Y3RUDBbDfYfw"
  9198.             },
  9199.             "canRate": true,
  9200.             "viewerRating": "none",
  9201.             "likeCount": 0,
  9202.             "publishedAt": "2012-01-09T09:03:53Z",
  9203.             "updatedAt": "2012-01-09T09:03:53Z"
  9204.           }
  9205.         },
  9206.         "canReply": true,
  9207.         "totalReplyCount": 0,
  9208.         "isPublic": true
  9209.       }
  9210.     },
  9211.     {
  9212.       "kind": "youtube#commentThread",
  9213.       "etag": "h38NmLFDzER0q_EPqDDJC-citxE",
  9214.       "id": "UgwTghIUSz3Xpl4qZw54AaABAg",
  9215.       "snippet": {
  9216.         "videoId": "atnSTtiWU5E",
  9217.         "topLevelComment": {
  9218.           "kind": "youtube#comment",
  9219.           "etag": "tpbHtbzwhY34ACwj8Fp1cvXfRys",
  9220.           "id": "UgwTghIUSz3Xpl4qZw54AaABAg",
  9221.           "snippet": {
  9222.             "videoId": "atnSTtiWU5E",
  9223.             "textDisplay": "This Is Surprisingly Found In The First Luna Game AKA The End Is Neigh",
  9224.             "textOriginal": "This Is Surprisingly Found In The First Luna Game AKA The End Is Neigh",
  9225.             "authorDisplayName": "DJAdamAntium",
  9226.             "authorChannelUrl": "http://www.youtube.com/channel/UCc1D2gbGngUq-HMAWRMxz1w",
  9227.             "authorChannelId": {
  9228.               "value": "UCc1D2gbGngUq-HMAWRMxz1w"
  9229.             },
  9230.             "canRate": true,
  9231.             "viewerRating": "none",
  9232.             "likeCount": 0,
  9233.             "publishedAt": "2012-01-07T10:14:51Z",
  9234.             "updatedAt": "2012-01-07T10:14:51Z"
  9235.           }
  9236.         },
  9237.         "canReply": true,
  9238.         "totalReplyCount": 0,
  9239.         "isPublic": true
  9240.       }
  9241.     },
  9242.     {
  9243.       "kind": "youtube#commentThread",
  9244.       "etag": "hV23pm-0Np9vWBIEgn4Vn27KBgA",
  9245.       "id": "UgyC2Z3tWrxsVkCEBG14AaABAg",
  9246.       "snippet": {
  9247.         "videoId": "atnSTtiWU5E",
  9248.         "topLevelComment": {
  9249.           "kind": "youtube#comment",
  9250.           "etag": "bQdlFyhq4umVjzjypGMwQdKnYmM",
  9251.           "id": "UgyC2Z3tWrxsVkCEBG14AaABAg",
  9252.           "snippet": {
  9253.             "videoId": "atnSTtiWU5E",
  9254.             "textDisplay": "Oh mah gawd ay hahve to maicspam this.\r\n*read in Ellis from left 4 dead 2 voice*",
  9255.             "textOriginal": "Oh mah gawd ay hahve to maicspam this.\r\n*read in Ellis from left 4 dead 2 voice*",
  9256.             "authorDisplayName": "Nick20Percent",
  9257.             "authorChannelUrl": "http://www.youtube.com/channel/UC4hnjTUG_-s7CKWOYHUbGZA",
  9258.             "authorChannelId": {
  9259.               "value": "UC4hnjTUG_-s7CKWOYHUbGZA"
  9260.             },
  9261.             "canRate": true,
  9262.             "viewerRating": "none",
  9263.             "likeCount": 0,
  9264.             "publishedAt": "2012-01-07T01:33:52Z",
  9265.             "updatedAt": "2012-01-07T01:33:52Z"
  9266.           }
  9267.         },
  9268.         "canReply": true,
  9269.         "totalReplyCount": 0,
  9270.         "isPublic": true
  9271.       }
  9272.     },
  9273.     {
  9274.       "kind": "youtube#commentThread",
  9275.       "etag": "1H0Sj4doFGeMsWtsdCNS8HqN-hc",
  9276.       "id": "UgwciCssgx1rwAagKwt4AaABAg",
  9277.       "snippet": {
  9278.         "videoId": "atnSTtiWU5E",
  9279.         "topLevelComment": {
  9280.           "kind": "youtube#comment",
  9281.           "etag": "z0s1OG4p6_AxiF9C5aEPB4c70jE",
  9282.           "id": "UgwciCssgx1rwAagKwt4AaABAg",
  9283.           "snippet": {
  9284.             "videoId": "atnSTtiWU5E",
  9285.             "textDisplay": "@kablamoid96 I'm jelly of your neighborhood .",
  9286.             "textOriginal": "@kablamoid96 I'm jelly of your neighborhood .",
  9287.             "authorDisplayName": "Ranma",
  9288.             "authorChannelUrl": "http://www.youtube.com/channel/UCYy8T5HlYP19sOo5LC_g0pA",
  9289.             "authorChannelId": {
  9290.               "value": "UCYy8T5HlYP19sOo5LC_g0pA"
  9291.             },
  9292.             "canRate": true,
  9293.             "viewerRating": "none",
  9294.             "likeCount": 0,
  9295.             "publishedAt": "2011-12-30T20:58:41Z",
  9296.             "updatedAt": "2011-12-30T20:58:41Z"
  9297.           }
  9298.         },
  9299.         "canReply": true,
  9300.         "totalReplyCount": 0,
  9301.         "isPublic": true
  9302.       }
  9303.     },
  9304.     {
  9305.       "kind": "youtube#commentThread",
  9306.       "etag": "x6t5BXpI4XL4DhkfJJRKT_bdHic",
  9307.       "id": "UgzVMp7CnB3Yvn_llJl4AaABAg",
  9308.       "snippet": {
  9309.         "videoId": "atnSTtiWU5E",
  9310.         "topLevelComment": {
  9311.           "kind": "youtube#comment",
  9312.           "etag": "-gNqlB4Vw4gv80gRT4D5TDh9zgs",
  9313.           "id": "UgzVMp7CnB3Yvn_llJl4AaABAg",
  9314.           "snippet": {
  9315.             "videoId": "atnSTtiWU5E",
  9316.             "textDisplay": "@benjimontheBRONY So... You're saying that GIRLS watch this show? Hang on a second... I gotta take this all in.",
  9317.             "textOriginal": "@benjimontheBRONY So... You're saying that GIRLS watch this show? Hang on a second... I gotta take this all in.",
  9318.             "authorDisplayName": "Collin8843",
  9319.             "authorChannelUrl": "http://www.youtube.com/channel/UCFpcks-Ws-I6Yv_b5TSVGgw",
  9320.             "authorChannelId": {
  9321.               "value": "UCFpcks-Ws-I6Yv_b5TSVGgw"
  9322.             },
  9323.             "canRate": true,
  9324.             "viewerRating": "none",
  9325.             "likeCount": 0,
  9326.             "publishedAt": "2011-12-24T01:11:20Z",
  9327.             "updatedAt": "2011-12-24T01:11:20Z"
  9328.           }
  9329.         },
  9330.         "canReply": true,
  9331.         "totalReplyCount": 0,
  9332.         "isPublic": true
  9333.       }
  9334.     },
  9335.     {
  9336.       "kind": "youtube#commentThread",
  9337.       "etag": "IL05-2YqgQTnneSzmjOJ1AseywY",
  9338.       "id": "UgzfZWtPbQ9Ku16pjeR4AaABAg",
  9339.       "snippet": {
  9340.         "videoId": "atnSTtiWU5E",
  9341.         "topLevelComment": {
  9342.           "kind": "youtube#comment",
  9343.           "etag": "iQMw-qZkrj5W7gZD60LGAv07RIk",
  9344.           "id": "UgzfZWtPbQ9Ku16pjeR4AaABAg",
  9345.           "snippet": {
  9346.             "videoId": "atnSTtiWU5E",
  9347.             "textDisplay": "The opening reminds me of a Megaman X game.",
  9348.             "textOriginal": "The opening reminds me of a Megaman X game.",
  9349.             "authorDisplayName": "RBrim08",
  9350.             "authorChannelUrl": "http://www.youtube.com/channel/UCgtTWQ3jLUEh6E_e7AkMBnw",
  9351.             "authorChannelId": {
  9352.               "value": "UCgtTWQ3jLUEh6E_e7AkMBnw"
  9353.             },
  9354.             "canRate": true,
  9355.             "viewerRating": "none",
  9356.             "likeCount": 0,
  9357.             "publishedAt": "2011-12-23T19:53:41Z",
  9358.             "updatedAt": "2011-12-23T19:53:41Z"
  9359.           }
  9360.         },
  9361.         "canReply": true,
  9362.         "totalReplyCount": 0,
  9363.         "isPublic": true
  9364.       }
  9365.     },
  9366.     {
  9367.       "kind": "youtube#commentThread",
  9368.       "etag": "PiSIWsAVSsJX4ifdqvgCYY9qKTo",
  9369.       "id": "UgxRWUDKaiVApiNj60B4AaABAg",
  9370.       "snippet": {
  9371.         "videoId": "atnSTtiWU5E",
  9372.         "topLevelComment": {
  9373.           "kind": "youtube#comment",
  9374.           "etag": "O-3uGgYM_ZOSPBtWR9tfi6YNvLw",
  9375.           "id": "UgxRWUDKaiVApiNj60B4AaABAg",
  9376.           "snippet": {
  9377.             "videoId": "atnSTtiWU5E",
  9378.             "textDisplay": "@TheKiteLegacy i wish that my school would state that every morning",
  9379.             "textOriginal": "@TheKiteLegacy i wish that my school would state that every morning",
  9380.             "authorDisplayName": "Griffin Nest",
  9381.             "authorChannelUrl": "http://www.youtube.com/channel/UCPUyKcr81oKX81HDKAjdDjQ",
  9382.             "authorChannelId": {
  9383.               "value": "UCPUyKcr81oKX81HDKAjdDjQ"
  9384.             },
  9385.             "canRate": true,
  9386.             "viewerRating": "none",
  9387.             "likeCount": 0,
  9388.             "publishedAt": "2011-12-22T05:55:11Z",
  9389.             "updatedAt": "2011-12-22T05:55:11Z"
  9390.           }
  9391.         },
  9392.         "canReply": true,
  9393.         "totalReplyCount": 0,
  9394.         "isPublic": true
  9395.       }
  9396.     },
  9397.     {
  9398.       "kind": "youtube#commentThread",
  9399.       "etag": "CasMbsBYAPjzdO9x6wZTsJw37Gk",
  9400.       "id": "UgxNp2cb90wJs1mEFhN4AaABAg",
  9401.       "snippet": {
  9402.         "videoId": "atnSTtiWU5E",
  9403.         "topLevelComment": {
  9404.           "kind": "youtube#comment",
  9405.           "etag": "KY7ot0PZYobAfUVnfVCvyuASDWc",
  9406.           "id": "UgxNp2cb90wJs1mEFhN4AaABAg",
  9407.           "snippet": {
  9408.             "videoId": "atnSTtiWU5E",
  9409.             "textDisplay": "@benjimontheBRONY Wait, 18% of bronies are girls? o-o",
  9410.             "textOriginal": "@benjimontheBRONY Wait, 18% of bronies are girls? o-o",
  9411.             "authorDisplayName": "Nameless Account",
  9412.             "authorChannelUrl": "http://www.youtube.com/channel/UCXLUxVUSN2iaAMtWO2uiqZA",
  9413.             "authorChannelId": {
  9414.               "value": "UCXLUxVUSN2iaAMtWO2uiqZA"
  9415.             },
  9416.             "canRate": true,
  9417.             "viewerRating": "none",
  9418.             "likeCount": 0,
  9419.             "publishedAt": "2011-12-20T20:52:19Z",
  9420.             "updatedAt": "2011-12-20T20:52:19Z"
  9421.           }
  9422.         },
  9423.         "canReply": true,
  9424.         "totalReplyCount": 0,
  9425.         "isPublic": true
  9426.       }
  9427.     },
  9428.     {
  9429.       "kind": "youtube#commentThread",
  9430.       "etag": "A5Kw7t6YcB_YZPcBkoR4sqr_tlA",
  9431.       "id": "UgwT7xdDzM8uzpt8Oex4AaABAg",
  9432.       "snippet": {
  9433.         "videoId": "atnSTtiWU5E",
  9434.         "topLevelComment": {
  9435.           "kind": "youtube#comment",
  9436.           "etag": "DcB5nj3JBXyCdumPgf8RKbT-5E8",
  9437.           "id": "UgwT7xdDzM8uzpt8Oex4AaABAg",
  9438.           "snippet": {
  9439.             "videoId": "atnSTtiWU5E",
  9440.             "textDisplay": "@TheKiteLegacy Finally, a pledge worthy of my allegiance.",
  9441.             "textOriginal": "@TheKiteLegacy Finally, a pledge worthy of my allegiance.",
  9442.             "authorDisplayName": "Nameless Account",
  9443.             "authorChannelUrl": "http://www.youtube.com/channel/UCXLUxVUSN2iaAMtWO2uiqZA",
  9444.             "authorChannelId": {
  9445.               "value": "UCXLUxVUSN2iaAMtWO2uiqZA"
  9446.             },
  9447.             "canRate": true,
  9448.             "viewerRating": "none",
  9449.             "likeCount": 0,
  9450.             "publishedAt": "2011-12-20T09:26:00Z",
  9451.             "updatedAt": "2011-12-20T09:26:00Z"
  9452.           }
  9453.         },
  9454.         "canReply": true,
  9455.         "totalReplyCount": 0,
  9456.         "isPublic": true
  9457.       }
  9458.     },
  9459.     {
  9460.       "kind": "youtube#commentThread",
  9461.       "etag": "-xGOzdGjwaxK4Mrv5hBEJSdsmOg",
  9462.       "id": "UgxDJC3kxl5yrs8pPPF4AaABAg",
  9463.       "snippet": {
  9464.         "videoId": "atnSTtiWU5E",
  9465.         "topLevelComment": {
  9466.           "kind": "youtube#comment",
  9467.           "etag": "LBn5kG-QBHwfbZoIi0_o9R6Qq-0",
  9468.           "id": "UgxDJC3kxl5yrs8pPPF4AaABAg",
  9469.           "snippet": {
  9470.             "videoId": "atnSTtiWU5E",
  9471.             "textDisplay": "@Amelia2050 creepypasta game.\n\nbasically, it'll scare the shit out of you.",
  9472.             "textOriginal": "@Amelia2050 creepypasta game.\n\nbasically, it'll scare the shit out of you.",
  9473.             "authorDisplayName": "Eight distressing notes",
  9474.             "authorChannelUrl": "http://www.youtube.com/channel/UCvzfQos8D5GZprja1Egbpuw",
  9475.             "authorChannelId": {
  9476.               "value": "UCvzfQos8D5GZprja1Egbpuw"
  9477.             },
  9478.             "canRate": true,
  9479.             "viewerRating": "none",
  9480.             "likeCount": 0,
  9481.             "publishedAt": "2011-12-18T23:28:00Z",
  9482.             "updatedAt": "2011-12-18T23:28:00Z"
  9483.           }
  9484.         },
  9485.         "canReply": true,
  9486.         "totalReplyCount": 0,
  9487.         "isPublic": true
  9488.       }
  9489.     },
  9490.     {
  9491.       "kind": "youtube#commentThread",
  9492.       "etag": "XSqNFvfWwRLC-euGRS2IZRHeo5M",
  9493.       "id": "UgwOCWJsnog4_Db3uLN4AaABAg",
  9494.       "snippet": {
  9495.         "videoId": "atnSTtiWU5E",
  9496.         "topLevelComment": {
  9497.           "kind": "youtube#comment",
  9498.           "etag": "mE-aKQbVCOJaRVnlFE5bKnCGYR4",
  9499.           "id": "UgwOCWJsnog4_Db3uLN4AaABAg",
  9500.           "snippet": {
  9501.             "videoId": "atnSTtiWU5E",
  9502.             "textDisplay": "Luna game brought me here.",
  9503.             "textOriginal": "Luna game brought me here.",
  9504.             "authorDisplayName": "Eight distressing notes",
  9505.             "authorChannelUrl": "http://www.youtube.com/channel/UCvzfQos8D5GZprja1Egbpuw",
  9506.             "authorChannelId": {
  9507.               "value": "UCvzfQos8D5GZprja1Egbpuw"
  9508.             },
  9509.             "canRate": true,
  9510.             "viewerRating": "none",
  9511.             "likeCount": 0,
  9512.             "publishedAt": "2011-12-18T23:27:34Z",
  9513.             "updatedAt": "2011-12-18T23:27:34Z"
  9514.           }
  9515.         },
  9516.         "canReply": true,
  9517.         "totalReplyCount": 0,
  9518.         "isPublic": true
  9519.       }
  9520.     },
  9521.     {
  9522.       "kind": "youtube#commentThread",
  9523.       "etag": "YFv-PHARQfrRyyUCaI3j699x0cc",
  9524.       "id": "UgwQXK3MAMyJ0VYp3Cl4AaABAg",
  9525.       "snippet": {
  9526.         "videoId": "atnSTtiWU5E",
  9527.         "topLevelComment": {
  9528.           "kind": "youtube#comment",
  9529.           "etag": "RBOKw4Uw-sD9c1pU9HjXpHiArwk",
  9530.           "id": "UgwQXK3MAMyJ0VYp3Cl4AaABAg",
  9531.           "snippet": {
  9532.             "videoId": "atnSTtiWU5E",
  9533.             "textDisplay": "@TheKiteLegacy \r\nswweeeeeeeet",
  9534.             "textOriginal": "@TheKiteLegacy \r\nswweeeeeeeet",
  9535.             "authorDisplayName": "ִ",
  9536.             "authorChannelUrl": "http://www.youtube.com/channel/UC369tuuB7o1e-5zv4v4Fz4g",
  9537.             "authorChannelId": {
  9538.               "value": "UC369tuuB7o1e-5zv4v4Fz4g"
  9539.             },
  9540.             "canRate": true,
  9541.             "viewerRating": "none",
  9542.             "likeCount": 0,
  9543.             "publishedAt": "2011-12-15T22:38:28Z",
  9544.             "updatedAt": "2011-12-15T22:38:28Z"
  9545.           }
  9546.         },
  9547.         "canReply": true,
  9548.         "totalReplyCount": 0,
  9549.         "isPublic": true
  9550.       }
  9551.     },
  9552.     {
  9553.       "kind": "youtube#commentThread",
  9554.       "etag": "417wumOiOFFWCNwohr_zMtnWbkU",
  9555.       "id": "UgxvDFTU8a5JSNl0WbV4AaABAg",
  9556.       "snippet": {
  9557.         "videoId": "atnSTtiWU5E",
  9558.         "topLevelComment": {
  9559.           "kind": "youtube#comment",
  9560.           "etag": "gcroR6Qs0jD5vZV74vOsojyu444",
  9561.           "id": "UgxvDFTU8a5JSNl0WbV4AaABAg",
  9562.           "snippet": {
  9563.             "videoId": "atnSTtiWU5E",
  9564.             "textDisplay": "@TheKiteLegacy \r\nwe'll have to invade Africa",
  9565.             "textOriginal": "@TheKiteLegacy \r\nwe'll have to invade Africa",
  9566.             "authorDisplayName": "ִ",
  9567.             "authorChannelUrl": "http://www.youtube.com/channel/UC369tuuB7o1e-5zv4v4Fz4g",
  9568.             "authorChannelId": {
  9569.               "value": "UC369tuuB7o1e-5zv4v4Fz4g"
  9570.             },
  9571.             "canRate": true,
  9572.             "viewerRating": "none",
  9573.             "likeCount": 0,
  9574.             "publishedAt": "2011-12-15T02:54:54Z",
  9575.             "updatedAt": "2011-12-15T02:54:54Z"
  9576.           }
  9577.         },
  9578.         "canReply": true,
  9579.         "totalReplyCount": 0,
  9580.         "isPublic": true
  9581.       }
  9582.     },
  9583.     {
  9584.       "kind": "youtube#commentThread",
  9585.       "etag": "X8N0fSOOQyn73p1GIIpf6eQh6zg",
  9586.       "id": "UgzTgvXaNGCg33Wf79R4AaABAg",
  9587.       "snippet": {
  9588.         "videoId": "atnSTtiWU5E",
  9589.         "topLevelComment": {
  9590.           "kind": "youtube#comment",
  9591.           "etag": "PIw1oLN2qLW-qYflIV8BLlz_gJk",
  9592.           "id": "UgzTgvXaNGCg33Wf79R4AaABAg",
  9593.           "snippet": {
  9594.             "videoId": "atnSTtiWU5E",
  9595.             "textDisplay": "@GoRockQuads Orbital Friendship Cannon",
  9596.             "textOriginal": "@GoRockQuads Orbital Friendship Cannon",
  9597.             "authorDisplayName": "Silver Lastname",
  9598.             "authorChannelUrl": "http://www.youtube.com/channel/UCsy3zndQczlDs4LlrChWDlg",
  9599.             "authorChannelId": {
  9600.               "value": "UCsy3zndQczlDs4LlrChWDlg"
  9601.             },
  9602.             "canRate": true,
  9603.             "viewerRating": "none",
  9604.             "likeCount": 0,
  9605.             "publishedAt": "2011-12-12T19:42:02Z",
  9606.             "updatedAt": "2011-12-12T19:42:02Z"
  9607.           }
  9608.         },
  9609.         "canReply": true,
  9610.         "totalReplyCount": 0,
  9611.         "isPublic": true
  9612.       }
  9613.     },
  9614.     {
  9615.       "kind": "youtube#commentThread",
  9616.       "etag": "ZoqDfonpcgIISOoQfkAkAggVPdA",
  9617.       "id": "UgxcwROwqzQiunspN8J4AaABAg",
  9618.       "snippet": {
  9619.         "videoId": "atnSTtiWU5E",
  9620.         "topLevelComment": {
  9621.           "kind": "youtube#comment",
  9622.           "etag": "myDULpaIzr5S0t54xv4uolkE_aU",
  9623.           "id": "UgxcwROwqzQiunspN8J4AaABAg",
  9624.           "snippet": {
  9625.             "videoId": "atnSTtiWU5E",
  9626.             "textDisplay": "@Nooblaster56 FIRE ZE RAILGUN!",
  9627.             "textOriginal": "@Nooblaster56 FIRE ZE RAILGUN!",
  9628.             "authorDisplayName": "GoRockQuads",
  9629.             "authorChannelUrl": "http://www.youtube.com/channel/UC7zMkbgm7S5mH5ff4aKxWXw",
  9630.             "authorChannelId": {
  9631.               "value": "UC7zMkbgm7S5mH5ff4aKxWXw"
  9632.             },
  9633.             "canRate": true,
  9634.             "viewerRating": "none",
  9635.             "likeCount": 0,
  9636.             "publishedAt": "2011-12-12T17:35:26Z",
  9637.             "updatedAt": "2011-12-12T17:35:26Z"
  9638.           }
  9639.         },
  9640.         "canReply": true,
  9641.         "totalReplyCount": 0,
  9642.         "isPublic": true
  9643.       }
  9644.     },
  9645.     {
  9646.       "kind": "youtube#commentThread",
  9647.       "etag": "_B3xPUWRndIjh7ZzdV9ITS3MZvg",
  9648.       "id": "UgwHP-KbpGQ3odDC6jp4AaABAg",
  9649.       "snippet": {
  9650.         "videoId": "atnSTtiWU5E",
  9651.         "topLevelComment": {
  9652.           "kind": "youtube#comment",
  9653.           "etag": "ZQRUfbxWY4QCQ5xgS02EkCxWAX0",
  9654.           "id": "UgwHP-KbpGQ3odDC6jp4AaABAg",
  9655.           "snippet": {
  9656.             "videoId": "atnSTtiWU5E",
  9657.             "textDisplay": "@GoRockQuads We are the Brony Collective, we will not go down quietly....",
  9658.             "textOriginal": "@GoRockQuads We are the Brony Collective, we will not go down quietly....",
  9659.             "authorDisplayName": "Silver Lastname",
  9660.             "authorChannelUrl": "http://www.youtube.com/channel/UCsy3zndQczlDs4LlrChWDlg",
  9661.             "authorChannelId": {
  9662.               "value": "UCsy3zndQczlDs4LlrChWDlg"
  9663.             },
  9664.             "canRate": true,
  9665.             "viewerRating": "none",
  9666.             "likeCount": 0,
  9667.             "publishedAt": "2011-12-11T19:51:47Z",
  9668.             "updatedAt": "2011-12-11T19:51:47Z"
  9669.           }
  9670.         },
  9671.         "canReply": true,
  9672.         "totalReplyCount": 0,
  9673.         "isPublic": true
  9674.       }
  9675.     },
  9676.     {
  9677.       "kind": "youtube#commentThread",
  9678.       "etag": "i8WZhvS_TqO1NupNqGP-ugEvvlE",
  9679.       "id": "Ugwj86PGMRppUR-L2FR4AaABAg",
  9680.       "snippet": {
  9681.         "videoId": "atnSTtiWU5E",
  9682.         "topLevelComment": {
  9683.           "kind": "youtube#comment",
  9684.           "etag": "LFGDDeczNGJErb_gfSt7JFxwKGY",
  9685.           "id": "Ugwj86PGMRppUR-L2FR4AaABAg",
  9686.           "snippet": {
  9687.             "videoId": "atnSTtiWU5E",
  9688.             "textDisplay": "NOTE TO YOUTUBE- YOU HAVE TAKEN DOWN THE MLP EPISODES, DO NOT TAKE DOWN THIS! OR WE WILL FIGHT!",
  9689.             "textOriginal": "NOTE TO YOUTUBE- YOU HAVE TAKEN DOWN THE MLP EPISODES, DO NOT TAKE DOWN THIS! OR WE WILL FIGHT!",
  9690.             "authorDisplayName": "GoRockQuads",
  9691.             "authorChannelUrl": "http://www.youtube.com/channel/UC7zMkbgm7S5mH5ff4aKxWXw",
  9692.             "authorChannelId": {
  9693.               "value": "UC7zMkbgm7S5mH5ff4aKxWXw"
  9694.             },
  9695.             "canRate": true,
  9696.             "viewerRating": "none",
  9697.             "likeCount": 0,
  9698.             "publishedAt": "2011-12-09T16:13:02Z",
  9699.             "updatedAt": "2011-12-09T16:13:02Z"
  9700.           }
  9701.         },
  9702.         "canReply": true,
  9703.         "totalReplyCount": 0,
  9704.         "isPublic": true
  9705.       }
  9706.     },
  9707.     {
  9708.       "kind": "youtube#commentThread",
  9709.       "etag": "6AIGMvSIl_1dBh94mHtHOPInqFc",
  9710.       "id": "Ugz3zLXFa_ZsIYEnNYh4AaABAg",
  9711.       "snippet": {
  9712.         "videoId": "atnSTtiWU5E",
  9713.         "topLevelComment": {
  9714.           "kind": "youtube#comment",
  9715.           "etag": "qglRAUVv06wv6DGKeYHk5Jjw2K0",
  9716.           "id": "Ugz3zLXFa_ZsIYEnNYh4AaABAg",
  9717.           "snippet": {
  9718.             "videoId": "atnSTtiWU5E",
  9719.             "textDisplay": "Amazing, you can turn 14 seconds or so into a complete song.",
  9720.             "textOriginal": "Amazing, you can turn 14 seconds or so into a complete song.",
  9721.             "authorDisplayName": "bobu",
  9722.             "authorChannelUrl": "http://www.youtube.com/channel/UCtcFTTCdi7lbokE91ueDbGg",
  9723.             "authorChannelId": {
  9724.               "value": "UCtcFTTCdi7lbokE91ueDbGg"
  9725.             },
  9726.             "canRate": true,
  9727.             "viewerRating": "none",
  9728.             "likeCount": 1,
  9729.             "publishedAt": "2011-12-02T15:34:59Z",
  9730.             "updatedAt": "2011-12-02T15:34:59Z"
  9731.           }
  9732.         },
  9733.         "canReply": true,
  9734.         "totalReplyCount": 0,
  9735.         "isPublic": true
  9736.       }
  9737.     },
  9738.     {
  9739.       "kind": "youtube#commentThread",
  9740.       "etag": "7T3thEdGOFbzqfV5zcfplnfjdi0",
  9741.       "id": "Ugx6AL5JC1SsSzpsXbh4AaABAg",
  9742.       "snippet": {
  9743.         "videoId": "atnSTtiWU5E",
  9744.         "topLevelComment": {
  9745.           "kind": "youtube#comment",
  9746.           "etag": "Teeyq--8tPnGQCaA_BI6N5mIr5k",
  9747.           "id": "Ugx6AL5JC1SsSzpsXbh4AaABAg",
  9748.           "snippet": {
  9749.             "videoId": "atnSTtiWU5E",
  9750.             "textDisplay": "Funny story. On Halloween night, I put the CD I burnt of Super Ponybeat in the radio, and played it while I was handing out candy (dressed as Gretchen Grundler from Disney's Recess). As soon as I opened the door and the music came out, almost everyone recognized the song and started singing it (mostly like Flutterguy)",
  9751.             "textOriginal": "Funny story. On Halloween night, I put the CD I burnt of Super Ponybeat in the radio, and played it while I was handing out candy (dressed as Gretchen Grundler from Disney's Recess). As soon as I opened the door and the music came out, almost everyone recognized the song and started singing it (mostly like Flutterguy)",
  9752.             "authorDisplayName": "ReptarOnIce",
  9753.             "authorChannelUrl": "http://www.youtube.com/channel/UCxmdxefDYXP5WSFqyJveS7w",
  9754.             "authorChannelId": {
  9755.               "value": "UCxmdxefDYXP5WSFqyJveS7w"
  9756.             },
  9757.             "canRate": true,
  9758.             "viewerRating": "none",
  9759.             "likeCount": 0,
  9760.             "publishedAt": "2011-12-01T23:31:58Z",
  9761.             "updatedAt": "2011-12-01T23:31:58Z"
  9762.           }
  9763.         },
  9764.         "canReply": true,
  9765.         "totalReplyCount": 0,
  9766.         "isPublic": true
  9767.       }
  9768.     },
  9769.     {
  9770.       "kind": "youtube#commentThread",
  9771.       "etag": "Wbxa2WhaIgnMnHko3Uy86p4H3lo",
  9772.       "id": "UgzvYoPyblx2YeHwy9J4AaABAg",
  9773.       "snippet": {
  9774.         "videoId": "atnSTtiWU5E",
  9775.         "topLevelComment": {
  9776.           "kind": "youtube#comment",
  9777.           "etag": "xtpZ6xg9urW2l0BWpVc4Y8ENUvg",
  9778.           "id": "UgzvYoPyblx2YeHwy9J4AaABAg",
  9779.           "snippet": {
  9780.             "videoId": "atnSTtiWU5E",
  9781.             "textDisplay": "@TheKiteLegacy I will go to the intercom of my school and say this aloud. ",
  9782.             "textOriginal": "@TheKiteLegacy I will go to the intercom of my school and say this aloud. ",
  9783.             "authorDisplayName": "Calvin Le",
  9784.             "authorChannelUrl": "http://www.youtube.com/channel/UCSSCGKqO_vKLwpEN6fu0_jg",
  9785.             "authorChannelId": {
  9786.               "value": "UCSSCGKqO_vKLwpEN6fu0_jg"
  9787.             },
  9788.             "canRate": true,
  9789.             "viewerRating": "none",
  9790.             "likeCount": 0,
  9791.             "publishedAt": "2011-12-01T00:34:17Z",
  9792.             "updatedAt": "2011-12-01T00:34:17Z"
  9793.           }
  9794.         },
  9795.         "canReply": true,
  9796.         "totalReplyCount": 0,
  9797.         "isPublic": true
  9798.       }
  9799.     },
  9800.     {
  9801.       "kind": "youtube#commentThread",
  9802.       "etag": "46sm6RK4oWok55yfShz8UtZvFyI",
  9803.       "id": "Ugws2W3j7yMJcn7OY3t4AaABAg",
  9804.       "snippet": {
  9805.         "videoId": "atnSTtiWU5E",
  9806.         "topLevelComment": {
  9807.           "kind": "youtube#comment",
  9808.           "etag": "qrW7kqL-UQQJDZYOPZ1SAh2xd1I",
  9809.           "id": "Ugws2W3j7yMJcn7OY3t4AaABAg",
  9810.           "snippet": {
  9811.             "videoId": "atnSTtiWU5E",
  9812.             "textDisplay": "I just imagine ponies drift racing to this.\r\nNeed for Ponies.",
  9813.             "textOriginal": "I just imagine ponies drift racing to this.\r\nNeed for Ponies.",
  9814.             "authorDisplayName": "Lunasakuramoon",
  9815.             "authorChannelUrl": "http://www.youtube.com/channel/UCZ1twqo9MHWfNuumCv6UzFw",
  9816.             "authorChannelId": {
  9817.               "value": "UCZ1twqo9MHWfNuumCv6UzFw"
  9818.             },
  9819.             "canRate": true,
  9820.             "viewerRating": "none",
  9821.             "likeCount": 0,
  9822.             "publishedAt": "2011-11-27T06:11:12Z",
  9823.             "updatedAt": "2011-11-27T06:11:12Z"
  9824.           }
  9825.         },
  9826.         "canReply": true,
  9827.         "totalReplyCount": 0,
  9828.         "isPublic": true
  9829.       }
  9830.     },
  9831.     {
  9832.       "kind": "youtube#commentThread",
  9833.       "etag": "bYZtbEx5VTqLwdKXHc2nas20lGs",
  9834.       "id": "UgzPkZtKKv5pJ8plYBZ4AaABAg",
  9835.       "snippet": {
  9836.         "videoId": "atnSTtiWU5E",
  9837.         "topLevelComment": {
  9838.           "kind": "youtube#comment",
  9839.           "etag": "bK8YBMIJmwrBlYV_MdH7ytp1XX4",
  9840.           "id": "UgzPkZtKKv5pJ8plYBZ4AaABAg",
  9841.           "snippet": {
  9842.             "videoId": "atnSTtiWU5E",
  9843.             "textDisplay": "@vulpix Zecora should be one of the last people you fight then?\n\nHere are my final league:\nZecora\nBig Macintosh\nLuna\nCelestia",
  9844.             "textOriginal": "@vulpix Zecora should be one of the last people you fight then?\n\nHere are my final league:\nZecora\nBig Macintosh\nLuna\nCelestia",
  9845.             "authorDisplayName": "boomerang2455",
  9846.             "authorChannelUrl": "http://www.youtube.com/channel/UCTb26q8FSYprJJHf-p09GHQ",
  9847.             "authorChannelId": {
  9848.               "value": "UCTb26q8FSYprJJHf-p09GHQ"
  9849.             },
  9850.             "canRate": true,
  9851.             "viewerRating": "none",
  9852.             "likeCount": 0,
  9853.             "publishedAt": "2011-11-22T22:29:27Z",
  9854.             "updatedAt": "2011-11-22T22:29:27Z"
  9855.           }
  9856.         },
  9857.         "canReply": true,
  9858.         "totalReplyCount": 0,
  9859.         "isPublic": true
  9860.       }
  9861.     },
  9862.     {
  9863.       "kind": "youtube#commentThread",
  9864.       "etag": "7sjNWhd073N9XocjR5YlXsqKwjg",
  9865.       "id": "UgxLCbiNn5ESunucZTt4AaABAg",
  9866.       "snippet": {
  9867.         "videoId": "atnSTtiWU5E",
  9868.         "topLevelComment": {
  9869.           "kind": "youtube#comment",
  9870.           "etag": "uWlvIzwbcuZa1HlFbJawl79-eBE",
  9871.           "id": "UgxLCbiNn5ESunucZTt4AaABAg",
  9872.           "snippet": {
  9873.             "videoId": "atnSTtiWU5E",
  9874.             "textDisplay": "@boomerang2455 dog gammit, you beat me.",
  9875.             "textOriginal": "@boomerang2455 dog gammit, you beat me.",
  9876.             "authorDisplayName": "Violet Aurora",
  9877.             "authorChannelUrl": "http://www.youtube.com/channel/UCgb-Vy0PiCE6cUI5cIIqAuA",
  9878.             "authorChannelId": {
  9879.               "value": "UCgb-Vy0PiCE6cUI5cIIqAuA"
  9880.             },
  9881.             "canRate": true,
  9882.             "viewerRating": "none",
  9883.             "likeCount": 0,
  9884.             "publishedAt": "2011-11-22T21:56:46Z",
  9885.             "updatedAt": "2011-11-22T21:56:46Z"
  9886.           }
  9887.         },
  9888.         "canReply": true,
  9889.         "totalReplyCount": 0,
  9890.         "isPublic": true
  9891.       }
  9892.     },
  9893.     {
  9894.       "kind": "youtube#commentThread",
  9895.       "etag": "RSINNPvq4cijvRIpJkzA5DYr6is",
  9896.       "id": "UgyyzRx97vZg8QcDfOR4AaABAg",
  9897.       "snippet": {
  9898.         "videoId": "atnSTtiWU5E",
  9899.         "topLevelComment": {
  9900.           "kind": "youtube#comment",
  9901.           "etag": "4QK_JSbfO7uItk-iH46YcvxXsuE",
  9902.           "id": "UgyyzRx97vZg8QcDfOR4AaABAg",
  9903.           "snippet": {
  9904.             "videoId": "atnSTtiWU5E",
  9905.             "textDisplay": "Luna Game..\n\nOno. ",
  9906.             "textOriginal": "Luna Game..\n\nOno. ",
  9907.             "authorDisplayName": "boomerang2455",
  9908.             "authorChannelUrl": "http://www.youtube.com/channel/UCTb26q8FSYprJJHf-p09GHQ",
  9909.             "authorChannelId": {
  9910.               "value": "UCTb26q8FSYprJJHf-p09GHQ"
  9911.             },
  9912.             "canRate": true,
  9913.             "viewerRating": "none",
  9914.             "likeCount": 0,
  9915.             "publishedAt": "2011-11-22T00:55:24Z",
  9916.             "updatedAt": "2011-11-22T00:55:24Z"
  9917.           }
  9918.         },
  9919.         "canReply": true,
  9920.         "totalReplyCount": 0,
  9921.         "isPublic": true
  9922.       }
  9923.     },
  9924.     {
  9925.       "kind": "youtube#commentThread",
  9926.       "etag": "Ub5u8o9G7e__uQOXRM8AjR_cxSA",
  9927.       "id": "Ugyjr39hxzMWeRQ_IK14AaABAg",
  9928.       "snippet": {
  9929.         "videoId": "atnSTtiWU5E",
  9930.         "topLevelComment": {
  9931.           "kind": "youtube#comment",
  9932.           "etag": "HuVNI9WkxHWbf6U5jlztzdOVQHY",
  9933.           "id": "Ugyjr39hxzMWeRQ_IK14AaABAg",
  9934.           "snippet": {
  9935.             "videoId": "atnSTtiWU5E",
  9936.             "textDisplay": "can ponies drift?",
  9937.             "textOriginal": "can ponies drift?",
  9938.             "authorDisplayName": "Cat Pryor",
  9939.             "authorChannelUrl": "http://www.youtube.com/channel/UCI8twXD-BapQo0L-CQVbyRw",
  9940.             "authorChannelId": {
  9941.               "value": "UCI8twXD-BapQo0L-CQVbyRw"
  9942.             },
  9943.             "canRate": true,
  9944.             "viewerRating": "none",
  9945.             "likeCount": 0,
  9946.             "publishedAt": "2011-11-21T07:15:11Z",
  9947.             "updatedAt": "2011-11-21T07:15:11Z"
  9948.           }
  9949.         },
  9950.         "canReply": true,
  9951.         "totalReplyCount": 0,
  9952.         "isPublic": true
  9953.       }
  9954.     },
  9955.     {
  9956.       "kind": "youtube#commentThread",
  9957.       "etag": "nUumzjjUUj6eWC-JG9cW_YkI92A",
  9958.       "id": "UgxcINqFJ05RYAtGQG94AaABAg",
  9959.       "snippet": {
  9960.         "videoId": "atnSTtiWU5E",
  9961.         "topLevelComment": {
  9962.           "kind": "youtube#comment",
  9963.           "etag": "Zao4x4ub7djinPetoZIDPhucDqk",
  9964.           "id": "UgxcINqFJ05RYAtGQG94AaABAg",
  9965.           "snippet": {
  9966.             "videoId": "atnSTtiWU5E",
  9967.             "textDisplay": "SHE SAID SHE'S GOING FEAST ON US ALL!",
  9968.             "textOriginal": "SHE SAID SHE'S GOING FEAST ON US ALL!",
  9969.             "authorDisplayName": "Wat Tambor",
  9970.             "authorChannelUrl": "http://www.youtube.com/channel/UCHDWtMW9PgVA8EluWLKUnCQ",
  9971.             "authorChannelId": {
  9972.               "value": "UCHDWtMW9PgVA8EluWLKUnCQ"
  9973.             },
  9974.             "canRate": true,
  9975.             "viewerRating": "none",
  9976.             "likeCount": 0,
  9977.             "publishedAt": "2011-11-19T20:28:11Z",
  9978.             "updatedAt": "2011-11-19T20:28:11Z"
  9979.           }
  9980.         },
  9981.         "canReply": true,
  9982.         "totalReplyCount": 0,
  9983.         "isPublic": true
  9984.       }
  9985.     },
  9986.     {
  9987.       "kind": "youtube#commentThread",
  9988.       "etag": "Ox0EJ2Pih3qvbWzu57CFhjWOC10",
  9989.       "id": "UgyUUV-_JhSss09Oaet4AaABAg",
  9990.       "snippet": {
  9991.         "videoId": "atnSTtiWU5E",
  9992.         "topLevelComment": {
  9993.           "kind": "youtube#comment",
  9994.           "etag": "4VyBrueARi7EyQjEVgMn7Ed2kqc",
  9995.           "id": "UgyUUV-_JhSss09Oaet4AaABAg",
  9996.           "snippet": {
  9997.             "videoId": "atnSTtiWU5E",
  9998.             "textDisplay": "AAAAHHHH LUNA GAME",
  9999.             "textOriginal": "AAAAHHHH LUNA GAME",
  10000.             "authorDisplayName": "FourthDerivative",
  10001.             "authorChannelUrl": "http://www.youtube.com/channel/UC8TZasgY6aswnnnHi8PhC8Q",
  10002.             "authorChannelId": {
  10003.               "value": "UC8TZasgY6aswnnnHi8PhC8Q"
  10004.             },
  10005.             "canRate": true,
  10006.             "viewerRating": "none",
  10007.             "likeCount": 0,
  10008.             "publishedAt": "2011-11-15T00:38:37Z",
  10009.             "updatedAt": "2011-11-15T00:38:37Z"
  10010.           }
  10011.         },
  10012.         "canReply": true,
  10013.         "totalReplyCount": 0,
  10014.         "isPublic": true
  10015.       }
  10016.     },
  10017.     {
  10018.       "kind": "youtube#commentThread",
  10019.       "etag": "PRJrVINPX_7XvSQGEe2f0_s7nkE",
  10020.       "id": "Ugw9U0ZdRtsdMdBkhtF4AaABAg",
  10021.       "snippet": {
  10022.         "videoId": "atnSTtiWU5E",
  10023.         "topLevelComment": {
  10024.           "kind": "youtube#comment",
  10025.           "etag": "QIxH5jM3C1LHRfdx2a2rdYdN9D0",
  10026.           "id": "Ugw9U0ZdRtsdMdBkhtF4AaABAg",
  10027.           "snippet": {
  10028.             "videoId": "atnSTtiWU5E",
  10029.             "textDisplay": "I want this music to play while I'm in an F-18 and evading thousands of missiles with high G-spirals.",
  10030.             "textOriginal": "I want this music to play while I'm in an F-18 and evading thousands of missiles with high G-spirals.",
  10031.             "authorDisplayName": "Dusty Howard",
  10032.             "authorChannelUrl": "http://www.youtube.com/channel/UC2q03gdAxNNTM1lYRjX4p2w",
  10033.             "authorChannelId": {
  10034.               "value": "UC2q03gdAxNNTM1lYRjX4p2w"
  10035.             },
  10036.             "canRate": true,
  10037.             "viewerRating": "none",
  10038.             "likeCount": 0,
  10039.             "publishedAt": "2011-11-09T23:32:30Z",
  10040.             "updatedAt": "2011-11-09T23:32:30Z"
  10041.           }
  10042.         },
  10043.         "canReply": true,
  10044.         "totalReplyCount": 0,
  10045.         "isPublic": true
  10046.       }
  10047.     },
  10048.     {
  10049.       "kind": "youtube#commentThread",
  10050.       "etag": "WAz6AUc5NM7w0JdjQMDx4muV-Ig",
  10051.       "id": "Ugz0t5m4EsWL6aYhmc14AaABAg",
  10052.       "snippet": {
  10053.         "videoId": "atnSTtiWU5E",
  10054.         "topLevelComment": {
  10055.           "kind": "youtube#comment",
  10056.           "etag": "3mkmX5GBA-8P9dLxfCukjAJ8s4Y",
  10057.           "id": "Ugz0t5m4EsWL6aYhmc14AaABAg",
  10058.           "snippet": {
  10059.             "videoId": "atnSTtiWU5E",
  10060.             "textDisplay": "@Morrnsta \nDerpyhooves was just replaced by Derpyhoovescentral.\nBut...\nI've got the game backed up @ mediafire url ?hw8b12wv0bwhacg \n:3",
  10061.             "textOriginal": "@Morrnsta \nDerpyhooves was just replaced by Derpyhoovescentral.\nBut...\nI've got the game backed up @ mediafire url ?hw8b12wv0bwhacg \n:3",
  10062.             "authorDisplayName": "Mornsta",
  10063.             "authorChannelUrl": "http://www.youtube.com/channel/UCE-2W26yP6AEap_v97SGJlQ",
  10064.             "authorChannelId": {
  10065.               "value": "UCE-2W26yP6AEap_v97SGJlQ"
  10066.             },
  10067.             "canRate": true,
  10068.             "viewerRating": "none",
  10069.             "likeCount": 0,
  10070.             "publishedAt": "2011-11-09T07:09:09Z",
  10071.             "updatedAt": "2011-11-09T07:09:09Z"
  10072.           }
  10073.         },
  10074.         "canReply": true,
  10075.         "totalReplyCount": 0,
  10076.         "isPublic": true
  10077.       }
  10078.     },
  10079.     {
  10080.       "kind": "youtube#commentThread",
  10081.       "etag": "rLzIKExHzq6-Ryf10A2H7dCmzL8",
  10082.       "id": "UgwzluTZV9ZVBbgVzAl4AaABAg",
  10083.       "snippet": {
  10084.         "videoId": "atnSTtiWU5E",
  10085.         "topLevelComment": {
  10086.           "kind": "youtube#comment",
  10087.           "etag": "4DafjGbs3kB8y89OyTC79uRW8NQ",
  10088.           "id": "UgwzluTZV9ZVBbgVzAl4AaABAg",
  10089.           "snippet": {
  10090.             "videoId": "atnSTtiWU5E",
  10091.             "textDisplay": "18 people played the luna game.",
  10092.             "textOriginal": "18 people played the luna game.",
  10093.             "authorDisplayName": "LOLLEET133764",
  10094.             "authorChannelUrl": "http://www.youtube.com/channel/UCqOhrXes0I2-qBBWfAzxTpQ",
  10095.             "authorChannelId": {
  10096.               "value": "UCqOhrXes0I2-qBBWfAzxTpQ"
  10097.             },
  10098.             "canRate": true,
  10099.             "viewerRating": "none",
  10100.             "likeCount": 0,
  10101.             "publishedAt": "2011-11-07T20:57:17Z",
  10102.             "updatedAt": "2011-11-07T20:57:17Z"
  10103.           }
  10104.         },
  10105.         "canReply": true,
  10106.         "totalReplyCount": 0,
  10107.         "isPublic": true
  10108.       }
  10109.     },
  10110.     {
  10111.       "kind": "youtube#commentThread",
  10112.       "etag": "07iUKzwQNHq1ytRFDKYAOXb84OM",
  10113.       "id": "UgyIb2FPnnsIkIKwPH14AaABAg",
  10114.       "snippet": {
  10115.         "videoId": "atnSTtiWU5E",
  10116.         "topLevelComment": {
  10117.           "kind": "youtube#comment",
  10118.           "etag": "_O0YtuOVgD2HMxCWsTaG-ABHpd0",
  10119.           "id": "UgyIb2FPnnsIkIKwPH14AaABAg",
  10120.           "snippet": {
  10121.             "videoId": "atnSTtiWU5E",
  10122.             "textDisplay": "Luna game...?\nThis plays in Rainbow Dash attack, \nwhich can be found on derpyhooves(dot)com...",
  10123.             "textOriginal": "Luna game...?\nThis plays in Rainbow Dash attack, \nwhich can be found on derpyhooves(dot)com...",
  10124.             "authorDisplayName": "Mornsta",
  10125.             "authorChannelUrl": "http://www.youtube.com/channel/UCE-2W26yP6AEap_v97SGJlQ",
  10126.             "authorChannelId": {
  10127.               "value": "UCE-2W26yP6AEap_v97SGJlQ"
  10128.             },
  10129.             "canRate": true,
  10130.             "viewerRating": "none",
  10131.             "likeCount": 0,
  10132.             "publishedAt": "2011-11-07T06:43:47Z",
  10133.             "updatedAt": "2011-11-07T06:43:47Z"
  10134.           }
  10135.         },
  10136.         "canReply": true,
  10137.         "totalReplyCount": 0,
  10138.         "isPublic": true
  10139.       }
  10140.     },
  10141.     {
  10142.       "kind": "youtube#commentThread",
  10143.       "etag": "57WyWXOKd_rq9343xUdfLVS0Zus",
  10144.       "id": "Ugz9Hcm0h3EOWJCDBuR4AaABAg",
  10145.       "snippet": {
  10146.         "videoId": "atnSTtiWU5E",
  10147.         "topLevelComment": {
  10148.           "kind": "youtube#comment",
  10149.           "etag": "yfQ9jSvZvNVwq6-HNZyjhPwzwtc",
  10150.           "id": "Ugz9Hcm0h3EOWJCDBuR4AaABAg",
  10151.           "snippet": {
  10152.             "videoId": "atnSTtiWU5E",
  10153.             "textDisplay": "Brought here from Bonyville",
  10154.             "textOriginal": "Brought here from Bonyville",
  10155.             "authorDisplayName": "supasonic10",
  10156.             "authorChannelUrl": "http://www.youtube.com/channel/UCI9g_HvjQgNObboa6EiOzMg",
  10157.             "authorChannelId": {
  10158.               "value": "UCI9g_HvjQgNObboa6EiOzMg"
  10159.             },
  10160.             "canRate": true,
  10161.             "viewerRating": "none",
  10162.             "likeCount": 0,
  10163.             "publishedAt": "2011-11-06T03:54:34Z",
  10164.             "updatedAt": "2011-11-06T03:54:34Z"
  10165.           }
  10166.         },
  10167.         "canReply": true,
  10168.         "totalReplyCount": 0,
  10169.         "isPublic": true
  10170.       }
  10171.     },
  10172.     {
  10173.       "kind": "youtube#commentThread",
  10174.       "etag": "Qis_37ZR5KcJXdpbfhSnJphlzN4",
  10175.       "id": "Ugyj3tI-4cINRWZJBqF4AaABAg",
  10176.       "snippet": {
  10177.         "videoId": "atnSTtiWU5E",
  10178.         "topLevelComment": {
  10179.           "kind": "youtube#comment",
  10180.           "etag": "2tYMFX6hTgTI1fg9IjkIhe7u2Mw",
  10181.           "id": "Ugyj3tI-4cINRWZJBqF4AaABAg",
  10182.           "snippet": {
  10183.             "videoId": "atnSTtiWU5E",
  10184.             "textDisplay": "@hendrexrules fuuuuck yes!",
  10185.             "textOriginal": "@hendrexrules fuuuuck yes!",
  10186.             "authorDisplayName": "L C",
  10187.             "authorChannelUrl": "http://www.youtube.com/channel/UC3LGLYAayJKC3IO0T7--k4g",
  10188.             "authorChannelId": {
  10189.               "value": "UC3LGLYAayJKC3IO0T7--k4g"
  10190.             },
  10191.             "canRate": true,
  10192.             "viewerRating": "none",
  10193.             "likeCount": 0,
  10194.             "publishedAt": "2011-10-30T20:00:47Z",
  10195.             "updatedAt": "2011-10-30T20:00:47Z"
  10196.           }
  10197.         },
  10198.         "canReply": true,
  10199.         "totalReplyCount": 0,
  10200.         "isPublic": true
  10201.       }
  10202.     }
  10203.   ]
  10204. }
  10205. {
  10206.   "kind": "youtube#commentThreadListResponse",
  10207.   "etag": "xMwymiwohd1Fnj-8xhQ5LfW68HU",
  10208.   "nextPageToken": "QURTSl9pMDF6MG95MnhUa2I4TVZSbEdjdUtmdW1LS3hacVYzN2UtdkU2UHNDdEgzWlVYZnNiUmtLNk9jOExyYkM4bEFyYU4tSTYtMFVyRQ==",
  10209.   "pageInfo": {
  10210.     "totalResults": 100,
  10211.     "resultsPerPage": 100
  10212.   },
  10213.   "items": [
  10214.     {
  10215.       "kind": "youtube#commentThread",
  10216.       "etag": "5Ti4BhMIeJeke-3md7w1Cm05dY0",
  10217.       "id": "UgyZ7N6dYXhFurlw1nl4AaABAg",
  10218.       "snippet": {
  10219.         "videoId": "atnSTtiWU5E",
  10220.         "topLevelComment": {
  10221.           "kind": "youtube#comment",
  10222.           "etag": "c-tFbmR-PJwCKKtUQ7k-nW970KE",
  10223.           "id": "UgyZ7N6dYXhFurlw1nl4AaABAg",
  10224.           "snippet": {
  10225.             "videoId": "atnSTtiWU5E",
  10226.             "textDisplay": "@Magmarrax ;_;",
  10227.             "textOriginal": "@Magmarrax ;_;",
  10228.             "authorDisplayName": "Griffin Nest",
  10229.             "authorChannelUrl": "http://www.youtube.com/channel/UCPUyKcr81oKX81HDKAjdDjQ",
  10230.             "authorChannelId": {
  10231.               "value": "UCPUyKcr81oKX81HDKAjdDjQ"
  10232.             },
  10233.             "canRate": true,
  10234.             "viewerRating": "none",
  10235.             "likeCount": 0,
  10236.             "publishedAt": "2011-10-30T05:19:13Z",
  10237.             "updatedAt": "2011-10-30T05:19:13Z"
  10238.           }
  10239.         },
  10240.         "canReply": true,
  10241.         "totalReplyCount": 0,
  10242.         "isPublic": true
  10243.       }
  10244.     },
  10245.     {
  10246.       "kind": "youtube#commentThread",
  10247.       "etag": "5ETJQbi9tkISoCXGZqWuLDCDsc4",
  10248.       "id": "UgweUG-t18sU9nF28Lp4AaABAg",
  10249.       "snippet": {
  10250.         "videoId": "atnSTtiWU5E",
  10251.         "topLevelComment": {
  10252.           "kind": "youtube#comment",
  10253.           "etag": "XCY7GIKO0Fi8gW-4cXDHv5EGmgQ",
  10254.           "id": "UgweUG-t18sU9nF28Lp4AaABAg",
  10255.           "snippet": {
  10256.             "videoId": "atnSTtiWU5E",
  10257.             "textDisplay": "Why am I scared by this?\nOh yeah.\nLuna Game.",
  10258.             "textOriginal": "Why am I scared by this?\nOh yeah.\nLuna Game.",
  10259.             "authorDisplayName": "Zamaruki",
  10260.             "authorChannelUrl": "http://www.youtube.com/channel/UCjCjJhTfxSLiQQirgIomvyA",
  10261.             "authorChannelId": {
  10262.               "value": "UCjCjJhTfxSLiQQirgIomvyA"
  10263.             },
  10264.             "canRate": true,
  10265.             "viewerRating": "none",
  10266.             "likeCount": 0,
  10267.             "publishedAt": "2011-10-27T21:32:59Z",
  10268.             "updatedAt": "2011-10-27T21:32:59Z"
  10269.           }
  10270.         },
  10271.         "canReply": true,
  10272.         "totalReplyCount": 0,
  10273.         "isPublic": true
  10274.       }
  10275.     },
  10276.     {
  10277.       "kind": "youtube#commentThread",
  10278.       "etag": "zBXi3M4Hb7ZCmL7lGEQ9ne6g-ns",
  10279.       "id": "UgzYaFxuqTiWOILknz14AaABAg",
  10280.       "snippet": {
  10281.         "videoId": "atnSTtiWU5E",
  10282.         "topLevelComment": {
  10283.           "kind": "youtube#comment",
  10284.           "etag": "u52rp6wkRfgTEpWoqHp0HIoTeTY",
  10285.           "id": "UgzYaFxuqTiWOILknz14AaABAg",
  10286.           "snippet": {
  10287.             "videoId": "atnSTtiWU5E",
  10288.             "textDisplay": "@geglespheler Sorry, eurobeat is techno-lite. Though, if you want something...heavy, I know of a thrash metal version of this song.",
  10289.             "textOriginal": "@geglespheler Sorry, eurobeat is techno-lite. Though, if you want something...heavy, I know of a thrash metal version of this song.",
  10290.             "authorDisplayName": "Dynamite Grizzly",
  10291.             "authorChannelUrl": "http://www.youtube.com/channel/UCus31oUwyAxIt1OgYryrzqQ",
  10292.             "authorChannelId": {
  10293.               "value": "UCus31oUwyAxIt1OgYryrzqQ"
  10294.             },
  10295.             "canRate": true,
  10296.             "viewerRating": "none",
  10297.             "likeCount": 0,
  10298.             "publishedAt": "2011-10-23T02:14:46Z",
  10299.             "updatedAt": "2011-10-23T02:14:46Z"
  10300.           }
  10301.         },
  10302.         "canReply": true,
  10303.         "totalReplyCount": 0,
  10304.         "isPublic": true
  10305.       }
  10306.     },
  10307.     {
  10308.       "kind": "youtube#commentThread",
  10309.       "etag": "gqJeXGxk0tonrnyhOSou4DE0-bw",
  10310.       "id": "UgyPRA62gOpwb8SVQtN4AaABAg",
  10311.       "snippet": {
  10312.         "videoId": "atnSTtiWU5E",
  10313.         "topLevelComment": {
  10314.           "kind": "youtube#comment",
  10315.           "etag": "R32utpGdXJLW4UgHFlgsMDyKdfc",
  10316.           "id": "UgyPRA62gOpwb8SVQtN4AaABAg",
  10317.           "snippet": {
  10318.             "videoId": "atnSTtiWU5E",
  10319.             "textDisplay": "@geglespheler Alex S.",
  10320.             "textOriginal": "@geglespheler Alex S.",
  10321.             "authorDisplayName": "DRTisKING",
  10322.             "authorChannelUrl": "http://www.youtube.com/channel/UCJj9B1aXjmGXr0GXZPtTS6A",
  10323.             "authorChannelId": {
  10324.               "value": "UCJj9B1aXjmGXr0GXZPtTS6A"
  10325.             },
  10326.             "canRate": true,
  10327.             "viewerRating": "none",
  10328.             "likeCount": 0,
  10329.             "publishedAt": "2011-10-22T00:11:25Z",
  10330.             "updatedAt": "2011-10-22T00:11:25Z"
  10331.           }
  10332.         },
  10333.         "canReply": true,
  10334.         "totalReplyCount": 0,
  10335.         "isPublic": true
  10336.       }
  10337.     },
  10338.     {
  10339.       "kind": "youtube#commentThread",
  10340.       "etag": "t98R5snFwgIYHw80Vsvoi85E3I4",
  10341.       "id": "UgyYzMFqVUadvg8Qm0t4AaABAg",
  10342.       "snippet": {
  10343.         "videoId": "atnSTtiWU5E",
  10344.         "topLevelComment": {
  10345.           "kind": "youtube#comment",
  10346.           "etag": "YvQGOU-B8BeCqzFw7TQ5BnfST3k",
  10347.           "id": "UgyYzMFqVUadvg8Qm0t4AaABAg",
  10348.           "snippet": {
  10349.             "videoId": "atnSTtiWU5E",
  10350.             "textDisplay": "As much as I love techno, Where can I find some MLP music with a little more... Kick?",
  10351.             "textOriginal": "As much as I love techno, Where can I find some MLP music with a little more... Kick?",
  10352.             "authorDisplayName": "AllyOJustice",
  10353.             "authorChannelUrl": "http://www.youtube.com/channel/UCZr1jLyZmZRBDBp7qp0OKAA",
  10354.             "authorChannelId": {
  10355.               "value": "UCZr1jLyZmZRBDBp7qp0OKAA"
  10356.             },
  10357.             "canRate": true,
  10358.             "viewerRating": "none",
  10359.             "likeCount": 0,
  10360.             "publishedAt": "2011-10-21T00:39:28Z",
  10361.             "updatedAt": "2011-10-21T00:39:28Z"
  10362.           }
  10363.         },
  10364.         "canReply": true,
  10365.         "totalReplyCount": 0,
  10366.         "isPublic": true
  10367.       }
  10368.     },
  10369.     {
  10370.       "kind": "youtube#commentThread",
  10371.       "etag": "_vR6GpH-WsURb3edHV2pdzpKdOw",
  10372.       "id": "UgyI4lLdFHz849jY7_14AaABAg",
  10373.       "snippet": {
  10374.         "videoId": "atnSTtiWU5E",
  10375.         "topLevelComment": {
  10376.           "kind": "youtube#comment",
  10377.           "etag": "0l-XNWhS46clsk2gBRCWzzK-ohM",
  10378.           "id": "UgyI4lLdFHz849jY7_14AaABAg",
  10379.           "snippet": {
  10380.             "videoId": "atnSTtiWU5E",
  10381.             "textDisplay": "I will forever associate this with that troll game, which only makes it creepier... Awesome! :D",
  10382.             "textOriginal": "I will forever associate this with that troll game, which only makes it creepier... Awesome! :D",
  10383.             "authorDisplayName": "salithewitch",
  10384.             "authorChannelUrl": "http://www.youtube.com/channel/UCqgyr8LQVLC9hZHVqWXJw2w",
  10385.             "authorChannelId": {
  10386.               "value": "UCqgyr8LQVLC9hZHVqWXJw2w"
  10387.             },
  10388.             "canRate": true,
  10389.             "viewerRating": "none",
  10390.             "likeCount": 0,
  10391.             "publishedAt": "2011-10-18T17:33:43Z",
  10392.             "updatedAt": "2011-10-18T17:33:43Z"
  10393.           }
  10394.         },
  10395.         "canReply": true,
  10396.         "totalReplyCount": 0,
  10397.         "isPublic": true
  10398.       }
  10399.     },
  10400.     {
  10401.       "kind": "youtube#commentThread",
  10402.       "etag": "8972SqgEJck6QUGnJhSTo0oL2uo",
  10403.       "id": "Ugz8Zuda5xykb-LTjJd4AaABAg",
  10404.       "snippet": {
  10405.         "videoId": "atnSTtiWU5E",
  10406.         "topLevelComment": {
  10407.           "kind": "youtube#comment",
  10408.           "etag": "qtI0joA1SsfZY_q7xcciReiRIMA",
  10409.           "id": "Ugz8Zuda5xykb-LTjJd4AaABAg",
  10410.           "snippet": {
  10411.             "videoId": "atnSTtiWU5E",
  10412.             "textDisplay": "@hendrexrules sexy.",
  10413.             "textOriginal": "@hendrexrules sexy.",
  10414.             "authorDisplayName": "Olivebates",
  10415.             "authorChannelUrl": "http://www.youtube.com/channel/UC_8kLnMhY2hLwZaMPwCHWqg",
  10416.             "authorChannelId": {
  10417.               "value": "UC_8kLnMhY2hLwZaMPwCHWqg"
  10418.             },
  10419.             "canRate": true,
  10420.             "viewerRating": "none",
  10421.             "likeCount": 0,
  10422.             "publishedAt": "2011-10-17T12:14:40Z",
  10423.             "updatedAt": "2011-10-17T12:14:40Z"
  10424.           }
  10425.         },
  10426.         "canReply": true,
  10427.         "totalReplyCount": 0,
  10428.         "isPublic": true
  10429.       }
  10430.     },
  10431.     {
  10432.       "kind": "youtube#commentThread",
  10433.       "etag": "wAD1Hv2Mt6g5Kbb_YuZeDbkmB-4",
  10434.       "id": "UgxUVSR-vVQ67nDdkXp4AaABAg",
  10435.       "snippet": {
  10436.         "videoId": "atnSTtiWU5E",
  10437.         "topLevelComment": {
  10438.           "kind": "youtube#comment",
  10439.           "etag": "eNBwWgWMKUShe6sJjC8IyqGOvbM",
  10440.           "id": "UgxUVSR-vVQ67nDdkXp4AaABAg",
  10441.           "snippet": {
  10442.             "videoId": "atnSTtiWU5E",
  10443.             "textDisplay": "@angryguythatedits I thought it sounded more like a megaman theme myself.",
  10444.             "textOriginal": "@angryguythatedits I thought it sounded more like a megaman theme myself.",
  10445.             "authorDisplayName": "KunouNoHana",
  10446.             "authorChannelUrl": "http://www.youtube.com/channel/UCwb5jXCcRVM56TRUq7ZD7OA",
  10447.             "authorChannelId": {
  10448.               "value": "UCwb5jXCcRVM56TRUq7ZD7OA"
  10449.             },
  10450.             "canRate": true,
  10451.             "viewerRating": "none",
  10452.             "likeCount": 0,
  10453.             "publishedAt": "2011-10-16T22:41:36Z",
  10454.             "updatedAt": "2011-10-16T22:41:36Z"
  10455.           }
  10456.         },
  10457.         "canReply": true,
  10458.         "totalReplyCount": 0,
  10459.         "isPublic": true
  10460.       }
  10461.     },
  10462.     {
  10463.       "kind": "youtube#commentThread",
  10464.       "etag": "lme33iUsNOu92yOcoIYWQHoNP_A",
  10465.       "id": "UgwtZfZqIQYbT4JXHet4AaABAg",
  10466.       "snippet": {
  10467.         "videoId": "atnSTtiWU5E",
  10468.         "topLevelComment": {
  10469.           "kind": "youtube#comment",
  10470.           "etag": "rOQeYvwV_-iLy6tHas0RXKgOl7g",
  10471.           "id": "UgwtZfZqIQYbT4JXHet4AaABAg",
  10472.           "snippet": {
  10473.             "videoId": "atnSTtiWU5E",
  10474.             "textDisplay": "i cant hear any evil enchantress in here :\\",
  10475.             "textOriginal": "i cant hear any evil enchantress in here :\\",
  10476.             "authorDisplayName": "DEASTES",
  10477.             "authorChannelUrl": "http://www.youtube.com/channel/UCEMtZCNFlg0C7NH8zc_7HiA",
  10478.             "authorChannelId": {
  10479.               "value": "UCEMtZCNFlg0C7NH8zc_7HiA"
  10480.             },
  10481.             "canRate": true,
  10482.             "viewerRating": "none",
  10483.             "likeCount": 0,
  10484.             "publishedAt": "2011-10-16T22:40:15Z",
  10485.             "updatedAt": "2011-10-16T22:40:15Z"
  10486.           }
  10487.         },
  10488.         "canReply": true,
  10489.         "totalReplyCount": 0,
  10490.         "isPublic": true
  10491.       }
  10492.     },
  10493.     {
  10494.       "kind": "youtube#commentThread",
  10495.       "etag": "fzQBurUlnSxL3_dmQIhlZX5FdEg",
  10496.       "id": "Ugxh3u-YeWII8X80fuN4AaABAg",
  10497.       "snippet": {
  10498.         "videoId": "atnSTtiWU5E",
  10499.         "topLevelComment": {
  10500.           "kind": "youtube#comment",
  10501.           "etag": "TOBNaUIyolKX5ToUEQC-2r7ktD0",
  10502.           "id": "Ugxh3u-YeWII8X80fuN4AaABAg",
  10503.           "snippet": {
  10504.             "videoId": "atnSTtiWU5E",
  10505.             "textDisplay": "make this in 8-bit and you got the perfect song for the elite four in pokémon red and blue",
  10506.             "textOriginal": "make this in 8-bit and you got the perfect song for the elite four in pokémon red and blue",
  10507.             "authorDisplayName": "A E",
  10508.             "authorChannelUrl": "http://www.youtube.com/channel/UCykcEcFoAZNQWQrUg6fl-dw",
  10509.             "authorChannelId": {
  10510.               "value": "UCykcEcFoAZNQWQrUg6fl-dw"
  10511.             },
  10512.             "canRate": true,
  10513.             "viewerRating": "none",
  10514.             "likeCount": 0,
  10515.             "publishedAt": "2011-10-16T16:34:21Z",
  10516.             "updatedAt": "2011-10-16T16:34:21Z"
  10517.           }
  10518.         },
  10519.         "canReply": true,
  10520.         "totalReplyCount": 0,
  10521.         "isPublic": true
  10522.       }
  10523.     },
  10524.     {
  10525.       "kind": "youtube#commentThread",
  10526.       "etag": "cFhZmicbGxGYTRypmwX6BC6co-0",
  10527.       "id": "UgwNcNzPys41SwOoEcl4AaABAg",
  10528.       "snippet": {
  10529.         "videoId": "atnSTtiWU5E",
  10530.         "topLevelComment": {
  10531.           "kind": "youtube#comment",
  10532.           "etag": "UMYVPQJALh9fqlegnNah7ISNrfw",
  10533.           "id": "UgwNcNzPys41SwOoEcl4AaABAg",
  10534.           "snippet": {
  10535.             "videoId": "atnSTtiWU5E",
  10536.             "textDisplay": "@saskekun101 thats because the soundtrack for ID was all eurobeat\n",
  10537.             "textOriginal": "@saskekun101 thats because the soundtrack for ID was all eurobeat\n",
  10538.             "authorDisplayName": "DismemberTheAlamo",
  10539.             "authorChannelUrl": "http://www.youtube.com/channel/UCbzTHqqhm2akIhzZZS3984Q",
  10540.             "authorChannelId": {
  10541.               "value": "UCbzTHqqhm2akIhzZZS3984Q"
  10542.             },
  10543.             "canRate": true,
  10544.             "viewerRating": "none",
  10545.             "likeCount": 0,
  10546.             "publishedAt": "2011-10-14T16:23:04Z",
  10547.             "updatedAt": "2011-10-14T16:23:04Z"
  10548.           }
  10549.         },
  10550.         "canReply": true,
  10551.         "totalReplyCount": 0,
  10552.         "isPublic": true
  10553.       }
  10554.     },
  10555.     {
  10556.       "kind": "youtube#commentThread",
  10557.       "etag": "kuYqG6RZETpMt4e0VUT8HHovCn4",
  10558.       "id": "UgwKL_4xzCgooaZwYhV4AaABAg",
  10559.       "snippet": {
  10560.         "videoId": "atnSTtiWU5E",
  10561.         "topLevelComment": {
  10562.           "kind": "youtube#comment",
  10563.           "etag": "AteRUu1V-UVbb5dvx8GqR0gwF6M",
  10564.           "id": "UgwKL_4xzCgooaZwYhV4AaABAg",
  10565.           "snippet": {
  10566.             "videoId": "atnSTtiWU5E",
  10567.             "textDisplay": "I listen to this on my Ipod while I kick ass at black ops",
  10568.             "textOriginal": "I listen to this on my Ipod while I kick ass at black ops",
  10569.             "authorDisplayName": "Dark Chocolate",
  10570.             "authorChannelUrl": "http://www.youtube.com/channel/UCBRmxKYUbyZvvy6pHyM16SQ",
  10571.             "authorChannelId": {
  10572.               "value": "UCBRmxKYUbyZvvy6pHyM16SQ"
  10573.             },
  10574.             "canRate": true,
  10575.             "viewerRating": "none",
  10576.             "likeCount": 0,
  10577.             "publishedAt": "2011-10-11T01:22:55Z",
  10578.             "updatedAt": "2011-10-11T01:22:55Z"
  10579.           }
  10580.         },
  10581.         "canReply": true,
  10582.         "totalReplyCount": 0,
  10583.         "isPublic": true
  10584.       }
  10585.     },
  10586.     {
  10587.       "kind": "youtube#commentThread",
  10588.       "etag": "TLK2JEunh_bQpAR6V7KcvRKNWoU",
  10589.       "id": "UgxDIHQxWIfBDZGu-YJ4AaABAg",
  10590.       "snippet": {
  10591.         "videoId": "atnSTtiWU5E",
  10592.         "topLevelComment": {
  10593.           "kind": "youtube#comment",
  10594.           "etag": "UV_sJcIFLMHkYGbHKHXifiX32T0",
  10595.           "id": "UgxDIHQxWIfBDZGu-YJ4AaABAg",
  10596.           "snippet": {
  10597.             "videoId": "atnSTtiWU5E",
  10598.             "textDisplay": "Lol this reminds of initial d for some reason",
  10599.             "textOriginal": "Lol this reminds of initial d for some reason",
  10600.             "authorDisplayName": "saskekun101",
  10601.             "authorChannelUrl": "http://www.youtube.com/channel/UCs49NbGVWos0gYZyLmexx8g",
  10602.             "authorChannelId": {
  10603.               "value": "UCs49NbGVWos0gYZyLmexx8g"
  10604.             },
  10605.             "canRate": true,
  10606.             "viewerRating": "none",
  10607.             "likeCount": 0,
  10608.             "publishedAt": "2011-10-10T19:58:23Z",
  10609.             "updatedAt": "2011-10-10T19:58:23Z"
  10610.           }
  10611.         },
  10612.         "canReply": true,
  10613.         "totalReplyCount": 0,
  10614.         "isPublic": true
  10615.       }
  10616.     },
  10617.     {
  10618.       "kind": "youtube#commentThread",
  10619.       "etag": "Hs-W67mQAj0XI0SkXqXi-NEXrYA",
  10620.       "id": "UgzEwXxD0TK-7XgGJ2N4AaABAg",
  10621.       "snippet": {
  10622.         "videoId": "atnSTtiWU5E",
  10623.         "topLevelComment": {
  10624.           "kind": "youtube#comment",
  10625.           "etag": "Ny1CrbQqyhtQ103tcH8GkrQBSs0",
  10626.           "id": "UgzEwXxD0TK-7XgGJ2N4AaABAg",
  10627.           "snippet": {
  10628.             "videoId": "atnSTtiWU5E",
  10629.             "textDisplay": "HAPPY HARSE MUSIC NAANAAA NEHHH ",
  10630.             "textOriginal": "HAPPY HARSE MUSIC NAANAAA NEHHH ",
  10631.             "authorDisplayName": "greggieguygood",
  10632.             "authorChannelUrl": "http://www.youtube.com/channel/UCkDD6FpGtxrtPle71nhKg9Q",
  10633.             "authorChannelId": {
  10634.               "value": "UCkDD6FpGtxrtPle71nhKg9Q"
  10635.             },
  10636.             "canRate": true,
  10637.             "viewerRating": "none",
  10638.             "likeCount": 0,
  10639.             "publishedAt": "2011-10-10T06:13:57Z",
  10640.             "updatedAt": "2011-10-10T06:13:57Z"
  10641.           }
  10642.         },
  10643.         "canReply": true,
  10644.         "totalReplyCount": 0,
  10645.         "isPublic": true
  10646.       }
  10647.     },
  10648.     {
  10649.       "kind": "youtube#commentThread",
  10650.       "etag": "NuFmAQWPF5vnN4vcwwrHnqcR-8U",
  10651.       "id": "UgzPtBIgBYWGMubH46h4AaABAg",
  10652.       "snippet": {
  10653.         "videoId": "atnSTtiWU5E",
  10654.         "topLevelComment": {
  10655.           "kind": "youtube#comment",
  10656.           "etag": "ZUt4TrWtwFfg__Tl_W4Bis009Xw",
  10657.           "id": "UgzPtBIgBYWGMubH46h4AaABAg",
  10658.           "snippet": {
  10659.             "videoId": "atnSTtiWU5E",
  10660.             "textDisplay": "17 people were put into trances, and then were gobbled up in a big tasty stew.",
  10661.             "textOriginal": "17 people were put into trances, and then were gobbled up in a big tasty stew.",
  10662.             "authorDisplayName": "GoogleRuinedYoutube",
  10663.             "authorChannelUrl": "http://www.youtube.com/channel/UC0Rc4vXahb0LTRQyXjYMa9A",
  10664.             "authorChannelId": {
  10665.               "value": "UC0Rc4vXahb0LTRQyXjYMa9A"
  10666.             },
  10667.             "canRate": true,
  10668.             "viewerRating": "none",
  10669.             "likeCount": 0,
  10670.             "publishedAt": "2011-10-06T22:42:45Z",
  10671.             "updatedAt": "2011-10-06T22:42:45Z"
  10672.           }
  10673.         },
  10674.         "canReply": true,
  10675.         "totalReplyCount": 0,
  10676.         "isPublic": true
  10677.       }
  10678.     },
  10679.     {
  10680.       "kind": "youtube#commentThread",
  10681.       "etag": "ClZwmKL3HXVatHHORWk_jWRWliw",
  10682.       "id": "Ugym4sNSnXJhdBSgJzJ4AaABAg",
  10683.       "snippet": {
  10684.         "videoId": "atnSTtiWU5E",
  10685.         "topLevelComment": {
  10686.           "kind": "youtube#comment",
  10687.           "etag": "0tECnNjI0inhSRXS1DaQrH3xC3U",
  10688.           "id": "Ugym4sNSnXJhdBSgJzJ4AaABAg",
  10689.           "snippet": {
  10690.             "videoId": "atnSTtiWU5E",
  10691.             "textDisplay": "PONY TECHNO!!!!! <3",
  10692.             "textOriginal": "PONY TECHNO!!!!! \u003c3",
  10693.             "authorDisplayName": "Justin Salanga",
  10694.             "authorChannelUrl": "http://www.youtube.com/channel/UCpLl_AMgInZ8f1iFNC9RCPg",
  10695.             "authorChannelId": {
  10696.               "value": "UCpLl_AMgInZ8f1iFNC9RCPg"
  10697.             },
  10698.             "canRate": true,
  10699.             "viewerRating": "none",
  10700.             "likeCount": 0,
  10701.             "publishedAt": "2011-10-05T10:41:33Z",
  10702.             "updatedAt": "2011-10-05T10:41:33Z"
  10703.           }
  10704.         },
  10705.         "canReply": true,
  10706.         "totalReplyCount": 0,
  10707.         "isPublic": true
  10708.       }
  10709.     },
  10710.     {
  10711.       "kind": "youtube#commentThread",
  10712.       "etag": "Tr_ftDJ6nnzobkDj2rUygzP9AaY",
  10713.       "id": "UgzmDggvUYjfOPUdt714AaABAg",
  10714.       "snippet": {
  10715.         "videoId": "atnSTtiWU5E",
  10716.         "topLevelComment": {
  10717.           "kind": "youtube#comment",
  10718.           "etag": "Y1qoZusr1b30jQRUjNpar25nsbk",
  10719.           "id": "UgzmDggvUYjfOPUdt714AaABAg",
  10720.           "snippet": {
  10721.             "videoId": "atnSTtiWU5E",
  10722.             "textDisplay": "@Amelia2050 I watched that episode too, totally called it. Bronies are like an exclusive club, but anyone can join, once you are a brony you understand all the lingo and references.",
  10723.             "textOriginal": "@Amelia2050 I watched that episode too, totally called it. Bronies are like an exclusive club, but anyone can join, once you are a brony you understand all the lingo and references.",
  10724.             "authorDisplayName": "Griffin the griffin",
  10725.             "authorChannelUrl": "http://www.youtube.com/channel/UC-m8hIl6OrjHr3Ooanj0V9g",
  10726.             "authorChannelId": {
  10727.               "value": "UC-m8hIl6OrjHr3Ooanj0V9g"
  10728.             },
  10729.             "canRate": true,
  10730.             "viewerRating": "none",
  10731.             "likeCount": 0,
  10732.             "publishedAt": "2011-10-04T17:21:41Z",
  10733.             "updatedAt": "2011-10-04T17:21:41Z"
  10734.           }
  10735.         },
  10736.         "canReply": true,
  10737.         "totalReplyCount": 0,
  10738.         "isPublic": true
  10739.       }
  10740.     },
  10741.     {
  10742.       "kind": "youtube#commentThread",
  10743.       "etag": "e_iWfjoUuCls3PQ6DJL3NC0mTG8",
  10744.       "id": "Ugwu6178NRFFPyTZA-B4AaABAg",
  10745.       "snippet": {
  10746.         "videoId": "atnSTtiWU5E",
  10747.         "topLevelComment": {
  10748.           "kind": "youtube#comment",
  10749.           "etag": "e_knDTWUUB2qaTZw-X2TlqJet_4",
  10750.           "id": "Ugwu6178NRFFPyTZA-B4AaABAg",
  10751.           "snippet": {
  10752.             "videoId": "atnSTtiWU5E",
  10753.             "textDisplay": "Twilight Sparkle doesn't know how to DDR.",
  10754.             "textOriginal": "Twilight Sparkle doesn't know how to DDR.",
  10755.             "authorDisplayName": "Beatfox",
  10756.             "authorChannelUrl": "http://www.youtube.com/channel/UCEzF12czcvLCzanT2SSlfeQ",
  10757.             "authorChannelId": {
  10758.               "value": "UCEzF12czcvLCzanT2SSlfeQ"
  10759.             },
  10760.             "canRate": true,
  10761.             "viewerRating": "none",
  10762.             "likeCount": 0,
  10763.             "publishedAt": "2011-10-02T00:42:09Z",
  10764.             "updatedAt": "2011-10-02T00:42:09Z"
  10765.           }
  10766.         },
  10767.         "canReply": true,
  10768.         "totalReplyCount": 0,
  10769.         "isPublic": true
  10770.       }
  10771.     },
  10772.     {
  10773.       "kind": "youtube#commentThread",
  10774.       "etag": "4B3ZPQ0jaVanjIlAqgM7nOgl0wg",
  10775.       "id": "UgxtZbLMpWfvgVS6re54AaABAg",
  10776.       "snippet": {
  10777.         "videoId": "atnSTtiWU5E",
  10778.         "topLevelComment": {
  10779.           "kind": "youtube#comment",
  10780.           "etag": "QgDpYz6eMDOMnbdrwJNQjATOils",
  10781.           "id": "UgxtZbLMpWfvgVS6re54AaABAg",
  10782.           "snippet": {
  10783.             "videoId": "atnSTtiWU5E",
  10784.             "textDisplay": "Man this music is awesome. =D ",
  10785.             "textOriginal": "Man this music is awesome. =D ",
  10786.             "authorDisplayName": "randomyoshi",
  10787.             "authorChannelUrl": "http://www.youtube.com/channel/UCweTXlEfG-YkquIJeN7mqBg",
  10788.             "authorChannelId": {
  10789.               "value": "UCweTXlEfG-YkquIJeN7mqBg"
  10790.             },
  10791.             "canRate": true,
  10792.             "viewerRating": "none",
  10793.             "likeCount": 0,
  10794.             "publishedAt": "2011-10-01T22:05:54Z",
  10795.             "updatedAt": "2011-10-01T22:05:54Z"
  10796.           }
  10797.         },
  10798.         "canReply": true,
  10799.         "totalReplyCount": 0,
  10800.         "isPublic": true
  10801.       }
  10802.     },
  10803.     {
  10804.       "kind": "youtube#commentThread",
  10805.       "etag": "tPPADisOAH1dQx6KVcj3wIbHjNY",
  10806.       "id": "UgxA33rWAhU4xGD66aN4AaABAg",
  10807.       "snippet": {
  10808.         "videoId": "atnSTtiWU5E",
  10809.         "topLevelComment": {
  10810.           "kind": "youtube#comment",
  10811.           "etag": "PYrBxvKim6N6zbedEIM8mE2ItS8",
  10812.           "id": "UgxA33rWAhU4xGD66aN4AaABAg",
  10813.           "snippet": {
  10814.             "videoId": "atnSTtiWU5E",
  10815.             "textDisplay": "@stupidguyx And everyone would dress up as human versions of their favorite pony...",
  10816.             "textOriginal": "@stupidguyx And everyone would dress up as human versions of their favorite pony...",
  10817.             "authorDisplayName": "Griffin the griffin",
  10818.             "authorChannelUrl": "http://www.youtube.com/channel/UC-m8hIl6OrjHr3Ooanj0V9g",
  10819.             "authorChannelId": {
  10820.               "value": "UC-m8hIl6OrjHr3Ooanj0V9g"
  10821.             },
  10822.             "canRate": true,
  10823.             "viewerRating": "none",
  10824.             "likeCount": 0,
  10825.             "publishedAt": "2011-09-30T23:50:49Z",
  10826.             "updatedAt": "2011-09-30T23:50:49Z"
  10827.           }
  10828.         },
  10829.         "canReply": true,
  10830.         "totalReplyCount": 0,
  10831.         "isPublic": true
  10832.       }
  10833.     },
  10834.     {
  10835.       "kind": "youtube#commentThread",
  10836.       "etag": "WiGMlLUrLOd-GAWX1pWY-U4TxZU",
  10837.       "id": "Ugzs2Hlt3kFqifRyeiZ4AaABAg",
  10838.       "snippet": {
  10839.         "videoId": "atnSTtiWU5E",
  10840.         "topLevelComment": {
  10841.           "kind": "youtube#comment",
  10842.           "etag": "n51vTdQYNzfny9qy5Ujb1tBygcg",
  10843.           "id": "Ugzs2Hlt3kFqifRyeiZ4AaABAg",
  10844.           "snippet": {
  10845.             "videoId": "atnSTtiWU5E",
  10846.             "textDisplay": "I'd play this in one of my parties if I was cool enough to throw parties.",
  10847.             "textOriginal": "I'd play this in one of my parties if I was cool enough to throw parties.",
  10848.             "authorDisplayName": "Corporate Serf",
  10849.             "authorChannelUrl": "http://www.youtube.com/channel/UCNM0bzZ8l4_7JgvBDQqhuuw",
  10850.             "authorChannelId": {
  10851.               "value": "UCNM0bzZ8l4_7JgvBDQqhuuw"
  10852.             },
  10853.             "canRate": true,
  10854.             "viewerRating": "none",
  10855.             "likeCount": 0,
  10856.             "publishedAt": "2011-09-30T22:09:54Z",
  10857.             "updatedAt": "2011-09-30T22:09:54Z"
  10858.           }
  10859.         },
  10860.         "canReply": true,
  10861.         "totalReplyCount": 1,
  10862.         "isPublic": true
  10863.       },
  10864.       "replies": {
  10865.         "comments": [
  10866.           {
  10867.             "kind": "youtube#comment",
  10868.             "etag": "cbFtT6f39bOiYNpqZhFaFErl9BI",
  10869.             "id": "Ugzs2Hlt3kFqifRyeiZ4AaABAg.8GbtNftrrEn92nJ-DgN5Bf",
  10870.             "snippet": {
  10871.               "videoId": "atnSTtiWU5E",
  10872.               "textDisplay": "Pinkie Pie can help you with that. ;)",
  10873.               "textOriginal": "Pinkie Pie can help you with that. ;)",
  10874.               "parentId": "Ugzs2Hlt3kFqifRyeiZ4AaABAg",
  10875.               "authorDisplayName": "StarForce97",
  10876.               "authorChannelUrl": "http://www.youtube.com/channel/UCh8_1ZwKYvDfXNhg0kN-M2g",
  10877.               "authorChannelId": {
  10878.                 "value": "UCh8_1ZwKYvDfXNhg0kN-M2g"
  10879.               },
  10880.               "canRate": true,
  10881.               "viewerRating": "none",
  10882.               "likeCount": 1,
  10883.               "publishedAt": "2019-12-21T06:48:41Z",
  10884.               "updatedAt": "2019-12-21T06:48:41Z"
  10885.             }
  10886.           }
  10887.         ]
  10888.       }
  10889.     },
  10890.     {
  10891.       "kind": "youtube#commentThread",
  10892.       "etag": "6bC58ZNLhhOcfsEw9YEzdBhS4h4",
  10893.       "id": "UgzcRku9jxU3LwhVTvh4AaABAg",
  10894.       "snippet": {
  10895.         "videoId": "atnSTtiWU5E",
  10896.         "topLevelComment": {
  10897.           "kind": "youtube#comment",
  10898.           "etag": "QkOEbjGjlXCIegFUfJ9QUVBXmUU",
  10899.           "id": "UgzcRku9jxU3LwhVTvh4AaABAg",
  10900.           "snippet": {
  10901.             "videoId": "atnSTtiWU5E",
  10902.             "textDisplay": "@RangoeRage \n\nEnjoy \n\nyoutube.com/watch?v=ksM1qB0wSfo&list=LL7WEFZ1L5vespNGzv6mWwNA&index=9\n\nthe lunar republic is waiting....",
  10903.             "textOriginal": "@RangoeRage \n\nEnjoy \n\nyoutube.com/watch?v=ksM1qB0wSfo&list=LL7WEFZ1L5vespNGzv6mWwNA&index=9\n\nthe lunar republic is waiting....",
  10904.             "authorDisplayName": "Stiggandr1",
  10905.             "authorChannelUrl": "http://www.youtube.com/channel/UC7WEFZ1L5vespNGzv6mWwNA",
  10906.             "authorChannelId": {
  10907.               "value": "UC7WEFZ1L5vespNGzv6mWwNA"
  10908.             },
  10909.             "canRate": true,
  10910.             "viewerRating": "none",
  10911.             "likeCount": 0,
  10912.             "publishedAt": "2011-09-29T05:37:53Z",
  10913.             "updatedAt": "2011-09-29T05:37:53Z"
  10914.           }
  10915.         },
  10916.         "canReply": true,
  10917.         "totalReplyCount": 0,
  10918.         "isPublic": true
  10919.       }
  10920.     },
  10921.     {
  10922.       "kind": "youtube#commentThread",
  10923.       "etag": "K9uB2e7Lf5iyxaJhuFqQH2bT3x4",
  10924.       "id": "UgzK8-7e8E9XRBEl2KF4AaABAg",
  10925.       "snippet": {
  10926.         "videoId": "atnSTtiWU5E",
  10927.         "topLevelComment": {
  10928.           "kind": "youtube#comment",
  10929.           "etag": "jJm3tDLHzN9uNkcDD1J4eDeEcoo",
  10930.           "id": "UgzK8-7e8E9XRBEl2KF4AaABAg",
  10931.           "snippet": {
  10932.             "videoId": "atnSTtiWU5E",
  10933.             "textDisplay": "@vulpix \n\n...Holy crap, you're right; that would be awesome!",
  10934.             "textOriginal": "@vulpix \n\n...Holy crap, you're right; that would be awesome!",
  10935.             "authorDisplayName": "JustAnotherGuy151",
  10936.             "authorChannelUrl": "http://www.youtube.com/channel/UCSx381QNRz3w5oZ_san1s2g",
  10937.             "authorChannelId": {
  10938.               "value": "UCSx381QNRz3w5oZ_san1s2g"
  10939.             },
  10940.             "canRate": true,
  10941.             "viewerRating": "none",
  10942.             "likeCount": 0,
  10943.             "publishedAt": "2011-09-28T17:00:19Z",
  10944.             "updatedAt": "2011-09-28T17:00:19Z"
  10945.           }
  10946.         },
  10947.         "canReply": true,
  10948.         "totalReplyCount": 0,
  10949.         "isPublic": true
  10950.       }
  10951.     },
  10952.     {
  10953.       "kind": "youtube#commentThread",
  10954.       "etag": "xZmNlF_5vZloPhwg-kb004_Xk0Y",
  10955.       "id": "Ugx8CFyonCnyiHhXb0F4AaABAg",
  10956.       "snippet": {
  10957.         "videoId": "atnSTtiWU5E",
  10958.         "topLevelComment": {
  10959.           "kind": "youtube#comment",
  10960.           "etag": "juwH2coHCYR0ZhlfUyV06685SRU",
  10961.           "id": "Ugx8CFyonCnyiHhXb0F4AaABAg",
  10962.           "snippet": {
  10963.             "videoId": "atnSTtiWU5E",
  10964.             "textDisplay": "@AquilaVolans50 that video was fucking terrifying... at least i didn't really watch it... i just skimmed it. the picture of applebloom is absolutely horrifying",
  10965.             "textOriginal": "@AquilaVolans50 that video was fucking terrifying... at least i didn't really watch it... i just skimmed it. the picture of applebloom is absolutely horrifying",
  10966.             "authorDisplayName": "Suitaloo",
  10967.             "authorChannelUrl": "http://www.youtube.com/channel/UCrqQ4i7-c-nXqXhtT6VpLbQ",
  10968.             "authorChannelId": {
  10969.               "value": "UCrqQ4i7-c-nXqXhtT6VpLbQ"
  10970.             },
  10971.             "canRate": true,
  10972.             "viewerRating": "none",
  10973.             "likeCount": 0,
  10974.             "publishedAt": "2011-09-28T00:42:26Z",
  10975.             "updatedAt": "2011-09-28T00:42:26Z"
  10976.           }
  10977.         },
  10978.         "canReply": true,
  10979.         "totalReplyCount": 0,
  10980.         "isPublic": true
  10981.       }
  10982.     },
  10983.     {
  10984.       "kind": "youtube#commentThread",
  10985.       "etag": "SspttFv-BLHIXqBYhprUXNuVUr8",
  10986.       "id": "UgwrGRTyJSiAm1iWslB4AaABAg",
  10987.       "snippet": {
  10988.         "videoId": "atnSTtiWU5E",
  10989.         "topLevelComment": {
  10990.           "kind": "youtube#comment",
  10991.           "etag": "2rvM1MJoyDwd418NwtbKQ_VcNqE",
  10992.           "id": "UgwrGRTyJSiAm1iWslB4AaABAg",
  10993.           "snippet": {
  10994.             "videoId": "atnSTtiWU5E",
  10995.             "textDisplay": "i have this as my dispenser radio in tf2 XD",
  10996.             "textOriginal": "i have this as my dispenser radio in tf2 XD",
  10997.             "authorDisplayName": "Kazuki Will",
  10998.             "authorChannelUrl": "http://www.youtube.com/channel/UCe498KzWoI02ji_5wdoO2Ng",
  10999.             "authorChannelId": {
  11000.               "value": "UCe498KzWoI02ji_5wdoO2Ng"
  11001.             },
  11002.             "canRate": true,
  11003.             "viewerRating": "none",
  11004.             "likeCount": 0,
  11005.             "publishedAt": "2011-09-27T19:24:53Z",
  11006.             "updatedAt": "2011-09-27T19:24:53Z"
  11007.           }
  11008.         },
  11009.         "canReply": true,
  11010.         "totalReplyCount": 0,
  11011.         "isPublic": true
  11012.       }
  11013.     },
  11014.     {
  11015.       "kind": "youtube#commentThread",
  11016.       "etag": "45aLNl51-IhvAyVske25MQ7n5KU",
  11017.       "id": "UgzWVNiwZqXLUlZyig94AaABAg",
  11018.       "snippet": {
  11019.         "videoId": "atnSTtiWU5E",
  11020.         "topLevelComment": {
  11021.           "kind": "youtube#comment",
  11022.           "etag": "9H2crV99wmZ0NdII5psc1pryUBk",
  11023.           "id": "UgzWVNiwZqXLUlZyig94AaABAg",
  11024.           "snippet": {
  11025.             "videoId": "atnSTtiWU5E",
  11026.             "textDisplay": "@RangoeRage (╯°□°)╯︵ ┻━┻*",
  11027.             "textOriginal": "@RangoeRage (╯°□°)╯︵ ┻━┻*",
  11028.             "authorDisplayName": "greseres",
  11029.             "authorChannelUrl": "http://www.youtube.com/channel/UCY7yOrnIXNhdKiZF2wUL6iQ",
  11030.             "authorChannelId": {
  11031.               "value": "UCY7yOrnIXNhdKiZF2wUL6iQ"
  11032.             },
  11033.             "canRate": true,
  11034.             "viewerRating": "none",
  11035.             "likeCount": 0,
  11036.             "publishedAt": "2011-09-26T22:39:02Z",
  11037.             "updatedAt": "2011-09-26T22:39:02Z"
  11038.           }
  11039.         },
  11040.         "canReply": true,
  11041.         "totalReplyCount": 0,
  11042.         "isPublic": true
  11043.       }
  11044.     },
  11045.     {
  11046.       "kind": "youtube#commentThread",
  11047.       "etag": "mDYDpduqcUw6ONuKNgXzuSBiClg",
  11048.       "id": "UgxkaUgF8mv3-gF2NAx4AaABAg",
  11049.       "snippet": {
  11050.         "videoId": "atnSTtiWU5E",
  11051.         "topLevelComment": {
  11052.           "kind": "youtube#comment",
  11053.           "etag": "VxuAGWtwZaSf3DVUoaAWPz7-h6w",
  11054.           "id": "UgxkaUgF8mv3-gF2NAx4AaABAg",
  11055.           "snippet": {
  11056.             "videoId": "atnSTtiWU5E",
  11057.             "textDisplay": "@RangoeRage Search "Luna game"",
  11058.             "textOriginal": "@RangoeRage Search \"Luna game\"",
  11059.             "authorDisplayName": "Eight distressing notes",
  11060.             "authorChannelUrl": "http://www.youtube.com/channel/UCvzfQos8D5GZprja1Egbpuw",
  11061.             "authorChannelId": {
  11062.               "value": "UCvzfQos8D5GZprja1Egbpuw"
  11063.             },
  11064.             "canRate": true,
  11065.             "viewerRating": "none",
  11066.             "likeCount": 0,
  11067.             "publishedAt": "2011-09-26T19:18:25Z",
  11068.             "updatedAt": "2011-09-26T19:18:25Z"
  11069.           }
  11070.         },
  11071.         "canReply": true,
  11072.         "totalReplyCount": 0,
  11073.         "isPublic": true
  11074.       }
  11075.     },
  11076.     {
  11077.       "kind": "youtube#commentThread",
  11078.       "etag": "URmcfYw5qG5LORwbGzfI08gz9PA",
  11079.       "id": "Ugwy-JD6gnjI3r3IIvt4AaABAg",
  11080.       "snippet": {
  11081.         "videoId": "atnSTtiWU5E",
  11082.         "topLevelComment": {
  11083.           "kind": "youtube#comment",
  11084.           "etag": "jbRnUK-z6xZrSaiyilqHdlPfhMA",
  11085.           "id": "Ugwy-JD6gnjI3r3IIvt4AaABAg",
  11086.           "snippet": {
  11087.             "videoId": "atnSTtiWU5E",
  11088.             "textDisplay": "@UkeFoxx He wasn't.",
  11089.             "textOriginal": "@UkeFoxx He wasn't.",
  11090.             "authorDisplayName": "Eight distressing notes",
  11091.             "authorChannelUrl": "http://www.youtube.com/channel/UCvzfQos8D5GZprja1Egbpuw",
  11092.             "authorChannelId": {
  11093.               "value": "UCvzfQos8D5GZprja1Egbpuw"
  11094.             },
  11095.             "canRate": true,
  11096.             "viewerRating": "none",
  11097.             "likeCount": 0,
  11098.             "publishedAt": "2011-09-26T19:18:12Z",
  11099.             "updatedAt": "2011-09-26T19:18:12Z"
  11100.           }
  11101.         },
  11102.         "canReply": true,
  11103.         "totalReplyCount": 0,
  11104.         "isPublic": true
  11105.       }
  11106.     },
  11107.     {
  11108.       "kind": "youtube#commentThread",
  11109.       "etag": "N4f-c__n3rUpKXVgRxq18BicDzs",
  11110.       "id": "Ugxoi7BV24qomWtzMad4AaABAg",
  11111.       "snippet": {
  11112.         "videoId": "atnSTtiWU5E",
  11113.         "topLevelComment": {
  11114.           "kind": "youtube#comment",
  11115.           "etag": "9OEOBRoJDV_NLBdSlukQlYB66tU",
  11116.           "id": "Ugxoi7BV24qomWtzMad4AaABAg",
  11117.           "snippet": {
  11118.             "videoId": "atnSTtiWU5E",
  11119.             "textDisplay": "@AquilaVolans50 oh dammit, why is your comment top rated? :(\nnow i just saw End is Neigh . . .",
  11120.             "textOriginal": "@AquilaVolans50 oh dammit, why is your comment top rated? :(\nnow i just saw End is Neigh . . .",
  11121.             "authorDisplayName": "UnrealReality",
  11122.             "authorChannelUrl": "http://www.youtube.com/channel/UCfo5LMjS0_z28UujTM3JCww",
  11123.             "authorChannelId": {
  11124.               "value": "UCfo5LMjS0_z28UujTM3JCww"
  11125.             },
  11126.             "canRate": true,
  11127.             "viewerRating": "none",
  11128.             "likeCount": 0,
  11129.             "publishedAt": "2011-09-24T06:16:53Z",
  11130.             "updatedAt": "2011-09-24T06:16:53Z"
  11131.           }
  11132.         },
  11133.         "canReply": true,
  11134.         "totalReplyCount": 0,
  11135.         "isPublic": true
  11136.       }
  11137.     },
  11138.     {
  11139.       "kind": "youtube#commentThread",
  11140.       "etag": "qjg5DKSam4EHrHxyxkGdWo3Z-cI",
  11141.       "id": "UgyvBZQiwqYz5j9YFkV4AaABAg",
  11142.       "snippet": {
  11143.         "videoId": "atnSTtiWU5E",
  11144.         "topLevelComment": {
  11145.           "kind": "youtube#comment",
  11146.           "etag": "lY-r4iIVGhrVACiQVubS1srgpiI",
  11147.           "id": "UgyvBZQiwqYz5j9YFkV4AaABAg",
  11148.           "snippet": {
  11149.             "videoId": "atnSTtiWU5E",
  11150.             "textDisplay": "Whenever I listen to Eurobeat, the first thing that pops in my head is Initial D.  Since this is SPB (Super Ponybeat) I imagine Takumi racing Rainbow Dash on some mountain road.  Lolololololol!",
  11151.             "textOriginal": "Whenever I listen to Eurobeat, the first thing that pops in my head is Initial D.  Since this is SPB (Super Ponybeat) I imagine Takumi racing Rainbow Dash on some mountain road.  Lolololololol!",
  11152.             "authorDisplayName": "Eldorritos",
  11153.             "authorChannelUrl": "http://www.youtube.com/channel/UCVzhij3h-XZyVI6__oI9Ovw",
  11154.             "authorChannelId": {
  11155.               "value": "UCVzhij3h-XZyVI6__oI9Ovw"
  11156.             },
  11157.             "canRate": true,
  11158.             "viewerRating": "none",
  11159.             "likeCount": 0,
  11160.             "publishedAt": "2011-09-19T10:29:31Z",
  11161.             "updatedAt": "2011-09-19T10:29:31Z"
  11162.           }
  11163.         },
  11164.         "canReply": true,
  11165.         "totalReplyCount": 0,
  11166.         "isPublic": true
  11167.       }
  11168.     },
  11169.     {
  11170.       "kind": "youtube#commentThread",
  11171.       "etag": "wnuj7jUTrBVmYu91meNHjv3ILzo",
  11172.       "id": "UgxutNocxTf4YhbgF154AaABAg",
  11173.       "snippet": {
  11174.         "videoId": "atnSTtiWU5E",
  11175.         "topLevelComment": {
  11176.           "kind": "youtube#comment",
  11177.           "etag": "SEc4DCaVOprFZQRe8_Ts700s26k",
  11178.           "id": "UgxutNocxTf4YhbgF154AaABAg",
  11179.           "snippet": {
  11180.             "videoId": "atnSTtiWU5E",
  11181.             "textDisplay": "For something off of MLP:FiM, this is pretty good :D",
  11182.             "textOriginal": "For something off of MLP:FiM, this is pretty good :D",
  11183.             "authorDisplayName": "bluetiger6002",
  11184.             "authorChannelUrl": "http://www.youtube.com/channel/UCxb95vNANPHDuI5uqmK2uUA",
  11185.             "authorChannelId": {
  11186.               "value": "UCxb95vNANPHDuI5uqmK2uUA"
  11187.             },
  11188.             "canRate": true,
  11189.             "viewerRating": "none",
  11190.             "likeCount": 0,
  11191.             "publishedAt": "2011-09-18T20:04:07Z",
  11192.             "updatedAt": "2011-09-18T20:04:07Z"
  11193.           }
  11194.         },
  11195.         "canReply": true,
  11196.         "totalReplyCount": 0,
  11197.         "isPublic": true
  11198.       }
  11199.     },
  11200.     {
  11201.       "kind": "youtube#commentThread",
  11202.       "etag": "vnAQzzFCfK1cQoNpozl1XuG6eJw",
  11203.       "id": "Ugx0TJbSoYtL-kZiEyh4AaABAg",
  11204.       "snippet": {
  11205.         "videoId": "atnSTtiWU5E",
  11206.         "topLevelComment": {
  11207.           "kind": "youtube#comment",
  11208.           "etag": "jMNW5ryvDZvIpnZ-GM_e9KJtAJI",
  11209.           "id": "Ugx0TJbSoYtL-kZiEyh4AaABAg",
  11210.           "snippet": {
  11211.             "videoId": "atnSTtiWU5E",
  11212.             "textDisplay": "16 ppl didnt watch out",
  11213.             "textOriginal": "16 ppl didnt watch out",
  11214.             "authorDisplayName": "StrifeZack343",
  11215.             "authorChannelUrl": "http://www.youtube.com/channel/UCvxnDyWj7ZE8wdVG-iOHoSg",
  11216.             "authorChannelId": {
  11217.               "value": "UCvxnDyWj7ZE8wdVG-iOHoSg"
  11218.             },
  11219.             "canRate": true,
  11220.             "viewerRating": "none",
  11221.             "likeCount": 0,
  11222.             "publishedAt": "2011-09-15T17:19:21Z",
  11223.             "updatedAt": "2011-09-15T17:19:21Z"
  11224.           }
  11225.         },
  11226.         "canReply": true,
  11227.         "totalReplyCount": 0,
  11228.         "isPublic": true
  11229.       }
  11230.     },
  11231.     {
  11232.       "kind": "youtube#commentThread",
  11233.       "etag": "Cv400v2wKFeQXhyXyN3bTD36zBE",
  11234.       "id": "UgyurGbzJfRELweKTBF4AaABAg",
  11235.       "snippet": {
  11236.         "videoId": "atnSTtiWU5E",
  11237.         "topLevelComment": {
  11238.           "kind": "youtube#comment",
  11239.           "etag": "eo9MTknXdRCMPPbgiuoA5aJsOfQ",
  11240.           "id": "UgyurGbzJfRELweKTBF4AaABAg",
  11241.           "snippet": {
  11242.             "videoId": "atnSTtiWU5E",
  11243.             "textDisplay": "Hmm...seems like a good song *reaches 0:26* oh shi-! *downloads*",
  11244.             "textOriginal": "Hmm...seems like a good song *reaches 0:26* oh shi-! *downloads*",
  11245.             "authorDisplayName": "F20B10",
  11246.             "authorChannelUrl": "http://www.youtube.com/channel/UCJ7IUdYHJ3Z5X8guBq0C7Bw",
  11247.             "authorChannelId": {
  11248.               "value": "UCJ7IUdYHJ3Z5X8guBq0C7Bw"
  11249.             },
  11250.             "canRate": true,
  11251.             "viewerRating": "none",
  11252.             "likeCount": 0,
  11253.             "publishedAt": "2011-09-15T10:36:45Z",
  11254.             "updatedAt": "2011-09-15T10:36:45Z"
  11255.           }
  11256.         },
  11257.         "canReply": true,
  11258.         "totalReplyCount": 0,
  11259.         "isPublic": true
  11260.       }
  11261.     },
  11262.     {
  11263.       "kind": "youtube#commentThread",
  11264.       "etag": "I2uGfGv1NJhI3wlP59p4sYFZUzE",
  11265.       "id": "Ugzx7Y6O97eQNHLetvt4AaABAg",
  11266.       "snippet": {
  11267.         "videoId": "atnSTtiWU5E",
  11268.         "topLevelComment": {
  11269.           "kind": "youtube#comment",
  11270.           "etag": "kqBLHg2ZxSKHGEzg7y8DvRuX0Es",
  11271.           "id": "Ugzx7Y6O97eQNHLetvt4AaABAg",
  11272.           "snippet": {
  11273.             "videoId": "atnSTtiWU5E",
  11274.             "textDisplay": "@EpicZantetsuken \nlol I asked if he gets on youtube.com \nhe said yeah, I like to listen to Super Ponybeat on there",
  11275.             "textOriginal": "@EpicZantetsuken \nlol I asked if he gets on youtube.com \nhe said yeah, I like to listen to Super Ponybeat on there",
  11276.             "authorDisplayName": "hendrexrules",
  11277.             "authorChannelUrl": "http://www.youtube.com/channel/UCzDJ93HZe663Fuidz4xAHCQ",
  11278.             "authorChannelId": {
  11279.               "value": "UCzDJ93HZe663Fuidz4xAHCQ"
  11280.             },
  11281.             "canRate": true,
  11282.             "viewerRating": "none",
  11283.             "likeCount": 0,
  11284.             "publishedAt": "2011-09-13T15:30:24Z",
  11285.             "updatedAt": "2011-09-13T15:30:24Z"
  11286.           }
  11287.         },
  11288.         "canReply": true,
  11289.         "totalReplyCount": 0,
  11290.         "isPublic": true
  11291.       }
  11292.     },
  11293.     {
  11294.       "kind": "youtube#commentThread",
  11295.       "etag": "XCmtKmS2s3N-7acRt7UPejJotMY",
  11296.       "id": "UgwG1i0nHvuKO-vm4Lt4AaABAg",
  11297.       "snippet": {
  11298.         "videoId": "atnSTtiWU5E",
  11299.         "topLevelComment": {
  11300.           "kind": "youtube#comment",
  11301.           "etag": "LXT_I1Xd8gw4n8D17rc3tycUKD8",
  11302.           "id": "UgwG1i0nHvuKO-vm4Lt4AaABAg",
  11303.           "snippet": {
  11304.             "videoId": "atnSTtiWU5E",
  11305.             "textDisplay": "Luna game.",
  11306.             "textOriginal": "Luna game.",
  11307.             "authorDisplayName": "Eight distressing notes",
  11308.             "authorChannelUrl": "http://www.youtube.com/channel/UCvzfQos8D5GZprja1Egbpuw",
  11309.             "authorChannelId": {
  11310.               "value": "UCvzfQos8D5GZprja1Egbpuw"
  11311.             },
  11312.             "canRate": true,
  11313.             "viewerRating": "none",
  11314.             "likeCount": 0,
  11315.             "publishedAt": "2011-09-07T23:57:20Z",
  11316.             "updatedAt": "2011-09-07T23:57:20Z"
  11317.           }
  11318.         },
  11319.         "canReply": true,
  11320.         "totalReplyCount": 0,
  11321.         "isPublic": true
  11322.       }
  11323.     },
  11324.     {
  11325.       "kind": "youtube#commentThread",
  11326.       "etag": "MrWD-t7xmxEzFjNFj4dBsoTj7GQ",
  11327.       "id": "UgwFnyevE6clC0-6jmZ4AaABAg",
  11328.       "snippet": {
  11329.         "videoId": "atnSTtiWU5E",
  11330.         "topLevelComment": {
  11331.           "kind": "youtube#comment",
  11332.           "etag": "k1EKkcF4joVUZFp1yhxEnj1I0iE",
  11333.           "id": "UgwFnyevE6clC0-6jmZ4AaABAg",
  11334.           "snippet": {
  11335.             "videoId": "atnSTtiWU5E",
  11336.             "textDisplay": "Cleverbot sent me here, the fuuuuck?",
  11337.             "textOriginal": "Cleverbot sent me here, the fuuuuck?",
  11338.             "authorDisplayName": "hendrexrules",
  11339.             "authorChannelUrl": "http://www.youtube.com/channel/UCzDJ93HZe663Fuidz4xAHCQ",
  11340.             "authorChannelId": {
  11341.               "value": "UCzDJ93HZe663Fuidz4xAHCQ"
  11342.             },
  11343.             "canRate": true,
  11344.             "viewerRating": "none",
  11345.             "likeCount": 0,
  11346.             "publishedAt": "2011-09-06T19:48:22Z",
  11347.             "updatedAt": "2011-09-06T19:48:22Z"
  11348.           }
  11349.         },
  11350.         "canReply": true,
  11351.         "totalReplyCount": 0,
  11352.         "isPublic": true
  11353.       }
  11354.     },
  11355.     {
  11356.       "kind": "youtube#commentThread",
  11357.       "etag": "A5PNgPyUMkKUpJQ1fGkXX-yRnE4",
  11358.       "id": "Ugz7c_AlYyDbTK9w8ul4AaABAg",
  11359.       "snippet": {
  11360.         "videoId": "atnSTtiWU5E",
  11361.         "topLevelComment": {
  11362.           "kind": "youtube#comment",
  11363.           "etag": "cTLf21KYO4jnT_VXzzU2iI-wqD8",
  11364.           "id": "Ugz7c_AlYyDbTK9w8ul4AaABAg",
  11365.           "snippet": {
  11366.             "videoId": "atnSTtiWU5E",
  11367.             "textDisplay": "Awesome.",
  11368.             "textOriginal": "Awesome.",
  11369.             "authorDisplayName": "Edmar Fecler",
  11370.             "authorChannelUrl": "http://www.youtube.com/channel/UC0l_eZw_yuh4gzJKSuk8h9g",
  11371.             "authorChannelId": {
  11372.               "value": "UC0l_eZw_yuh4gzJKSuk8h9g"
  11373.             },
  11374.             "canRate": true,
  11375.             "viewerRating": "none",
  11376.             "likeCount": 0,
  11377.             "publishedAt": "2011-09-05T04:34:03Z",
  11378.             "updatedAt": "2011-09-05T04:34:03Z"
  11379.           }
  11380.         },
  11381.         "canReply": true,
  11382.         "totalReplyCount": 0,
  11383.         "isPublic": true
  11384.       }
  11385.     },
  11386.     {
  11387.       "kind": "youtube#commentThread",
  11388.       "etag": "r9E8jdgQY-OyT2eR857Y9wVAurQ",
  11389.       "id": "UgxuXmYdGOqu4rugn214AaABAg",
  11390.       "snippet": {
  11391.         "videoId": "atnSTtiWU5E",
  11392.         "topLevelComment": {
  11393.           "kind": "youtube#comment",
  11394.           "etag": "dLZ1I_u4UzdY8OlcvQvbkAcGhVU",
  11395.           "id": "UgxuXmYdGOqu4rugn214AaABAg",
  11396.           "snippet": {
  11397.             "videoId": "atnSTtiWU5E",
  11398.             "textDisplay": "A classic. ",
  11399.             "textOriginal": "A classic. ",
  11400.             "authorDisplayName": "MrDuncanBelfast",
  11401.             "authorChannelUrl": "http://www.youtube.com/channel/UCVJBVwnDfXDi14n7NbfeYjQ",
  11402.             "authorChannelId": {
  11403.               "value": "UCVJBVwnDfXDi14n7NbfeYjQ"
  11404.             },
  11405.             "canRate": true,
  11406.             "viewerRating": "none",
  11407.             "likeCount": 0,
  11408.             "publishedAt": "2011-09-04T21:12:24Z",
  11409.             "updatedAt": "2011-09-04T21:12:24Z"
  11410.           }
  11411.         },
  11412.         "canReply": true,
  11413.         "totalReplyCount": 0,
  11414.         "isPublic": true
  11415.       }
  11416.     },
  11417.     {
  11418.       "kind": "youtube#commentThread",
  11419.       "etag": "7i_MpBpk-GEcg-wMM8tHxWHmAQc",
  11420.       "id": "UgyUJJspaq8iwLoFQMt4AaABAg",
  11421.       "snippet": {
  11422.         "videoId": "atnSTtiWU5E",
  11423.         "topLevelComment": {
  11424.           "kind": "youtube#comment",
  11425.           "etag": "f6YzVKlscNAmDkmkd7X3TB8oZEE",
  11426.           "id": "UgyUJJspaq8iwLoFQMt4AaABAg",
  11427.           "snippet": {
  11428.             "videoId": "atnSTtiWU5E",
  11429.             "textDisplay": "@StrifeZack343 No. It's the artist's choice.",
  11430.             "textOriginal": "@StrifeZack343 No. It's the artist's choice.",
  11431.             "authorDisplayName": "fernozzle",
  11432.             "authorChannelUrl": "http://www.youtube.com/channel/UCJWyAcsOyl2_Ar7GVQV5SzA",
  11433.             "authorChannelId": {
  11434.               "value": "UCJWyAcsOyl2_Ar7GVQV5SzA"
  11435.             },
  11436.             "canRate": true,
  11437.             "viewerRating": "none",
  11438.             "likeCount": 0,
  11439.             "publishedAt": "2011-09-03T22:48:01Z",
  11440.             "updatedAt": "2011-09-03T22:48:01Z"
  11441.           }
  11442.         },
  11443.         "canReply": true,
  11444.         "totalReplyCount": 0,
  11445.         "isPublic": true
  11446.       }
  11447.     },
  11448.     {
  11449.       "kind": "youtube#commentThread",
  11450.       "etag": "WkoKShofdmhbfXyIBGhd3A-Q01I",
  11451.       "id": "UgyAbumiZCd8wERgWTZ4AaABAg",
  11452.       "snippet": {
  11453.         "videoId": "atnSTtiWU5E",
  11454.         "topLevelComment": {
  11455.           "kind": "youtube#comment",
  11456.           "etag": "7WRnYWbxzVKSMKOhwiwSXHIDsf8",
  11457.           "id": "UgyAbumiZCd8wERgWTZ4AaABAg",
  11458.           "snippet": {
  11459.             "videoId": "atnSTtiWU5E",
  11460.             "textDisplay": "@7677876 that's because Touhou's music is also awesome ;)",
  11461.             "textOriginal": "@7677876 that's because Touhou's music is also awesome ;)",
  11462.             "authorDisplayName": "Chara",
  11463.             "authorChannelUrl": "http://www.youtube.com/channel/UCCPfnufzSrm5FO_5THaZqJQ",
  11464.             "authorChannelId": {
  11465.               "value": "UCCPfnufzSrm5FO_5THaZqJQ"
  11466.             },
  11467.             "canRate": true,
  11468.             "viewerRating": "none",
  11469.             "likeCount": 0,
  11470.             "publishedAt": "2011-09-03T00:15:45Z",
  11471.             "updatedAt": "2011-09-03T00:15:45Z"
  11472.           }
  11473.         },
  11474.         "canReply": true,
  11475.         "totalReplyCount": 0,
  11476.         "isPublic": true
  11477.       }
  11478.     },
  11479.     {
  11480.       "kind": "youtube#commentThread",
  11481.       "etag": "gk4qUsxDBYvC7s9xmZqLAJFYzgU",
  11482.       "id": "UgzBa8hpC6Briissd3N4AaABAg",
  11483.       "snippet": {
  11484.         "videoId": "atnSTtiWU5E",
  11485.         "topLevelComment": {
  11486.           "kind": "youtube#comment",
  11487.           "etag": "gUvopop2FI8CPvRUm6Fzbzf7PtA",
  11488.           "id": "UgzBa8hpC6Briissd3N4AaABAg",
  11489.           "snippet": {
  11490.             "videoId": "atnSTtiWU5E",
  11491.             "textDisplay": "@IrradiatedRat which airing was it? I want to find the episode, but I don't want to sift through a month of others",
  11492.             "textOriginal": "@IrradiatedRat which airing was it? I want to find the episode, but I don't want to sift through a month of others",
  11493.             "authorDisplayName": "Chara",
  11494.             "authorChannelUrl": "http://www.youtube.com/channel/UCCPfnufzSrm5FO_5THaZqJQ",
  11495.             "authorChannelId": {
  11496.               "value": "UCCPfnufzSrm5FO_5THaZqJQ"
  11497.             },
  11498.             "canRate": true,
  11499.             "viewerRating": "none",
  11500.             "likeCount": 0,
  11501.             "publishedAt": "2011-09-03T00:14:53Z",
  11502.             "updatedAt": "2011-09-03T00:14:53Z"
  11503.           }
  11504.         },
  11505.         "canReply": true,
  11506.         "totalReplyCount": 0,
  11507.         "isPublic": true
  11508.       }
  11509.     },
  11510.     {
  11511.       "kind": "youtube#commentThread",
  11512.       "etag": "dgPVCXei8My4wbe9nwspW4RILMs",
  11513.       "id": "UgzFHG1zLfyzlgjO-UF4AaABAg",
  11514.       "snippet": {
  11515.         "videoId": "atnSTtiWU5E",
  11516.         "topLevelComment": {
  11517.           "kind": "youtube#comment",
  11518.           "etag": "uZn-wDQNsHIr6n_fWgQybAgK0HM",
  11519.           "id": "UgzFHG1zLfyzlgjO-UF4AaABAg",
  11520.           "snippet": {
  11521.             "videoId": "atnSTtiWU5E",
  11522.             "textDisplay": "they should definitely have this song if they have a mountain pass in the MLP Kart game",
  11523.             "textOriginal": "they should definitely have this song if they have a mountain pass in the MLP Kart game",
  11524.             "authorDisplayName": "canadin fodguy",
  11525.             "authorChannelUrl": "http://www.youtube.com/channel/UCelsc2qrBsz4BS48PQpAvwQ",
  11526.             "authorChannelId": {
  11527.               "value": "UCelsc2qrBsz4BS48PQpAvwQ"
  11528.             },
  11529.             "canRate": true,
  11530.             "viewerRating": "none",
  11531.             "likeCount": 0,
  11532.             "publishedAt": "2011-09-02T20:43:09Z",
  11533.             "updatedAt": "2011-09-02T20:43:09Z"
  11534.           }
  11535.         },
  11536.         "canReply": true,
  11537.         "totalReplyCount": 0,
  11538.         "isPublic": true
  11539.       }
  11540.     },
  11541.     {
  11542.       "kind": "youtube#commentThread",
  11543.       "etag": "MXsQVdaks3lYVsvN82dq6rBC9Ps",
  11544.       "id": "UgwaSsAYfEKYgQCiUJF4AaABAg",
  11545.       "snippet": {
  11546.         "videoId": "atnSTtiWU5E",
  11547.         "topLevelComment": {
  11548.           "kind": "youtube#comment",
  11549.           "etag": "SgGMbBrdssDwmzOAcT9W--_pA1A",
  11550.           "id": "UgwaSsAYfEKYgQCiUJF4AaABAg",
  11551.           "snippet": {
  11552.             "videoId": "atnSTtiWU5E",
  11553.             "textDisplay": "@StrifeZack343 No its not illegal",
  11554.             "textOriginal": "@StrifeZack343 No its not illegal",
  11555.             "authorDisplayName": "Frosty Cupcake",
  11556.             "authorChannelUrl": "http://www.youtube.com/channel/UCc-Mxo39daNplt8VqjZAI7Q",
  11557.             "authorChannelId": {
  11558.               "value": "UCc-Mxo39daNplt8VqjZAI7Q"
  11559.             },
  11560.             "canRate": true,
  11561.             "viewerRating": "none",
  11562.             "likeCount": 0,
  11563.             "publishedAt": "2011-09-02T19:12:49Z",
  11564.             "updatedAt": "2011-09-02T19:12:49Z"
  11565.           }
  11566.         },
  11567.         "canReply": true,
  11568.         "totalReplyCount": 0,
  11569.         "isPublic": true
  11570.       }
  11571.     },
  11572.     {
  11573.       "kind": "youtube#commentThread",
  11574.       "etag": "9c_mOYmacfJs7H-uSPUbEZSsoaI",
  11575.       "id": "UgwuU475EfvpT_00HXF4AaABAg",
  11576.       "snippet": {
  11577.         "videoId": "atnSTtiWU5E",
  11578.         "topLevelComment": {
  11579.           "kind": "youtube#comment",
  11580.           "etag": "9jJJ7k26iWZK4C01ydN5IxiykbM",
  11581.           "id": "UgwuU475EfvpT_00HXF4AaABAg",
  11582.           "snippet": {
  11583.             "videoId": "atnSTtiWU5E",
  11584.             "textDisplay": "The few times I DJ parties, I always make this my first song.",
  11585.             "textOriginal": "The few times I DJ parties, I always make this my first song.",
  11586.             "authorDisplayName": "NightmareSnake",
  11587.             "authorChannelUrl": "http://www.youtube.com/channel/UCzCR9SrQeUPyw814iPQwvvg",
  11588.             "authorChannelId": {
  11589.               "value": "UCzCR9SrQeUPyw814iPQwvvg"
  11590.             },
  11591.             "canRate": true,
  11592.             "viewerRating": "none",
  11593.             "likeCount": 1,
  11594.             "publishedAt": "2011-09-02T04:36:58Z",
  11595.             "updatedAt": "2011-09-02T04:36:58Z"
  11596.           }
  11597.         },
  11598.         "canReply": true,
  11599.         "totalReplyCount": 0,
  11600.         "isPublic": true
  11601.       }
  11602.     },
  11603.     {
  11604.       "kind": "youtube#commentThread",
  11605.       "etag": "B0nU9MUBl3Ow0g2nEez3RIKJkCE",
  11606.       "id": "UgwqvUxpbKpHcfakSNZ4AaABAg",
  11607.       "snippet": {
  11608.         "videoId": "atnSTtiWU5E",
  11609.         "topLevelComment": {
  11610.           "kind": "youtube#comment",
  11611.           "etag": "aaY3Ta4O9-Xrbyi6P0FUHZEJihU",
  11612.           "id": "UgwqvUxpbKpHcfakSNZ4AaABAg",
  11613.           "snippet": {
  11614.             "videoId": "atnSTtiWU5E",
  11615.             "textDisplay": "This sounds so reminiscent of Touhou's music ^-^",
  11616.             "textOriginal": "This sounds so reminiscent of Touhou's music ^-^",
  11617.             "authorDisplayName": "Kevlar",
  11618.             "authorChannelUrl": "http://www.youtube.com/channel/UCLtncIXkL27hBc2IxziMYxw",
  11619.             "authorChannelId": {
  11620.               "value": "UCLtncIXkL27hBc2IxziMYxw"
  11621.             },
  11622.             "canRate": true,
  11623.             "viewerRating": "none",
  11624.             "likeCount": 5,
  11625.             "publishedAt": "2011-09-01T21:56:07Z",
  11626.             "updatedAt": "2011-09-01T21:56:07Z"
  11627.           }
  11628.         },
  11629.         "canReply": true,
  11630.         "totalReplyCount": 1,
  11631.         "isPublic": true
  11632.       },
  11633.       "replies": {
  11634.         "comments": [
  11635.           {
  11636.             "kind": "youtube#comment",
  11637.             "etag": "6sv9vBDDZLhD7iEVT2UFTPt0Bzc",
  11638.             "id": "UgwqvUxpbKpHcfakSNZ4AaABAg.8Gbri0qfG9Y973Tm6pfNbN",
  11639.             "snippet": {
  11640.               "videoId": "atnSTtiWU5E",
  11641.               "textDisplay": "8 years later... i guess some1 will read it well composer actually did eurobeat versions of touhou music like time will tell or rain dance",
  11642.               "textOriginal": "8 years later... i guess some1 will read it well composer actually did eurobeat versions of touhou music like time will tell or rain dance",
  11643.               "parentId": "UgwqvUxpbKpHcfakSNZ4AaABAg",
  11644.               "authorDisplayName": "Archikaro Nerock",
  11645.               "authorChannelUrl": "http://www.youtube.com/channel/UCSG7YjekCLjdvSunT_s3ZoA",
  11646.               "authorChannelId": {
  11647.                 "value": "UCSG7YjekCLjdvSunT_s3ZoA"
  11648.               },
  11649.               "canRate": true,
  11650.               "viewerRating": "none",
  11651.               "likeCount": 1,
  11652.               "publishedAt": "2020-04-05T08:55:32Z",
  11653.               "updatedAt": "2020-04-05T08:55:32Z"
  11654.             }
  11655.           }
  11656.         ]
  11657.       }
  11658.     },
  11659.     {
  11660.       "kind": "youtube#commentThread",
  11661.       "etag": "7IGxrfznA0TZ6cwfkEz2XsJU0o8",
  11662.       "id": "Ugyc5uNNmI9yakc5tNZ4AaABAg",
  11663.       "snippet": {
  11664.         "videoId": "atnSTtiWU5E",
  11665.         "topLevelComment": {
  11666.           "kind": "youtube#comment",
  11667.           "etag": "sTelT7VK4dVytOKztJLcaSEKdzA",
  11668.           "id": "Ugyc5uNNmI9yakc5tNZ4AaABAg",
  11669.           "snippet": {
  11670.             "videoId": "atnSTtiWU5E",
  11671.             "textDisplay": "hey... when i wanted to download it said "name your price" i typed 0$ then i completed the download is that illegal?\n\nim sorry if it is :(",
  11672.             "textOriginal": "hey... when i wanted to download it said \"name your price\" i typed 0$ then i completed the download is that illegal?\n\nim sorry if it is :(",
  11673.             "authorDisplayName": "StrifeZack343",
  11674.             "authorChannelUrl": "http://www.youtube.com/channel/UCvxnDyWj7ZE8wdVG-iOHoSg",
  11675.             "authorChannelId": {
  11676.               "value": "UCvxnDyWj7ZE8wdVG-iOHoSg"
  11677.             },
  11678.             "canRate": true,
  11679.             "viewerRating": "none",
  11680.             "likeCount": 0,
  11681.             "publishedAt": "2011-09-01T12:05:09Z",
  11682.             "updatedAt": "2011-09-01T12:05:09Z"
  11683.           }
  11684.         },
  11685.         "canReply": true,
  11686.         "totalReplyCount": 0,
  11687.         "isPublic": true
  11688.       }
  11689.     },
  11690.     {
  11691.       "kind": "youtube#commentThread",
  11692.       "etag": "DU4pg6QJ4IwAOj7L3ZRlq71SpKI",
  11693.       "id": "Ugx2FZIMIu_zt0GwjtR4AaABAg",
  11694.       "snippet": {
  11695.         "videoId": "atnSTtiWU5E",
  11696.         "topLevelComment": {
  11697.           "kind": "youtube#comment",
  11698.           "etag": "1lled80DSqzWC7I-ZEdOhV6Du5Q",
  11699.           "id": "Ugx2FZIMIu_zt0GwjtR4AaABAg",
  11700.           "snippet": {
  11701.             "videoId": "atnSTtiWU5E",
  11702.             "textDisplay": "@lcaycho haha u like initial d too ;p ",
  11703.             "textOriginal": "@lcaycho haha u like initial d too ;p ",
  11704.             "authorDisplayName": "StrifeZack343",
  11705.             "authorChannelUrl": "http://www.youtube.com/channel/UCvxnDyWj7ZE8wdVG-iOHoSg",
  11706.             "authorChannelId": {
  11707.               "value": "UCvxnDyWj7ZE8wdVG-iOHoSg"
  11708.             },
  11709.             "canRate": true,
  11710.             "viewerRating": "none",
  11711.             "likeCount": 0,
  11712.             "publishedAt": "2011-09-01T08:08:50Z",
  11713.             "updatedAt": "2011-09-01T08:08:50Z"
  11714.           }
  11715.         },
  11716.         "canReply": true,
  11717.         "totalReplyCount": 0,
  11718.         "isPublic": true
  11719.       }
  11720.     },
  11721.     {
  11722.       "kind": "youtube#commentThread",
  11723.       "etag": "2_TZVveh01W0eoSSwij1gV_vOiI",
  11724.       "id": "UgxoS-wZTwnaISFNlaN4AaABAg",
  11725.       "snippet": {
  11726.         "videoId": "atnSTtiWU5E",
  11727.         "topLevelComment": {
  11728.           "kind": "youtube#comment",
  11729.           "etag": "peMljIrodWwg7hrZcpTfRvoPdcw",
  11730.           "id": "UgxoS-wZTwnaISFNlaN4AaABAg",
  11731.           "snippet": {
  11732.             "videoId": "atnSTtiWU5E",
  11733.             "textDisplay": "Initial P !!! (Pony hahahaha) ",
  11734.             "textOriginal": "Initial P !!! (Pony hahahaha) ",
  11735.             "authorDisplayName": "lcaycho",
  11736.             "authorChannelUrl": "http://www.youtube.com/channel/UCVcjWG_JPba_gNANxH_qpiQ",
  11737.             "authorChannelId": {
  11738.               "value": "UCVcjWG_JPba_gNANxH_qpiQ"
  11739.             },
  11740.             "canRate": true,
  11741.             "viewerRating": "none",
  11742.             "likeCount": 0,
  11743.             "publishedAt": "2011-09-01T06:56:14Z",
  11744.             "updatedAt": "2011-09-01T06:56:14Z"
  11745.           }
  11746.         },
  11747.         "canReply": true,
  11748.         "totalReplyCount": 0,
  11749.         "isPublic": true
  11750.       }
  11751.     },
  11752.     {
  11753.       "kind": "youtube#commentThread",
  11754.       "etag": "X_t8vguagCv5K7msafHeGkHvCAw",
  11755.       "id": "Ugzv1bZXrjK1ToT7Bmt4AaABAg",
  11756.       "snippet": {
  11757.         "videoId": "atnSTtiWU5E",
  11758.         "topLevelComment": {
  11759.           "kind": "youtube#comment",
  11760.           "etag": "KsiZm8aY6jkqedBeQTbXet1f2y0",
  11761.           "id": "Ugzv1bZXrjK1ToT7Bmt4AaABAg",
  11762.           "snippet": {
  11763.             "videoId": "atnSTtiWU5E",
  11764.             "textDisplay": "Man flutter shys so pretty she's my nol pony",
  11765.             "textOriginal": "Man flutter shys so pretty she's my nol pony",
  11766.             "authorDisplayName": "steven nelson",
  11767.             "authorChannelUrl": "http://www.youtube.com/channel/UCXXPqbnBvWpLta0xIj2uo8g",
  11768.             "authorChannelId": {
  11769.               "value": "UCXXPqbnBvWpLta0xIj2uo8g"
  11770.             },
  11771.             "canRate": true,
  11772.             "viewerRating": "none",
  11773.             "likeCount": 0,
  11774.             "publishedAt": "2011-08-31T20:01:00Z",
  11775.             "updatedAt": "2011-08-31T20:01:00Z"
  11776.           }
  11777.         },
  11778.         "canReply": true,
  11779.         "totalReplyCount": 0,
  11780.         "isPublic": true
  11781.       }
  11782.     },
  11783.     {
  11784.       "kind": "youtube#commentThread",
  11785.       "etag": "LK6uMvC7IqWm2ECrKU8_KQThAtU",
  11786.       "id": "Ugx6vJ14IhXUb6pEAgJ4AaABAg",
  11787.       "snippet": {
  11788.         "videoId": "atnSTtiWU5E",
  11789.         "topLevelComment": {
  11790.           "kind": "youtube#comment",
  11791.           "etag": "4VLj4qTrtGCjZPQeZ_CycdjtKuo",
  11792.           "id": "Ugx6vJ14IhXUb6pEAgJ4AaABAg",
  11793.           "snippet": {
  11794.             "videoId": "atnSTtiWU5E",
  11795.             "textDisplay": "Not pictured: psychotic Applebloom",
  11796.             "textOriginal": "Not pictured: psychotic Applebloom",
  11797.             "authorDisplayName": "InnocentDarkside",
  11798.             "authorChannelUrl": "http://www.youtube.com/channel/UCtY5RbM_Pv2o6qIh03OKUNA",
  11799.             "authorChannelId": {
  11800.               "value": "UCtY5RbM_Pv2o6qIh03OKUNA"
  11801.             },
  11802.             "canRate": true,
  11803.             "viewerRating": "none",
  11804.             "likeCount": 0,
  11805.             "publishedAt": "2011-08-31T16:56:52Z",
  11806.             "updatedAt": "2011-08-31T16:56:52Z"
  11807.           }
  11808.         },
  11809.         "canReply": true,
  11810.         "totalReplyCount": 0,
  11811.         "isPublic": true
  11812.       }
  11813.     },
  11814.     {
  11815.       "kind": "youtube#commentThread",
  11816.       "etag": "_mpn3e8gjc54EaV-NL6sQ8m79NI",
  11817.       "id": "UgyrlSGlFb8uWazUwtZ4AaABAg",
  11818.       "snippet": {
  11819.         "videoId": "atnSTtiWU5E",
  11820.         "topLevelComment": {
  11821.           "kind": "youtube#comment",
  11822.           "etag": "Yai6bKOYNoQtquROLgstWT3uyxo",
  11823.           "id": "UgyrlSGlFb8uWazUwtZ4AaABAg",
  11824.           "snippet": {
  11825.             "videoId": "atnSTtiWU5E",
  11826.             "textDisplay": "@qwertathon \nWELCOME TO THE HERD... sorta.",
  11827.             "textOriginal": "@qwertathon \nWELCOME TO THE HERD... sorta.",
  11828.             "authorDisplayName": "lucarioownsbrawl",
  11829.             "authorChannelUrl": "http://www.youtube.com/channel/UCIl76KFuTYybam0M7bupf_w",
  11830.             "authorChannelId": {
  11831.               "value": "UCIl76KFuTYybam0M7bupf_w"
  11832.             },
  11833.             "canRate": true,
  11834.             "viewerRating": "none",
  11835.             "likeCount": 0,
  11836.             "publishedAt": "2011-08-27T08:00:38Z",
  11837.             "updatedAt": "2011-08-27T08:00:38Z"
  11838.           }
  11839.         },
  11840.         "canReply": true,
  11841.         "totalReplyCount": 0,
  11842.         "isPublic": true
  11843.       }
  11844.     },
  11845.     {
  11846.       "kind": "youtube#commentThread",
  11847.       "etag": "u6ERmyMBrY6zDIdPAHXnRjTVzSI",
  11848.       "id": "UgwodQpDwkQcr-9bTiF4AaABAg",
  11849.       "snippet": {
  11850.         "videoId": "atnSTtiWU5E",
  11851.         "topLevelComment": {
  11852.           "kind": "youtube#comment",
  11853.           "etag": "a_-3CN8bXMpq3TxayUH4VYNtox0",
  11854.           "id": "UgwodQpDwkQcr-9bTiF4AaABAg",
  11855.           "snippet": {
  11856.             "videoId": "atnSTtiWU5E",
  11857.             "textDisplay": "@qwertathon just watch the two first episodes atleast? :D",
  11858.             "textOriginal": "@qwertathon just watch the two first episodes atleast? :D",
  11859.             "authorDisplayName": "Henrik",
  11860.             "authorChannelUrl": "http://www.youtube.com/channel/UCxP8s_pLTOLilgQbxkoG2qg",
  11861.             "authorChannelId": {
  11862.               "value": "UCxP8s_pLTOLilgQbxkoG2qg"
  11863.             },
  11864.             "canRate": true,
  11865.             "viewerRating": "none",
  11866.             "likeCount": 0,
  11867.             "publishedAt": "2011-08-25T21:28:18Z",
  11868.             "updatedAt": "2011-08-25T21:28:18Z"
  11869.           }
  11870.         },
  11871.         "canReply": true,
  11872.         "totalReplyCount": 0,
  11873.         "isPublic": true
  11874.       }
  11875.     },
  11876.     {
  11877.       "kind": "youtube#commentThread",
  11878.       "etag": "B1sYd4jT0M5yGfHRcFCa6X9Cj4I",
  11879.       "id": "UgwrD6bbmnZch0noFnt4AaABAg",
  11880.       "snippet": {
  11881.         "videoId": "atnSTtiWU5E",
  11882.         "topLevelComment": {
  11883.           "kind": "youtube#comment",
  11884.           "etag": "Yf08TPfpdxMuEdqW9aMpESa6TTM",
  11885.           "id": "UgwrD6bbmnZch0noFnt4AaABAg",
  11886.           "snippet": {
  11887.             "videoId": "atnSTtiWU5E",
  11888.             "textDisplay": "Never watched MLP, never really plan on it.  BUT THIS IS AWESOME.",
  11889.             "textOriginal": "Never watched MLP, never really plan on it.  BUT THIS IS AWESOME.",
  11890.             "authorDisplayName": "SomeMugger",
  11891.             "authorChannelUrl": "http://www.youtube.com/channel/UClDH1pKowUQMQB6ndTxjuYQ",
  11892.             "authorChannelId": {
  11893.               "value": "UClDH1pKowUQMQB6ndTxjuYQ"
  11894.             },
  11895.             "canRate": true,
  11896.             "viewerRating": "none",
  11897.             "likeCount": 1,
  11898.             "publishedAt": "2011-08-25T08:41:28Z",
  11899.             "updatedAt": "2011-08-25T08:41:28Z"
  11900.           }
  11901.         },
  11902.         "canReply": true,
  11903.         "totalReplyCount": 0,
  11904.         "isPublic": true
  11905.       }
  11906.     },
  11907.     {
  11908.       "kind": "youtube#commentThread",
  11909.       "etag": "Hl6rZ9MZW4ZczDY4f5psaTIxJME",
  11910.       "id": "UgzH9J_jImpVI_wGr6B4AaABAg",
  11911.       "snippet": {
  11912.         "videoId": "atnSTtiWU5E",
  11913.         "topLevelComment": {
  11914.           "kind": "youtube#comment",
  11915.           "etag": "quR3R2mkTEPl_Scq4rWCD1KASNA",
  11916.           "id": "UgzH9J_jImpVI_wGr6B4AaABAg",
  11917.           "snippet": {
  11918.             "videoId": "atnSTtiWU5E",
  11919.             "textDisplay": "0:15\nOh god...",
  11920.             "textOriginal": "0:15\nOh god...",
  11921.             "authorDisplayName": "Meshmeal1",
  11922.             "authorChannelUrl": "http://www.youtube.com/channel/UCYWt5vsd1CbaIKyVVnEFJPw",
  11923.             "authorChannelId": {
  11924.               "value": "UCYWt5vsd1CbaIKyVVnEFJPw"
  11925.             },
  11926.             "canRate": true,
  11927.             "viewerRating": "none",
  11928.             "likeCount": 0,
  11929.             "publishedAt": "2011-08-25T06:00:04Z",
  11930.             "updatedAt": "2011-08-25T06:00:04Z"
  11931.           }
  11932.         },
  11933.         "canReply": true,
  11934.         "totalReplyCount": 0,
  11935.         "isPublic": true
  11936.       }
  11937.     },
  11938.     {
  11939.       "kind": "youtube#commentThread",
  11940.       "etag": "75KdxsOrkXThQ5c4qM1I7mEjKdE",
  11941.       "id": "UgwuO5jf7HiXivefGiJ4AaABAg",
  11942.       "snippet": {
  11943.         "videoId": "atnSTtiWU5E",
  11944.         "topLevelComment": {
  11945.           "kind": "youtube#comment",
  11946.           "etag": "uHtdwC_I-gnfbvYoO7YF_SUhLGs",
  11947.           "id": "UgwuO5jf7HiXivefGiJ4AaABAg",
  11948.           "snippet": {
  11949.             "videoId": "atnSTtiWU5E",
  11950.             "textDisplay": "I don't know why but i can see myself driving an AE86 down Akina while listening to this song. ",
  11951.             "textOriginal": "I don't know why but i can see myself driving an AE86 down Akina while listening to this song. ",
  11952.             "authorDisplayName": "Alicanto Kin",
  11953.             "authorChannelUrl": "http://www.youtube.com/channel/UCVcZSpgdgQiiaiYjSsQ4Hjg",
  11954.             "authorChannelId": {
  11955.               "value": "UCVcZSpgdgQiiaiYjSsQ4Hjg"
  11956.             },
  11957.             "canRate": true,
  11958.             "viewerRating": "none",
  11959.             "likeCount": 0,
  11960.             "publishedAt": "2011-08-23T12:51:46Z",
  11961.             "updatedAt": "2011-08-23T12:51:46Z"
  11962.           }
  11963.         },
  11964.         "canReply": true,
  11965.         "totalReplyCount": 0,
  11966.         "isPublic": true
  11967.       }
  11968.     },
  11969.     {
  11970.       "kind": "youtube#commentThread",
  11971.       "etag": "Oa341b8bVMP82ZTXW6XkndLyFA4",
  11972.       "id": "UgzSSLle-5v18VluQV54AaABAg",
  11973.       "snippet": {
  11974.         "videoId": "atnSTtiWU5E",
  11975.         "topLevelComment": {
  11976.           "kind": "youtube#comment",
  11977.           "etag": "aGm-LJEnSFcRBDbvyvYKpqfNIys",
  11978.           "id": "UgzSSLle-5v18VluQV54AaABAg",
  11979.           "snippet": {
  11980.             "videoId": "atnSTtiWU5E",
  11981.             "textDisplay": "@AquilaVolans50 What is that?",
  11982.             "textOriginal": "@AquilaVolans50 What is that?",
  11983.             "authorDisplayName": "Dap",
  11984.             "authorChannelUrl": "http://www.youtube.com/channel/UChV5tiKqaOGeTAI8qzNzHtw",
  11985.             "authorChannelId": {
  11986.               "value": "UChV5tiKqaOGeTAI8qzNzHtw"
  11987.             },
  11988.             "canRate": true,
  11989.             "viewerRating": "none",
  11990.             "likeCount": 0,
  11991.             "publishedAt": "2011-08-22T06:55:37Z",
  11992.             "updatedAt": "2011-08-22T06:55:37Z"
  11993.           }
  11994.         },
  11995.         "canReply": true,
  11996.         "totalReplyCount": 0,
  11997.         "isPublic": true
  11998.       }
  11999.     },
  12000.     {
  12001.       "kind": "youtube#commentThread",
  12002.       "etag": "dBSshwzAynaAliB7P3vgb_uGmO0",
  12003.       "id": "UgwEcyAUJtPpKsV64Mx4AaABAg",
  12004.       "snippet": {
  12005.         "videoId": "atnSTtiWU5E",
  12006.         "topLevelComment": {
  12007.           "kind": "youtube#comment",
  12008.           "etag": "aPlPSAlW6hNwzVt-CsIxTm0Ombk",
  12009.           "id": "UgwEcyAUJtPpKsV64Mx4AaABAg",
  12010.           "snippet": {
  12011.             "videoId": "atnSTtiWU5E",
  12012.             "textDisplay": "THUMBS UP FOR LYRICS!!!:\nShe's an evil enchantress\nAnd she does evil dances\nAnd if you look deep in her eyes\nShe will put you in trances\nThen what will she do?\nShe'll mix up an evil brew\nAnd she'll gobble you up\nIn a big tasty stew\nSo...watch out.",
  12013.             "textOriginal": "THUMBS UP FOR LYRICS!!!:\nShe's an evil enchantress\nAnd she does evil dances\nAnd if you look deep in her eyes\nShe will put you in trances\nThen what will she do?\nShe'll mix up an evil brew\nAnd she'll gobble you up\nIn a big tasty stew\nSo...watch out.",
  12014.             "authorDisplayName": "bellacorn",
  12015.             "authorChannelUrl": "http://www.youtube.com/channel/UCqWHepjAj8fr1Rb2az4VD7w",
  12016.             "authorChannelId": {
  12017.               "value": "UCqWHepjAj8fr1Rb2az4VD7w"
  12018.             },
  12019.             "canRate": true,
  12020.             "viewerRating": "none",
  12021.             "likeCount": 0,
  12022.             "publishedAt": "2011-08-21T19:19:28Z",
  12023.             "updatedAt": "2011-08-21T19:19:28Z"
  12024.           }
  12025.         },
  12026.         "canReply": true,
  12027.         "totalReplyCount": 0,
  12028.         "isPublic": true
  12029.       }
  12030.     },
  12031.     {
  12032.       "kind": "youtube#commentThread",
  12033.       "etag": "lqN7jGHpZE3bysaq-pNt8E7xnCU",
  12034.       "id": "Ugz1sqEpPH0kkB0xOAJ4AaABAg",
  12035.       "snippet": {
  12036.         "videoId": "atnSTtiWU5E",
  12037.         "topLevelComment": {
  12038.           "kind": "youtube#comment",
  12039.           "etag": "d2YeQ9GUl68U9nlc3o8CQ5mg2Gs",
  12040.           "id": "Ugz1sqEpPH0kkB0xOAJ4AaABAg",
  12041.           "snippet": {
  12042.             "videoId": "atnSTtiWU5E",
  12043.             "textDisplay": "i'm gonn listen to this FOREEEEEEEEEVERRRRRRRRRRRRRRRRRR!",
  12044.             "textOriginal": "i'm gonn listen to this FOREEEEEEEEEVERRRRRRRRRRRRRRRRRR!",
  12045.             "authorDisplayName": "Gart",
  12046.             "authorChannelUrl": "http://www.youtube.com/channel/UCHato6NA2RVFRXb1TP8UbpQ",
  12047.             "authorChannelId": {
  12048.               "value": "UCHato6NA2RVFRXb1TP8UbpQ"
  12049.             },
  12050.             "canRate": true,
  12051.             "viewerRating": "none",
  12052.             "likeCount": 0,
  12053.             "publishedAt": "2011-08-18T23:57:17Z",
  12054.             "updatedAt": "2011-08-18T23:57:17Z"
  12055.           }
  12056.         },
  12057.         "canReply": true,
  12058.         "totalReplyCount": 0,
  12059.         "isPublic": true
  12060.       }
  12061.     },
  12062.     {
  12063.       "kind": "youtube#commentThread",
  12064.       "etag": "32aeFw5Vk84GqvpDNBwZgIQkwyI",
  12065.       "id": "UgzXOu3eFzERr9EHzzJ4AaABAg",
  12066.       "snippet": {
  12067.         "videoId": "atnSTtiWU5E",
  12068.         "topLevelComment": {
  12069.           "kind": "youtube#comment",
  12070.           "etag": "ioODGxUudRwjDyljgi4EdWg9H28",
  12071.           "id": "UgzXOu3eFzERr9EHzzJ4AaABAg",
  12072.           "snippet": {
  12073.             "videoId": "atnSTtiWU5E",
  12074.             "textDisplay": "@ZiozoneEmperor Trollestia the Sun Tyrant.",
  12075.             "textOriginal": "@ZiozoneEmperor Trollestia the Sun Tyrant.",
  12076.             "authorDisplayName": "MetaL556",
  12077.             "authorChannelUrl": "http://www.youtube.com/channel/UChhSRH6BmD3_FFrCJjpcGLQ",
  12078.             "authorChannelId": {
  12079.               "value": "UChhSRH6BmD3_FFrCJjpcGLQ"
  12080.             },
  12081.             "canRate": true,
  12082.             "viewerRating": "none",
  12083.             "likeCount": 0,
  12084.             "publishedAt": "2011-08-09T15:21:23Z",
  12085.             "updatedAt": "2011-08-09T15:21:23Z"
  12086.           }
  12087.         },
  12088.         "canReply": true,
  12089.         "totalReplyCount": 0,
  12090.         "isPublic": true
  12091.       }
  12092.     },
  12093.     {
  12094.       "kind": "youtube#commentThread",
  12095.       "etag": "EiquMznxClmtPnGzdbVAJrbmDhg",
  12096.       "id": "Ugy80zAIjG7eWU7o1rJ4AaABAg",
  12097.       "snippet": {
  12098.         "videoId": "atnSTtiWU5E",
  12099.         "topLevelComment": {
  12100.           "kind": "youtube#comment",
  12101.           "etag": "Nn2YvisNGh7TmMlLmCUoAgp_p4Y",
  12102.           "id": "Ugy80zAIjG7eWU7o1rJ4AaABAg",
  12103.           "snippet": {
  12104.             "videoId": "atnSTtiWU5E",
  12105.             "textDisplay": "@MetaL556 and extra boss would be CELESTIA HERSELF",
  12106.             "textOriginal": "@MetaL556 and extra boss would be CELESTIA HERSELF",
  12107.             "authorDisplayName": "Jamie Heartman",
  12108.             "authorChannelUrl": "http://www.youtube.com/channel/UC88SSUGfNpfs6izZ8SPvhNQ",
  12109.             "authorChannelId": {
  12110.               "value": "UC88SSUGfNpfs6izZ8SPvhNQ"
  12111.             },
  12112.             "canRate": true,
  12113.             "viewerRating": "none",
  12114.             "likeCount": 0,
  12115.             "publishedAt": "2011-08-09T13:57:27Z",
  12116.             "updatedAt": "2011-08-09T13:57:27Z"
  12117.           }
  12118.         },
  12119.         "canReply": true,
  12120.         "totalReplyCount": 0,
  12121.         "isPublic": true
  12122.       }
  12123.     },
  12124.     {
  12125.       "kind": "youtube#commentThread",
  12126.       "etag": "YCzEIwbngUDzb6tbmsUxX6l1K4A",
  12127.       "id": "Ugw3CIaCFK0zplIi5AN4AaABAg",
  12128.       "snippet": {
  12129.         "videoId": "atnSTtiWU5E",
  12130.         "topLevelComment": {
  12131.           "kind": "youtube#comment",
  12132.           "etag": "dDAIFGD--isZWQsvVqPCtBZSAeQ",
  12133.           "id": "Ugw3CIaCFK0zplIi5AN4AaABAg",
  12134.           "snippet": {
  12135.             "videoId": "atnSTtiWU5E",
  12136.             "textDisplay": "I don't recognize it but I like it a lot",
  12137.             "textOriginal": "I don't recognize it but I like it a lot",
  12138.             "authorDisplayName": "pischene",
  12139.             "authorChannelUrl": "http://www.youtube.com/channel/UCOyDqLzuy15BFoks3FF2eug",
  12140.             "authorChannelId": {
  12141.               "value": "UCOyDqLzuy15BFoks3FF2eug"
  12142.             },
  12143.             "canRate": true,
  12144.             "viewerRating": "none",
  12145.             "likeCount": 0,
  12146.             "publishedAt": "2011-08-06T03:55:30Z",
  12147.             "updatedAt": "2011-08-06T03:55:30Z"
  12148.           }
  12149.         },
  12150.         "canReply": true,
  12151.         "totalReplyCount": 0,
  12152.         "isPublic": true
  12153.       }
  12154.     },
  12155.     {
  12156.       "kind": "youtube#commentThread",
  12157.       "etag": "L38VzHcb-OshHDbhy0llxIdS8zQ",
  12158.       "id": "Ugz0vkONB_4pQm7mMvx4AaABAg",
  12159.       "snippet": {
  12160.         "videoId": "atnSTtiWU5E",
  12161.         "topLevelComment": {
  12162.           "kind": "youtube#comment",
  12163.           "etag": "JjDZurWPHzH53xqisGUONXeMeFo",
  12164.           "id": "Ugz0vkONB_4pQm7mMvx4AaABAg",
  12165.           "snippet": {
  12166.             "videoId": "atnSTtiWU5E",
  12167.             "textDisplay": "This never sounds the same after seeing a video for the End is Neigh... ",
  12168.             "textOriginal": "This never sounds the same after seeing a video for the End is Neigh... ",
  12169.             "authorDisplayName": "Connor Kenway",
  12170.             "authorChannelUrl": "http://www.youtube.com/channel/UCmw_sxHFHsDoSUZMQbyOZPw",
  12171.             "authorChannelId": {
  12172.               "value": "UCmw_sxHFHsDoSUZMQbyOZPw"
  12173.             },
  12174.             "canRate": true,
  12175.             "viewerRating": "none",
  12176.             "likeCount": 0,
  12177.             "publishedAt": "2011-08-04T11:17:36Z",
  12178.             "updatedAt": "2011-08-04T11:17:36Z"
  12179.           }
  12180.         },
  12181.         "canReply": true,
  12182.         "totalReplyCount": 0,
  12183.         "isPublic": true
  12184.       }
  12185.     },
  12186.     {
  12187.       "kind": "youtube#commentThread",
  12188.       "etag": "nFsHv3YPN4bGyg_fhqMBRdQHfU8",
  12189.       "id": "UgzDzzfptIEVXRZtID94AaABAg",
  12190.       "snippet": {
  12191.         "videoId": "atnSTtiWU5E",
  12192.         "topLevelComment": {
  12193.           "kind": "youtube#comment",
  12194.           "etag": "8t6P-hkieVrm_Os73dMfnivXJjE",
  12195.           "id": "UgzDzzfptIEVXRZtID94AaABAg",
  12196.           "snippet": {
  12197.             "videoId": "atnSTtiWU5E",
  12198.             "textDisplay": "@MetaL556 Well Twilight would be Patchy, and Pinkie probably as Flan. ",
  12199.             "textOriginal": "@MetaL556 Well Twilight would be Patchy, and Pinkie probably as Flan. ",
  12200.             "authorDisplayName": "Jake K",
  12201.             "authorChannelUrl": "http://www.youtube.com/channel/UCCYkXDlhKxshYwHl4gyczyg",
  12202.             "authorChannelId": {
  12203.               "value": "UCCYkXDlhKxshYwHl4gyczyg"
  12204.             },
  12205.             "canRate": true,
  12206.             "viewerRating": "none",
  12207.             "likeCount": 0,
  12208.             "publishedAt": "2011-08-04T01:32:53Z",
  12209.             "updatedAt": "2011-08-04T01:32:53Z"
  12210.           }
  12211.         },
  12212.         "canReply": true,
  12213.         "totalReplyCount": 0,
  12214.         "isPublic": true
  12215.       }
  12216.     },
  12217.     {
  12218.       "kind": "youtube#commentThread",
  12219.       "etag": "nAyixeNWsT1zMKSVcIiHD88hvCI",
  12220.       "id": "UgzSc-08bujXOrB8msN4AaABAg",
  12221.       "snippet": {
  12222.         "videoId": "atnSTtiWU5E",
  12223.         "topLevelComment": {
  12224.           "kind": "youtube#comment",
  12225.           "etag": "yr9rKFE1uFTkRgJyowE3KrVrp08",
  12226.           "id": "UgzSc-08bujXOrB8msN4AaABAg",
  12227.           "snippet": {
  12228.             "videoId": "atnSTtiWU5E",
  12229.             "textDisplay": "@MonkeySmist2 that they did fellow brony, that they did.",
  12230.             "textOriginal": "@MonkeySmist2 that they did fellow brony, that they did.",
  12231.             "authorDisplayName": "Farbicus",
  12232.             "authorChannelUrl": "http://www.youtube.com/channel/UCT3b2CtVexR3TQDdVO_wUwg",
  12233.             "authorChannelId": {
  12234.               "value": "UCT3b2CtVexR3TQDdVO_wUwg"
  12235.             },
  12236.             "canRate": true,
  12237.             "viewerRating": "none",
  12238.             "likeCount": 0,
  12239.             "publishedAt": "2011-08-03T23:21:44Z",
  12240.             "updatedAt": "2011-08-03T23:21:44Z"
  12241.           }
  12242.         },
  12243.         "canReply": true,
  12244.         "totalReplyCount": 0,
  12245.         "isPublic": true
  12246.       }
  12247.     },
  12248.     {
  12249.       "kind": "youtube#commentThread",
  12250.       "etag": "L-XsTSKcBgix0zgqjKAOCrMsIg8",
  12251.       "id": "UgwitBAcI-rvBGsz4D14AaABAg",
  12252.       "snippet": {
  12253.         "videoId": "atnSTtiWU5E",
  12254.         "topLevelComment": {
  12255.           "kind": "youtube#comment",
  12256.           "etag": "SLyTUihkCQj2hBlIrnNPsKjBJ1g",
  12257.           "id": "UgwitBAcI-rvBGsz4D14AaABAg",
  12258.           "snippet": {
  12259.             "videoId": "atnSTtiWU5E",
  12260.             "textDisplay": "If Fighting Is Magic ever gets made this could be the Zecora stage.",
  12261.             "textOriginal": "If Fighting Is Magic ever gets made this could be the Zecora stage.",
  12262.             "authorDisplayName": "Nathan Souza",
  12263.             "authorChannelUrl": "http://www.youtube.com/channel/UCJ9Dlyl3LobsaX_v7E0jOFA",
  12264.             "authorChannelId": {
  12265.               "value": "UCJ9Dlyl3LobsaX_v7E0jOFA"
  12266.             },
  12267.             "canRate": true,
  12268.             "viewerRating": "none",
  12269.             "likeCount": 0,
  12270.             "publishedAt": "2011-08-02T01:42:33Z",
  12271.             "updatedAt": "2011-08-02T01:42:33Z"
  12272.           }
  12273.         },
  12274.         "canReply": true,
  12275.         "totalReplyCount": 0,
  12276.         "isPublic": true
  12277.       }
  12278.     },
  12279.     {
  12280.       "kind": "youtube#commentThread",
  12281.       "etag": "GmaEH3TBRdoZVM78y46r3ZGvS44",
  12282.       "id": "UgxERtnC3WYjeMnLDxt4AaABAg",
  12283.       "snippet": {
  12284.         "videoId": "atnSTtiWU5E",
  12285.         "topLevelComment": {
  12286.           "kind": "youtube#comment",
  12287.           "etag": "G_2BWf3Rr6JXBUd7XnLECLT9ovg",
  12288.           "id": "UgxERtnC3WYjeMnLDxt4AaABAg",
  12289.           "snippet": {
  12290.             "videoId": "atnSTtiWU5E",
  12291.             "textDisplay": "15 people got gobbled up in a big tastey stew",
  12292.             "textOriginal": "15 people got gobbled up in a big tastey stew",
  12293.             "authorDisplayName": "GoogleRuinedYoutube",
  12294.             "authorChannelUrl": "http://www.youtube.com/channel/UC0Rc4vXahb0LTRQyXjYMa9A",
  12295.             "authorChannelId": {
  12296.               "value": "UC0Rc4vXahb0LTRQyXjYMa9A"
  12297.             },
  12298.             "canRate": true,
  12299.             "viewerRating": "none",
  12300.             "likeCount": 0,
  12301.             "publishedAt": "2011-08-02T00:32:05Z",
  12302.             "updatedAt": "2011-08-02T00:32:05Z"
  12303.           }
  12304.         },
  12305.         "canReply": true,
  12306.         "totalReplyCount": 0,
  12307.         "isPublic": true
  12308.       }
  12309.     },
  12310.     {
  12311.       "kind": "youtube#commentThread",
  12312.       "etag": "XYzxOlp_1dpmHTtno6qhumz6dzw",
  12313.       "id": "UgwVT0P8486Aw_Pzgyd4AaABAg",
  12314.       "snippet": {
  12315.         "videoId": "atnSTtiWU5E",
  12316.         "topLevelComment": {
  12317.           "kind": "youtube#comment",
  12318.           "etag": "eX0JLUSqumOSAYcQcWlpff4WzFE",
  12319.           "id": "UgwVT0P8486Aw_Pzgyd4AaABAg",
  12320.           "snippet": {
  12321.             "videoId": "atnSTtiWU5E",
  12322.             "textDisplay": "I can imagine these tunes as BGMs in an SRW parody...",
  12323.             "textOriginal": "I can imagine these tunes as BGMs in an SRW parody...",
  12324.             "authorDisplayName": "GeoRyukaiser",
  12325.             "authorChannelUrl": "http://www.youtube.com/channel/UC587KUJgK4ozkdbmeRHBG_w",
  12326.             "authorChannelId": {
  12327.               "value": "UC587KUJgK4ozkdbmeRHBG_w"
  12328.             },
  12329.             "canRate": true,
  12330.             "viewerRating": "none",
  12331.             "likeCount": 0,
  12332.             "publishedAt": "2011-08-01T17:00:34Z",
  12333.             "updatedAt": "2011-08-01T17:00:34Z"
  12334.           }
  12335.         },
  12336.         "canReply": true,
  12337.         "totalReplyCount": 0,
  12338.         "isPublic": true
  12339.       }
  12340.     },
  12341.     {
  12342.       "kind": "youtube#commentThread",
  12343.       "etag": "sap1ebzaQUo6i5sIUHm9CckaXXU",
  12344.       "id": "UgzZuRZXFxjGR0in_6N4AaABAg",
  12345.       "snippet": {
  12346.         "videoId": "atnSTtiWU5E",
  12347.         "topLevelComment": {
  12348.           "kind": "youtube#comment",
  12349.           "etag": "xhpCkJ3LQHH1H8bKreltxvzouic",
  12350.           "id": "UgzZuRZXFxjGR0in_6N4AaABAg",
  12351.           "snippet": {
  12352.             "videoId": "atnSTtiWU5E",
  12353.             "textDisplay": "I can picture this as a boss theme for an SNES RPG or platformer...that would just have insane amounts of pure awesome.",
  12354.             "textOriginal": "I can picture this as a boss theme for an SNES RPG or platformer...that would just have insane amounts of pure awesome.",
  12355.             "authorDisplayName": "Skylar",
  12356.             "authorChannelUrl": "http://www.youtube.com/channel/UC0iE1URcdDRl1r_C_t-iYGg",
  12357.             "authorChannelId": {
  12358.               "value": "UC0iE1URcdDRl1r_C_t-iYGg"
  12359.             },
  12360.             "canRate": true,
  12361.             "viewerRating": "none",
  12362.             "likeCount": 3,
  12363.             "publishedAt": "2011-07-31T01:45:54Z",
  12364.             "updatedAt": "2011-07-31T01:45:54Z"
  12365.           }
  12366.         },
  12367.         "canReply": true,
  12368.         "totalReplyCount": 0,
  12369.         "isPublic": true
  12370.       }
  12371.     },
  12372.     {
  12373.       "kind": "youtube#commentThread",
  12374.       "etag": "cI0OYfGSj_jyDJwHJN0KTjjJiys",
  12375.       "id": "Ugx3_rlFl9qUHCWU6it4AaABAg",
  12376.       "snippet": {
  12377.         "videoId": "atnSTtiWU5E",
  12378.         "topLevelComment": {
  12379.           "kind": "youtube#comment",
  12380.           "etag": "3mYcvHGYEooPFnm1Bl0CQ9BfeJk",
  12381.           "id": "Ugx3_rlFl9qUHCWU6it4AaABAg",
  12382.           "snippet": {
  12383.             "videoId": "atnSTtiWU5E",
  12384.             "textDisplay": "Miltank appeared!",
  12385.             "textOriginal": "Miltank appeared!",
  12386.             "authorDisplayName": "Evan Harrison",
  12387.             "authorChannelUrl": "http://www.youtube.com/channel/UCJXB153jQZB7cgP5eFiIgmg",
  12388.             "authorChannelId": {
  12389.               "value": "UCJXB153jQZB7cgP5eFiIgmg"
  12390.             },
  12391.             "canRate": true,
  12392.             "viewerRating": "none",
  12393.             "likeCount": 0,
  12394.             "publishedAt": "2011-07-30T08:54:46Z",
  12395.             "updatedAt": "2011-07-30T08:54:46Z"
  12396.           }
  12397.         },
  12398.         "canReply": true,
  12399.         "totalReplyCount": 0,
  12400.         "isPublic": true
  12401.       }
  12402.     },
  12403.     {
  12404.       "kind": "youtube#commentThread",
  12405.       "etag": "s7iwGhWlaViUt6azgo9p9hrMbcU",
  12406.       "id": "UgwIUNo805iGq10iwAh4AaABAg",
  12407.       "snippet": {
  12408.         "videoId": "atnSTtiWU5E",
  12409.         "topLevelComment": {
  12410.           "kind": "youtube#comment",
  12411.           "etag": "Bwo2dQ-R1lrORPAss4QSaeskIu4",
  12412.           "id": "UgwIUNo805iGq10iwAh4AaABAg",
  12413.           "snippet": {
  12414.             "videoId": "atnSTtiWU5E",
  12415.             "textDisplay": "Boss fight time!",
  12416.             "textOriginal": "Boss fight time!",
  12417.             "authorDisplayName": "AnimeMetalhead",
  12418.             "authorChannelUrl": "http://www.youtube.com/channel/UCvbOJigvU3VgYw1EtkdZ1Ow",
  12419.             "authorChannelId": {
  12420.               "value": "UCvbOJigvU3VgYw1EtkdZ1Ow"
  12421.             },
  12422.             "canRate": true,
  12423.             "viewerRating": "none",
  12424.             "likeCount": 0,
  12425.             "publishedAt": "2011-07-29T22:52:36Z",
  12426.             "updatedAt": "2011-07-29T22:52:36Z"
  12427.           }
  12428.         },
  12429.         "canReply": true,
  12430.         "totalReplyCount": 0,
  12431.         "isPublic": true
  12432.       }
  12433.     },
  12434.     {
  12435.       "kind": "youtube#commentThread",
  12436.       "etag": "S7d0SRKpqo-LQzxY0FN1dr-CFXA",
  12437.       "id": "Ugx4zOdZ8_ET1ygFbzN4AaABAg",
  12438.       "snippet": {
  12439.         "videoId": "atnSTtiWU5E",
  12440.         "topLevelComment": {
  12441.           "kind": "youtube#comment",
  12442.           "etag": "-RJNW5bVlwZVTPCIUmdVdoetvm4",
  12443.           "id": "Ugx4zOdZ8_ET1ygFbzN4AaABAg",
  12444.           "snippet": {
  12445.             "videoId": "atnSTtiWU5E",
  12446.             "textDisplay": "why do i always think of megaman when i hear this ",
  12447.             "textOriginal": "why do i always think of megaman when i hear this ",
  12448.             "authorDisplayName": "flutterlover",
  12449.             "authorChannelUrl": "http://www.youtube.com/channel/UCAh450d4OhyL73HvWsbvHWA",
  12450.             "authorChannelId": {
  12451.               "value": "UCAh450d4OhyL73HvWsbvHWA"
  12452.             },
  12453.             "canRate": true,
  12454.             "viewerRating": "none",
  12455.             "likeCount": 0,
  12456.             "publishedAt": "2011-07-28T17:12:48Z",
  12457.             "updatedAt": "2011-07-28T17:12:48Z"
  12458.           }
  12459.         },
  12460.         "canReply": true,
  12461.         "totalReplyCount": 0,
  12462.         "isPublic": true
  12463.       }
  12464.     },
  12465.     {
  12466.       "kind": "youtube#commentThread",
  12467.       "etag": "Hqn8DgJVWXSiohU55r4xSYuEflc",
  12468.       "id": "UgyE5mHbaav-F4eAM1R4AaABAg",
  12469.       "snippet": {
  12470.         "videoId": "atnSTtiWU5E",
  12471.         "topLevelComment": {
  12472.           "kind": "youtube#comment",
  12473.           "etag": "FNzfq-qaE5DwxFgdc_W6Y8Vf3is",
  12474.           "id": "UgyE5mHbaav-F4eAM1R4AaABAg",
  12475.           "snippet": {
  12476.             "videoId": "atnSTtiWU5E",
  12477.             "textDisplay": "This is my official victory music.",
  12478.             "textOriginal": "This is my official victory music.",
  12479.             "authorDisplayName": "Fruffl3s",
  12480.             "authorChannelUrl": "http://www.youtube.com/channel/UCjEX6B3Fd2CwR7_wl-czGyg",
  12481.             "authorChannelId": {
  12482.               "value": "UCjEX6B3Fd2CwR7_wl-czGyg"
  12483.             },
  12484.             "canRate": true,
  12485.             "viewerRating": "none",
  12486.             "likeCount": 0,
  12487.             "publishedAt": "2011-07-27T11:03:12Z",
  12488.             "updatedAt": "2011-07-27T11:03:12Z"
  12489.           }
  12490.         },
  12491.         "canReply": true,
  12492.         "totalReplyCount": 0,
  12493.         "isPublic": true
  12494.       }
  12495.     },
  12496.     {
  12497.       "kind": "youtube#commentThread",
  12498.       "etag": "zVkzgZelBLwuMF4GksYRUS36Tnk",
  12499.       "id": "Ugyrc-OVmSet00YjGX54AaABAg",
  12500.       "snippet": {
  12501.         "videoId": "atnSTtiWU5E",
  12502.         "topLevelComment": {
  12503.           "kind": "youtube#comment",
  12504.           "etag": "lgcv5oJXiQenf69c_dTYAg5vlaA",
  12505.           "id": "Ugyrc-OVmSet00YjGX54AaABAg",
  12506.           "snippet": {
  12507.             "videoId": "atnSTtiWU5E",
  12508.             "textDisplay": "@Eggbert1x HELL YEAH XD ",
  12509.             "textOriginal": "@Eggbert1x HELL YEAH XD ",
  12510.             "authorDisplayName": "Jill4ChrisRedfeild",
  12511.             "authorChannelUrl": "http://www.youtube.com/channel/UCaAPOLhuKG567ZrNcMH4nJg",
  12512.             "authorChannelId": {
  12513.               "value": "UCaAPOLhuKG567ZrNcMH4nJg"
  12514.             },
  12515.             "canRate": true,
  12516.             "viewerRating": "none",
  12517.             "likeCount": 0,
  12518.             "publishedAt": "2011-07-26T18:02:31Z",
  12519.             "updatedAt": "2011-07-26T18:02:31Z"
  12520.           }
  12521.         },
  12522.         "canReply": true,
  12523.         "totalReplyCount": 0,
  12524.         "isPublic": true
  12525.       }
  12526.     },
  12527.     {
  12528.       "kind": "youtube#commentThread",
  12529.       "etag": "81oDGswW0xsM5kY91kJWW_U7LHQ",
  12530.       "id": "UgznpMQeFopPYGHq-994AaABAg",
  12531.       "snippet": {
  12532.         "videoId": "atnSTtiWU5E",
  12533.         "topLevelComment": {
  12534.           "kind": "youtube#comment",
  12535.           "etag": "PRTzDmo0m6DChmStbwYVVxnBkEE",
  12536.           "id": "UgznpMQeFopPYGHq-994AaABAg",
  12537.           "snippet": {
  12538.             "videoId": "atnSTtiWU5E",
  12539.             "textDisplay": "@ClockworkExplosion Zecora:oh nom nom nom ;3",
  12540.             "textOriginal": "@ClockworkExplosion Zecora:oh nom nom nom ;3",
  12541.             "authorDisplayName": "Millenium Light",
  12542.             "authorChannelUrl": "http://www.youtube.com/channel/UCAoE9Vh93mwRSOUzTXoAhqg",
  12543.             "authorChannelId": {
  12544.               "value": "UCAoE9Vh93mwRSOUzTXoAhqg"
  12545.             },
  12546.             "canRate": true,
  12547.             "viewerRating": "none",
  12548.             "likeCount": 0,
  12549.             "publishedAt": "2011-07-26T13:03:51Z",
  12550.             "updatedAt": "2011-07-26T13:03:51Z"
  12551.           }
  12552.         },
  12553.         "canReply": true,
  12554.         "totalReplyCount": 0,
  12555.         "isPublic": true
  12556.       }
  12557.     },
  12558.     {
  12559.       "kind": "youtube#commentThread",
  12560.       "etag": "4Z5YZ--7tW_cIu7ITIPmcBdcpWs",
  12561.       "id": "UgxyqrxxWuup0WaFYbB4AaABAg",
  12562.       "snippet": {
  12563.         "videoId": "atnSTtiWU5E",
  12564.         "topLevelComment": {
  12565.           "kind": "youtube#comment",
  12566.           "etag": "9TQo9_eX-KYyikKvyE7UBDCkauI",
  12567.           "id": "UgxyqrxxWuup0WaFYbB4AaABAg",
  12568.           "snippet": {
  12569.             "videoId": "atnSTtiWU5E",
  12570.             "textDisplay": "am i the only that coms around so i can read the ideas for an pony rpg ideas?",
  12571.             "textOriginal": "am i the only that coms around so i can read the ideas for an pony rpg ideas?",
  12572.             "authorDisplayName": "Millenium Light",
  12573.             "authorChannelUrl": "http://www.youtube.com/channel/UCAoE9Vh93mwRSOUzTXoAhqg",
  12574.             "authorChannelId": {
  12575.               "value": "UCAoE9Vh93mwRSOUzTXoAhqg"
  12576.             },
  12577.             "canRate": true,
  12578.             "viewerRating": "none",
  12579.             "likeCount": 0,
  12580.             "publishedAt": "2011-07-26T12:59:36Z",
  12581.             "updatedAt": "2011-07-26T12:59:36Z"
  12582.           }
  12583.         },
  12584.         "canReply": true,
  12585.         "totalReplyCount": 0,
  12586.         "isPublic": true
  12587.       }
  12588.     },
  12589.     {
  12590.       "kind": "youtube#commentThread",
  12591.       "etag": "0z9eHhZkceNrzru3j0Z5X_DwUAM",
  12592.       "id": "Ugy5CN3YtNDyutCJ18F4AaABAg",
  12593.       "snippet": {
  12594.         "videoId": "atnSTtiWU5E",
  12595.         "topLevelComment": {
  12596.           "kind": "youtube#comment",
  12597.           "etag": "OfLue_gJY9p8z3M7_d7Zj6ZKjHY",
  12598.           "id": "Ugy5CN3YtNDyutCJ18F4AaABAg",
  12599.           "snippet": {
  12600.             "videoId": "atnSTtiWU5E",
  12601.             "textDisplay": "This is my favorite of the Super Ponybeat tracks. Really awesomely done.",
  12602.             "textOriginal": "This is my favorite of the Super Ponybeat tracks. Really awesomely done.",
  12603.             "authorDisplayName": "Cmguy89",
  12604.             "authorChannelUrl": "http://www.youtube.com/channel/UCyUzwTZJyqBhOmWesJ13WQw",
  12605.             "authorChannelId": {
  12606.               "value": "UCyUzwTZJyqBhOmWesJ13WQw"
  12607.             },
  12608.             "canRate": true,
  12609.             "viewerRating": "none",
  12610.             "likeCount": 0,
  12611.             "publishedAt": "2011-07-26T08:18:32Z",
  12612.             "updatedAt": "2011-07-26T08:18:32Z"
  12613.           }
  12614.         },
  12615.         "canReply": true,
  12616.         "totalReplyCount": 0,
  12617.         "isPublic": true
  12618.       }
  12619.     },
  12620.     {
  12621.       "kind": "youtube#commentThread",
  12622.       "etag": "DTZ_-4Dmc83yizL-qMUgTuVn2To",
  12623.       "id": "Ugx00uXLEnoN7_ELenh4AaABAg",
  12624.       "snippet": {
  12625.         "videoId": "atnSTtiWU5E",
  12626.         "topLevelComment": {
  12627.           "kind": "youtube#comment",
  12628.           "etag": "EhkUuFIv5vC3axgy-vH2G7D8EWc",
  12629.           "id": "Ugx00uXLEnoN7_ELenh4AaABAg",
  12630.           "snippet": {
  12631.             "videoId": "atnSTtiWU5E",
  12632.             "textDisplay": "reminds me of luna game",
  12633.             "textOriginal": "reminds me of luna game",
  12634.             "authorDisplayName": "Meshmeal1",
  12635.             "authorChannelUrl": "http://www.youtube.com/channel/UCYWt5vsd1CbaIKyVVnEFJPw",
  12636.             "authorChannelId": {
  12637.               "value": "UCYWt5vsd1CbaIKyVVnEFJPw"
  12638.             },
  12639.             "canRate": true,
  12640.             "viewerRating": "none",
  12641.             "likeCount": 0,
  12642.             "publishedAt": "2011-07-26T04:30:36Z",
  12643.             "updatedAt": "2011-07-26T04:30:36Z"
  12644.           }
  12645.         },
  12646.         "canReply": true,
  12647.         "totalReplyCount": 0,
  12648.         "isPublic": true
  12649.       }
  12650.     },
  12651.     {
  12652.       "kind": "youtube#commentThread",
  12653.       "etag": "MHaOBG7hTcOk00UE7NqmFpowCOw",
  12654.       "id": "UgwiKG9yIgu3p58QabN4AaABAg",
  12655.       "snippet": {
  12656.         "videoId": "atnSTtiWU5E",
  12657.         "topLevelComment": {
  12658.           "kind": "youtube#comment",
  12659.           "etag": "Ju5HyNoMAX3yclmuqGF7kJ1jgTI",
  12660.           "id": "UgwiKG9yIgu3p58QabN4AaABAg",
  12661.           "snippet": {
  12662.             "videoId": "atnSTtiWU5E",
  12663.             "textDisplay": "/)(^3^)(\\ ",
  12664.             "textOriginal": "/)(^3^)(\\ ",
  12665.             "authorDisplayName": "popper03244",
  12666.             "authorChannelUrl": "http://www.youtube.com/channel/UCw8lwWZjKvkiEmHXoJHyxYA",
  12667.             "authorChannelId": {
  12668.               "value": "UCw8lwWZjKvkiEmHXoJHyxYA"
  12669.             },
  12670.             "canRate": true,
  12671.             "viewerRating": "none",
  12672.             "likeCount": 0,
  12673.             "publishedAt": "2011-07-25T22:25:22Z",
  12674.             "updatedAt": "2011-07-25T22:25:22Z"
  12675.           }
  12676.         },
  12677.         "canReply": true,
  12678.         "totalReplyCount": 0,
  12679.         "isPublic": true
  12680.       }
  12681.     },
  12682.     {
  12683.       "kind": "youtube#commentThread",
  12684.       "etag": "z8Pjrp02T63FFrnFAxFRkBLBmQ0",
  12685.       "id": "Ugyhv7F1F9l6Bpl-q2J4AaABAg",
  12686.       "snippet": {
  12687.         "videoId": "atnSTtiWU5E",
  12688.         "topLevelComment": {
  12689.           "kind": "youtube#comment",
  12690.           "etag": "ODaRye4lJBW2RSZi7NJCTfB9WHg",
  12691.           "id": "Ugyhv7F1F9l6Bpl-q2J4AaABAg",
  12692.           "snippet": {
  12693.             "videoId": "atnSTtiWU5E",
  12694.             "textDisplay": "Boss",
  12695.             "textOriginal": "Boss",
  12696.             "authorDisplayName": "Red",
  12697.             "authorChannelUrl": "http://www.youtube.com/channel/UCLtfaLbqTrjpXSvl9sfS2Lg",
  12698.             "authorChannelId": {
  12699.               "value": "UCLtfaLbqTrjpXSvl9sfS2Lg"
  12700.             },
  12701.             "canRate": true,
  12702.             "viewerRating": "none",
  12703.             "likeCount": 0,
  12704.             "publishedAt": "2011-07-21T06:54:54Z",
  12705.             "updatedAt": "2011-07-21T06:54:54Z"
  12706.           }
  12707.         },
  12708.         "canReply": true,
  12709.         "totalReplyCount": 0,
  12710.         "isPublic": true
  12711.       }
  12712.     },
  12713.     {
  12714.       "kind": "youtube#commentThread",
  12715.       "etag": "Kk55hpZsBDc7XUPmN3Hm7me0ipw",
  12716.       "id": "UgwCaSsBuhwD5SzxpA14AaABAg",
  12717.       "snippet": {
  12718.         "videoId": "atnSTtiWU5E",
  12719.         "topLevelComment": {
  12720.           "kind": "youtube#comment",
  12721.           "etag": "9JPegWjxGMnOdYab6VDTlzdaCnI",
  12722.           "id": "UgwCaSsBuhwD5SzxpA14AaABAg",
  12723.           "snippet": {
  12724.             "videoId": "atnSTtiWU5E",
  12725.             "textDisplay": "@CloneComander1138 Yeah, I know. This show is either you love it or you hate it, there's not much of an in between here. Lots of people surprisingly like this show, and that's their opinion. It shouldn't get to you that they like something you don't. ",
  12726.             "textOriginal": "@CloneComander1138 Yeah, I know. This show is either you love it or you hate it, there's not much of an in between here. Lots of people surprisingly like this show, and that's their opinion. It shouldn't get to you that they like something you don't. ",
  12727.             "authorDisplayName": "Michael Arellano",
  12728.             "authorChannelUrl": "http://www.youtube.com/channel/UCmSeLpdw7XeTO4yt0FDYYwg",
  12729.             "authorChannelId": {
  12730.               "value": "UCmSeLpdw7XeTO4yt0FDYYwg"
  12731.             },
  12732.             "canRate": true,
  12733.             "viewerRating": "none",
  12734.             "likeCount": 0,
  12735.             "publishedAt": "2011-07-20T21:03:00Z",
  12736.             "updatedAt": "2011-07-20T21:03:00Z"
  12737.           }
  12738.         },
  12739.         "canReply": true,
  12740.         "totalReplyCount": 0,
  12741.         "isPublic": true
  12742.       }
  12743.     },
  12744.     {
  12745.       "kind": "youtube#commentThread",
  12746.       "etag": "ovOKsUZBg5oQJC1HNJVwGoy_y98",
  12747.       "id": "UgzhD-8kdiOZx_zAFiN4AaABAg",
  12748.       "snippet": {
  12749.         "videoId": "atnSTtiWU5E",
  12750.         "topLevelComment": {
  12751.           "kind": "youtube#comment",
  12752.           "etag": "f8JOPnPNutTbWFJq3XlKGKz6RoM",
  12753.           "id": "UgzhD-8kdiOZx_zAFiN4AaABAg",
  12754.           "snippet": {
  12755.             "videoId": "atnSTtiWU5E",
  12756.             "textDisplay": "Cool",
  12757.             "textOriginal": "Cool",
  12758.             "authorDisplayName": "lackadaisicalRoleplayer",
  12759.             "authorChannelUrl": "http://www.youtube.com/channel/UC06RF5T_Cd1NHxi2e8uFOwA",
  12760.             "authorChannelId": {
  12761.               "value": "UC06RF5T_Cd1NHxi2e8uFOwA"
  12762.             },
  12763.             "canRate": true,
  12764.             "viewerRating": "none",
  12765.             "likeCount": 0,
  12766.             "publishedAt": "2011-07-20T18:35:28Z",
  12767.             "updatedAt": "2011-07-20T18:35:28Z"
  12768.           }
  12769.         },
  12770.         "canReply": true,
  12771.         "totalReplyCount": 0,
  12772.         "isPublic": true
  12773.       }
  12774.     },
  12775.     {
  12776.       "kind": "youtube#commentThread",
  12777.       "etag": "noK83H5S3JC-6Arxy7pq9hBcH98",
  12778.       "id": "UgykZesR2ioS6XfDxGh4AaABAg",
  12779.       "snippet": {
  12780.         "videoId": "atnSTtiWU5E",
  12781.         "topLevelComment": {
  12782.           "kind": "youtube#comment",
  12783.           "etag": "GwDAp-yW_S6t-rmQDwNhhdwVEuo",
  12784.           "id": "UgykZesR2ioS6XfDxGh4AaABAg",
  12785.           "snippet": {
  12786.             "videoId": "atnSTtiWU5E",
  12787.             "textDisplay": "@CloneComander1138 Understandable. So you think it's OKAY, not the best, and it gets annoying sometimes. Fair enough. ",
  12788.             "textOriginal": "@CloneComander1138 Understandable. So you think it's OKAY, not the best, and it gets annoying sometimes. Fair enough. ",
  12789.             "authorDisplayName": "Michael Arellano",
  12790.             "authorChannelUrl": "http://www.youtube.com/channel/UCmSeLpdw7XeTO4yt0FDYYwg",
  12791.             "authorChannelId": {
  12792.               "value": "UCmSeLpdw7XeTO4yt0FDYYwg"
  12793.             },
  12794.             "canRate": true,
  12795.             "viewerRating": "none",
  12796.             "likeCount": 0,
  12797.             "publishedAt": "2011-07-20T06:08:09Z",
  12798.             "updatedAt": "2011-07-20T06:08:09Z"
  12799.           }
  12800.         },
  12801.         "canReply": true,
  12802.         "totalReplyCount": 0,
  12803.         "isPublic": true
  12804.       }
  12805.     },
  12806.     {
  12807.       "kind": "youtube#commentThread",
  12808.       "etag": "PzXW9S7kOjHDuSkXGEY13nsgy_w",
  12809.       "id": "UgzeTas6ED5dqWQRtIp4AaABAg",
  12810.       "snippet": {
  12811.         "videoId": "atnSTtiWU5E",
  12812.         "topLevelComment": {
  12813.           "kind": "youtube#comment",
  12814.           "etag": "1QGDPXbte65qwp0X063FVF7RLuA",
  12815.           "id": "UgzeTas6ED5dqWQRtIp4AaABAg",
  12816.           "snippet": {
  12817.             "videoId": "atnSTtiWU5E",
  12818.             "textDisplay": "@CloneComander1138 Okay, sorry to get onto you like that. Well, If you don't like it, you don't like it. Why would you watch a whole season if you didn't like it after the first few episodes?? I mean, after 10 episodes, and you still don't like it, you probably should have stopped man.",
  12819.             "textOriginal": "@CloneComander1138 Okay, sorry to get onto you like that. Well, If you don't like it, you don't like it. Why would you watch a whole season if you didn't like it after the first few episodes?? I mean, after 10 episodes, and you still don't like it, you probably should have stopped man.",
  12820.             "authorDisplayName": "Michael Arellano",
  12821.             "authorChannelUrl": "http://www.youtube.com/channel/UCmSeLpdw7XeTO4yt0FDYYwg",
  12822.             "authorChannelId": {
  12823.               "value": "UCmSeLpdw7XeTO4yt0FDYYwg"
  12824.             },
  12825.             "canRate": true,
  12826.             "viewerRating": "none",
  12827.             "likeCount": 0,
  12828.             "publishedAt": "2011-07-20T00:04:27Z",
  12829.             "updatedAt": "2011-07-20T00:04:27Z"
  12830.           }
  12831.         },
  12832.         "canReply": true,
  12833.         "totalReplyCount": 0,
  12834.         "isPublic": true
  12835.       }
  12836.     },
  12837.     {
  12838.       "kind": "youtube#commentThread",
  12839.       "etag": "xV2JkhgWumDRPLDJ14R-W7lZKSs",
  12840.       "id": "UgyUn5nnLd7fv8lcyw14AaABAg",
  12841.       "snippet": {
  12842.         "videoId": "atnSTtiWU5E",
  12843.         "topLevelComment": {
  12844.           "kind": "youtube#comment",
  12845.           "etag": "RKh2mDveg8hrMVSSEVBaXCRuFuA",
  12846.           "id": "UgyUn5nnLd7fv8lcyw14AaABAg",
  12847.           "snippet": {
  12848.             "videoId": "atnSTtiWU5E",
  12849.             "textDisplay": "@CloneComander1138 No, you just don't like us because you havn't seen the video. And you're prbably gonna reply saying "Yess I have guise!!1!".\nNo. Watch the first 3 episodes(the first 2 are kinda cheesy o.o)",
  12850.             "textOriginal": "@CloneComander1138 No, you just don't like us because you havn't seen the video. And you're prbably gonna reply saying \"Yess I have guise!!1!\".\nNo. Watch the first 3 episodes(the first 2 are kinda cheesy o.o)",
  12851.             "authorDisplayName": "Michael Arellano",
  12852.             "authorChannelUrl": "http://www.youtube.com/channel/UCmSeLpdw7XeTO4yt0FDYYwg",
  12853.             "authorChannelId": {
  12854.               "value": "UCmSeLpdw7XeTO4yt0FDYYwg"
  12855.             },
  12856.             "canRate": true,
  12857.             "viewerRating": "none",
  12858.             "likeCount": 0,
  12859.             "publishedAt": "2011-07-19T23:32:53Z",
  12860.             "updatedAt": "2011-07-19T23:32:53Z"
  12861.           }
  12862.         },
  12863.         "canReply": true,
  12864.         "totalReplyCount": 0,
  12865.         "isPublic": true
  12866.       }
  12867.     },
  12868.     {
  12869.       "kind": "youtube#commentThread",
  12870.       "etag": "e7tpCud2fH0MwEgUG5qfJH3N-EI",
  12871.       "id": "UgyRXmWjwcP27RydUXt4AaABAg",
  12872.       "snippet": {
  12873.         "videoId": "atnSTtiWU5E",
  12874.         "topLevelComment": {
  12875.           "kind": "youtube#comment",
  12876.           "etag": "41_rokMSwZDwYOQA4gaCVh9PQxA",
  12877.           "id": "UgyRXmWjwcP27RydUXt4AaABAg",
  12878.           "snippet": {
  12879.             "videoId": "atnSTtiWU5E",
  12880.             "textDisplay": "I swear I heard this in luna game somewhere",
  12881.             "textOriginal": "I swear I heard this in luna game somewhere",
  12882.             "authorDisplayName": "biglippy36",
  12883.             "authorChannelUrl": "http://www.youtube.com/channel/UCtyLReax56iLtdQ_W5hMfRA",
  12884.             "authorChannelId": {
  12885.               "value": "UCtyLReax56iLtdQ_W5hMfRA"
  12886.             },
  12887.             "canRate": true,
  12888.             "viewerRating": "none",
  12889.             "likeCount": 0,
  12890.             "publishedAt": "2011-07-19T18:50:47Z",
  12891.             "updatedAt": "2011-07-19T18:50:47Z"
  12892.           }
  12893.         },
  12894.         "canReply": true,
  12895.         "totalReplyCount": 0,
  12896.         "isPublic": true
  12897.       }
  12898.     },
  12899.     {
  12900.       "kind": "youtube#commentThread",
  12901.       "etag": "QlvoHY6FB9LzCMkPKriJAqG6uO0",
  12902.       "id": "UgzLsGZuZZPg7vbJLMZ4AaABAg",
  12903.       "snippet": {
  12904.         "videoId": "atnSTtiWU5E",
  12905.         "topLevelComment": {
  12906.           "kind": "youtube#comment",
  12907.           "etag": "nV3F3ofU_pqO9enkNk2sLajUIYk",
  12908.           "id": "UgzLsGZuZZPg7vbJLMZ4AaABAg",
  12909.           "snippet": {
  12910.             "videoId": "atnSTtiWU5E",
  12911.             "textDisplay": "@Lucariofan448 Earths Mightiest Ponies. Nuff said.",
  12912.             "textOriginal": "@Lucariofan448 Earths Mightiest Ponies. Nuff said.",
  12913.             "authorDisplayName": "Fawful0",
  12914.             "authorChannelUrl": "http://www.youtube.com/channel/UCR5ogmuuE3hKGRllEfN2BYw",
  12915.             "authorChannelId": {
  12916.               "value": "UCR5ogmuuE3hKGRllEfN2BYw"
  12917.             },
  12918.             "canRate": true,
  12919.             "viewerRating": "none",
  12920.             "likeCount": 0,
  12921.             "publishedAt": "2011-07-19T11:22:06Z",
  12922.             "updatedAt": "2011-07-19T11:22:06Z"
  12923.           }
  12924.         },
  12925.         "canReply": true,
  12926.         "totalReplyCount": 0,
  12927.         "isPublic": true
  12928.       }
  12929.     },
  12930.     {
  12931.       "kind": "youtube#commentThread",
  12932.       "etag": "zEh59ZcpS7luzoVjcy72pfkHEuA",
  12933.       "id": "UgzEgOC6EORa76McKaR4AaABAg",
  12934.       "snippet": {
  12935.         "videoId": "atnSTtiWU5E",
  12936.         "topLevelComment": {
  12937.           "kind": "youtube#comment",
  12938.           "etag": "PUHhTgrHcQ8xZoQK1gNU0Zi9d4I",
  12939.           "id": "UgzEgOC6EORa76McKaR4AaABAg",
  12940.           "snippet": {
  12941.             "videoId": "atnSTtiWU5E",
  12942.             "textDisplay": "I demand 720p!",
  12943.             "textOriginal": "I demand 720p!",
  12944.             "authorDisplayName": "James Duncan",
  12945.             "authorChannelUrl": "http://www.youtube.com/channel/UCYNv6AxIzI2RMTwjKq71CWQ",
  12946.             "authorChannelId": {
  12947.               "value": "UCYNv6AxIzI2RMTwjKq71CWQ"
  12948.             },
  12949.             "canRate": true,
  12950.             "viewerRating": "none",
  12951.             "likeCount": 0,
  12952.             "publishedAt": "2011-07-19T02:29:32Z",
  12953.             "updatedAt": "2011-07-19T02:29:32Z"
  12954.           }
  12955.         },
  12956.         "canReply": true,
  12957.         "totalReplyCount": 0,
  12958.         "isPublic": true
  12959.       }
  12960.     },
  12961.     {
  12962.       "kind": "youtube#commentThread",
  12963.       "etag": "F2z2LAEG-PxgEXzBwFNaY9dZFCQ",
  12964.       "id": "UgzepRl2V3g_UlH_d-J4AaABAg",
  12965.       "snippet": {
  12966.         "videoId": "atnSTtiWU5E",
  12967.         "topLevelComment": {
  12968.           "kind": "youtube#comment",
  12969.           "etag": "kFjAmMJ1wqLgIwJIVz1u-_5DiNo",
  12970.           "id": "UgzepRl2V3g_UlH_d-J4AaABAg",
  12971.           "snippet": {
  12972.             "videoId": "atnSTtiWU5E",
  12973.             "textDisplay": "@Lucariofan448 A  challenger approaches.",
  12974.             "textOriginal": "@Lucariofan448 A  challenger approaches.",
  12975.             "authorDisplayName": "anxez",
  12976.             "authorChannelUrl": "http://www.youtube.com/channel/UCUFSgM1OzcspRZ7yIn9f0Hg",
  12977.             "authorChannelId": {
  12978.               "value": "UCUFSgM1OzcspRZ7yIn9f0Hg"
  12979.             },
  12980.             "canRate": true,
  12981.             "viewerRating": "none",
  12982.             "likeCount": 0,
  12983.             "publishedAt": "2011-07-19T02:26:26Z",
  12984.             "updatedAt": "2011-07-19T02:26:26Z"
  12985.           }
  12986.         },
  12987.         "canReply": true,
  12988.         "totalReplyCount": 0,
  12989.         "isPublic": true
  12990.       }
  12991.     },
  12992.     {
  12993.       "kind": "youtube#commentThread",
  12994.       "etag": "bUSYUWVkv8FtSUHLVXvcfrtHbfs",
  12995.       "id": "UgxuVKiizf0kFGuaKe94AaABAg",
  12996.       "snippet": {
  12997.         "videoId": "atnSTtiWU5E",
  12998.         "topLevelComment": {
  12999.           "kind": "youtube#comment",
  13000.           "etag": "g3Q_n6dHR9VqUytdIDkCcJjFpfY",
  13001.           "id": "UgxuVKiizf0kFGuaKe94AaABAg",
  13002.           "snippet": {
  13003.             "videoId": "atnSTtiWU5E",
  13004.             "textDisplay": "What? No Pinkie, you can't claim copyright for this! Its not ur song!\nIts...the eurobeat version. And sounds nothin like it! And no, you can't turn the author into cupcakes! Don't want to get sued again, do we? And wiping pony minds takes time. ",
  13005.             "textOriginal": "What? No Pinkie, you can't claim copyright for this! Its not ur song!\nIts...the eurobeat version. And sounds nothin like it! And no, you can't turn the author into cupcakes! Don't want to get sued again, do we? And wiping pony minds takes time. ",
  13006.             "authorDisplayName": "DullFace101",
  13007.             "authorChannelUrl": "http://www.youtube.com/channel/UCcj6e9Z96klfpNGWDGYYPUw",
  13008.             "authorChannelId": {
  13009.               "value": "UCcj6e9Z96klfpNGWDGYYPUw"
  13010.             },
  13011.             "canRate": true,
  13012.             "viewerRating": "none",
  13013.             "likeCount": 0,
  13014.             "publishedAt": "2011-07-18T22:37:58Z",
  13015.             "updatedAt": "2011-07-18T22:37:58Z"
  13016.           }
  13017.         },
  13018.         "canReply": true,
  13019.         "totalReplyCount": 0,
  13020.         "isPublic": true
  13021.       }
  13022.     },
  13023.     {
  13024.       "kind": "youtube#commentThread",
  13025.       "etag": "dHpNq-ymHd0T92AX_ehN60n5P4k",
  13026.       "id": "UgyFTLwYp5Ko7c1Bj2t4AaABAg",
  13027.       "snippet": {
  13028.         "videoId": "atnSTtiWU5E",
  13029.         "topLevelComment": {
  13030.           "kind": "youtube#comment",
  13031.           "etag": "lkg6yEfjs2DUBbsxQBSX5BHhxLs",
  13032.           "id": "UgyFTLwYp5Ko7c1Bj2t4AaABAg",
  13033.           "snippet": {
  13034.             "videoId": "atnSTtiWU5E",
  13035.             "textDisplay": "What genre would this be classified as? I'm not much into electronica at all, but this is awesome. I need to find more to last me until Vol. 2.\n\nBecause this is great.",
  13036.             "textOriginal": "What genre would this be classified as? I'm not much into electronica at all, but this is awesome. I need to find more to last me until Vol. 2.\n\nBecause this is great.",
  13037.             "authorDisplayName": "tsir",
  13038.             "authorChannelUrl": "http://www.youtube.com/channel/UC-grY4wnJG601cGV6fG1brw",
  13039.             "authorChannelId": {
  13040.               "value": "UC-grY4wnJG601cGV6fG1brw"
  13041.             },
  13042.             "canRate": true,
  13043.             "viewerRating": "none",
  13044.             "likeCount": 0,
  13045.             "publishedAt": "2011-07-18T17:07:47Z",
  13046.             "updatedAt": "2011-07-18T17:07:47Z"
  13047.           }
  13048.         },
  13049.         "canReply": true,
  13050.         "totalReplyCount": 0,
  13051.         "isPublic": true
  13052.       }
  13053.     },
  13054.     {
  13055.       "kind": "youtube#commentThread",
  13056.       "etag": "4jrjKJK4RcZLdSri23ZHjGqtZ_4",
  13057.       "id": "Ugy5mrutaZcULZyI91J4AaABAg",
  13058.       "snippet": {
  13059.         "videoId": "atnSTtiWU5E",
  13060.         "topLevelComment": {
  13061.           "kind": "youtube#comment",
  13062.           "etag": "mb7Ikwfl3RFfumz2NQrrBj72YGQ",
  13063.           "id": "Ugy5mrutaZcULZyI91J4AaABAg",
  13064.           "snippet": {
  13065.             "videoId": "atnSTtiWU5E",
  13066.             "textDisplay": "I absolutely adore this song. You took my least favorite song from the show and turned it into my favorite song on this album. You sir, work wonders.",
  13067.             "textOriginal": "I absolutely adore this song. You took my least favorite song from the show and turned it into my favorite song on this album. You sir, work wonders.",
  13068.             "authorDisplayName": "triardthefox",
  13069.             "authorChannelUrl": "http://www.youtube.com/channel/UC7ZyMviT5rPphO3L6-W11jA",
  13070.             "authorChannelId": {
  13071.               "value": "UC7ZyMviT5rPphO3L6-W11jA"
  13072.             },
  13073.             "canRate": true,
  13074.             "viewerRating": "none",
  13075.             "likeCount": 3,
  13076.             "publishedAt": "2011-07-18T13:33:05Z",
  13077.             "updatedAt": "2011-07-18T13:33:05Z"
  13078.           }
  13079.         },
  13080.         "canReply": true,
  13081.         "totalReplyCount": 0,
  13082.         "isPublic": true
  13083.       }
  13084.     },
  13085.     {
  13086.       "kind": "youtube#commentThread",
  13087.       "etag": "4AMekYiNpoOzK5GcKQQs69dySMg",
  13088.       "id": "UgxcSU9NQjEg_TrxvWJ4AaABAg",
  13089.       "snippet": {
  13090.         "videoId": "atnSTtiWU5E",
  13091.         "topLevelComment": {
  13092.           "kind": "youtube#comment",
  13093.           "etag": "NX9QYP8jR8CEuKqsFx2jYz0mu8M",
  13094.           "id": "UgxcSU9NQjEg_TrxvWJ4AaABAg",
  13095.           "snippet": {
  13096.             "videoId": "atnSTtiWU5E",
  13097.             "textDisplay": "not at all what i was expecting, holy shit",
  13098.             "textOriginal": "not at all what i was expecting, holy shit",
  13099.             "authorDisplayName": "chimerablue",
  13100.             "authorChannelUrl": "http://www.youtube.com/channel/UCMaS7ix0DsfkI5qfzZ6bX1w",
  13101.             "authorChannelId": {
  13102.               "value": "UCMaS7ix0DsfkI5qfzZ6bX1w"
  13103.             },
  13104.             "canRate": true,
  13105.             "viewerRating": "none",
  13106.             "likeCount": 0,
  13107.             "publishedAt": "2011-07-17T00:12:01Z",
  13108.             "updatedAt": "2011-07-17T00:12:01Z"
  13109.           }
  13110.         },
  13111.         "canReply": true,
  13112.         "totalReplyCount": 0,
  13113.         "isPublic": true
  13114.       }
  13115.     },
  13116.     {
  13117.       "kind": "youtube#commentThread",
  13118.       "etag": "KbqEOHSg8FC6QzcU71zXFTBz8UY",
  13119.       "id": "UgygCovgKVOJ51zRFj54AaABAg",
  13120.       "snippet": {
  13121.         "videoId": "atnSTtiWU5E",
  13122.         "topLevelComment": {
  13123.           "kind": "youtube#comment",
  13124.           "etag": "XgqxctjWTvZdIUoaoYIrfo2qf0I",
  13125.           "id": "UgygCovgKVOJ51zRFj54AaABAg",
  13126.           "snippet": {
  13127.             "videoId": "atnSTtiWU5E",
  13128.             "textDisplay": "This is affecting my sanity... in a good way, though.",
  13129.             "textOriginal": "This is affecting my sanity... in a good way, though.",
  13130.             "authorDisplayName": "Louise Puglisi",
  13131.             "authorChannelUrl": "http://www.youtube.com/channel/UCqIFc3O9Mf6UyRZbXpBXUZw",
  13132.             "authorChannelId": {
  13133.               "value": "UCqIFc3O9Mf6UyRZbXpBXUZw"
  13134.             },
  13135.             "canRate": true,
  13136.             "viewerRating": "none",
  13137.             "likeCount": 0,
  13138.             "publishedAt": "2011-07-16T04:58:59Z",
  13139.             "updatedAt": "2011-07-16T04:58:59Z"
  13140.           }
  13141.         },
  13142.         "canReply": true,
  13143.         "totalReplyCount": 0,
  13144.         "isPublic": true
  13145.       }
  13146.     },
  13147.     {
  13148.       "kind": "youtube#commentThread",
  13149.       "etag": "YMFhMc-oQZzrxwU_LBx8m28uPTg",
  13150.       "id": "UgwBuAl3f5fm6Hzkokl4AaABAg",
  13151.       "snippet": {
  13152.         "videoId": "atnSTtiWU5E",
  13153.         "topLevelComment": {
  13154.           "kind": "youtube#comment",
  13155.           "etag": "92ltDjP628dJx2TTdYiTGgyfkjk",
  13156.           "id": "UgwBuAl3f5fm6Hzkokl4AaABAg",
  13157.           "snippet": {
  13158.             "videoId": "atnSTtiWU5E",
  13159.             "textDisplay": "It's a great collection, but I think it's a lot better if someone sang to it... You know, how initial D does it! I prefer a guy. somepony that sounded like he sang running in the 90s\n",
  13160.             "textOriginal": "It's a great collection, but I think it's a lot better if someone sang to it... You know, how initial D does it! I prefer a guy. somepony that sounded like he sang running in the 90s\n",
  13161.             "authorDisplayName": "Rose Beowulve",
  13162.             "authorChannelUrl": "http://www.youtube.com/channel/UCpK0Q8c1S3-WhVMYmgI6d5w",
  13163.             "authorChannelId": {
  13164.               "value": "UCpK0Q8c1S3-WhVMYmgI6d5w"
  13165.             },
  13166.             "canRate": true,
  13167.             "viewerRating": "none",
  13168.             "likeCount": 0,
  13169.             "publishedAt": "2011-07-13T13:48:26Z",
  13170.             "updatedAt": "2011-07-13T13:48:26Z"
  13171.           }
  13172.         },
  13173.         "canReply": true,
  13174.         "totalReplyCount": 0,
  13175.         "isPublic": true
  13176.       }
  13177.     },
  13178.     {
  13179.       "kind": "youtube#commentThread",
  13180.       "etag": "AcrzpGLyiKoRIsaW2X8yHXs1v1U",
  13181.       "id": "Ugx660AEQbyyMtGX0oh4AaABAg",
  13182.       "snippet": {
  13183.         "videoId": "atnSTtiWU5E",
  13184.         "topLevelComment": {
  13185.           "kind": "youtube#comment",
  13186.           "etag": "pQr8vmSv8J6OjzaE66ZFx27XBb8",
  13187.           "id": "Ugx660AEQbyyMtGX0oh4AaABAg",
  13188.           "snippet": {
  13189.             "videoId": "atnSTtiWU5E",
  13190.             "textDisplay": "@TheDownAndOutKS ^_____^",
  13191.             "textOriginal": "@TheDownAndOutKS ^_____^",
  13192.             "authorDisplayName": "MrColeknows",
  13193.             "authorChannelUrl": "http://www.youtube.com/channel/UCWg3f5bT2PcKu1fGNz57SMQ",
  13194.             "authorChannelId": {
  13195.               "value": "UCWg3f5bT2PcKu1fGNz57SMQ"
  13196.             },
  13197.             "canRate": true,
  13198.             "viewerRating": "none",
  13199.             "likeCount": 0,
  13200.             "publishedAt": "2011-07-13T06:04:48Z",
  13201.             "updatedAt": "2011-07-13T06:04:48Z"
  13202.           }
  13203.         },
  13204.         "canReply": true,
  13205.         "totalReplyCount": 0,
  13206.         "isPublic": true
  13207.       }
  13208.     },
  13209.     {
  13210.       "kind": "youtube#commentThread",
  13211.       "etag": "DypnTjqlFvp5GTZp2xokq1TpnG0",
  13212.       "id": "UgzI8MwKZCn31M9fZVB4AaABAg",
  13213.       "snippet": {
  13214.         "videoId": "atnSTtiWU5E",
  13215.         "topLevelComment": {
  13216.           "kind": "youtube#comment",
  13217.           "etag": "MEE5Xq5P269QwNDFRjmH_2WRxTw",
  13218.           "id": "UgzI8MwKZCn31M9fZVB4AaABAg",
  13219.           "snippet": {
  13220.             "videoId": "atnSTtiWU5E",
  13221.             "textDisplay": "I feel like this should be on DDR hahahaha",
  13222.             "textOriginal": "I feel like this should be on DDR hahahaha",
  13223.             "authorDisplayName": "CoffeBlack",
  13224.             "authorChannelUrl": "http://www.youtube.com/channel/UCOODx_AIgT6m9hk4ldrIqNg",
  13225.             "authorChannelId": {
  13226.               "value": "UCOODx_AIgT6m9hk4ldrIqNg"
  13227.             },
  13228.             "canRate": true,
  13229.             "viewerRating": "none",
  13230.             "likeCount": 0,
  13231.             "publishedAt": "2011-07-10T18:56:27Z",
  13232.             "updatedAt": "2011-07-10T18:56:27Z"
  13233.           }
  13234.         },
  13235.         "canReply": true,
  13236.         "totalReplyCount": 0,
  13237.         "isPublic": true
  13238.       }
  13239.     },
  13240.     {
  13241.       "kind": "youtube#commentThread",
  13242.       "etag": "bsHAJbfvaiUe3jzPSCQX8pA7AA8",
  13243.       "id": "UgzhnO3ECYdsjodA42V4AaABAg",
  13244.       "snippet": {
  13245.         "videoId": "atnSTtiWU5E",
  13246.         "topLevelComment": {
  13247.           "kind": "youtube#comment",
  13248.           "etag": "W_ylug8Bb_5TAVxPSQMO-T7t87w",
  13249.           "id": "UgzhnO3ECYdsjodA42V4AaABAg",
  13250.           "snippet": {
  13251.             "videoId": "atnSTtiWU5E",
  13252.             "textDisplay": "Sounds like something from Megaman.  Brohoof!",
  13253.             "textOriginal": "Sounds like something from Megaman.  Brohoof!",
  13254.             "authorDisplayName": "Jackalope",
  13255.             "authorChannelUrl": "http://www.youtube.com/channel/UCry_ugYTFUdmGBGQ_NLof4g",
  13256.             "authorChannelId": {
  13257.               "value": "UCry_ugYTFUdmGBGQ_NLof4g"
  13258.             },
  13259.             "canRate": true,
  13260.             "viewerRating": "none",
  13261.             "likeCount": 0,
  13262.             "publishedAt": "2011-07-10T05:47:01Z",
  13263.             "updatedAt": "2011-07-10T05:47:01Z"
  13264.           }
  13265.         },
  13266.         "canReply": true,
  13267.         "totalReplyCount": 0,
  13268.         "isPublic": true
  13269.       }
  13270.     },
  13271.     {
  13272.       "kind": "youtube#commentThread",
  13273.       "etag": "ZngY-3W4vSAUTKExdZeOnjB_rpM",
  13274.       "id": "UgxsO5-0xmbcPNPYEHR4AaABAg",
  13275.       "snippet": {
  13276.         "videoId": "atnSTtiWU5E",
  13277.         "topLevelComment": {
  13278.           "kind": "youtube#comment",
  13279.           "etag": "M-F5sd-D4PZfq_-5ohwrGBYeMT0",
  13280.           "id": "UgxsO5-0xmbcPNPYEHR4AaABAg",
  13281.           "snippet": {
  13282.             "videoId": "atnSTtiWU5E",
  13283.             "textDisplay": "My brain is now filled with adrenaline. Thanks.",
  13284.             "textOriginal": "My brain is now filled with adrenaline. Thanks.",
  13285.             "authorDisplayName": "Ask Cheer Bear",
  13286.             "authorChannelUrl": "http://www.youtube.com/channel/UCLzmkK4H7mbKJABl_VjuX2Q",
  13287.             "authorChannelId": {
  13288.               "value": "UCLzmkK4H7mbKJABl_VjuX2Q"
  13289.             },
  13290.             "canRate": true,
  13291.             "viewerRating": "none",
  13292.             "likeCount": 0,
  13293.             "publishedAt": "2011-07-10T00:32:49Z",
  13294.             "updatedAt": "2011-07-10T00:32:49Z"
  13295.           }
  13296.         },
  13297.         "canReply": true,
  13298.         "totalReplyCount": 0,
  13299.         "isPublic": true
  13300.       }
  13301.     },
  13302.     {
  13303.       "kind": "youtube#commentThread",
  13304.       "etag": "C4LTdIFDRoQ7NgtjGeUIOHjIzZw",
  13305.       "id": "Ugw6cWB4VbYZx24l4Ox4AaABAg",
  13306.       "snippet": {
  13307.         "videoId": "atnSTtiWU5E",
  13308.         "topLevelComment": {
  13309.           "kind": "youtube#comment",
  13310.           "etag": "DEKYm2Jl5eVHF2FAnjyv4ISsGHg",
  13311.           "id": "Ugw6cWB4VbYZx24l4Ox4AaABAg",
  13312.           "snippet": {
  13313.             "videoId": "atnSTtiWU5E",
  13314.             "textDisplay": "Thumbs down if you played the first Luna Game and heard this music as Pinkie Pie, or Applebloom stares at you.",
  13315.             "textOriginal": "Thumbs down if you played the first Luna Game and heard this music as Pinkie Pie, or Applebloom stares at you.",
  13316.             "authorDisplayName": "Giovanni",
  13317.             "authorChannelUrl": "http://www.youtube.com/channel/UCZsT9e_CJ62RsV2HLpiGiKg",
  13318.             "authorChannelId": {
  13319.               "value": "UCZsT9e_CJ62RsV2HLpiGiKg"
  13320.             },
  13321.             "canRate": true,
  13322.             "viewerRating": "none",
  13323.             "likeCount": 0,
  13324.             "publishedAt": "2011-07-08T16:31:03Z",
  13325.             "updatedAt": "2011-07-08T16:31:03Z"
  13326.           }
  13327.         },
  13328.         "canReply": true,
  13329.         "totalReplyCount": 0,
  13330.         "isPublic": true
  13331.       }
  13332.     },
  13333.     {
  13334.       "kind": "youtube#commentThread",
  13335.       "etag": "AEWDUl5tZOFIXcAAnduil_7oLxg",
  13336.       "id": "UgxOuVt6ZzpDge0AZSV4AaABAg",
  13337.       "snippet": {
  13338.         "videoId": "atnSTtiWU5E",
  13339.         "topLevelComment": {
  13340.           "kind": "youtube#comment",
  13341.           "etag": "PjRRP0qiWSCU5JoEjkdZnB50YgI",
  13342.           "id": "UgxOuVt6ZzpDge0AZSV4AaABAg",
  13343.           "snippet": {
  13344.             "videoId": "atnSTtiWU5E",
  13345.             "textDisplay": "@DiegoXLuigi FUCKING A DUDE.",
  13346.             "textOriginal": "@DiegoXLuigi FUCKING A DUDE.",
  13347.             "authorDisplayName": "Giovanni",
  13348.             "authorChannelUrl": "http://www.youtube.com/channel/UCZsT9e_CJ62RsV2HLpiGiKg",
  13349.             "authorChannelId": {
  13350.               "value": "UCZsT9e_CJ62RsV2HLpiGiKg"
  13351.             },
  13352.             "canRate": true,
  13353.             "viewerRating": "none",
  13354.             "likeCount": 0,
  13355.             "publishedAt": "2011-07-08T16:30:19Z",
  13356.             "updatedAt": "2011-07-08T16:30:19Z"
  13357.           }
  13358.         },
  13359.         "canReply": true,
  13360.         "totalReplyCount": 0,
  13361.         "isPublic": true
  13362.       }
  13363.     }
  13364.   ]
  13365. }
  13366. {
  13367.   "kind": "youtube#commentThreadListResponse",
  13368.   "etag": "JyCLP9ykJaxYuGqqV0aRQlUWuYo",
  13369.   "nextPageToken": "QURTSl9pM0FqcjNVQlpOM0RFeUhpUlh4THZvRE8zQkNyYmgtdDdfN1Z5WHd0VXNmZUpOYW9FZ0Z3Z254Ym0wQlRqU05vc1ZPeWpWZTg2UQ==",
  13370.   "pageInfo": {
  13371.     "totalResults": 100,
  13372.     "resultsPerPage": 100
  13373.   },
  13374.   "items": [
  13375.     {
  13376.       "kind": "youtube#commentThread",
  13377.       "etag": "GhJT30F4h-HqjMmtFFxHkfzjRvo",
  13378.       "id": "UgyO_j-Pd1XQDXLNYmN4AaABAg",
  13379.       "snippet": {
  13380.         "videoId": "atnSTtiWU5E",
  13381.         "topLevelComment": {
  13382.           "kind": "youtube#comment",
  13383.           "etag": "NPoYTesfd5zBwbVsn2GwiVrhRRM",
  13384.           "id": "UgyO_j-Pd1XQDXLNYmN4AaABAg",
  13385.           "snippet": {
  13386.             "videoId": "atnSTtiWU5E",
  13387.             "textDisplay": "@L0wD0wnPhX ye~",
  13388.             "textOriginal": "@L0wD0wnPhX ye~",
  13389.             "authorDisplayName": "bbmmaarr",
  13390.             "authorChannelUrl": "http://www.youtube.com/channel/UC4p2niLENO7NDNsbGeLx0gw",
  13391.             "authorChannelId": {
  13392.               "value": "UC4p2niLENO7NDNsbGeLx0gw"
  13393.             },
  13394.             "canRate": true,
  13395.             "viewerRating": "none",
  13396.             "likeCount": 0,
  13397.             "publishedAt": "2011-07-07T22:15:48Z",
  13398.             "updatedAt": "2011-07-07T22:15:48Z"
  13399.           }
  13400.         },
  13401.         "canReply": true,
  13402.         "totalReplyCount": 0,
  13403.         "isPublic": true
  13404.       }
  13405.     },
  13406.     {
  13407.       "kind": "youtube#commentThread",
  13408.       "etag": "vFcWGwDdfoF10DDsbImpgmpoNnA",
  13409.       "id": "UgwP0WF-q9i7Q7npPIF4AaABAg",
  13410.       "snippet": {
  13411.         "videoId": "atnSTtiWU5E",
  13412.         "topLevelComment": {
  13413.           "kind": "youtube#comment",
  13414.           "etag": "-_os8Lo9ESe-Dxo0fiYtVUsDO4U",
  13415.           "id": "UgwP0WF-q9i7Q7npPIF4AaABAg",
  13416.           "snippet": {
  13417.             "videoId": "atnSTtiWU5E",
  13418.             "textDisplay": "@bmar896 \n\nhey you used this in your video :D",
  13419.             "textOriginal": "@bmar896 \n\nhey you used this in your video :D",
  13420.             "authorDisplayName": "Sir Edward Gooch",
  13421.             "authorChannelUrl": "http://www.youtube.com/channel/UCIkNSVqIXx0nuMIRRhGbV_w",
  13422.             "authorChannelId": {
  13423.               "value": "UCIkNSVqIXx0nuMIRRhGbV_w"
  13424.             },
  13425.             "canRate": true,
  13426.             "viewerRating": "none",
  13427.             "likeCount": 0,
  13428.             "publishedAt": "2011-07-07T22:07:09Z",
  13429.             "updatedAt": "2011-07-07T22:07:09Z"
  13430.           }
  13431.         },
  13432.         "canReply": true,
  13433.         "totalReplyCount": 0,
  13434.         "isPublic": true
  13435.       }
  13436.     },
  13437.     {
  13438.       "kind": "youtube#commentThread",
  13439.       "etag": "H1NteZ_ysiT4fD81tb86ZhWlLS0",
  13440.       "id": "UgyHDPDfCY0N08xiwIZ4AaABAg",
  13441.       "snippet": {
  13442.         "videoId": "atnSTtiWU5E",
  13443.         "topLevelComment": {
  13444.           "kind": "youtube#comment",
  13445.           "etag": "RdrLwOEdOBZoOSW43tCziRvJilY",
  13446.           "id": "UgyHDPDfCY0N08xiwIZ4AaABAg",
  13447.           "snippet": {
  13448.             "videoId": "atnSTtiWU5E",
  13449.             "textDisplay": "@Meep200X Nah. This music is just addicting as the MLP: FiM itself.",
  13450.             "textOriginal": "@Meep200X Nah. This music is just addicting as the MLP: FiM itself.",
  13451.             "authorDisplayName": "MetaL556",
  13452.             "authorChannelUrl": "http://www.youtube.com/channel/UChhSRH6BmD3_FFrCJjpcGLQ",
  13453.             "authorChannelId": {
  13454.               "value": "UChhSRH6BmD3_FFrCJjpcGLQ"
  13455.             },
  13456.             "canRate": true,
  13457.             "viewerRating": "none",
  13458.             "likeCount": 0,
  13459.             "publishedAt": "2011-07-07T14:57:43Z",
  13460.             "updatedAt": "2011-07-07T14:57:43Z"
  13461.           }
  13462.         },
  13463.         "canReply": true,
  13464.         "totalReplyCount": 0,
  13465.         "isPublic": true
  13466.       }
  13467.     },
  13468.     {
  13469.       "kind": "youtube#commentThread",
  13470.       "etag": "vlWAzZx11RztL7AjCQkkgV0YAP4",
  13471.       "id": "UgwN8fH04BP5vREDwKF4AaABAg",
  13472.       "snippet": {
  13473.         "videoId": "atnSTtiWU5E",
  13474.         "topLevelComment": {
  13475.           "kind": "youtube#comment",
  13476.           "etag": "icpBEOJdUuQkmK4RUZv9zKbdDms",
  13477.           "id": "UgwN8fH04BP5vREDwKF4AaABAg",
  13478.           "snippet": {
  13479.             "videoId": "atnSTtiWU5E",
  13480.             "textDisplay": "My little Touhou: Friendship is Bullet Hell\n\nWould be fun to play as Twilight Sparkle facing off some of the characters from the show as the bosses this way, perhaps with Nightmare Moon as the final boss?",
  13481.             "textOriginal": "My little Touhou: Friendship is Bullet Hell\n\nWould be fun to play as Twilight Sparkle facing off some of the characters from the show as the bosses this way, perhaps with Nightmare Moon as the final boss?",
  13482.             "authorDisplayName": "MetaL556",
  13483.             "authorChannelUrl": "http://www.youtube.com/channel/UChhSRH6BmD3_FFrCJjpcGLQ",
  13484.             "authorChannelId": {
  13485.               "value": "UChhSRH6BmD3_FFrCJjpcGLQ"
  13486.             },
  13487.             "canRate": true,
  13488.             "viewerRating": "none",
  13489.             "likeCount": 0,
  13490.             "publishedAt": "2011-07-07T07:55:56Z",
  13491.             "updatedAt": "2011-07-07T07:55:56Z"
  13492.           }
  13493.         },
  13494.         "canReply": true,
  13495.         "totalReplyCount": 0,
  13496.         "isPublic": true
  13497.       }
  13498.     },
  13499.     {
  13500.       "kind": "youtube#commentThread",
  13501.       "etag": "usNLJ_GnAaAlChF_UZwfrRdh-2Q",
  13502.       "id": "UgwR9pg63l0_ygRXnEh4AaABAg",
  13503.       "snippet": {
  13504.         "videoId": "atnSTtiWU5E",
  13505.         "topLevelComment": {
  13506.           "kind": "youtube#comment",
  13507.           "etag": "ba6MoahDPkYsCxetFyDa-7PqDlA",
  13508.           "id": "UgwR9pg63l0_ygRXnEh4AaABAg",
  13509.           "snippet": {
  13510.             "videoId": "atnSTtiWU5E",
  13511.             "textDisplay": "best",
  13512.             "textOriginal": "best",
  13513.             "authorDisplayName": "bbmmaarr",
  13514.             "authorChannelUrl": "http://www.youtube.com/channel/UC4p2niLENO7NDNsbGeLx0gw",
  13515.             "authorChannelId": {
  13516.               "value": "UC4p2niLENO7NDNsbGeLx0gw"
  13517.             },
  13518.             "canRate": true,
  13519.             "viewerRating": "none",
  13520.             "likeCount": 0,
  13521.             "publishedAt": "2011-07-06T23:24:56Z",
  13522.             "updatedAt": "2011-07-06T23:24:56Z"
  13523.           }
  13524.         },
  13525.         "canReply": true,
  13526.         "totalReplyCount": 0,
  13527.         "isPublic": true
  13528.       }
  13529.     },
  13530.     {
  13531.       "kind": "youtube#commentThread",
  13532.       "etag": "Up-idCrxLXFiG8pzC4-q1faqBbM",
  13533.       "id": "Ugz_ptHU4CrD3WoTAkd4AaABAg",
  13534.       "snippet": {
  13535.         "videoId": "atnSTtiWU5E",
  13536.         "topLevelComment": {
  13537.           "kind": "youtube#comment",
  13538.           "etag": "nXicZYXegmrrWj-SdWqTsCJ736g",
  13539.           "id": "Ugz_ptHU4CrD3WoTAkd4AaABAg",
  13540.           "snippet": {
  13541.             "videoId": "atnSTtiWU5E",
  13542.             "textDisplay": "@ChromaAurora i just now tried it, but if you play fire field and this at the same time, you can barely hear this",
  13543.             "textOriginal": "@ChromaAurora i just now tried it, but if you play fire field and this at the same time, you can barely hear this",
  13544.             "authorDisplayName": "wafflemale",
  13545.             "authorChannelUrl": "http://www.youtube.com/channel/UCrooV9hxJMOpOQQgvtvC9MQ",
  13546.             "authorChannelId": {
  13547.               "value": "UCrooV9hxJMOpOQQgvtvC9MQ"
  13548.             },
  13549.             "canRate": true,
  13550.             "viewerRating": "none",
  13551.             "likeCount": 0,
  13552.             "publishedAt": "2011-07-05T19:56:47Z",
  13553.             "updatedAt": "2011-07-05T19:56:47Z"
  13554.           }
  13555.         },
  13556.         "canReply": true,
  13557.         "totalReplyCount": 0,
  13558.         "isPublic": true
  13559.       }
  13560.     },
  13561.     {
  13562.       "kind": "youtube#commentThread",
  13563.       "etag": "7q1sC-p-RQEX-bLvyjHXukSh1ms",
  13564.       "id": "UgzVhBA3IidQtgij2CV4AaABAg",
  13565.       "snippet": {
  13566.         "videoId": "atnSTtiWU5E",
  13567.         "topLevelComment": {
  13568.           "kind": "youtube#comment",
  13569.           "etag": "XZ_py6Ps_-meuKAKjdHoiYcaB2I",
  13570.           "id": "UgzVhBA3IidQtgij2CV4AaABAg",
  13571.           "snippet": {
  13572.             "videoId": "atnSTtiWU5E",
  13573.             "textDisplay": "@Nevikx666 you know there is a game on mofunzone called "FiM: story of the banks" you should check it out",
  13574.             "textOriginal": "@Nevikx666 you know there is a game on mofunzone called \"FiM: story of the banks\" you should check it out",
  13575.             "authorDisplayName": "wafflemale",
  13576.             "authorChannelUrl": "http://www.youtube.com/channel/UCrooV9hxJMOpOQQgvtvC9MQ",
  13577.             "authorChannelId": {
  13578.               "value": "UCrooV9hxJMOpOQQgvtvC9MQ"
  13579.             },
  13580.             "canRate": true,
  13581.             "viewerRating": "none",
  13582.             "likeCount": 0,
  13583.             "publishedAt": "2011-07-05T19:55:07Z",
  13584.             "updatedAt": "2011-07-05T19:55:07Z"
  13585.           }
  13586.         },
  13587.         "canReply": true,
  13588.         "totalReplyCount": 0,
  13589.         "isPublic": true
  13590.       }
  13591.     },
  13592.     {
  13593.       "kind": "youtube#commentThread",
  13594.       "etag": "o-PQ78bv1E4KRFamLDVcHUM7Dqo",
  13595.       "id": "Ugz6pbV1rSqthKITZ1Z4AaABAg",
  13596.       "snippet": {
  13597.         "videoId": "atnSTtiWU5E",
  13598.         "topLevelComment": {
  13599.           "kind": "youtube#comment",
  13600.           "etag": "pTNRRrEaqY1r_kKvXO3_GVuAe6o",
  13601.           "id": "Ugz6pbV1rSqthKITZ1Z4AaABAg",
  13602.           "snippet": {
  13603.             "videoId": "atnSTtiWU5E",
  13604.             "textDisplay": "@ChromaAurora im actually surprised somebody realized this, but yes i am and your a man for figuring it out",
  13605.             "textOriginal": "@ChromaAurora im actually surprised somebody realized this, but yes i am and your a man for figuring it out",
  13606.             "authorDisplayName": "wafflemale",
  13607.             "authorChannelUrl": "http://www.youtube.com/channel/UCrooV9hxJMOpOQQgvtvC9MQ",
  13608.             "authorChannelId": {
  13609.               "value": "UCrooV9hxJMOpOQQgvtvC9MQ"
  13610.             },
  13611.             "canRate": true,
  13612.             "viewerRating": "none",
  13613.             "likeCount": 0,
  13614.             "publishedAt": "2011-07-05T19:46:55Z",
  13615.             "updatedAt": "2011-07-05T19:46:55Z"
  13616.           }
  13617.         },
  13618.         "canReply": true,
  13619.         "totalReplyCount": 0,
  13620.         "isPublic": true
  13621.       }
  13622.     },
  13623.     {
  13624.       "kind": "youtube#commentThread",
  13625.       "etag": "W0v17GTSd2oW-1GMLlsrT3TFkEM",
  13626.       "id": "Ugwr5aJWSF7tnv3JIrd4AaABAg",
  13627.       "snippet": {
  13628.         "videoId": "atnSTtiWU5E",
  13629.         "topLevelComment": {
  13630.           "kind": "youtube#comment",
  13631.           "etag": "N0dvHNPbxhgy8ihQs5_mG0394JI",
  13632.           "id": "Ugwr5aJWSF7tnv3JIrd4AaABAg",
  13633.           "snippet": {
  13634.             "videoId": "atnSTtiWU5E",
  13635.             "textDisplay": "It's a bad idea to stay up for more than 16 hours listening to these right? Right...?",
  13636.             "textOriginal": "It's a bad idea to stay up for more than 16 hours listening to these right? Right...?",
  13637.             "authorDisplayName": "Meep200X",
  13638.             "authorChannelUrl": "http://www.youtube.com/channel/UCyeFkh6Mxrr4tiMpsDQypKw",
  13639.             "authorChannelId": {
  13640.               "value": "UCyeFkh6Mxrr4tiMpsDQypKw"
  13641.             },
  13642.             "canRate": true,
  13643.             "viewerRating": "none",
  13644.             "likeCount": 0,
  13645.             "publishedAt": "2011-07-05T05:06:35Z",
  13646.             "updatedAt": "2011-07-05T05:06:35Z"
  13647.           }
  13648.         },
  13649.         "canReply": true,
  13650.         "totalReplyCount": 0,
  13651.         "isPublic": true
  13652.       }
  13653.     },
  13654.     {
  13655.       "kind": "youtube#commentThread",
  13656.       "etag": "RMV4qQuVjDJ7sQxLAoLPFvE117M",
  13657.       "id": "UgwkNKlFBN24GF-pchF4AaABAg",
  13658.       "snippet": {
  13659.         "videoId": "atnSTtiWU5E",
  13660.         "topLevelComment": {
  13661.           "kind": "youtube#comment",
  13662.           "etag": "Rkl32SQ8vipYJ_R3XW7ouP76mcI",
  13663.           "id": "UgwkNKlFBN24GF-pchF4AaABAg",
  13664.           "snippet": {
  13665.             "videoId": "atnSTtiWU5E",
  13666.             "textDisplay": "This belongs in Mega Man.",
  13667.             "textOriginal": "This belongs in Mega Man.",
  13668.             "authorDisplayName": "LazyCrazyClown",
  13669.             "authorChannelUrl": "http://www.youtube.com/channel/UCmK9u0bmnNAXx54FQncyRng",
  13670.             "authorChannelId": {
  13671.               "value": "UCmK9u0bmnNAXx54FQncyRng"
  13672.             },
  13673.             "canRate": true,
  13674.             "viewerRating": "none",
  13675.             "likeCount": 0,
  13676.             "publishedAt": "2011-07-04T14:09:45Z",
  13677.             "updatedAt": "2011-07-04T14:09:45Z"
  13678.           }
  13679.         },
  13680.         "canReply": true,
  13681.         "totalReplyCount": 0,
  13682.         "isPublic": true
  13683.       }
  13684.     },
  13685.     {
  13686.       "kind": "youtube#commentThread",
  13687.       "etag": "MuWCaotOFu0nhuX3Ab3QZrS5_oU",
  13688.       "id": "Ugwj4mrmu7NmaKInXNR4AaABAg",
  13689.       "snippet": {
  13690.         "videoId": "atnSTtiWU5E",
  13691.         "topLevelComment": {
  13692.           "kind": "youtube#comment",
  13693.           "etag": "P7FLuWNtdBovLgiv9aLZsVDiYg0",
  13694.           "id": "Ugwj4mrmu7NmaKInXNR4AaABAg",
  13695.           "snippet": {
  13696.             "videoId": "atnSTtiWU5E",
  13697.             "textDisplay": "@wafflemale Are you referring to F-Zero? Just curious.",
  13698.             "textOriginal": "@wafflemale Are you referring to F-Zero? Just curious.",
  13699.             "authorDisplayName": "Zelnyair",
  13700.             "authorChannelUrl": "http://www.youtube.com/channel/UCh_mFgVbPRpuINWPnSoir4w",
  13701.             "authorChannelId": {
  13702.               "value": "UCh_mFgVbPRpuINWPnSoir4w"
  13703.             },
  13704.             "canRate": true,
  13705.             "viewerRating": "none",
  13706.             "likeCount": 0,
  13707.             "publishedAt": "2011-07-04T12:27:23Z",
  13708.             "updatedAt": "2011-07-04T12:27:23Z"
  13709.           }
  13710.         },
  13711.         "canReply": true,
  13712.         "totalReplyCount": 0,
  13713.         "isPublic": true
  13714.       }
  13715.     },
  13716.     {
  13717.       "kind": "youtube#commentThread",
  13718.       "etag": "Bmzjym982pnN1Fgk8l-Jpc-Q520",
  13719.       "id": "UgxWwWbGm4ZDerD1YrF4AaABAg",
  13720.       "snippet": {
  13721.         "videoId": "atnSTtiWU5E",
  13722.         "topLevelComment": {
  13723.           "kind": "youtube#comment",
  13724.           "etag": "S88GaX6gRgKCrKa_W1jYL-vqjcg",
  13725.           "id": "UgxWwWbGm4ZDerD1YrF4AaABAg",
  13726.           "snippet": {
  13727.             "videoId": "atnSTtiWU5E",
  13728.             "textDisplay": "wasnt there a lyrics included version as well\n",
  13729.             "textOriginal": "wasnt there a lyrics included version as well\n",
  13730.             "authorDisplayName": "EMes",
  13731.             "authorChannelUrl": "http://www.youtube.com/channel/UCH3Nbd2UYHFQsDUaeIcsNow",
  13732.             "authorChannelId": {
  13733.               "value": "UCH3Nbd2UYHFQsDUaeIcsNow"
  13734.             },
  13735.             "canRate": true,
  13736.             "viewerRating": "none",
  13737.             "likeCount": 0,
  13738.             "publishedAt": "2011-07-04T08:04:44Z",
  13739.             "updatedAt": "2011-07-04T08:04:44Z"
  13740.           }
  13741.         },
  13742.         "canReply": true,
  13743.         "totalReplyCount": 0,
  13744.         "isPublic": true
  13745.       }
  13746.     },
  13747.     {
  13748.       "kind": "youtube#commentThread",
  13749.       "etag": "KXEbAYHfW9_L4vZvgDBVu5pKeY8",
  13750.       "id": "UgzOuraTaM_szCHKqB54AaABAg",
  13751.       "snippet": {
  13752.         "videoId": "atnSTtiWU5E",
  13753.         "topLevelComment": {
  13754.           "kind": "youtube#comment",
  13755.           "etag": "ed0_6xdt720SSWkzfIs75ezzBBg",
  13756.           "id": "UgzOuraTaM_szCHKqB54AaABAg",
  13757.           "snippet": {
  13758.             "videoId": "atnSTtiWU5E",
  13759.             "textDisplay": "@Nevikx666 Source?",
  13760.             "textOriginal": "@Nevikx666 Source?",
  13761.             "authorDisplayName": "Demox",
  13762.             "authorChannelUrl": "http://www.youtube.com/channel/UC7AcIB92dk2-uJp1s_VblPQ",
  13763.             "authorChannelId": {
  13764.               "value": "UC7AcIB92dk2-uJp1s_VblPQ"
  13765.             },
  13766.             "canRate": true,
  13767.             "viewerRating": "none",
  13768.             "likeCount": 0,
  13769.             "publishedAt": "2011-07-04T06:20:18Z",
  13770.             "updatedAt": "2011-07-04T06:20:18Z"
  13771.           }
  13772.         },
  13773.         "canReply": true,
  13774.         "totalReplyCount": 0,
  13775.         "isPublic": true
  13776.       }
  13777.     },
  13778.     {
  13779.       "kind": "youtube#commentThread",
  13780.       "etag": "_pKzu7904RcIiwZbanw4xvu0VXQ",
  13781.       "id": "UgzigqMVwrXVnLwyELx4AaABAg",
  13782.       "snippet": {
  13783.         "videoId": "atnSTtiWU5E",
  13784.         "topLevelComment": {
  13785.           "kind": "youtube#comment",
  13786.           "etag": "c9kNMcqrdXw7Cf6LJuGswAQjxE4",
  13787.           "id": "UgzigqMVwrXVnLwyELx4AaABAg",
  13788.           "snippet": {
  13789.             "videoId": "atnSTtiWU5E",
  13790.             "textDisplay": "though this is techno (and fire field is rock) this almost compares :D",
  13791.             "textOriginal": "though this is techno (and fire field is rock) this almost compares :D",
  13792.             "authorDisplayName": "wafflemale",
  13793.             "authorChannelUrl": "http://www.youtube.com/channel/UCrooV9hxJMOpOQQgvtvC9MQ",
  13794.             "authorChannelId": {
  13795.               "value": "UCrooV9hxJMOpOQQgvtvC9MQ"
  13796.             },
  13797.             "canRate": true,
  13798.             "viewerRating": "none",
  13799.             "likeCount": 0,
  13800.             "publishedAt": "2011-07-03T13:50:28Z",
  13801.             "updatedAt": "2011-07-03T13:50:28Z"
  13802.           }
  13803.         },
  13804.         "canReply": true,
  13805.         "totalReplyCount": 0,
  13806.         "isPublic": true
  13807.       }
  13808.     },
  13809.     {
  13810.       "kind": "youtube#commentThread",
  13811.       "etag": "yKc-THGq53IXye_h_sJlG5E-AwE",
  13812.       "id": "Ugwfi6sukgiOYLDuvkJ4AaABAg",
  13813.       "snippet": {
  13814.         "videoId": "atnSTtiWU5E",
  13815.         "topLevelComment": {
  13816.           "kind": "youtube#comment",
  13817.           "etag": "bYnH_8vIMzzZQYLnB-IC1jvdeSs",
  13818.           "id": "Ugwfi6sukgiOYLDuvkJ4AaABAg",
  13819.           "snippet": {
  13820.             "videoId": "atnSTtiWU5E",
  13821.             "textDisplay": "MOST. EPIC. SONG. EVER.",
  13822.             "textOriginal": "MOST. EPIC. SONG. EVER.",
  13823.             "authorDisplayName": "VanPepper",
  13824.             "authorChannelUrl": "http://www.youtube.com/channel/UCfTZLh5Q2PMID1ZbUQ5ucMw",
  13825.             "authorChannelId": {
  13826.               "value": "UCfTZLh5Q2PMID1ZbUQ5ucMw"
  13827.             },
  13828.             "canRate": true,
  13829.             "viewerRating": "none",
  13830.             "likeCount": 0,
  13831.             "publishedAt": "2011-07-03T11:24:15Z",
  13832.             "updatedAt": "2011-07-03T11:24:15Z"
  13833.           }
  13834.         },
  13835.         "canReply": true,
  13836.         "totalReplyCount": 0,
  13837.         "isPublic": true
  13838.       }
  13839.     },
  13840.     {
  13841.       "kind": "youtube#commentThread",
  13842.       "etag": "i3t0BfJUA3xnc4lC75jw04152kI",
  13843.       "id": "UgyHmXoD4VAG2P6-_Dt4AaABAg",
  13844.       "snippet": {
  13845.         "videoId": "atnSTtiWU5E",
  13846.         "topLevelComment": {
  13847.           "kind": "youtube#comment",
  13848.           "etag": "Jh2B5GP6-TP-CoCvyh4k0fR3WY4",
  13849.           "id": "UgyHmXoD4VAG2P6-_Dt4AaABAg",
  13850.           "snippet": {
  13851.             "videoId": "atnSTtiWU5E",
  13852.             "textDisplay": "Hard to believe that this show is not just for kids. Times are a'changin. Bronies..lol. \nI don't even think its weird at all. I approve.:D\n",
  13853.             "textOriginal": "Hard to believe that this show is not just for kids. Times are a'changin. Bronies..lol. \nI don't even think its weird at all. I approve.:D\n",
  13854.             "authorDisplayName": "DullFace101",
  13855.             "authorChannelUrl": "http://www.youtube.com/channel/UCcj6e9Z96klfpNGWDGYYPUw",
  13856.             "authorChannelId": {
  13857.               "value": "UCcj6e9Z96klfpNGWDGYYPUw"
  13858.             },
  13859.             "canRate": true,
  13860.             "viewerRating": "none",
  13861.             "likeCount": 0,
  13862.             "publishedAt": "2011-07-03T09:35:48Z",
  13863.             "updatedAt": "2011-07-03T09:35:48Z"
  13864.           }
  13865.         },
  13866.         "canReply": true,
  13867.         "totalReplyCount": 0,
  13868.         "isPublic": true
  13869.       }
  13870.     },
  13871.     {
  13872.       "kind": "youtube#commentThread",
  13873.       "etag": "GOfgkhy2mJGd_zezdAb32bWUyes",
  13874.       "id": "UgzKJ8nmEOAMg_zuyPV4AaABAg",
  13875.       "snippet": {
  13876.         "videoId": "atnSTtiWU5E",
  13877.         "topLevelComment": {
  13878.           "kind": "youtube#comment",
  13879.           "etag": "FXnqSJQpzpgUS1JK5AnKySOWgHA",
  13880.           "id": "UgzKJ8nmEOAMg_zuyPV4AaABAg",
  13881.           "snippet": {
  13882.             "videoId": "atnSTtiWU5E",
  13883.             "textDisplay": "AGH. 3:45 and still wide awake because of these damned pony remixes!  CAN'T. STOP.",
  13884.             "textOriginal": "AGH. 3:45 and still wide awake because of these damned pony remixes!  CAN'T. STOP.",
  13885.             "authorDisplayName": "Thomas Wyatt",
  13886.             "authorChannelUrl": "http://www.youtube.com/channel/UCap29L50BNryp9yqK3wFDEQ",
  13887.             "authorChannelId": {
  13888.               "value": "UCap29L50BNryp9yqK3wFDEQ"
  13889.             },
  13890.             "canRate": true,
  13891.             "viewerRating": "none",
  13892.             "likeCount": 0,
  13893.             "publishedAt": "2011-07-03T07:40:26Z",
  13894.             "updatedAt": "2011-07-03T07:40:26Z"
  13895.           }
  13896.         },
  13897.         "canReply": true,
  13898.         "totalReplyCount": 0,
  13899.         "isPublic": true
  13900.       }
  13901.     },
  13902.     {
  13903.       "kind": "youtube#commentThread",
  13904.       "etag": "QtSM57UvCQrVTwrGaQhoLILjwwg",
  13905.       "id": "UgwguUdd5pGekpK_Gc14AaABAg",
  13906.       "snippet": {
  13907.         "videoId": "atnSTtiWU5E",
  13908.         "topLevelComment": {
  13909.           "kind": "youtube#comment",
  13910.           "etag": "cEH6kXLCr3lhi9GodKu1_kERcLY",
  13911.           "id": "UgwguUdd5pGekpK_Gc14AaABAg",
  13912.           "snippet": {
  13913.             "videoId": "atnSTtiWU5E",
  13914.             "textDisplay": "@wafflemale Touhou fans unite!",
  13915.             "textOriginal": "@wafflemale Touhou fans unite!",
  13916.             "authorDisplayName": "killette2",
  13917.             "authorChannelUrl": "http://www.youtube.com/channel/UCZQuvtWhUu4CXwvis8SUJ2w",
  13918.             "authorChannelId": {
  13919.               "value": "UCZQuvtWhUu4CXwvis8SUJ2w"
  13920.             },
  13921.             "canRate": true,
  13922.             "viewerRating": "none",
  13923.             "likeCount": 1,
  13924.             "publishedAt": "2011-07-02T09:47:43Z",
  13925.             "updatedAt": "2011-07-02T09:47:43Z"
  13926.           }
  13927.         },
  13928.         "canReply": true,
  13929.         "totalReplyCount": 0,
  13930.         "isPublic": true
  13931.       }
  13932.     },
  13933.     {
  13934.       "kind": "youtube#commentThread",
  13935.       "etag": "Kmq9HQ2ILhDpH9r7Z0PQhDVVjbk",
  13936.       "id": "UgwMHaEgmhNA6BP99Eh4AaABAg",
  13937.       "snippet": {
  13938.         "videoId": "atnSTtiWU5E",
  13939.         "topLevelComment": {
  13940.           "kind": "youtube#comment",
  13941.           "etag": "cnLSPnywCG2924LM9waW9PUOOx8",
  13942.           "id": "UgwMHaEgmhNA6BP99Eh4AaABAg",
  13943.           "snippet": {
  13944.             "videoId": "atnSTtiWU5E",
  13945.             "textDisplay": "@RainproDash DUDE TOUHOU FAN?! ftw and that would posibly be one of the coolest pony related videos ever, and it would apeal to the touhou fans too :3\n",
  13946.             "textOriginal": "@RainproDash DUDE TOUHOU FAN?! ftw and that would posibly be one of the coolest pony related videos ever, and it would apeal to the touhou fans too :3\n",
  13947.             "authorDisplayName": "wafflemale",
  13948.             "authorChannelUrl": "http://www.youtube.com/channel/UCrooV9hxJMOpOQQgvtvC9MQ",
  13949.             "authorChannelId": {
  13950.               "value": "UCrooV9hxJMOpOQQgvtvC9MQ"
  13951.             },
  13952.             "canRate": true,
  13953.             "viewerRating": "none",
  13954.             "likeCount": 1,
  13955.             "publishedAt": "2011-07-01T21:14:52Z",
  13956.             "updatedAt": "2011-07-01T21:14:52Z"
  13957.           }
  13958.         },
  13959.         "canReply": true,
  13960.         "totalReplyCount": 0,
  13961.         "isPublic": true
  13962.       }
  13963.     },
  13964.     {
  13965.       "kind": "youtube#commentThread",
  13966.       "etag": "G1lR8qWbNfOpJKz3Q7hTNIPyhbw",
  13967.       "id": "UgwLar3-h_7chxgnGat4AaABAg",
  13968.       "snippet": {
  13969.         "videoId": "atnSTtiWU5E",
  13970.         "topLevelComment": {
  13971.           "kind": "youtube#comment",
  13972.           "etag": "Rbr0h1EjUg6itoqzU-W4Nv5ltn0",
  13973.           "id": "UgwLar3-h_7chxgnGat4AaABAg",
  13974.           "snippet": {
  13975.             "videoId": "atnSTtiWU5E",
  13976.             "textDisplay": "Prance Prance Revolution!",
  13977.             "textOriginal": "Prance Prance Revolution!",
  13978.             "authorDisplayName": "ALXXMaXX",
  13979.             "authorChannelUrl": "http://www.youtube.com/channel/UCxHWlvjBc50MK2KgXEUrSCg",
  13980.             "authorChannelId": {
  13981.               "value": "UCxHWlvjBc50MK2KgXEUrSCg"
  13982.             },
  13983.             "canRate": true,
  13984.             "viewerRating": "none",
  13985.             "likeCount": 0,
  13986.             "publishedAt": "2011-06-29T18:52:59Z",
  13987.             "updatedAt": "2011-06-29T18:52:59Z"
  13988.           }
  13989.         },
  13990.         "canReply": true,
  13991.         "totalReplyCount": 0,
  13992.         "isPublic": true
  13993.       }
  13994.     },
  13995.     {
  13996.       "kind": "youtube#commentThread",
  13997.       "etag": "VRRtvoRO1GK6isaLSlHsaRtXcaE",
  13998.       "id": "UgxCMmuj4_rhJ0p6-1Z4AaABAg",
  13999.       "snippet": {
  14000.         "videoId": "atnSTtiWU5E",
  14001.         "topLevelComment": {
  14002.           "kind": "youtube#comment",
  14003.           "etag": "uBz5xXondhtvraJIxtk_mnTXdVU",
  14004.           "id": "UgxCMmuj4_rhJ0p6-1Z4AaABAg",
  14005.           "snippet": {
  14006.             "videoId": "atnSTtiWU5E",
  14007.             "textDisplay": "@RabisTehPally I was thinking about something like that, only with a motorcycle. >.<",
  14008.             "textOriginal": "@RabisTehPally I was thinking about something like that, only with a motorcycle. \u003e.\u003c",
  14009.             "authorDisplayName": "Blues Light",
  14010.             "authorChannelUrl": "http://www.youtube.com/channel/UCq3ShteTVd3S-CfXrVc06Mw",
  14011.             "authorChannelId": {
  14012.               "value": "UCq3ShteTVd3S-CfXrVc06Mw"
  14013.             },
  14014.             "canRate": true,
  14015.             "viewerRating": "none",
  14016.             "likeCount": 0,
  14017.             "publishedAt": "2011-06-29T07:48:26Z",
  14018.             "updatedAt": "2011-06-29T07:48:26Z"
  14019.           }
  14020.         },
  14021.         "canReply": true,
  14022.         "totalReplyCount": 0,
  14023.         "isPublic": true
  14024.       }
  14025.     },
  14026.     {
  14027.       "kind": "youtube#commentThread",
  14028.       "etag": "G63kS9fTHTukfMB7rdO19fiWw3k",
  14029.       "id": "UgwCoj5JycfOtcrBnph4AaABAg",
  14030.       "snippet": {
  14031.         "videoId": "atnSTtiWU5E",
  14032.         "topLevelComment": {
  14033.           "kind": "youtube#comment",
  14034.           "etag": "1nrHPRMdvISkwn2uKrRcylTpJNE",
  14035.           "id": "UgwCoj5JycfOtcrBnph4AaABAg",
  14036.           "snippet": {
  14037.             "videoId": "atnSTtiWU5E",
  14038.             "textDisplay": "damn, this remix is legit!",
  14039.             "textOriginal": "damn, this remix is legit!",
  14040.             "authorDisplayName": "Atlittle104",
  14041.             "authorChannelUrl": "http://www.youtube.com/channel/UCH-meAjCKKFUt2oN4Rz4SMg",
  14042.             "authorChannelId": {
  14043.               "value": "UCH-meAjCKKFUt2oN4Rz4SMg"
  14044.             },
  14045.             "canRate": true,
  14046.             "viewerRating": "none",
  14047.             "likeCount": 0,
  14048.             "publishedAt": "2011-06-29T01:16:58Z",
  14049.             "updatedAt": "2011-06-29T01:16:58Z"
  14050.           }
  14051.         },
  14052.         "canReply": true,
  14053.         "totalReplyCount": 0,
  14054.         "isPublic": true
  14055.       }
  14056.     },
  14057.     {
  14058.       "kind": "youtube#commentThread",
  14059.       "etag": "YhZw2lln0TqnaV_DFolUJWJy7XQ",
  14060.       "id": "UgwM6pDn_MRvE_h5ZJB4AaABAg",
  14061.       "snippet": {
  14062.         "videoId": "atnSTtiWU5E",
  14063.         "topLevelComment": {
  14064.           "kind": "youtube#comment",
  14065.           "etag": "noDrxwKqzF_Ye_jy1I081c_u2lI",
  14066.           "id": "UgwM6pDn_MRvE_h5ZJB4AaABAg",
  14067.           "snippet": {
  14068.             "videoId": "atnSTtiWU5E",
  14069.             "textDisplay": "Does anypony here want to get a nice mustang camaro or challenger in a yellow baby blue or purple and have the respective makes logo on the rear quarter panel in another pony color....My Little Pony Car\r\n\r\n",
  14070.             "textOriginal": "Does anypony here want to get a nice mustang camaro or challenger in a yellow baby blue or purple and have the respective makes logo on the rear quarter panel in another pony color....My Little Pony Car\r\n\r\n",
  14071.             "authorDisplayName": "Matt Fritton",
  14072.             "authorChannelUrl": "http://www.youtube.com/channel/UC-_OLENp5rV9ALlxsHOKEuw",
  14073.             "authorChannelId": {
  14074.               "value": "UC-_OLENp5rV9ALlxsHOKEuw"
  14075.             },
  14076.             "canRate": true,
  14077.             "viewerRating": "none",
  14078.             "likeCount": 0,
  14079.             "publishedAt": "2011-06-28T22:44:38Z",
  14080.             "updatedAt": "2011-06-28T22:44:38Z"
  14081.           }
  14082.         },
  14083.         "canReply": true,
  14084.         "totalReplyCount": 0,
  14085.         "isPublic": true
  14086.       }
  14087.     },
  14088.     {
  14089.       "kind": "youtube#commentThread",
  14090.       "etag": "T13pIT-Z2Z-RDIf_b3MmBsAHLBU",
  14091.       "id": "UgwDelOrShAr8CxFDQF4AaABAg",
  14092.       "snippet": {
  14093.         "videoId": "atnSTtiWU5E",
  14094.         "topLevelComment": {
  14095.           "kind": "youtube#comment",
  14096.           "etag": "z755a-S-uPWa1QE9yldI8BRE-z8",
  14097.           "id": "UgwDelOrShAr8CxFDQF4AaABAg",
  14098.           "snippet": {
  14099.             "videoId": "atnSTtiWU5E",
  14100.             "textDisplay": "@relltdl *WATCH OUT",
  14101.             "textOriginal": "@relltdl *WATCH OUT",
  14102.             "authorDisplayName": "Slashthekitsune",
  14103.             "authorChannelUrl": "http://www.youtube.com/channel/UCW2EfSQsNi3HowHx9SBTuUQ",
  14104.             "authorChannelId": {
  14105.               "value": "UCW2EfSQsNi3HowHx9SBTuUQ"
  14106.             },
  14107.             "canRate": true,
  14108.             "viewerRating": "none",
  14109.             "likeCount": 0,
  14110.             "publishedAt": "2011-06-28T19:11:04Z",
  14111.             "updatedAt": "2011-06-28T19:11:04Z"
  14112.           }
  14113.         },
  14114.         "canReply": true,
  14115.         "totalReplyCount": 0,
  14116.         "isPublic": true
  14117.       }
  14118.     },
  14119.     {
  14120.       "kind": "youtube#commentThread",
  14121.       "etag": "JxRoPbS9Y9OJ0ImG2z9ySLQgkUM",
  14122.       "id": "UgyE9z7SlHVjzQ7AOZ14AaABAg",
  14123.       "snippet": {
  14124.         "videoId": "atnSTtiWU5E",
  14125.         "topLevelComment": {
  14126.           "kind": "youtube#comment",
  14127.           "etag": "-tXzmT19UQS42VlNkfLkixkVffM",
  14128.           "id": "UgyE9z7SlHVjzQ7AOZ14AaABAg",
  14129.           "snippet": {
  14130.             "videoId": "atnSTtiWU5E",
  14131.             "textDisplay": "@relltdl \nshe does *evil* dances ....",
  14132.             "textOriginal": "@relltdl \nshe does *evil* dances ....",
  14133.             "authorDisplayName": "Weasel",
  14134.             "authorChannelUrl": "http://www.youtube.com/channel/UCmGgLQtwpwy6z1hWURDRtLQ",
  14135.             "authorChannelId": {
  14136.               "value": "UCmGgLQtwpwy6z1hWURDRtLQ"
  14137.             },
  14138.             "canRate": true,
  14139.             "viewerRating": "none",
  14140.             "likeCount": 0,
  14141.             "publishedAt": "2011-06-26T23:58:47Z",
  14142.             "updatedAt": "2011-06-26T23:58:47Z"
  14143.           }
  14144.         },
  14145.         "canReply": true,
  14146.         "totalReplyCount": 0,
  14147.         "isPublic": true
  14148.       }
  14149.     },
  14150.     {
  14151.       "kind": "youtube#commentThread",
  14152.       "etag": "bU0pcAfwj7fZTd3JXjSM0vTENTo",
  14153.       "id": "UgwXm6T_uLJjzyIRGL54AaABAg",
  14154.       "snippet": {
  14155.         "videoId": "atnSTtiWU5E",
  14156.         "topLevelComment": {
  14157.           "kind": "youtube#comment",
  14158.           "etag": "u3AuA334QjDhZvU6zrCrKzo2u68",
  14159.           "id": "UgwXm6T_uLJjzyIRGL54AaABAg",
  14160.           "snippet": {
  14161.             "videoId": "atnSTtiWU5E",
  14162.             "textDisplay": "SHES AN EVIL ENCHANTRESS AND SHE DOES EVEN DANCES AND IF YOU LOOK HER IN THE EYE SHE WILL PUT IN IN TRANCES AND WHAT WILL SHE DO? SHE'LL MIX UP AN EVIL BREW AND GOBBLE YOU UP IN A BIG TASTY STEW  SOOOOOO LOOK OUT >.>",
  14163.             "textOriginal": "SHES AN EVIL ENCHANTRESS AND SHE DOES EVEN DANCES AND IF YOU LOOK HER IN THE EYE SHE WILL PUT IN IN TRANCES AND WHAT WILL SHE DO? SHE'LL MIX UP AN EVIL BREW AND GOBBLE YOU UP IN A BIG TASTY STEW  SOOOOOO LOOK OUT \u003e.\u003e",
  14164.             "authorDisplayName": "Shiny Unigan",
  14165.             "authorChannelUrl": "http://www.youtube.com/channel/UCC9_2DHwnY1Ugdi6ewQvwPg",
  14166.             "authorChannelId": {
  14167.               "value": "UCC9_2DHwnY1Ugdi6ewQvwPg"
  14168.             },
  14169.             "canRate": true,
  14170.             "viewerRating": "none",
  14171.             "likeCount": 0,
  14172.             "publishedAt": "2011-06-26T19:30:49Z",
  14173.             "updatedAt": "2011-06-26T19:30:49Z"
  14174.           }
  14175.         },
  14176.         "canReply": true,
  14177.         "totalReplyCount": 0,
  14178.         "isPublic": true
  14179.       }
  14180.     },
  14181.     {
  14182.       "kind": "youtube#commentThread",
  14183.       "etag": "ru_6daFkSUfaBipGdxWVjF4sL-U",
  14184.       "id": "UgxYJ0U7mHCKi9BLBEB4AaABAg",
  14185.       "snippet": {
  14186.         "videoId": "atnSTtiWU5E",
  14187.         "topLevelComment": {
  14188.           "kind": "youtube#comment",
  14189.           "etag": "DnhSLOnebkSXvruolkxkl4pZYSo",
  14190.           "id": "UgxYJ0U7mHCKi9BLBEB4AaABAg",
  14191.           "snippet": {
  14192.             "videoId": "atnSTtiWU5E",
  14193.             "textDisplay": "@Lucariofan448 \n\nI lol'd.",
  14194.             "textOriginal": "@Lucariofan448 \n\nI lol'd.",
  14195.             "authorDisplayName": "Lordgenome76",
  14196.             "authorChannelUrl": "http://www.youtube.com/channel/UCfyl33k917YpMlO6ZW4kS6g",
  14197.             "authorChannelId": {
  14198.               "value": "UCfyl33k917YpMlO6ZW4kS6g"
  14199.             },
  14200.             "canRate": true,
  14201.             "viewerRating": "none",
  14202.             "likeCount": 0,
  14203.             "publishedAt": "2011-06-23T18:53:22Z",
  14204.             "updatedAt": "2011-06-23T18:53:22Z"
  14205.           }
  14206.         },
  14207.         "canReply": true,
  14208.         "totalReplyCount": 0,
  14209.         "isPublic": true
  14210.       }
  14211.     },
  14212.     {
  14213.       "kind": "youtube#commentThread",
  14214.       "etag": "kMZgfvB5YJUG2SAWGP1geEYEAyw",
  14215.       "id": "UgxKDZe1lxjScpF0Vep4AaABAg",
  14216.       "snippet": {
  14217.         "videoId": "atnSTtiWU5E",
  14218.         "topLevelComment": {
  14219.           "kind": "youtube#comment",
  14220.           "etag": "bDSb0BLvgD8fhCjLyvRSwFlN9TU",
  14221.           "id": "UgxKDZe1lxjScpF0Vep4AaABAg",
  14222.           "snippet": {
  14223.             "videoId": "atnSTtiWU5E",
  14224.             "textDisplay": "@patamon96 It's on the website equestriagaming, I haven't played it, but at least it's there.\n\nThere's also a Rainbow Dash version of Robot Unicorn Attack, and I think one of the helicopter game.",
  14225.             "textOriginal": "@patamon96 It's on the website equestriagaming, I haven't played it, but at least it's there.\n\nThere's also a Rainbow Dash version of Robot Unicorn Attack, and I think one of the helicopter game.",
  14226.             "authorDisplayName": "L",
  14227.             "authorChannelUrl": "http://www.youtube.com/channel/UCBK0NNHceE82nEfx6h5ujnA",
  14228.             "authorChannelId": {
  14229.               "value": "UCBK0NNHceE82nEfx6h5ujnA"
  14230.             },
  14231.             "canRate": true,
  14232.             "viewerRating": "none",
  14233.             "likeCount": 0,
  14234.             "publishedAt": "2011-06-21T08:36:29Z",
  14235.             "updatedAt": "2011-06-21T08:36:29Z"
  14236.           }
  14237.         },
  14238.         "canReply": true,
  14239.         "totalReplyCount": 0,
  14240.         "isPublic": true
  14241.       }
  14242.     },
  14243.     {
  14244.       "kind": "youtube#commentThread",
  14245.       "etag": "8O37vp14ljjYUKUJdMG4U5KqL7c",
  14246.       "id": "UgwzTuIs_4YEylm2IhZ4AaABAg",
  14247.       "snippet": {
  14248.         "videoId": "atnSTtiWU5E",
  14249.         "topLevelComment": {
  14250.           "kind": "youtube#comment",
  14251.           "etag": "ff9G495sC_h1KF5evsGhNBd4YvY",
  14252.           "id": "UgwzTuIs_4YEylm2IhZ4AaABAg",
  14253.           "snippet": {
  14254.             "videoId": "atnSTtiWU5E",
  14255.             "textDisplay": "@Njalvis \nWoah, omg can you send me any info on it?",
  14256.             "textOriginal": "@Njalvis \nWoah, omg can you send me any info on it?",
  14257.             "authorDisplayName": "patamon96",
  14258.             "authorChannelUrl": "http://www.youtube.com/channel/UCBashNgzccJmSW3Hv3cyE8Q",
  14259.             "authorChannelId": {
  14260.               "value": "UCBashNgzccJmSW3Hv3cyE8Q"
  14261.             },
  14262.             "canRate": true,
  14263.             "viewerRating": "none",
  14264.             "likeCount": 0,
  14265.             "publishedAt": "2011-06-21T07:23:07Z",
  14266.             "updatedAt": "2011-06-21T07:23:07Z"
  14267.           }
  14268.         },
  14269.         "canReply": true,
  14270.         "totalReplyCount": 0,
  14271.         "isPublic": true
  14272.       }
  14273.     },
  14274.     {
  14275.       "kind": "youtube#commentThread",
  14276.       "etag": "8rH2s1sWjYlsZ2FboYkIjWYf9mI",
  14277.       "id": "Ugys92jA5-aTU0LrZZV4AaABAg",
  14278.       "snippet": {
  14279.         "videoId": "atnSTtiWU5E",
  14280.         "topLevelComment": {
  14281.           "kind": "youtube#comment",
  14282.           "etag": "E9qhPyUx914pRnZYVMIzq4HKwgU",
  14283.           "id": "Ugys92jA5-aTU0LrZZV4AaABAg",
  14284.           "snippet": {
  14285.             "videoId": "atnSTtiWU5E",
  14286.             "textDisplay": "@Vintter1 There is actually a Pony Touhou game.",
  14287.             "textOriginal": "@Vintter1 There is actually a Pony Touhou game.",
  14288.             "authorDisplayName": "L",
  14289.             "authorChannelUrl": "http://www.youtube.com/channel/UCBK0NNHceE82nEfx6h5ujnA",
  14290.             "authorChannelId": {
  14291.               "value": "UCBK0NNHceE82nEfx6h5ujnA"
  14292.             },
  14293.             "canRate": true,
  14294.             "viewerRating": "none",
  14295.             "likeCount": 0,
  14296.             "publishedAt": "2011-06-20T16:00:10Z",
  14297.             "updatedAt": "2011-06-20T16:00:10Z"
  14298.           }
  14299.         },
  14300.         "canReply": true,
  14301.         "totalReplyCount": 0,
  14302.         "isPublic": true
  14303.       }
  14304.     },
  14305.     {
  14306.       "kind": "youtube#commentThread",
  14307.       "etag": "PC6nqdIV63OTDh_iOcwVmRRFhzQ",
  14308.       "id": "UgwD2IoJDXBdvVFLUhV4AaABAg",
  14309.       "snippet": {
  14310.         "videoId": "atnSTtiWU5E",
  14311.         "topLevelComment": {
  14312.           "kind": "youtube#comment",
  14313.           "etag": "-u3DP6naa8TglKNtCKHGCJiZyBI",
  14314.           "id": "UgwD2IoJDXBdvVFLUhV4AaABAg",
  14315.           "snippet": {
  14316.             "videoId": "atnSTtiWU5E",
  14317.             "textDisplay": "Wow, this kinda reminds me of "Night Of Fire" by the Hinoi Team . . . a lot actually. Still, good song: GO PONIES!",
  14318.             "textOriginal": "Wow, this kinda reminds me of \"Night Of Fire\" by the Hinoi Team . . . a lot actually. Still, good song: GO PONIES!",
  14319.             "authorDisplayName": "raphtheman",
  14320.             "authorChannelUrl": "http://www.youtube.com/channel/UC4JdV4heAnQXv8w8JH6Ev3w",
  14321.             "authorChannelId": {
  14322.               "value": "UC4JdV4heAnQXv8w8JH6Ev3w"
  14323.             },
  14324.             "canRate": true,
  14325.             "viewerRating": "none",
  14326.             "likeCount": 0,
  14327.             "publishedAt": "2011-06-19T19:50:01Z",
  14328.             "updatedAt": "2011-06-19T19:50:01Z"
  14329.           }
  14330.         },
  14331.         "canReply": true,
  14332.         "totalReplyCount": 0,
  14333.         "isPublic": true
  14334.       }
  14335.     },
  14336.     {
  14337.       "kind": "youtube#commentThread",
  14338.       "etag": "s7Te-kgAPdb7cwZK078iwDr8o24",
  14339.       "id": "UgyTIOBC1ZfoGwtikQl4AaABAg",
  14340.       "snippet": {
  14341.         "videoId": "atnSTtiWU5E",
  14342.         "topLevelComment": {
  14343.           "kind": "youtube#comment",
  14344.           "etag": "oHKf-FgAVwLIXJnp1QYRCoEEq-4",
  14345.           "id": "UgyTIOBC1ZfoGwtikQl4AaABAg",
  14346.           "snippet": {
  14347.             "videoId": "atnSTtiWU5E",
  14348.             "textDisplay": "@47sMiuMiu \nDoing it. Doing it hard.",
  14349.             "textOriginal": "@47sMiuMiu \nDoing it. Doing it hard.",
  14350.             "authorDisplayName": "Astro-Z",
  14351.             "authorChannelUrl": "http://www.youtube.com/channel/UCYCbNrihjyYeklkji9Ggilw",
  14352.             "authorChannelId": {
  14353.               "value": "UCYCbNrihjyYeklkji9Ggilw"
  14354.             },
  14355.             "canRate": true,
  14356.             "viewerRating": "none",
  14357.             "likeCount": 0,
  14358.             "publishedAt": "2011-06-18T06:47:23Z",
  14359.             "updatedAt": "2011-06-18T06:47:23Z"
  14360.           }
  14361.         },
  14362.         "canReply": true,
  14363.         "totalReplyCount": 0,
  14364.         "isPublic": true
  14365.       }
  14366.     },
  14367.     {
  14368.       "kind": "youtube#commentThread",
  14369.       "etag": "VVRSdumfshtlkuAcyWgVydHgFpE",
  14370.       "id": "UgxiVlkznvCMgY4LnUJ4AaABAg",
  14371.       "snippet": {
  14372.         "videoId": "atnSTtiWU5E",
  14373.         "topLevelComment": {
  14374.           "kind": "youtube#comment",
  14375.           "etag": "nGBlQh0KvEJYkJQZ-quqCBtFdzs",
  14376.           "id": "UgxiVlkznvCMgY4LnUJ4AaABAg",
  14377.           "snippet": {
  14378.             "videoId": "atnSTtiWU5E",
  14379.             "textDisplay": "If Zecora was a legendary Pokemon, this would be her boss battle theme.",
  14380.             "textOriginal": "If Zecora was a legendary Pokemon, this would be her boss battle theme.",
  14381.             "authorDisplayName": "SoLinkSmash",
  14382.             "authorChannelUrl": "http://www.youtube.com/channel/UCywMCFW8ZuHfIrRuCzulAAg",
  14383.             "authorChannelId": {
  14384.               "value": "UCywMCFW8ZuHfIrRuCzulAAg"
  14385.             },
  14386.             "canRate": true,
  14387.             "viewerRating": "none",
  14388.             "likeCount": 0,
  14389.             "publishedAt": "2011-06-17T16:17:10Z",
  14390.             "updatedAt": "2011-06-17T16:17:10Z"
  14391.           }
  14392.         },
  14393.         "canReply": true,
  14394.         "totalReplyCount": 0,
  14395.         "isPublic": true
  14396.       }
  14397.     },
  14398.     {
  14399.       "kind": "youtube#commentThread",
  14400.       "etag": "Rgt484sTkK3lT_zTtWo3JSrYnCo",
  14401.       "id": "UgxAyVgaRa4VujXqYHJ4AaABAg",
  14402.       "snippet": {
  14403.         "videoId": "atnSTtiWU5E",
  14404.         "topLevelComment": {
  14405.           "kind": "youtube#comment",
  14406.           "etag": "LKaGIki_jPKXiI_VQ9UpLRgHQlU",
  14407.           "id": "UgxAyVgaRa4VujXqYHJ4AaABAg",
  14408.           "snippet": {
  14409.             "videoId": "atnSTtiWU5E",
  14410.             "textDisplay": "i was watching my little pony and my mom walked in. i made sure to sing along to the theme song. AND art of the dress. LIKE A BOSS.",
  14411.             "textOriginal": "i was watching my little pony and my mom walked in. i made sure to sing along to the theme song. AND art of the dress. LIKE A BOSS.",
  14412.             "authorDisplayName": "22drawsalot",
  14413.             "authorChannelUrl": "http://www.youtube.com/channel/UCZF82FgVNmNivWJrDVOyDgA",
  14414.             "authorChannelId": {
  14415.               "value": "UCZF82FgVNmNivWJrDVOyDgA"
  14416.             },
  14417.             "canRate": true,
  14418.             "viewerRating": "none",
  14419.             "likeCount": 0,
  14420.             "publishedAt": "2011-06-15T02:20:52Z",
  14421.             "updatedAt": "2011-06-15T02:20:52Z"
  14422.           }
  14423.         },
  14424.         "canReply": true,
  14425.         "totalReplyCount": 0,
  14426.         "isPublic": true
  14427.       }
  14428.     },
  14429.     {
  14430.       "kind": "youtube#commentThread",
  14431.       "etag": "PGWSJ76fSiHay_qSQoHJW2Wl6qs",
  14432.       "id": "UgyNzLjCGI7LgphAb194AaABAg",
  14433.       "snippet": {
  14434.         "videoId": "atnSTtiWU5E",
  14435.         "topLevelComment": {
  14436.           "kind": "youtube#comment",
  14437.           "etag": "kLrhsYxxEm1nHrfspqn7db-lPAQ",
  14438.           "id": "UgyNzLjCGI7LgphAb194AaABAg",
  14439.           "snippet": {
  14440.             "videoId": "atnSTtiWU5E",
  14441.             "textDisplay": "This song is awesome!",
  14442.             "textOriginal": "This song is awesome!",
  14443.             "authorDisplayName": "deathcat57",
  14444.             "authorChannelUrl": "http://www.youtube.com/channel/UCizzj2i4B_Wot-oahh0gyLA",
  14445.             "authorChannelId": {
  14446.               "value": "UCizzj2i4B_Wot-oahh0gyLA"
  14447.             },
  14448.             "canRate": true,
  14449.             "viewerRating": "none",
  14450.             "likeCount": 0,
  14451.             "publishedAt": "2011-06-14T07:26:42Z",
  14452.             "updatedAt": "2011-06-14T07:26:42Z"
  14453.           }
  14454.         },
  14455.         "canReply": true,
  14456.         "totalReplyCount": 0,
  14457.         "isPublic": true
  14458.       }
  14459.     },
  14460.     {
  14461.       "kind": "youtube#commentThread",
  14462.       "etag": "pGHPeLZmRaUgtiS20iG7v4Aszv0",
  14463.       "id": "Ugzw1ps3o0-HkUAnAzh4AaABAg",
  14464.       "snippet": {
  14465.         "videoId": "atnSTtiWU5E",
  14466.         "topLevelComment": {
  14467.           "kind": "youtube#comment",
  14468.           "etag": "MXXTPdC6sAmBEI1DdR8yFpDKoAM",
  14469.           "id": "Ugzw1ps3o0-HkUAnAzh4AaABAg",
  14470.           "snippet": {
  14471.             "videoId": "atnSTtiWU5E",
  14472.             "textDisplay": "When i hear this i think of this paired up with the Anime, Princess Tutu",
  14473.             "textOriginal": "When i hear this i think of this paired up with the Anime, Princess Tutu",
  14474.             "authorDisplayName": "The(2nd)SolaceStar",
  14475.             "authorChannelUrl": "http://www.youtube.com/channel/UCaui6cEQSDgB_JX5-ER-WDw",
  14476.             "authorChannelId": {
  14477.               "value": "UCaui6cEQSDgB_JX5-ER-WDw"
  14478.             },
  14479.             "canRate": true,
  14480.             "viewerRating": "none",
  14481.             "likeCount": 0,
  14482.             "publishedAt": "2011-06-12T18:22:02Z",
  14483.             "updatedAt": "2011-06-12T18:22:02Z"
  14484.           }
  14485.         },
  14486.         "canReply": true,
  14487.         "totalReplyCount": 0,
  14488.         "isPublic": true
  14489.       }
  14490.     },
  14491.     {
  14492.       "kind": "youtube#commentThread",
  14493.       "etag": "izCWmpoSXzqQ34MYiAGNKgOy4vI",
  14494.       "id": "UgxiZ74bkbS40yjQpDN4AaABAg",
  14495.       "snippet": {
  14496.         "videoId": "atnSTtiWU5E",
  14497.         "topLevelComment": {
  14498.           "kind": "youtube#comment",
  14499.           "etag": "ljhMmEycwjK3yIxLEO7x8rXw6VU",
  14500.           "id": "UgxiZ74bkbS40yjQpDN4AaABAg",
  14501.           "snippet": {
  14502.             "videoId": "atnSTtiWU5E",
  14503.             "textDisplay": "@47sMiuMiu I actually have only been using this album in my car for the past 2 months",
  14504.             "textOriginal": "@47sMiuMiu I actually have only been using this album in my car for the past 2 months",
  14505.             "authorDisplayName": "xMEGAFOOLx",
  14506.             "authorChannelUrl": "http://www.youtube.com/channel/UC-7d7lPtVFXAZcYxapR697A",
  14507.             "authorChannelId": {
  14508.               "value": "UC-7d7lPtVFXAZcYxapR697A"
  14509.             },
  14510.             "canRate": true,
  14511.             "viewerRating": "none",
  14512.             "likeCount": 0,
  14513.             "publishedAt": "2011-06-12T09:11:12Z",
  14514.             "updatedAt": "2011-06-12T09:11:12Z"
  14515.           }
  14516.         },
  14517.         "canReply": true,
  14518.         "totalReplyCount": 0,
  14519.         "isPublic": true
  14520.       }
  14521.     },
  14522.     {
  14523.       "kind": "youtube#commentThread",
  14524.       "etag": "AHJGF6QI-fQESjnYow2YGD97oFo",
  14525.       "id": "UgxAwaF1cl36est-Vvl4AaABAg",
  14526.       "snippet": {
  14527.         "videoId": "atnSTtiWU5E",
  14528.         "topLevelComment": {
  14529.           "kind": "youtube#comment",
  14530.           "etag": "vzQ_5rwORchaS3khvjUXtfMVMY8",
  14531.           "id": "UgxAwaF1cl36est-Vvl4AaABAg",
  14532.           "snippet": {
  14533.             "videoId": "atnSTtiWU5E",
  14534.             "textDisplay": "I keep feeling like I should bust out my Mega Buster and kick Wiley's ass whenever I hear this song.",
  14535.             "textOriginal": "I keep feeling like I should bust out my Mega Buster and kick Wiley's ass whenever I hear this song.",
  14536.             "authorDisplayName": "epsilonisevil1988",
  14537.             "authorChannelUrl": "http://www.youtube.com/channel/UCbBDm5D52jCe0UPbSxp1P7g",
  14538.             "authorChannelId": {
  14539.               "value": "UCbBDm5D52jCe0UPbSxp1P7g"
  14540.             },
  14541.             "canRate": true,
  14542.             "viewerRating": "none",
  14543.             "likeCount": 0,
  14544.             "publishedAt": "2011-06-11T04:48:40Z",
  14545.             "updatedAt": "2011-06-11T04:48:40Z"
  14546.           }
  14547.         },
  14548.         "canReply": true,
  14549.         "totalReplyCount": 0,
  14550.         "isPublic": true
  14551.       }
  14552.     },
  14553.     {
  14554.       "kind": "youtube#commentThread",
  14555.       "etag": "-V41GUhghbiGYMZwe3b2x0KvJTY",
  14556.       "id": "UgzlUIHsv4e51DRxm4p4AaABAg",
  14557.       "snippet": {
  14558.         "videoId": "atnSTtiWU5E",
  14559.         "topLevelComment": {
  14560.           "kind": "youtube#comment",
  14561.           "etag": "TA0RN9aAE5RfX-4EMZULxLLGBME",
  14562.           "id": "UgzlUIHsv4e51DRxm4p4AaABAg",
  14563.           "snippet": {
  14564.             "videoId": "atnSTtiWU5E",
  14565.             "textDisplay": "I asked Fluttershy if she liked singing it, but she said she didn't want to talk about it...",
  14566.             "textOriginal": "I asked Fluttershy if she liked singing it, but she said she didn't want to talk about it...",
  14567.             "authorDisplayName": "lordofthingz",
  14568.             "authorChannelUrl": "http://www.youtube.com/channel/UC3z6oHTh8k_WNw-JFiT8qIw",
  14569.             "authorChannelId": {
  14570.               "value": "UC3z6oHTh8k_WNw-JFiT8qIw"
  14571.             },
  14572.             "canRate": true,
  14573.             "viewerRating": "none",
  14574.             "likeCount": 0,
  14575.             "publishedAt": "2011-06-11T04:31:35Z",
  14576.             "updatedAt": "2011-06-11T04:31:35Z"
  14577.           }
  14578.         },
  14579.         "canReply": true,
  14580.         "totalReplyCount": 0,
  14581.         "isPublic": true
  14582.       }
  14583.     },
  14584.     {
  14585.       "kind": "youtube#commentThread",
  14586.       "etag": "k6nmQbxKWREv5wNViQaZCooTcvA",
  14587.       "id": "Ugzw10naci2hvTPlwUJ4AaABAg",
  14588.       "snippet": {
  14589.         "videoId": "atnSTtiWU5E",
  14590.         "topLevelComment": {
  14591.           "kind": "youtube#comment",
  14592.           "etag": "Gcwh3NLC0hHGQlw89B6uoP5aySw",
  14593.           "id": "Ugzw10naci2hvTPlwUJ4AaABAg",
  14594.           "snippet": {
  14595.             "videoId": "atnSTtiWU5E",
  14596.             "textDisplay": "@Dotmw Zecora HP:180/180 MP:200/200 vs. Pinkie Pie HP:80/80 MP: 120/120\nZecora used: Some voodoo shit\nPinkie Pie: -79 1/80\nPinkie Pie: Transforms into Dark Pinkie Pie\nGAME OVER\n                  ",
  14597.             "textOriginal": "@Dotmw Zecora HP:180/180 MP:200/200 vs. Pinkie Pie HP:80/80 MP: 120/120\nZecora used: Some voodoo shit\nPinkie Pie: -79 1/80\nPinkie Pie: Transforms into Dark Pinkie Pie\nGAME OVER\n                  ",
  14598.             "authorDisplayName": "Otto",
  14599.             "authorChannelUrl": "http://www.youtube.com/channel/UCUU88WeROXPbp3dFkYDa2eQ",
  14600.             "authorChannelId": {
  14601.               "value": "UCUU88WeROXPbp3dFkYDa2eQ"
  14602.             },
  14603.             "canRate": true,
  14604.             "viewerRating": "none",
  14605.             "likeCount": 0,
  14606.             "publishedAt": "2011-06-09T04:23:13Z",
  14607.             "updatedAt": "2011-06-09T04:23:13Z"
  14608.           }
  14609.         },
  14610.         "canReply": true,
  14611.         "totalReplyCount": 0,
  14612.         "isPublic": true
  14613.       }
  14614.     },
  14615.     {
  14616.       "kind": "youtube#commentThread",
  14617.       "etag": "izF1wdXWo8AGrofVUcUDdrG9NZo",
  14618.       "id": "UgywK0v7r4ulKvbTt2V4AaABAg",
  14619.       "snippet": {
  14620.         "videoId": "atnSTtiWU5E",
  14621.         "topLevelComment": {
  14622.           "kind": "youtube#comment",
  14623.           "etag": "xzSxk3UXUHzlGkFi3NXQoU-IzDc",
  14624.           "id": "UgywK0v7r4ulKvbTt2V4AaABAg",
  14625.           "snippet": {
  14626.             "videoId": "atnSTtiWU5E",
  14627.             "textDisplay": "Zecora - The Evil Enchantress\n\nAbilities:\n• Evil Dance (Physical)\n• Trance (Mental)\n• Evil Brew - Mix (Physical)\n• Tasty Stew - Gobble (Physical)\n\nTagline: So Watch Out!",
  14628.             "textOriginal": "Zecora - The Evil Enchantress\n\nAbilities:\n• Evil Dance (Physical)\n• Trance (Mental)\n• Evil Brew - Mix (Physical)\n• Tasty Stew - Gobble (Physical)\n\nTagline: So Watch Out!",
  14629.             "authorDisplayName": "denmax",
  14630.             "authorChannelUrl": "http://www.youtube.com/channel/UC3QNNCRXk9yxkeTDvvRtuTw",
  14631.             "authorChannelId": {
  14632.               "value": "UC3QNNCRXk9yxkeTDvvRtuTw"
  14633.             },
  14634.             "canRate": true,
  14635.             "viewerRating": "none",
  14636.             "likeCount": 0,
  14637.             "publishedAt": "2011-06-08T21:32:43Z",
  14638.             "updatedAt": "2011-06-08T21:32:43Z"
  14639.           }
  14640.         },
  14641.         "canReply": true,
  14642.         "totalReplyCount": 0,
  14643.         "isPublic": true
  14644.       }
  14645.     },
  14646.     {
  14647.       "kind": "youtube#commentThread",
  14648.       "etag": "cQ9NkOAW95zng4jTQxmtUKtlKHw",
  14649.       "id": "UgzVMbtkNLhBzpe3tyF4AaABAg",
  14650.       "snippet": {
  14651.         "videoId": "atnSTtiWU5E",
  14652.         "topLevelComment": {
  14653.           "kind": "youtube#comment",
  14654.           "etag": "XgnoaMeEoA9yrO4Tuny8GWv4Z-o",
  14655.           "id": "UgzVMbtkNLhBzpe3tyF4AaABAg",
  14656.           "snippet": {
  14657.             "videoId": "atnSTtiWU5E",
  14658.             "textDisplay": "Would fit perfectly into a megaman stage. Awesome.",
  14659.             "textOriginal": "Would fit perfectly into a megaman stage. Awesome.",
  14660.             "authorDisplayName": "Zhin",
  14661.             "authorChannelUrl": "http://www.youtube.com/channel/UCSTQihEBEyQz8bHoZXdAuPQ",
  14662.             "authorChannelId": {
  14663.               "value": "UCSTQihEBEyQz8bHoZXdAuPQ"
  14664.             },
  14665.             "canRate": true,
  14666.             "viewerRating": "none",
  14667.             "likeCount": 0,
  14668.             "publishedAt": "2011-06-04T11:18:23Z",
  14669.             "updatedAt": "2011-06-04T11:18:23Z"
  14670.           }
  14671.         },
  14672.         "canReply": true,
  14673.         "totalReplyCount": 0,
  14674.         "isPublic": true
  14675.       }
  14676.     },
  14677.     {
  14678.       "kind": "youtube#commentThread",
  14679.       "etag": "Y5awqBvj6fXPbuW3VZUhq1Eb0Ag",
  14680.       "id": "Ugz5LC4nz1lD3LxxAw54AaABAg",
  14681.       "snippet": {
  14682.         "videoId": "atnSTtiWU5E",
  14683.         "topLevelComment": {
  14684.           "kind": "youtube#comment",
  14685.           "etag": "-N8lAthDwKXIPQYpoArJ_ZAPVuY",
  14686.           "id": "Ugz5LC4nz1lD3LxxAw54AaABAg",
  14687.           "snippet": {
  14688.             "videoId": "atnSTtiWU5E",
  14689.             "textDisplay": "@Ashaira :D awesome",
  14690.             "textOriginal": "@Ashaira :D awesome",
  14691.             "authorDisplayName": "Rob Boss",
  14692.             "authorChannelUrl": "http://www.youtube.com/channel/UCrXEO9EIOUM-OZIRcUkLZxw",
  14693.             "authorChannelId": {
  14694.               "value": "UCrXEO9EIOUM-OZIRcUkLZxw"
  14695.             },
  14696.             "canRate": true,
  14697.             "viewerRating": "none",
  14698.             "likeCount": 0,
  14699.             "publishedAt": "2011-06-03T12:49:51Z",
  14700.             "updatedAt": "2011-06-03T12:49:51Z"
  14701.           }
  14702.         },
  14703.         "canReply": true,
  14704.         "totalReplyCount": 0,
  14705.         "isPublic": true
  14706.       }
  14707.     },
  14708.     {
  14709.       "kind": "youtube#commentThread",
  14710.       "etag": "GBFSbPgbk1wM42z26xJoCp6Z5ZE",
  14711.       "id": "UgzE_buWpT8X8qCwbD54AaABAg",
  14712.       "snippet": {
  14713.         "videoId": "atnSTtiWU5E",
  14714.         "topLevelComment": {
  14715.           "kind": "youtube#comment",
  14716.           "etag": "Q8nOl44zXLmQOfJCDCm8-UqQGBk",
  14717.           "id": "UgzE_buWpT8X8qCwbD54AaABAg",
  14718.           "snippet": {
  14719.             "videoId": "atnSTtiWU5E",
  14720.             "textDisplay": "@XxD1EAN0TH3RD4YxX same here as soon as i set up all 7 speakers i put this on and cranked it up to almost max. (the windows were starting to shake at max QQ)",
  14721.             "textOriginal": "@XxD1EAN0TH3RD4YxX same here as soon as i set up all 7 speakers i put this on and cranked it up to almost max. (the windows were starting to shake at max QQ)",
  14722.             "authorDisplayName": "Ashaira",
  14723.             "authorChannelUrl": "http://www.youtube.com/channel/UCEHJwBjK3Hkwo8RQK39o9mw",
  14724.             "authorChannelId": {
  14725.               "value": "UCEHJwBjK3Hkwo8RQK39o9mw"
  14726.             },
  14727.             "canRate": true,
  14728.             "viewerRating": "none",
  14729.             "likeCount": 0,
  14730.             "publishedAt": "2011-06-03T10:40:57Z",
  14731.             "updatedAt": "2011-06-03T10:40:57Z"
  14732.           }
  14733.         },
  14734.         "canReply": true,
  14735.         "totalReplyCount": 0,
  14736.         "isPublic": true
  14737.       }
  14738.     },
  14739.     {
  14740.       "kind": "youtube#commentThread",
  14741.       "etag": "NT5uKxbyU-8IYhlo42pB8hTE41Q",
  14742.       "id": "UgwyI5lEgKhSNWEEyAl4AaABAg",
  14743.       "snippet": {
  14744.         "videoId": "atnSTtiWU5E",
  14745.         "topLevelComment": {
  14746.           "kind": "youtube#comment",
  14747.           "etag": "2RNzOY5zfaz7bam8bau7CGRsTCY",
  14748.           "id": "UgwyI5lEgKhSNWEEyAl4AaABAg",
  14749.           "snippet": {
  14750.             "videoId": "atnSTtiWU5E",
  14751.             "textDisplay": "I bought new speakers today. this was the first thing I watched to check they worked. The result? Immense bass and an awesome song at full volume resonating throughout my house.*",
  14752.             "textOriginal": "I bought new speakers today. this was the first thing I watched to check they worked. The result? Immense bass and an awesome song at full volume resonating throughout my house.*",
  14753.             "authorDisplayName": "Rob Boss",
  14754.             "authorChannelUrl": "http://www.youtube.com/channel/UCrXEO9EIOUM-OZIRcUkLZxw",
  14755.             "authorChannelId": {
  14756.               "value": "UCrXEO9EIOUM-OZIRcUkLZxw"
  14757.             },
  14758.             "canRate": true,
  14759.             "viewerRating": "none",
  14760.             "likeCount": 0,
  14761.             "publishedAt": "2011-06-01T23:33:29Z",
  14762.             "updatedAt": "2011-06-01T23:33:29Z"
  14763.           }
  14764.         },
  14765.         "canReply": true,
  14766.         "totalReplyCount": 0,
  14767.         "isPublic": true
  14768.       }
  14769.     },
  14770.     {
  14771.       "kind": "youtube#commentThread",
  14772.       "etag": "nuYt4ncYLViN-Jb7pk84uCtG11U",
  14773.       "id": "UgyZnJ_ZtOUquM9SN3l4AaABAg",
  14774.       "snippet": {
  14775.         "videoId": "atnSTtiWU5E",
  14776.         "topLevelComment": {
  14777.           "kind": "youtube#comment",
  14778.           "etag": "iM7bcoiYV3ljxqIhPdzNT26_l6g",
  14779.           "id": "UgyZnJ_ZtOUquM9SN3l4AaABAg",
  14780.           "snippet": {
  14781.             "videoId": "atnSTtiWU5E",
  14782.             "textDisplay": "what is this greatness i have seen\non my computer screen",
  14783.             "textOriginal": "what is this greatness i have seen\non my computer screen",
  14784.             "authorDisplayName": "spectralspon",
  14785.             "authorChannelUrl": "http://www.youtube.com/channel/UCzr62lHzw8ddmfGixpfCbFw",
  14786.             "authorChannelId": {
  14787.               "value": "UCzr62lHzw8ddmfGixpfCbFw"
  14788.             },
  14789.             "canRate": true,
  14790.             "viewerRating": "none",
  14791.             "likeCount": 0,
  14792.             "publishedAt": "2011-05-31T22:20:08Z",
  14793.             "updatedAt": "2011-05-31T22:20:08Z"
  14794.           }
  14795.         },
  14796.         "canReply": true,
  14797.         "totalReplyCount": 0,
  14798.         "isPublic": true
  14799.       }
  14800.     },
  14801.     {
  14802.       "kind": "youtube#commentThread",
  14803.       "etag": "P1rmUMmAr4UAzaAsroTf88s7g88",
  14804.       "id": "UgyhPmC4U0QQNdjSjqd4AaABAg",
  14805.       "snippet": {
  14806.         "videoId": "atnSTtiWU5E",
  14807.         "topLevelComment": {
  14808.           "kind": "youtube#comment",
  14809.           "etag": "eim-D_VhnMvdYGaeKfuXbySl2Z0",
  14810.           "id": "UgyhPmC4U0QQNdjSjqd4AaABAg",
  14811.           "snippet": {
  14812.             "videoId": "atnSTtiWU5E",
  14813.             "textDisplay": "@BlueAbsolution hehe, we do have mostly the same thoughts with the roles, but instead of having FS as the healer, I'd give that role to PP:\r\nI don't think a classic "health" and "dying" would fit into the game, so I'd go with something Lord of the Rings Online, for example, uses: Morale. And if partying and laughing at fears is does not rise ones morale, then what does? :)\r\nFluttershy, I think, is more of an crowd controller type with her "stare" and so on, but with very weak defensive stat...",
  14814.             "textOriginal": "@BlueAbsolution hehe, we do have mostly the same thoughts with the roles, but instead of having FS as the healer, I'd give that role to PP:\r\nI don't think a classic \"health\" and \"dying\" would fit into the game, so I'd go with something Lord of the Rings Online, for example, uses: Morale. And if partying and laughing at fears is does not rise ones morale, then what does? :)\r\nFluttershy, I think, is more of an crowd controller type with her \"stare\" and so on, but with very weak defensive stat...",
  14815.             "authorDisplayName": "Blitzie",
  14816.             "authorChannelUrl": "http://www.youtube.com/channel/UCmR8Np0BquuhN46SY6hrlpQ",
  14817.             "authorChannelId": {
  14818.               "value": "UCmR8Np0BquuhN46SY6hrlpQ"
  14819.             },
  14820.             "canRate": true,
  14821.             "viewerRating": "none",
  14822.             "likeCount": 0,
  14823.             "publishedAt": "2011-05-31T02:22:08Z",
  14824.             "updatedAt": "2011-05-31T02:22:08Z"
  14825.           }
  14826.         },
  14827.         "canReply": true,
  14828.         "totalReplyCount": 0,
  14829.         "isPublic": true
  14830.       }
  14831.     },
  14832.     {
  14833.       "kind": "youtube#commentThread",
  14834.       "etag": "ZMj2AMvR1aX4C_8p0RZQnbSp8EI",
  14835.       "id": "Ugz5nr_whXn5LOrdqwZ4AaABAg",
  14836.       "snippet": {
  14837.         "videoId": "atnSTtiWU5E",
  14838.         "topLevelComment": {
  14839.           "kind": "youtube#comment",
  14840.           "etag": "Li_dDnwIJG-J7JFMmqY-en1P3z4",
  14841.           "id": "Ugz5nr_whXn5LOrdqwZ4AaABAg",
  14842.           "snippet": {
  14843.             "videoId": "atnSTtiWU5E",
  14844.             "textDisplay": "I bought the album yesterday. After I listened through it haven't been able to stop thinking of a MLP RPG; what would be the setting, character's abilities, plot twists etc. If only I'd know how to code ;P \r\n\r\nI also thought of MLP / FFX crossover fanfic, which would be fun to write, but with my limited lingual skills I don't think I could make it enjoyable to read in english. Sucks to have creative mind with no skills :P\r\n\r\nAnyway, Super Ponybeat vol 1 is well worth of the 10$ I bought it with.",
  14845.             "textOriginal": "I bought the album yesterday. After I listened through it haven't been able to stop thinking of a MLP RPG; what would be the setting, character's abilities, plot twists etc. If only I'd know how to code ;P \r\n\r\nI also thought of MLP / FFX crossover fanfic, which would be fun to write, but with my limited lingual skills I don't think I could make it enjoyable to read in english. Sucks to have creative mind with no skills :P\r\n\r\nAnyway, Super Ponybeat vol 1 is well worth of the 10$ I bought it with.",
  14846.             "authorDisplayName": "Blitzie",
  14847.             "authorChannelUrl": "http://www.youtube.com/channel/UCmR8Np0BquuhN46SY6hrlpQ",
  14848.             "authorChannelId": {
  14849.               "value": "UCmR8Np0BquuhN46SY6hrlpQ"
  14850.             },
  14851.             "canRate": true,
  14852.             "viewerRating": "none",
  14853.             "likeCount": 0,
  14854.             "publishedAt": "2011-05-31T00:59:06Z",
  14855.             "updatedAt": "2011-05-31T00:59:06Z"
  14856.           }
  14857.         },
  14858.         "canReply": true,
  14859.         "totalReplyCount": 0,
  14860.         "isPublic": true
  14861.       }
  14862.     },
  14863.     {
  14864.       "kind": "youtube#commentThread",
  14865.       "etag": "33pC03osZfmCZd17Vq3IuwPiIX8",
  14866.       "id": "UgxwlVyQ9HPrCDYKh114AaABAg",
  14867.       "snippet": {
  14868.         "videoId": "atnSTtiWU5E",
  14869.         "topLevelComment": {
  14870.           "kind": "youtube#comment",
  14871.           "etag": "l93n5_gCGlcvoHesdIMJeczsV3w",
  14872.           "id": "UgxwlVyQ9HPrCDYKh114AaABAg",
  14873.           "snippet": {
  14874.             "videoId": "atnSTtiWU5E",
  14875.             "textDisplay": "THIS _ AZWSOM/e!!",
  14876.             "textOriginal": "THIS _ AZWSOM/e!!",
  14877.             "authorDisplayName": "michi42",
  14878.             "authorChannelUrl": "http://www.youtube.com/channel/UCMYvb-WBLlnHeUggDS6eJoQ",
  14879.             "authorChannelId": {
  14880.               "value": "UCMYvb-WBLlnHeUggDS6eJoQ"
  14881.             },
  14882.             "canRate": true,
  14883.             "viewerRating": "none",
  14884.             "likeCount": 0,
  14885.             "publishedAt": "2011-05-30T15:44:40Z",
  14886.             "updatedAt": "2011-05-30T15:44:40Z"
  14887.           }
  14888.         },
  14889.         "canReply": true,
  14890.         "totalReplyCount": 0,
  14891.         "isPublic": true
  14892.       }
  14893.     },
  14894.     {
  14895.       "kind": "youtube#commentThread",
  14896.       "etag": "xhNmt1F4h8acOa130f8a-GuDxs4",
  14897.       "id": "Ugzde6TnLlLpS_FJK414AaABAg",
  14898.       "snippet": {
  14899.         "videoId": "atnSTtiWU5E",
  14900.         "topLevelComment": {
  14901.           "kind": "youtube#comment",
  14902.           "etag": "FJMeR9tykttrSL0yc12g9z6fkXg",
  14903.           "id": "Ugzde6TnLlLpS_FJK414AaABAg",
  14904.           "snippet": {
  14905.             "videoId": "atnSTtiWU5E",
  14906.             "textDisplay": "@drakkis yup, itse like Cirno was a pony.",
  14907.             "textOriginal": "@drakkis yup, itse like Cirno was a pony.",
  14908.             "authorDisplayName": "omgalreadyinuse",
  14909.             "authorChannelUrl": "http://www.youtube.com/channel/UCKk0yYsJUxDSVS4MPV-r8Zw",
  14910.             "authorChannelId": {
  14911.               "value": "UCKk0yYsJUxDSVS4MPV-r8Zw"
  14912.             },
  14913.             "canRate": true,
  14914.             "viewerRating": "none",
  14915.             "likeCount": 0,
  14916.             "publishedAt": "2011-05-25T18:19:16Z",
  14917.             "updatedAt": "2011-05-25T18:19:16Z"
  14918.           }
  14919.         },
  14920.         "canReply": true,
  14921.         "totalReplyCount": 0,
  14922.         "isPublic": true
  14923.       }
  14924.     },
  14925.     {
  14926.       "kind": "youtube#commentThread",
  14927.       "etag": "3Mt3fGvfgoTlwPthc7BRYXB1lCw",
  14928.       "id": "Ugx4NN3ULabgCNG9lwZ4AaABAg",
  14929.       "snippet": {
  14930.         "videoId": "atnSTtiWU5E",
  14931.         "topLevelComment": {
  14932.           "kind": "youtube#comment",
  14933.           "etag": "xY7CJ1G8CHPCDl_T5DfT7_7Muss",
  14934.           "id": "Ugx4NN3ULabgCNG9lwZ4AaABAg",
  14935.           "snippet": {
  14936.             "videoId": "atnSTtiWU5E",
  14937.             "textDisplay": "This mix is amazing. I've had it on loop for... about 3 hours now.",
  14938.             "textOriginal": "This mix is amazing. I've had it on loop for... about 3 hours now.",
  14939.             "authorDisplayName": "Phoenix Unity",
  14940.             "authorChannelUrl": "http://www.youtube.com/channel/UC_HNXISE6I9Ir9wXl39kCXA",
  14941.             "authorChannelId": {
  14942.               "value": "UC_HNXISE6I9Ir9wXl39kCXA"
  14943.             },
  14944.             "canRate": true,
  14945.             "viewerRating": "none",
  14946.             "likeCount": 4,
  14947.             "publishedAt": "2011-05-20T22:56:48Z",
  14948.             "updatedAt": "2011-05-20T22:56:48Z"
  14949.           }
  14950.         },
  14951.         "canReply": true,
  14952.         "totalReplyCount": 0,
  14953.         "isPublic": true
  14954.       }
  14955.     },
  14956.     {
  14957.       "kind": "youtube#commentThread",
  14958.       "etag": "9wRdSf5xMe8dzyU_YXyl1ixmwyo",
  14959.       "id": "UgxZCaK0h4F-d-XuCAF4AaABAg",
  14960.       "snippet": {
  14961.         "videoId": "atnSTtiWU5E",
  14962.         "topLevelComment": {
  14963.           "kind": "youtube#comment",
  14964.           "etag": "WlYXLulIHMdBtyU0D9PygdCVl0c",
  14965.           "id": "UgxZCaK0h4F-d-XuCAF4AaABAg",
  14966.           "snippet": {
  14967.             "videoId": "atnSTtiWU5E",
  14968.             "textDisplay": "It's like I'm playing touhou. ",
  14969.             "textOriginal": "It's like I'm playing touhou. ",
  14970.             "authorDisplayName": "radiobob",
  14971.             "authorChannelUrl": "http://www.youtube.com/channel/UChSUHbrNvK1PWaquY5yFE-Q",
  14972.             "authorChannelId": {
  14973.               "value": "UChSUHbrNvK1PWaquY5yFE-Q"
  14974.             },
  14975.             "canRate": true,
  14976.             "viewerRating": "none",
  14977.             "likeCount": 0,
  14978.             "publishedAt": "2011-05-20T17:50:18Z",
  14979.             "updatedAt": "2011-05-20T17:50:18Z"
  14980.           }
  14981.         },
  14982.         "canReply": true,
  14983.         "totalReplyCount": 0,
  14984.         "isPublic": true
  14985.       }
  14986.     },
  14987.     {
  14988.       "kind": "youtube#commentThread",
  14989.       "etag": "zyx1mnBTiZYyZSS0GLOXjYo9QHM",
  14990.       "id": "UgwEq86eDZ-ncpjTQ3l4AaABAg",
  14991.       "snippet": {
  14992.         "videoId": "atnSTtiWU5E",
  14993.         "topLevelComment": {
  14994.           "kind": "youtube#comment",
  14995.           "etag": "XLM6VaxyBCCKa_8QpP0d_oHhz8s",
  14996.           "id": "UgwEq86eDZ-ncpjTQ3l4AaABAg",
  14997.           "snippet": {
  14998.             "videoId": "atnSTtiWU5E",
  14999.             "textDisplay": "@BeeAre You make me wish I could favorite comments.",
  15000.             "textOriginal": "@BeeAre You make me wish I could favorite comments.",
  15001.             "authorDisplayName": "Knowledge: Dungeoneering",
  15002.             "authorChannelUrl": "http://www.youtube.com/channel/UC4njeCRzcHREPREISgIqfQg",
  15003.             "authorChannelId": {
  15004.               "value": "UC4njeCRzcHREPREISgIqfQg"
  15005.             },
  15006.             "canRate": true,
  15007.             "viewerRating": "none",
  15008.             "likeCount": 0,
  15009.             "publishedAt": "2011-05-17T20:52:00Z",
  15010.             "updatedAt": "2011-05-17T20:52:00Z"
  15011.           }
  15012.         },
  15013.         "canReply": true,
  15014.         "totalReplyCount": 0,
  15015.         "isPublic": true
  15016.       }
  15017.     },
  15018.     {
  15019.       "kind": "youtube#commentThread",
  15020.       "etag": "-eZ9YL1Y0cXqnIYQGfk2n2YJ9VI",
  15021.       "id": "UgyLCHFVyRBv6p9yaAt4AaABAg",
  15022.       "snippet": {
  15023.         "videoId": "atnSTtiWU5E",
  15024.         "topLevelComment": {
  15025.           "kind": "youtube#comment",
  15026.           "etag": "vKFlYEfauqg9lTkFY59fZ9Iwe34",
  15027.           "id": "UgyLCHFVyRBv6p9yaAt4AaABAg",
  15028.           "snippet": {
  15029.             "videoId": "atnSTtiWU5E",
  15030.             "textDisplay": "@FusiontheCat Hmmmm... A game dealing with the psyche of these ponies and their various psychological oddities, while at the same time delivering a stereo-typical dungeon delving side to it that still feels amazing, wrapped up in a social sim package? Count me in. Cant wait to see what the enemies would look like... ",
  15031.             "textOriginal": "@FusiontheCat Hmmmm... A game dealing with the psyche of these ponies and their various psychological oddities, while at the same time delivering a stereo-typical dungeon delving side to it that still feels amazing, wrapped up in a social sim package? Count me in. Cant wait to see what the enemies would look like... ",
  15032.             "authorDisplayName": "GreenFellow",
  15033.             "authorChannelUrl": "http://www.youtube.com/channel/UCI_pC9HiaEwXMyEWwve0oUA",
  15034.             "authorChannelId": {
  15035.               "value": "UCI_pC9HiaEwXMyEWwve0oUA"
  15036.             },
  15037.             "canRate": true,
  15038.             "viewerRating": "none",
  15039.             "likeCount": 0,
  15040.             "publishedAt": "2011-05-14T06:11:03Z",
  15041.             "updatedAt": "2011-05-14T06:11:03Z"
  15042.           }
  15043.         },
  15044.         "canReply": true,
  15045.         "totalReplyCount": 0,
  15046.         "isPublic": true
  15047.       }
  15048.     },
  15049.     {
  15050.       "kind": "youtube#commentThread",
  15051.       "etag": "gy9_0kHufdGr9xUkeGuvR-mjV7A",
  15052.       "id": "Ugw2VqcgHlEBvCFk3dd4AaABAg",
  15053.       "snippet": {
  15054.         "videoId": "atnSTtiWU5E",
  15055.         "topLevelComment": {
  15056.           "kind": "youtube#comment",
  15057.           "etag": "bfAUD2G1U6rwvpgR5xet6BDpXC0",
  15058.           "id": "Ugw2VqcgHlEBvCFk3dd4AaABAg",
  15059.           "snippet": {
  15060.             "videoId": "atnSTtiWU5E",
  15061.             "textDisplay": "Put on driving gloves, open car door, sit on the driver's seat when you can see you cool self on the car mirror, ignite machine, hit gas hard to the highways, WITH THIS SONG BLASTING ON THE SPEAKERS. YOU WILL BE A MAN.",
  15062.             "textOriginal": "Put on driving gloves, open car door, sit on the driver's seat when you can see you cool self on the car mirror, ignite machine, hit gas hard to the highways, WITH THIS SONG BLASTING ON THE SPEAKERS. YOU WILL BE A MAN.",
  15063.             "authorDisplayName": "MIU Music",
  15064.             "authorChannelUrl": "http://www.youtube.com/channel/UCXBWgrLH3J8FV8DU8V4JVOQ",
  15065.             "authorChannelId": {
  15066.               "value": "UCXBWgrLH3J8FV8DU8V4JVOQ"
  15067.             },
  15068.             "canRate": true,
  15069.             "viewerRating": "none",
  15070.             "likeCount": 0,
  15071.             "publishedAt": "2011-05-14T02:38:04Z",
  15072.             "updatedAt": "2011-05-14T02:38:04Z"
  15073.           }
  15074.         },
  15075.         "canReply": true,
  15076.         "totalReplyCount": 0,
  15077.         "isPublic": true
  15078.       }
  15079.     },
  15080.     {
  15081.       "kind": "youtube#commentThread",
  15082.       "etag": "JzqosFtU37SLoFllI7KD8JGXfJo",
  15083.       "id": "UgzOoEIj0eNTK51D0yh4AaABAg",
  15084.       "snippet": {
  15085.         "videoId": "atnSTtiWU5E",
  15086.         "topLevelComment": {
  15087.           "kind": "youtube#comment",
  15088.           "etag": "BQSwWYp7NK0G7lsJSenY6wNu30A",
  15089.           "id": "UgzOoEIj0eNTK51D0yh4AaABAg",
  15090.           "snippet": {
  15091.             "videoId": "atnSTtiWU5E",
  15092.             "textDisplay": "@Brian626 MANLY men.",
  15093.             "textOriginal": "@Brian626 MANLY men.",
  15094.             "authorDisplayName": "8stygz8",
  15095.             "authorChannelUrl": "http://www.youtube.com/channel/UCDWCdBcLlhLdy3zyy9wji9A",
  15096.             "authorChannelId": {
  15097.               "value": "UCDWCdBcLlhLdy3zyy9wji9A"
  15098.             },
  15099.             "canRate": true,
  15100.             "viewerRating": "none",
  15101.             "likeCount": 0,
  15102.             "publishedAt": "2011-05-13T11:50:32Z",
  15103.             "updatedAt": "2011-05-13T11:50:32Z"
  15104.           }
  15105.         },
  15106.         "canReply": true,
  15107.         "totalReplyCount": 0,
  15108.         "isPublic": true
  15109.       }
  15110.     },
  15111.     {
  15112.       "kind": "youtube#commentThread",
  15113.       "etag": "tQrAqg5jvvYF-JTqrrav0Zqu7Uk",
  15114.       "id": "UgybuDWR7EebXG3u91t4AaABAg",
  15115.       "snippet": {
  15116.         "videoId": "atnSTtiWU5E",
  15117.         "topLevelComment": {
  15118.           "kind": "youtube#comment",
  15119.           "etag": "6U79BbhggFP0o6XRD1MtPwacGpo",
  15120.           "id": "UgybuDWR7EebXG3u91t4AaABAg",
  15121.           "snippet": {
  15122.             "videoId": "atnSTtiWU5E",
  15123.             "textDisplay": "Just need lyrics to make this song complete.  ",
  15124.             "textOriginal": "Just need lyrics to make this song complete.  ",
  15125.             "authorDisplayName": "Tathar",
  15126.             "authorChannelUrl": "http://www.youtube.com/channel/UCTth51E7M92UetiQm_ymmyQ",
  15127.             "authorChannelId": {
  15128.               "value": "UCTth51E7M92UetiQm_ymmyQ"
  15129.             },
  15130.             "canRate": true,
  15131.             "viewerRating": "none",
  15132.             "likeCount": 0,
  15133.             "publishedAt": "2011-05-13T05:31:51Z",
  15134.             "updatedAt": "2011-05-13T05:31:51Z"
  15135.           }
  15136.         },
  15137.         "canReply": true,
  15138.         "totalReplyCount": 0,
  15139.         "isPublic": true
  15140.       }
  15141.     },
  15142.     {
  15143.       "kind": "youtube#commentThread",
  15144.       "etag": "3zoG4IwVSAPURzlArOrCOZKeyDk",
  15145.       "id": "UgwbLcnkUAIXcCmFtAt4AaABAg",
  15146.       "snippet": {
  15147.         "videoId": "atnSTtiWU5E",
  15148.         "topLevelComment": {
  15149.           "kind": "youtube#comment",
  15150.           "etag": "zI4IsaQtcNPTEmOZqLuQb448ESM",
  15151.           "id": "UgwbLcnkUAIXcCmFtAt4AaABAg",
  15152.           "snippet": {
  15153.             "videoId": "atnSTtiWU5E",
  15154.             "textDisplay": "Sounds like a Megaman stage.",
  15155.             "textOriginal": "Sounds like a Megaman stage.",
  15156.             "authorDisplayName": "Guilmonhero",
  15157.             "authorChannelUrl": "http://www.youtube.com/channel/UCK47AhXi-jPYvOpBv44MfVA",
  15158.             "authorChannelId": {
  15159.               "value": "UCK47AhXi-jPYvOpBv44MfVA"
  15160.             },
  15161.             "canRate": true,
  15162.             "viewerRating": "none",
  15163.             "likeCount": 0,
  15164.             "publishedAt": "2011-05-13T05:20:28Z",
  15165.             "updatedAt": "2011-05-13T05:20:28Z"
  15166.           }
  15167.         },
  15168.         "canReply": true,
  15169.         "totalReplyCount": 0,
  15170.         "isPublic": true
  15171.       }
  15172.     },
  15173.     {
  15174.       "kind": "youtube#commentThread",
  15175.       "etag": "ko3jUFyK5ZAvWlE90kpx2sBVtQM",
  15176.       "id": "UgxSlyi7aMRC5_nJcxZ4AaABAg",
  15177.       "snippet": {
  15178.         "videoId": "atnSTtiWU5E",
  15179.         "topLevelComment": {
  15180.           "kind": "youtube#comment",
  15181.           "etag": "LJR_MlI-bzVzbZ31qioZDi7sEgw",
  15182.           "id": "UgxSlyi7aMRC5_nJcxZ4AaABAg",
  15183.           "snippet": {
  15184.             "videoId": "atnSTtiWU5E",
  15185.             "textDisplay": "@DiegoXLuigi Still nothing. Perhaps I'm just tonedeaf. Or beatnumb.",
  15186.             "textOriginal": "@DiegoXLuigi Still nothing. Perhaps I'm just tonedeaf. Or beatnumb.",
  15187.             "authorDisplayName": "Kapten-N",
  15188.             "authorChannelUrl": "http://www.youtube.com/channel/UCia4zb7QgxKMA6b4gkh8ziQ",
  15189.             "authorChannelId": {
  15190.               "value": "UCia4zb7QgxKMA6b4gkh8ziQ"
  15191.             },
  15192.             "canRate": true,
  15193.             "viewerRating": "none",
  15194.             "likeCount": 0,
  15195.             "publishedAt": "2011-05-13T03:58:43Z",
  15196.             "updatedAt": "2011-05-13T03:58:43Z"
  15197.           }
  15198.         },
  15199.         "canReply": true,
  15200.         "totalReplyCount": 0,
  15201.         "isPublic": true
  15202.       }
  15203.     },
  15204.     {
  15205.       "kind": "youtube#commentThread",
  15206.       "etag": "2JeSa3aL1xLzTg0DL3UCXENpUgI",
  15207.       "id": "UgxYSaR2iZI6zAHn-xV4AaABAg",
  15208.       "snippet": {
  15209.         "videoId": "atnSTtiWU5E",
  15210.         "topLevelComment": {
  15211.           "kind": "youtube#comment",
  15212.           "etag": "TK9_feygusLrQhEUMBCo617nZFo",
  15213.           "id": "UgxYSaR2iZI6zAHn-xV4AaABAg",
  15214.           "snippet": {
  15215.             "videoId": "atnSTtiWU5E",
  15216.             "textDisplay": "@KaptenN Listen to the xylophone parts.  It plays the notes that Flutterguy sang in its rendition.",
  15217.             "textOriginal": "@KaptenN Listen to the xylophone parts.  It plays the notes that Flutterguy sang in its rendition.",
  15218.             "authorDisplayName": "neonal18",
  15219.             "authorChannelUrl": "http://www.youtube.com/channel/UCbib4IIwOG4_DUA6FZFFVWg",
  15220.             "authorChannelId": {
  15221.               "value": "UCbib4IIwOG4_DUA6FZFFVWg"
  15222.             },
  15223.             "canRate": true,
  15224.             "viewerRating": "none",
  15225.             "likeCount": 0,
  15226.             "publishedAt": "2011-05-12T23:00:20Z",
  15227.             "updatedAt": "2011-05-12T23:00:20Z"
  15228.           }
  15229.         },
  15230.         "canReply": true,
  15231.         "totalReplyCount": 0,
  15232.         "isPublic": true
  15233.       }
  15234.     },
  15235.     {
  15236.       "kind": "youtube#commentThread",
  15237.       "etag": "ByE4R0DIjyRUd0JVzoIbZcwRLxQ",
  15238.       "id": "UgxE4RHINT71ExuCYXZ4AaABAg",
  15239.       "snippet": {
  15240.         "videoId": "atnSTtiWU5E",
  15241.         "topLevelComment": {
  15242.           "kind": "youtube#comment",
  15243.           "etag": "gp876xARNUqIY0aDTxRe4iSSXf4",
  15244.           "id": "UgxE4RHINT71ExuCYXZ4AaABAg",
  15245.           "snippet": {
  15246.             "videoId": "atnSTtiWU5E",
  15247.             "textDisplay": "I'm sorry, I don't hear the similarities to the song Pinkie sang. :/",
  15248.             "textOriginal": "I'm sorry, I don't hear the similarities to the song Pinkie sang. :/",
  15249.             "authorDisplayName": "Kapten-N",
  15250.             "authorChannelUrl": "http://www.youtube.com/channel/UCia4zb7QgxKMA6b4gkh8ziQ",
  15251.             "authorChannelId": {
  15252.               "value": "UCia4zb7QgxKMA6b4gkh8ziQ"
  15253.             },
  15254.             "canRate": true,
  15255.             "viewerRating": "none",
  15256.             "likeCount": 0,
  15257.             "publishedAt": "2011-05-12T22:52:14Z",
  15258.             "updatedAt": "2011-05-12T22:52:14Z"
  15259.           }
  15260.         },
  15261.         "canReply": true,
  15262.         "totalReplyCount": 0,
  15263.         "isPublic": true
  15264.       }
  15265.     },
  15266.     {
  15267.       "kind": "youtube#commentThread",
  15268.       "etag": "1sCySquz_DtmOPCF8LfaSPArJXc",
  15269.       "id": "Ugzr7W098UtmDXUxteR4AaABAg",
  15270.       "snippet": {
  15271.         "videoId": "atnSTtiWU5E",
  15272.         "topLevelComment": {
  15273.           "kind": "youtube#comment",
  15274.           "etag": "N8CvezVZqLqT_rpCINZz9GrIeDg",
  15275.           "id": "Ugzr7W098UtmDXUxteR4AaABAg",
  15276.           "snippet": {
  15277.             "videoId": "atnSTtiWU5E",
  15278.             "textDisplay": "@FusiontheCat I'd pay anything for that game. And I'm not even exaggerating. o_o",
  15279.             "textOriginal": "@FusiontheCat I'd pay anything for that game. And I'm not even exaggerating. o_o",
  15280.             "authorDisplayName": "RRRadish",
  15281.             "authorChannelUrl": "http://www.youtube.com/channel/UCBVrJCN1PlOtmMJUVYuMqDg",
  15282.             "authorChannelId": {
  15283.               "value": "UCBVrJCN1PlOtmMJUVYuMqDg"
  15284.             },
  15285.             "canRate": true,
  15286.             "viewerRating": "none",
  15287.             "likeCount": 0,
  15288.             "publishedAt": "2011-05-12T17:49:09Z",
  15289.             "updatedAt": "2011-05-12T17:49:09Z"
  15290.           }
  15291.         },
  15292.         "canReply": true,
  15293.         "totalReplyCount": 0,
  15294.         "isPublic": true
  15295.       }
  15296.     },
  15297.     {
  15298.       "kind": "youtube#commentThread",
  15299.       "etag": "4phcg9JzgDTaIMIx-vIpkRqgJUY",
  15300.       "id": "UgyuqvTROjt40Kv8Rm54AaABAg",
  15301.       "snippet": {
  15302.         "videoId": "atnSTtiWU5E",
  15303.         "topLevelComment": {
  15304.           "kind": "youtube#comment",
  15305.           "etag": "UbdGPJbVn0WkKrINBJR2CGsbQJc",
  15306.           "id": "UgyuqvTROjt40Kv8Rm54AaABAg",
  15307.           "snippet": {
  15308.             "videoId": "atnSTtiWU5E",
  15309.             "textDisplay": "@Ironsped18\nHeh. you're preaching to the choir, but I've tried all of this stuff and everybody just either saying something along the lines of 'No,' or perhaps 'No'. They're descriptive like that.",
  15310.             "textOriginal": "@Ironsped18\nHeh. you're preaching to the choir, but I've tried all of this stuff and everybody just either saying something along the lines of 'No,' or perhaps 'No'. They're descriptive like that.",
  15311.             "authorDisplayName": "Talonere",
  15312.             "authorChannelUrl": "http://www.youtube.com/channel/UCMI_erfmG1NhHP_-lGxsAWA",
  15313.             "authorChannelId": {
  15314.               "value": "UCMI_erfmG1NhHP_-lGxsAWA"
  15315.             },
  15316.             "canRate": true,
  15317.             "viewerRating": "none",
  15318.             "likeCount": 0,
  15319.             "publishedAt": "2011-05-12T07:16:22Z",
  15320.             "updatedAt": "2011-05-12T07:16:22Z"
  15321.           }
  15322.         },
  15323.         "canReply": true,
  15324.         "totalReplyCount": 0,
  15325.         "isPublic": true
  15326.       }
  15327.     },
  15328.     {
  15329.       "kind": "youtube#commentThread",
  15330.       "etag": "HoEY6vpklFkt2s_6T318YIYzi1M",
  15331.       "id": "UgxaQfYqKjHg9Ba8aCZ4AaABAg",
  15332.       "snippet": {
  15333.         "videoId": "atnSTtiWU5E",
  15334.         "topLevelComment": {
  15335.           "kind": "youtube#comment",
  15336.           "etag": "76GELhS33uyTGNEYBHhPtMN_HMw",
  15337.           "id": "UgxaQfYqKjHg9Ba8aCZ4AaABAg",
  15338.           "snippet": {
  15339.             "videoId": "atnSTtiWU5E",
  15340.             "textDisplay": "@600will I thought I could watch the first episode, then resist. I was wrong. So blissfully wrong.",
  15341.             "textOriginal": "@600will I thought I could watch the first episode, then resist. I was wrong. So blissfully wrong.",
  15342.             "authorDisplayName": "Zaery",
  15343.             "authorChannelUrl": "http://www.youtube.com/channel/UC-xgamMWXLcNhyo1BmCbLPg",
  15344.             "authorChannelId": {
  15345.               "value": "UC-xgamMWXLcNhyo1BmCbLPg"
  15346.             },
  15347.             "canRate": true,
  15348.             "viewerRating": "none",
  15349.             "likeCount": 0,
  15350.             "publishedAt": "2011-05-11T21:31:03Z",
  15351.             "updatedAt": "2011-05-11T21:31:03Z"
  15352.           }
  15353.         },
  15354.         "canReply": true,
  15355.         "totalReplyCount": 0,
  15356.         "isPublic": true
  15357.       }
  15358.     },
  15359.     {
  15360.       "kind": "youtube#commentThread",
  15361.       "etag": "fFenPoK_WD56IQ7zhjjBN0-FCks",
  15362.       "id": "Ugy1i-PMwiTaWWhtDP54AaABAg",
  15363.       "snippet": {
  15364.         "videoId": "atnSTtiWU5E",
  15365.         "topLevelComment": {
  15366.           "kind": "youtube#comment",
  15367.           "etag": "CHBQRJAxDvv3efBPMnHbuMBuSP4",
  15368.           "id": "Ugy1i-PMwiTaWWhtDP54AaABAg",
  15369.           "snippet": {
  15370.             "videoId": "atnSTtiWU5E",
  15371.             "textDisplay": "@Talonere It's fucking badass, that's how. It has excellent characters, good storylines, flawless animation, actually funny humour and is better than just aboout any other show out there at the moment, kids or adults",
  15372.             "textOriginal": "@Talonere It's fucking badass, that's how. It has excellent characters, good storylines, flawless animation, actually funny humour and is better than just aboout any other show out there at the moment, kids or adults",
  15373.             "authorDisplayName": "Ironsped18",
  15374.             "authorChannelUrl": "http://www.youtube.com/channel/UC6CUGpCEUiB68Lot2EvQLFQ",
  15375.             "authorChannelId": {
  15376.               "value": "UC6CUGpCEUiB68Lot2EvQLFQ"
  15377.             },
  15378.             "canRate": true,
  15379.             "viewerRating": "none",
  15380.             "likeCount": 0,
  15381.             "publishedAt": "2011-05-11T20:32:34Z",
  15382.             "updatedAt": "2011-05-11T20:32:34Z"
  15383.           }
  15384.         },
  15385.         "canReply": true,
  15386.         "totalReplyCount": 0,
  15387.         "isPublic": true
  15388.       }
  15389.     },
  15390.     {
  15391.       "kind": "youtube#commentThread",
  15392.       "etag": "TeDWtynxlNeQ6GPpYn5SkyEkefg",
  15393.       "id": "Ugzasg6HKNcE6OYCAot4AaABAg",
  15394.       "snippet": {
  15395.         "videoId": "atnSTtiWU5E",
  15396.         "topLevelComment": {
  15397.           "kind": "youtube#comment",
  15398.           "etag": "eNcQk9bl85R0iLyoRNwj7LFolmk",
  15399.           "id": "Ugzasg6HKNcE6OYCAot4AaABAg",
  15400.           "snippet": {
  15401.             "videoId": "atnSTtiWU5E",
  15402.             "textDisplay": "@600will\nYeah, this is exactly how it goes. Tell me, though, how do you justify watching it to somebody who wont? >_>",
  15403.             "textOriginal": "@600will\nYeah, this is exactly how it goes. Tell me, though, how do you justify watching it to somebody who wont? \u003e_\u003e",
  15404.             "authorDisplayName": "Talonere",
  15405.             "authorChannelUrl": "http://www.youtube.com/channel/UCMI_erfmG1NhHP_-lGxsAWA",
  15406.             "authorChannelId": {
  15407.               "value": "UCMI_erfmG1NhHP_-lGxsAWA"
  15408.             },
  15409.             "canRate": true,
  15410.             "viewerRating": "none",
  15411.             "likeCount": 0,
  15412.             "publishedAt": "2011-05-11T18:48:55Z",
  15413.             "updatedAt": "2011-05-11T18:48:55Z"
  15414.           }
  15415.         },
  15416.         "canReply": true,
  15417.         "totalReplyCount": 0,
  15418.         "isPublic": true
  15419.       }
  15420.     },
  15421.     {
  15422.       "kind": "youtube#commentThread",
  15423.       "etag": "KaN8kKuUWeglF1_ZrwKDzQQh1k4",
  15424.       "id": "UgzShkvgY0AFHai4tHl4AaABAg",
  15425.       "snippet": {
  15426.         "videoId": "atnSTtiWU5E",
  15427.         "topLevelComment": {
  15428.           "kind": "youtube#comment",
  15429.           "etag": "2PSc_42UAZGMaDHp7lzcFOf3ZGo",
  15430.           "id": "UgzShkvgY0AFHai4tHl4AaABAg",
  15431.           "snippet": {
  15432.             "videoId": "atnSTtiWU5E",
  15433.             "textDisplay": "Initial D meets My Little Pony. ",
  15434.             "textOriginal": "Initial D meets My Little Pony. ",
  15435.             "authorDisplayName": "gear9242",
  15436.             "authorChannelUrl": "http://www.youtube.com/channel/UCtmHlzkUYUja1lhp0x5o1hQ",
  15437.             "authorChannelId": {
  15438.               "value": "UCtmHlzkUYUja1lhp0x5o1hQ"
  15439.             },
  15440.             "canRate": true,
  15441.             "viewerRating": "none",
  15442.             "likeCount": 0,
  15443.             "publishedAt": "2011-05-10T22:52:56Z",
  15444.             "updatedAt": "2011-05-10T22:52:56Z"
  15445.           }
  15446.         },
  15447.         "canReply": true,
  15448.         "totalReplyCount": 0,
  15449.         "isPublic": true
  15450.       }
  15451.     },
  15452.     {
  15453.       "kind": "youtube#commentThread",
  15454.       "etag": "qDNbODlZIFdnCJ2X-CIlFmuXwUw",
  15455.       "id": "Ugw6hWYqpSDof39c0N54AaABAg",
  15456.       "snippet": {
  15457.         "videoId": "atnSTtiWU5E",
  15458.         "topLevelComment": {
  15459.           "kind": "youtube#comment",
  15460.           "etag": "Eaz82mH5U2y7--EWmxXmfBrtrME",
  15461.           "id": "Ugw6hWYqpSDof39c0N54AaABAg",
  15462.           "snippet": {
  15463.             "videoId": "atnSTtiWU5E",
  15464.             "textDisplay": "I would love to play this on Stepmania. \nThen again, I would love to see ALL of the Ponybeat songs stepmixed :D",
  15465.             "textOriginal": "I would love to play this on Stepmania. \nThen again, I would love to see ALL of the Ponybeat songs stepmixed :D",
  15466.             "authorDisplayName": "Misti",
  15467.             "authorChannelUrl": "http://www.youtube.com/channel/UC6_FPbIihBPD-UwMh32GRxw",
  15468.             "authorChannelId": {
  15469.               "value": "UC6_FPbIihBPD-UwMh32GRxw"
  15470.             },
  15471.             "canRate": true,
  15472.             "viewerRating": "none",
  15473.             "likeCount": 4,
  15474.             "publishedAt": "2011-05-09T01:30:33Z",
  15475.             "updatedAt": "2011-05-09T01:30:33Z"
  15476.           }
  15477.         },
  15478.         "canReply": true,
  15479.         "totalReplyCount": 0,
  15480.         "isPublic": true
  15481.       }
  15482.     },
  15483.     {
  15484.       "kind": "youtube#commentThread",
  15485.       "etag": "nlDA2LhSB-y2h_VCBv2nBQGkhYI",
  15486.       "id": "UgxJwGPI_EJ-D9yyfEJ4AaABAg",
  15487.       "snippet": {
  15488.         "videoId": "atnSTtiWU5E",
  15489.         "topLevelComment": {
  15490.           "kind": "youtube#comment",
  15491.           "etag": "sHRGqs0N-du0i0z6DggZy-cdps8",
  15492.           "id": "UgxJwGPI_EJ-D9yyfEJ4AaABAg",
  15493.           "snippet": {
  15494.             "videoId": "atnSTtiWU5E",
  15495.             "textDisplay": "This is great brony! It reminds me of 90's anime theme openings for Man shows like Gundam Wing and all that. What plugins or platform/software are you using to make this remixes?",
  15496.             "textOriginal": "This is great brony! It reminds me of 90's anime theme openings for Man shows like Gundam Wing and all that. What plugins or platform/software are you using to make this remixes?",
  15497.             "authorDisplayName": "LaRaikaa",
  15498.             "authorChannelUrl": "http://www.youtube.com/channel/UCEe_5rnLszBINYHjgDqcfRg",
  15499.             "authorChannelId": {
  15500.               "value": "UCEe_5rnLszBINYHjgDqcfRg"
  15501.             },
  15502.             "canRate": true,
  15503.             "viewerRating": "none",
  15504.             "likeCount": 2,
  15505.             "publishedAt": "2011-05-06T19:40:28Z",
  15506.             "updatedAt": "2011-05-06T19:40:28Z"
  15507.           }
  15508.         },
  15509.         "canReply": true,
  15510.         "totalReplyCount": 0,
  15511.         "isPublic": true
  15512.       }
  15513.     },
  15514.     {
  15515.       "kind": "youtube#commentThread",
  15516.       "etag": "80xro2W2Xv8NDDc3YXdaiNb8VBo",
  15517.       "id": "Ugwsh04IwMsijOxop8h4AaABAg",
  15518.       "snippet": {
  15519.         "videoId": "atnSTtiWU5E",
  15520.         "topLevelComment": {
  15521.           "kind": "youtube#comment",
  15522.           "etag": "XkFkDfPDrSf67yXGNcJR2t7bKPI",
  15523.           "id": "Ugwsh04IwMsijOxop8h4AaABAg",
  15524.           "snippet": {
  15525.             "videoId": "atnSTtiWU5E",
  15526.             "textDisplay": "i wonder how a "ponyman" stage would look like... they need to make a megaman game just to put this song in it xD",
  15527.             "textOriginal": "i wonder how a \"ponyman\" stage would look like... they need to make a megaman game just to put this song in it xD",
  15528.             "authorDisplayName": "Nachotronix",
  15529.             "authorChannelUrl": "http://www.youtube.com/channel/UCfDKQ4V6HKJwr6Aqf_yRbAQ",
  15530.             "authorChannelId": {
  15531.               "value": "UCfDKQ4V6HKJwr6Aqf_yRbAQ"
  15532.             },
  15533.             "canRate": true,
  15534.             "viewerRating": "none",
  15535.             "likeCount": 0,
  15536.             "publishedAt": "2011-05-06T00:10:47Z",
  15537.             "updatedAt": "2011-05-06T00:10:47Z"
  15538.           }
  15539.         },
  15540.         "canReply": true,
  15541.         "totalReplyCount": 0,
  15542.         "isPublic": true
  15543.       }
  15544.     },
  15545.     {
  15546.       "kind": "youtube#commentThread",
  15547.       "etag": "Z4XF1W07yzkDkFmUv4n9uO_zlc8",
  15548.       "id": "Ugyem70WJsJ-OnWGMj54AaABAg",
  15549.       "snippet": {
  15550.         "videoId": "atnSTtiWU5E",
  15551.         "topLevelComment": {
  15552.           "kind": "youtube#comment",
  15553.           "etag": "qmBJQY48-g5u_2aqhsXHnwfpNU0",
  15554.           "id": "Ugyem70WJsJ-OnWGMj54AaABAg",
  15555.           "snippet": {
  15556.             "videoId": "atnSTtiWU5E",
  15557.             "textDisplay": "FluttershyElsa and their vocal mixes of your Eurobeats: You are aware of them, yes?",
  15558.             "textOriginal": "FluttershyElsa and their vocal mixes of your Eurobeats: You are aware of them, yes?",
  15559.             "authorDisplayName": "bluemew22",
  15560.             "authorChannelUrl": "http://www.youtube.com/channel/UC7MrpNyuQRA3dGtrBs_GtyQ",
  15561.             "authorChannelId": {
  15562.               "value": "UC7MrpNyuQRA3dGtrBs_GtyQ"
  15563.             },
  15564.             "canRate": true,
  15565.             "viewerRating": "none",
  15566.             "likeCount": 0,
  15567.             "publishedAt": "2011-05-05T21:42:03Z",
  15568.             "updatedAt": "2011-05-05T21:42:03Z"
  15569.           }
  15570.         },
  15571.         "canReply": true,
  15572.         "totalReplyCount": 0,
  15573.         "isPublic": true
  15574.       }
  15575.     },
  15576.     {
  15577.       "kind": "youtube#commentThread",
  15578.       "etag": "njccQlkqRi_BCF3HuvccDW57nw8",
  15579.       "id": "UgyQ1p-p01Hq5sWMIqp4AaABAg",
  15580.       "snippet": {
  15581.         "videoId": "atnSTtiWU5E",
  15582.         "topLevelComment": {
  15583.           "kind": "youtube#comment",
  15584.           "etag": "Fiv4EM24ukI8gtPrpOF7wU_hAOM",
  15585.           "id": "UgyQ1p-p01Hq5sWMIqp4AaABAg",
  15586.           "snippet": {
  15587.             "videoId": "atnSTtiWU5E",
  15588.             "textDisplay": "@Flutterdash My reputation will diminish...haha. I'll try to watch one...alone...hahaha",
  15589.             "textOriginal": "@Flutterdash My reputation will diminish...haha. I'll try to watch one...alone...hahaha",
  15590.             "authorDisplayName": "MrTholl",
  15591.             "authorChannelUrl": "http://www.youtube.com/channel/UCZSsse_g8PYYrI8SdZU0tdw",
  15592.             "authorChannelId": {
  15593.               "value": "UCZSsse_g8PYYrI8SdZU0tdw"
  15594.             },
  15595.             "canRate": true,
  15596.             "viewerRating": "none",
  15597.             "likeCount": 0,
  15598.             "publishedAt": "2011-05-05T08:00:27Z",
  15599.             "updatedAt": "2011-05-05T08:00:27Z"
  15600.           }
  15601.         },
  15602.         "canReply": true,
  15603.         "totalReplyCount": 0,
  15604.         "isPublic": true
  15605.       }
  15606.     },
  15607.     {
  15608.       "kind": "youtube#commentThread",
  15609.       "etag": "X7XGwtNt-ntGBgckk7tKEjXlEVs",
  15610.       "id": "Ugw75ccG33NYhwpX_Wh4AaABAg",
  15611.       "snippet": {
  15612.         "videoId": "atnSTtiWU5E",
  15613.         "topLevelComment": {
  15614.           "kind": "youtube#comment",
  15615.           "etag": "ijQH5DzDzz-cSrT21KIL6_JCCEU",
  15616.           "id": "Ugw75ccG33NYhwpX_Wh4AaABAg",
  15617.           "snippet": {
  15618.             "videoId": "atnSTtiWU5E",
  15619.             "textDisplay": "@supornerdy \nI'd definitely listen to this while playing F-Zero.",
  15620.             "textOriginal": "@supornerdy \nI'd definitely listen to this while playing F-Zero.",
  15621.             "authorDisplayName": "Leudie Blues",
  15622.             "authorChannelUrl": "http://www.youtube.com/channel/UCM1s6ur5Yjkss74Qdsu1YaA",
  15623.             "authorChannelId": {
  15624.               "value": "UCM1s6ur5Yjkss74Qdsu1YaA"
  15625.             },
  15626.             "canRate": true,
  15627.             "viewerRating": "none",
  15628.             "likeCount": 0,
  15629.             "publishedAt": "2011-05-04T05:32:33Z",
  15630.             "updatedAt": "2011-05-04T05:32:33Z"
  15631.           }
  15632.         },
  15633.         "canReply": true,
  15634.         "totalReplyCount": 0,
  15635.         "isPublic": true
  15636.       }
  15637.     },
  15638.     {
  15639.       "kind": "youtube#commentThread",
  15640.       "etag": "ATxxxQUw06Szt5DB-f2C2LKrBrg",
  15641.       "id": "Ugz3PIOOurzZOPh5h7Z4AaABAg",
  15642.       "snippet": {
  15643.         "videoId": "atnSTtiWU5E",
  15644.         "topLevelComment": {
  15645.           "kind": "youtube#comment",
  15646.           "etag": "_H71ZCZ1Mj03EHdFY7KQAUCJmBs",
  15647.           "id": "Ugz3PIOOurzZOPh5h7Z4AaABAg",
  15648.           "snippet": {
  15649.             "videoId": "atnSTtiWU5E",
  15650.             "textDisplay": "The first time I heard my friend says he watches My little pony, I was like whaaaa? I haven't seen one yet but dang just hearing this music makes me think it's not really for kids...He even said most of the audience is like 16 to 30 some year old men...haha",
  15651.             "textOriginal": "The first time I heard my friend says he watches My little pony, I was like whaaaa? I haven't seen one yet but dang just hearing this music makes me think it's not really for kids...He even said most of the audience is like 16 to 30 some year old men...haha",
  15652.             "authorDisplayName": "MrTholl",
  15653.             "authorChannelUrl": "http://www.youtube.com/channel/UCZSsse_g8PYYrI8SdZU0tdw",
  15654.             "authorChannelId": {
  15655.               "value": "UCZSsse_g8PYYrI8SdZU0tdw"
  15656.             },
  15657.             "canRate": true,
  15658.             "viewerRating": "none",
  15659.             "likeCount": 0,
  15660.             "publishedAt": "2011-05-04T00:38:58Z",
  15661.             "updatedAt": "2011-05-04T00:38:58Z"
  15662.           }
  15663.         },
  15664.         "canReply": true,
  15665.         "totalReplyCount": 0,
  15666.         "isPublic": true
  15667.       }
  15668.     },
  15669.     {
  15670.       "kind": "youtube#commentThread",
  15671.       "etag": "-dGRcDKH0b3Vfqs1DLFDBdYKGFQ",
  15672.       "id": "UgzzB2czWf8HG1mPP2d4AaABAg",
  15673.       "snippet": {
  15674.         "videoId": "atnSTtiWU5E",
  15675.         "topLevelComment": {
  15676.           "kind": "youtube#comment",
  15677.           "etag": "rz_TsxPiki-PXl8WNjDFvkRv7bs",
  15678.           "id": "UgzzB2czWf8HG1mPP2d4AaABAg",
  15679.           "snippet": {
  15680.             "videoId": "atnSTtiWU5E",
  15681.             "textDisplay": "The beauty of eurobeat is that it fits almost any fast paced situation. Sonic, DDR, F-Zero... but wait until you have to explain that the music production team was headed by ponies...",
  15682.             "textOriginal": "The beauty of eurobeat is that it fits almost any fast paced situation. Sonic, DDR, F-Zero... but wait until you have to explain that the music production team was headed by ponies...",
  15683.             "authorDisplayName": "supornerdy",
  15684.             "authorChannelUrl": "http://www.youtube.com/channel/UCx2s0o3jcjPnm0Rryj7_YXA",
  15685.             "authorChannelId": {
  15686.               "value": "UCx2s0o3jcjPnm0Rryj7_YXA"
  15687.             },
  15688.             "canRate": true,
  15689.             "viewerRating": "none",
  15690.             "likeCount": 0,
  15691.             "publishedAt": "2011-05-03T18:05:13Z",
  15692.             "updatedAt": "2011-05-03T18:05:13Z"
  15693.           }
  15694.         },
  15695.         "canReply": true,
  15696.         "totalReplyCount": 0,
  15697.         "isPublic": true
  15698.       }
  15699.     },
  15700.     {
  15701.       "kind": "youtube#commentThread",
  15702.       "etag": "m2WgTe3KzxcY5F_mkohHTt9zOio",
  15703.       "id": "UgwN6iqJSRLb6eoyPmt4AaABAg",
  15704.       "snippet": {
  15705.         "videoId": "atnSTtiWU5E",
  15706.         "topLevelComment": {
  15707.           "kind": "youtube#comment",
  15708.           "etag": "E53lNKvafon1nnfY-eUxjTglDno",
  15709.           "id": "UgwN6iqJSRLb6eoyPmt4AaABAg",
  15710.           "snippet": {
  15711.             "videoId": "atnSTtiWU5E",
  15712.             "textDisplay": "@Ogapple Awww now I want a Megaman style Pony game. ",
  15713.             "textOriginal": "@Ogapple Awww now I want a Megaman style Pony game. ",
  15714.             "authorDisplayName": "SirTapTap",
  15715.             "authorChannelUrl": "http://www.youtube.com/channel/UCZ9E4FJ-2on10HzCH0loNzQ",
  15716.             "authorChannelId": {
  15717.               "value": "UCZ9E4FJ-2on10HzCH0loNzQ"
  15718.             },
  15719.             "canRate": true,
  15720.             "viewerRating": "none",
  15721.             "likeCount": 0,
  15722.             "publishedAt": "2011-05-03T05:54:35Z",
  15723.             "updatedAt": "2011-05-03T05:54:35Z"
  15724.           }
  15725.         },
  15726.         "canReply": true,
  15727.         "totalReplyCount": 0,
  15728.         "isPublic": true
  15729.       }
  15730.     },
  15731.     {
  15732.       "kind": "youtube#commentThread",
  15733.       "etag": "NNmZ79zNN5h0klIH9SF3BU8fzR4",
  15734.       "id": "UgwCQf6QYt9mJOgZDdh4AaABAg",
  15735.       "snippet": {
  15736.         "videoId": "atnSTtiWU5E",
  15737.         "topLevelComment": {
  15738.           "kind": "youtube#comment",
  15739.           "etag": "3pCXixQhVyZTAOcHnu49sJaTx3c",
  15740.           "id": "UgwCQf6QYt9mJOgZDdh4AaABAg",
  15741.           "snippet": {
  15742.             "videoId": "atnSTtiWU5E",
  15743.             "textDisplay": "@Ogapple sssssssht. already planning on using this in my MLP MMO dont need others getting good ideas.",
  15744.             "textOriginal": "@Ogapple sssssssht. already planning on using this in my MLP MMO dont need others getting good ideas.",
  15745.             "authorDisplayName": "Ashaira",
  15746.             "authorChannelUrl": "http://www.youtube.com/channel/UCEHJwBjK3Hkwo8RQK39o9mw",
  15747.             "authorChannelId": {
  15748.               "value": "UCEHJwBjK3Hkwo8RQK39o9mw"
  15749.             },
  15750.             "canRate": true,
  15751.             "viewerRating": "none",
  15752.             "likeCount": 0,
  15753.             "publishedAt": "2011-05-02T18:34:25Z",
  15754.             "updatedAt": "2011-05-02T18:34:25Z"
  15755.           }
  15756.         },
  15757.         "canReply": true,
  15758.         "totalReplyCount": 0,
  15759.         "isPublic": true
  15760.       }
  15761.     },
  15762.     {
  15763.       "kind": "youtube#commentThread",
  15764.       "etag": "q8GPVfylNAPc3bOy85_i8YrIGF4",
  15765.       "id": "Ugz6Q2O78-HR2QlFCgZ4AaABAg",
  15766.       "snippet": {
  15767.         "videoId": "atnSTtiWU5E",
  15768.         "topLevelComment": {
  15769.           "kind": "youtube#comment",
  15770.           "etag": "zjk2qP8k__1MvKZWnhqkgYMpVss",
  15771.           "id": "Ugz6Q2O78-HR2QlFCgZ4AaABAg",
  15772.           "snippet": {
  15773.             "videoId": "atnSTtiWU5E",
  15774.             "textDisplay": "This is literally the best skating music I have ever heard.",
  15775.             "textOriginal": "This is literally the best skating music I have ever heard.",
  15776.             "authorDisplayName": "Jason Calier",
  15777.             "authorChannelUrl": "http://www.youtube.com/channel/UCXwqmHtzSMaUkUymhmtVUHw",
  15778.             "authorChannelId": {
  15779.               "value": "UCXwqmHtzSMaUkUymhmtVUHw"
  15780.             },
  15781.             "canRate": true,
  15782.             "viewerRating": "none",
  15783.             "likeCount": 0,
  15784.             "publishedAt": "2011-05-01T21:34:19Z",
  15785.             "updatedAt": "2011-05-01T21:34:19Z"
  15786.           }
  15787.         },
  15788.         "canReply": true,
  15789.         "totalReplyCount": 0,
  15790.         "isPublic": true
  15791.       }
  15792.     },
  15793.     {
  15794.       "kind": "youtube#commentThread",
  15795.       "etag": "sKCqruN4K3zuvm7r_4RgXQXzd28",
  15796.       "id": "Ugz9v2CWcMaWjRoOocp4AaABAg",
  15797.       "snippet": {
  15798.         "videoId": "atnSTtiWU5E",
  15799.         "topLevelComment": {
  15800.           "kind": "youtube#comment",
  15801.           "etag": "sHH119ayfkmis0zatKi3V3k2fJs",
  15802.           "id": "Ugz9v2CWcMaWjRoOocp4AaABAg",
  15803.           "snippet": {
  15804.             "videoId": "atnSTtiWU5E",
  15805.             "textDisplay": "How awesome is this!?\n\nThis is more manly than 'The Man Show'.",
  15806.             "textOriginal": "How awesome is this!?\n\nThis is more manly than 'The Man Show'.",
  15807.             "authorDisplayName": "InfectiousGore",
  15808.             "authorChannelUrl": "http://www.youtube.com/channel/UC3DXyssE3ebt-zXST7mWR5Q",
  15809.             "authorChannelId": {
  15810.               "value": "UC3DXyssE3ebt-zXST7mWR5Q"
  15811.             },
  15812.             "canRate": true,
  15813.             "viewerRating": "none",
  15814.             "likeCount": 0,
  15815.             "publishedAt": "2011-05-01T06:22:29Z",
  15816.             "updatedAt": "2011-05-01T06:22:29Z"
  15817.           }
  15818.         },
  15819.         "canReply": true,
  15820.         "totalReplyCount": 0,
  15821.         "isPublic": true
  15822.       }
  15823.     },
  15824.     {
  15825.       "kind": "youtube#commentThread",
  15826.       "etag": "6TAEOk0wyadunjMYkHYwPIWla3g",
  15827.       "id": "UgxdXqaZUdoAD4Ttyw94AaABAg",
  15828.       "snippet": {
  15829.         "videoId": "atnSTtiWU5E",
  15830.         "topLevelComment": {
  15831.           "kind": "youtube#comment",
  15832.           "etag": "unHnpNy4Ft29VEzGmJAH8kiCmiY",
  15833.           "id": "UgxdXqaZUdoAD4Ttyw94AaABAg",
  15834.           "snippet": {
  15835.             "videoId": "atnSTtiWU5E",
  15836.             "textDisplay": "I'm really impressed at how you can make something like this out of the original.  Keep up the good work.",
  15837.             "textOriginal": "I'm really impressed at how you can make something like this out of the original.  Keep up the good work.",
  15838.             "authorDisplayName": "Kelazi5",
  15839.             "authorChannelUrl": "http://www.youtube.com/channel/UCw5OBvIrr94tUvJzm4nh8jQ",
  15840.             "authorChannelId": {
  15841.               "value": "UCw5OBvIrr94tUvJzm4nh8jQ"
  15842.             },
  15843.             "canRate": true,
  15844.             "viewerRating": "none",
  15845.             "likeCount": 1,
  15846.             "publishedAt": "2011-05-01T04:27:04Z",
  15847.             "updatedAt": "2011-05-01T04:27:04Z"
  15848.           }
  15849.         },
  15850.         "canReply": true,
  15851.         "totalReplyCount": 0,
  15852.         "isPublic": true
  15853.       }
  15854.     },
  15855.     {
  15856.       "kind": "youtube#commentThread",
  15857.       "etag": "zZBv_EMQe103bOCw_1f3Ricmrj8",
  15858.       "id": "UgyMrL4rxJBT8OWf6AJ4AaABAg",
  15859.       "snippet": {
  15860.         "videoId": "atnSTtiWU5E",
  15861.         "topLevelComment": {
  15862.           "kind": "youtube#comment",
  15863.           "etag": "9T5WkJ1mnbKey5eYxEnJE-ZqmRc",
  15864.           "id": "UgyMrL4rxJBT8OWf6AJ4AaABAg",
  15865.           "snippet": {
  15866.             "videoId": "atnSTtiWU5E",
  15867.             "textDisplay": "@Doomhuntress well i just found another game, it just a demo of a game very similar to sonic here is the link infinitydash (dot) deviantart (dot) com/art/MLP-FiM-Platforming-Game-Test-204724303",
  15868.             "textOriginal": "@Doomhuntress well i just found another game, it just a demo of a game very similar to sonic here is the link infinitydash (dot) deviantart (dot) com/art/MLP-FiM-Platforming-Game-Test-204724303",
  15869.             "authorDisplayName": "Shonky Business",
  15870.             "authorChannelUrl": "http://www.youtube.com/channel/UCxQAFUBqctZH9Bjd7ahPb3w",
  15871.             "authorChannelId": {
  15872.               "value": "UCxQAFUBqctZH9Bjd7ahPb3w"
  15873.             },
  15874.             "canRate": true,
  15875.             "viewerRating": "none",
  15876.             "likeCount": 0,
  15877.             "publishedAt": "2011-04-27T11:52:11Z",
  15878.             "updatedAt": "2011-04-27T11:52:11Z"
  15879.           }
  15880.         },
  15881.         "canReply": true,
  15882.         "totalReplyCount": 0,
  15883.         "isPublic": true
  15884.       }
  15885.     },
  15886.     {
  15887.       "kind": "youtube#commentThread",
  15888.       "etag": "iqOE6v51FEKEiYyIx-7nptoBFGk",
  15889.       "id": "UgwOObsHy0DpvAmNkNt4AaABAg",
  15890.       "snippet": {
  15891.         "videoId": "atnSTtiWU5E",
  15892.         "topLevelComment": {
  15893.           "kind": "youtube#comment",
  15894.           "etag": "I-TrfwaR90719AQLtLF1nd_OcCA",
  15895.           "id": "UgwOObsHy0DpvAmNkNt4AaABAg",
  15896.           "snippet": {
  15897.             "videoId": "atnSTtiWU5E",
  15898.             "textDisplay": "@anonymous4209 Is that so? At any rate, I was thinking more of a action-platform style of game, with this style of music playing. I'd supprt it, hell, I'd even buy it.\n\n",
  15899.             "textOriginal": "@anonymous4209 Is that so? At any rate, I was thinking more of a action-platform style of game, with this style of music playing. I'd supprt it, hell, I'd even buy it.\n\n",
  15900.             "authorDisplayName": "Varis Alpha",
  15901.             "authorChannelUrl": "http://www.youtube.com/channel/UC8c_YCi_AZqg2eP_R3eneAA",
  15902.             "authorChannelId": {
  15903.               "value": "UC8c_YCi_AZqg2eP_R3eneAA"
  15904.             },
  15905.             "canRate": true,
  15906.             "viewerRating": "none",
  15907.             "likeCount": 0,
  15908.             "publishedAt": "2011-04-25T20:46:57Z",
  15909.             "updatedAt": "2011-04-25T20:46:57Z"
  15910.           }
  15911.         },
  15912.         "canReply": true,
  15913.         "totalReplyCount": 0,
  15914.         "isPublic": true
  15915.       }
  15916.     },
  15917.     {
  15918.       "kind": "youtube#commentThread",
  15919.       "etag": "qKd1v8q0VAn5zDSWenBXyPnaGa8",
  15920.       "id": "UgyyzWjAkC-shJM9dJZ4AaABAg",
  15921.       "snippet": {
  15922.         "videoId": "atnSTtiWU5E",
  15923.         "topLevelComment": {
  15924.           "kind": "youtube#comment",
  15925.           "etag": "8S1Iy7IxZwnPmKnxn6DJ2acxuYA",
  15926.           "id": "UgyyzWjAkC-shJM9dJZ4AaABAg",
  15927.           "snippet": {
  15928.             "videoId": "atnSTtiWU5E",
  15929.             "textDisplay": "@Doomhuntress there is an mlp rpg type of game that is being worked on atm",
  15930.             "textOriginal": "@Doomhuntress there is an mlp rpg type of game that is being worked on atm",
  15931.             "authorDisplayName": "Shonky Business",
  15932.             "authorChannelUrl": "http://www.youtube.com/channel/UCxQAFUBqctZH9Bjd7ahPb3w",
  15933.             "authorChannelId": {
  15934.               "value": "UCxQAFUBqctZH9Bjd7ahPb3w"
  15935.             },
  15936.             "canRate": true,
  15937.             "viewerRating": "none",
  15938.             "likeCount": 0,
  15939.             "publishedAt": "2011-04-25T17:03:05Z",
  15940.             "updatedAt": "2011-04-25T17:03:05Z"
  15941.           }
  15942.         },
  15943.         "canReply": true,
  15944.         "totalReplyCount": 0,
  15945.         "isPublic": true
  15946.       }
  15947.     },
  15948.     {
  15949.       "kind": "youtube#commentThread",
  15950.       "etag": "qcUptxLrQyOUK8KDZLuZ24SE-ho",
  15951.       "id": "UgzFCo51nSc9zzFhpB14AaABAg",
  15952.       "snippet": {
  15953.         "videoId": "atnSTtiWU5E",
  15954.         "topLevelComment": {
  15955.           "kind": "youtube#comment",
  15956.           "etag": "E_LZ2j5cp0LyrtVFfjVH3UAJ4MQ",
  15957.           "id": "UgzFCo51nSc9zzFhpB14AaABAg",
  15958.           "snippet": {
  15959.             "videoId": "atnSTtiWU5E",
  15960.             "textDisplay": "@Doomhuntress It happens to me too all i see when I hear this song is galaga mlp style",
  15961.             "textOriginal": "@Doomhuntress It happens to me too all i see when I hear this song is galaga mlp style",
  15962.             "authorDisplayName": "MrMadcraft",
  15963.             "authorChannelUrl": "http://www.youtube.com/channel/UCoNn_UNCq_5WwCA8A9-_fpA",
  15964.             "authorChannelId": {
  15965.               "value": "UCoNn_UNCq_5WwCA8A9-_fpA"
  15966.             },
  15967.             "canRate": true,
  15968.             "viewerRating": "none",
  15969.             "likeCount": 1,
  15970.             "publishedAt": "2011-04-25T08:03:57Z",
  15971.             "updatedAt": "2011-04-25T08:03:57Z"
  15972.           }
  15973.         },
  15974.         "canReply": true,
  15975.         "totalReplyCount": 0,
  15976.         "isPublic": true
  15977.       }
  15978.     },
  15979.     {
  15980.       "kind": "youtube#commentThread",
  15981.       "etag": "TOTRhsnHyILMAUWE04MbDNELkTw",
  15982.       "id": "Ugz0cNKN0-MD6S9lGtx4AaABAg",
  15983.       "snippet": {
  15984.         "videoId": "atnSTtiWU5E",
  15985.         "topLevelComment": {
  15986.           "kind": "youtube#comment",
  15987.           "etag": "JGM235hCOQBGR2780GNvB_VQz48",
  15988.           "id": "Ugz0cNKN0-MD6S9lGtx4AaABAg",
  15989.           "snippet": {
  15990.             "videoId": "atnSTtiWU5E",
  15991.             "textDisplay": "Will the money collected from downloaders be used to help cure the 6 deaf people who disliked this video?",
  15992.             "textOriginal": "Will the money collected from downloaders be used to help cure the 6 deaf people who disliked this video?",
  15993.             "authorDisplayName": "Dejan",
  15994.             "authorChannelUrl": "http://www.youtube.com/channel/UClKsPPz5VMg42TjQU_Q50-A",
  15995.             "authorChannelId": {
  15996.               "value": "UClKsPPz5VMg42TjQU_Q50-A"
  15997.             },
  15998.             "canRate": true,
  15999.             "viewerRating": "none",
  16000.             "likeCount": 0,
  16001.             "publishedAt": "2011-04-24T15:39:41Z",
  16002.             "updatedAt": "2011-04-24T15:39:41Z"
  16003.           }
  16004.         },
  16005.         "canReply": true,
  16006.         "totalReplyCount": 0,
  16007.         "isPublic": true
  16008.       }
  16009.     },
  16010.     {
  16011.       "kind": "youtube#commentThread",
  16012.       "etag": "qS0IThYgSP2T8elnm3sWH5-i8bo",
  16013.       "id": "UgxOugbsqSC4BCZ8nu54AaABAg",
  16014.       "snippet": {
  16015.         "videoId": "atnSTtiWU5E",
  16016.         "topLevelComment": {
  16017.           "kind": "youtube#comment",
  16018.           "etag": "I1mpJwjlglaNPCIgNoe_ZxNWSb0",
  16019.           "id": "UgxOugbsqSC4BCZ8nu54AaABAg",
  16020.           "snippet": {
  16021.             "videoId": "atnSTtiWU5E",
  16022.             "textDisplay": "I have to ask, where does that image of Fluttershy come from? I can't seem to find it anywhere.\n\nAt any rate, this is an amazing song. You took a song that was only 10-15 seconds long and extended it into this beautiful rendition. Well worth what I decided to pay for it. \nAnd, for some reason, I can now not get this image in my head where Nightmare Moon appears from the sky and a battle of epic proportions commences. Someone make a MLP: FiM fangame now.",
  16023.             "textOriginal": "I have to ask, where does that image of Fluttershy come from? I can't seem to find it anywhere.\n\nAt any rate, this is an amazing song. You took a song that was only 10-15 seconds long and extended it into this beautiful rendition. Well worth what I decided to pay for it. \nAnd, for some reason, I can now not get this image in my head where Nightmare Moon appears from the sky and a battle of epic proportions commences. Someone make a MLP: FiM fangame now.",
  16024.             "authorDisplayName": "Varis Alpha",
  16025.             "authorChannelUrl": "http://www.youtube.com/channel/UC8c_YCi_AZqg2eP_R3eneAA",
  16026.             "authorChannelId": {
  16027.               "value": "UC8c_YCi_AZqg2eP_R3eneAA"
  16028.             },
  16029.             "canRate": true,
  16030.             "viewerRating": "none",
  16031.             "likeCount": 0,
  16032.             "publishedAt": "2011-04-23T23:13:19Z",
  16033.             "updatedAt": "2011-04-23T23:13:19Z"
  16034.           }
  16035.         },
  16036.         "canReply": true,
  16037.         "totalReplyCount": 1,
  16038.         "isPublic": true
  16039.       },
  16040.       "replies": {
  16041.         "comments": [
  16042.           {
  16043.             "kind": "youtube#comment",
  16044.             "etag": "n21vM6bZdTR2zqkDaxNif0KVFwM",
  16045.             "id": "UgxOugbsqSC4BCZ8nu54AaABAg.8Gccs6Vl2rL8eNWkCzqRyQ",
  16046.             "snippet": {
  16047.               "videoId": "atnSTtiWU5E",
  16048.               "textDisplay": "Viscra Maelstrom It’s an official art image from the show. Sometimes it’s even on boxes for mlp toys.",
  16049.               "textOriginal": "Viscra Maelstrom It’s an official art image from the show. Sometimes it’s even on boxes for mlp toys.",
  16050.               "parentId": "UgxOugbsqSC4BCZ8nu54AaABAg",
  16051.               "authorDisplayName": "Slatefree",
  16052.               "authorChannelUrl": "http://www.youtube.com/channel/UCXVg3emdpT1yCVufrPNxLvQ",
  16053.               "authorChannelId": {
  16054.                 "value": "UCXVg3emdpT1yCVufrPNxLvQ"
  16055.               },
  16056.               "canRate": true,
  16057.               "viewerRating": "none",
  16058.               "likeCount": 0,
  16059.               "publishedAt": "2018-03-29T12:04:29Z",
  16060.               "updatedAt": "2018-03-29T12:04:29Z"
  16061.             }
  16062.           }
  16063.         ]
  16064.       }
  16065.     },
  16066.     {
  16067.       "kind": "youtube#commentThread",
  16068.       "etag": "n31OplABeWG3r3AEBghBHPs6t04",
  16069.       "id": "UgyXfiljnpjvI1tQXWR4AaABAg",
  16070.       "snippet": {
  16071.         "videoId": "atnSTtiWU5E",
  16072.         "topLevelComment": {
  16073.           "kind": "youtube#comment",
  16074.           "etag": "NsptpSBIh_f3Zq7k4xsIi7dBOs8",
  16075.           "id": "UgyXfiljnpjvI1tQXWR4AaABAg",
  16076.           "snippet": {
  16077.             "videoId": "atnSTtiWU5E",
  16078.             "textDisplay": "@SpyraTheDragoness \n\nSounds pretty SHMUP-ish.\n\nBut I'd think MLP would translate well into an action rpg.  I mean, half the stuff they use is from Dungeons and Dragons anyway.  I did a double take when they had a freakin' celestial bear on there.",
  16079.             "textOriginal": "@SpyraTheDragoness \n\nSounds pretty SHMUP-ish.\n\nBut I'd think MLP would translate well into an action rpg.  I mean, half the stuff they use is from Dungeons and Dragons anyway.  I did a double take when they had a freakin' celestial bear on there.",
  16080.             "authorDisplayName": "mightyshockwave",
  16081.             "authorChannelUrl": "http://www.youtube.com/channel/UC33yiuZyE5qZaTOcXLfNshA",
  16082.             "authorChannelId": {
  16083.               "value": "UC33yiuZyE5qZaTOcXLfNshA"
  16084.             },
  16085.             "canRate": true,
  16086.             "viewerRating": "none",
  16087.             "likeCount": 0,
  16088.             "publishedAt": "2011-04-23T20:43:14Z",
  16089.             "updatedAt": "2011-04-23T20:43:14Z"
  16090.           }
  16091.         },
  16092.         "canReply": true,
  16093.         "totalReplyCount": 0,
  16094.         "isPublic": true
  16095.       }
  16096.     },
  16097.     {
  16098.       "kind": "youtube#commentThread",
  16099.       "etag": "CLAPpVEYdhWaV3xgb-fzPEHiIS8",
  16100.       "id": "UgyLzOjvLmR-RDQOq7p4AaABAg",
  16101.       "snippet": {
  16102.         "videoId": "atnSTtiWU5E",
  16103.         "topLevelComment": {
  16104.           "kind": "youtube#comment",
  16105.           "etag": "vxJunPP-JH3iopFuZoGpoHS6cL4",
  16106.           "id": "UgyLzOjvLmR-RDQOq7p4AaABAg",
  16107.           "snippet": {
  16108.             "videoId": "atnSTtiWU5E",
  16109.             "textDisplay": "This guys makes this stuff sound like video game music.\r\nOh, hell yes. A MLP-FIM video game. o:",
  16110.             "textOriginal": "This guys makes this stuff sound like video game music.\r\nOh, hell yes. A MLP-FIM video game. o:",
  16111.             "authorDisplayName": "ArisaBunni",
  16112.             "authorChannelUrl": "http://www.youtube.com/channel/UCWNgec50rj02yOPu0dheW7g",
  16113.             "authorChannelId": {
  16114.               "value": "UCWNgec50rj02yOPu0dheW7g"
  16115.             },
  16116.             "canRate": true,
  16117.             "viewerRating": "none",
  16118.             "likeCount": 0,
  16119.             "publishedAt": "2011-04-23T15:45:38Z",
  16120.             "updatedAt": "2011-04-23T15:45:38Z"
  16121.           }
  16122.         },
  16123.         "canReply": true,
  16124.         "totalReplyCount": 0,
  16125.         "isPublic": true
  16126.       }
  16127.     },
  16128.     {
  16129.       "kind": "youtube#commentThread",
  16130.       "etag": "etRESckXTUwxqg5u984yFUryAGQ",
  16131.       "id": "Ugzsfdo9vrUMxLEiLYZ4AaABAg",
  16132.       "snippet": {
  16133.         "videoId": "atnSTtiWU5E",
  16134.         "topLevelComment": {
  16135.           "kind": "youtube#comment",
  16136.           "etag": "JHPHH8qt8lsnyGAAU_HLQ2Ct_J0",
  16137.           "id": "Ugzsfdo9vrUMxLEiLYZ4AaABAg",
  16138.           "snippet": {
  16139.             "videoId": "atnSTtiWU5E",
  16140.             "textDisplay": "Frickin love this.",
  16141.             "textOriginal": "Frickin love this.",
  16142.             "authorDisplayName": "teddycrocs",
  16143.             "authorChannelUrl": "http://www.youtube.com/channel/UCzKcVl5FojPr8derc3lqcAA",
  16144.             "authorChannelId": {
  16145.               "value": "UCzKcVl5FojPr8derc3lqcAA"
  16146.             },
  16147.             "canRate": true,
  16148.             "viewerRating": "none",
  16149.             "likeCount": 0,
  16150.             "publishedAt": "2011-04-23T04:48:54Z",
  16151.             "updatedAt": "2011-04-23T04:48:54Z"
  16152.           }
  16153.         },
  16154.         "canReply": true,
  16155.         "totalReplyCount": 0,
  16156.         "isPublic": true
  16157.       }
  16158.     },
  16159.     {
  16160.       "kind": "youtube#commentThread",
  16161.       "etag": "frrnbHZhX_9eniROj0cVsOgXtZw",
  16162.       "id": "UgyTjk1Gbly2RC0igTR4AaABAg",
  16163.       "snippet": {
  16164.         "videoId": "atnSTtiWU5E",
  16165.         "topLevelComment": {
  16166.           "kind": "youtube#comment",
  16167.           "etag": "hODlPItXSzT9boeDmhRJHsl9Fjk",
  16168.           "id": "UgyTjk1Gbly2RC0igTR4AaABAg",
  16169.           "snippet": {
  16170.             "videoId": "atnSTtiWU5E",
  16171.             "textDisplay": "Galloping in the Poneties?",
  16172.             "textOriginal": "Galloping in the Poneties?",
  16173.             "authorDisplayName": "mustkillkittys",
  16174.             "authorChannelUrl": "http://www.youtube.com/channel/UCKO64VMhA7hZDbBc-8Fyt4Q",
  16175.             "authorChannelId": {
  16176.               "value": "UCKO64VMhA7hZDbBc-8Fyt4Q"
  16177.             },
  16178.             "canRate": true,
  16179.             "viewerRating": "none",
  16180.             "likeCount": 0,
  16181.             "publishedAt": "2011-04-22T20:56:39Z",
  16182.             "updatedAt": "2011-04-22T20:56:39Z"
  16183.           }
  16184.         },
  16185.         "canReply": true,
  16186.         "totalReplyCount": 0,
  16187.         "isPublic": true
  16188.       }
  16189.     },
  16190.     {
  16191.       "kind": "youtube#commentThread",
  16192.       "etag": "6Vd7hYcblrtNPG35jb5U5Oelu74",
  16193.       "id": "UgxHXLlAMTzQsvKwniN4AaABAg",
  16194.       "snippet": {
  16195.         "videoId": "atnSTtiWU5E",
  16196.         "topLevelComment": {
  16197.           "kind": "youtube#comment",
  16198.           "etag": "-jeCbiS5vxOtbAomUNNyYfsyf-w",
  16199.           "id": "UgxHXLlAMTzQsvKwniN4AaABAg",
  16200.           "snippet": {
  16201.             "videoId": "atnSTtiWU5E",
  16202.             "textDisplay": "This should be in a Sega Mega Drive game somewhere.",
  16203.             "textOriginal": "This should be in a Sega Mega Drive game somewhere.",
  16204.             "authorDisplayName": "Robots Everywhere",
  16205.             "authorChannelUrl": "http://www.youtube.com/channel/UCwfCldqmzcFZkjjnZi_IHAw",
  16206.             "authorChannelId": {
  16207.               "value": "UCwfCldqmzcFZkjjnZi_IHAw"
  16208.             },
  16209.             "canRate": true,
  16210.             "viewerRating": "none",
  16211.             "likeCount": 0,
  16212.             "publishedAt": "2011-04-21T03:17:06Z",
  16213.             "updatedAt": "2011-04-21T03:17:06Z"
  16214.           }
  16215.         },
  16216.         "canReply": true,
  16217.         "totalReplyCount": 0,
  16218.         "isPublic": true
  16219.       }
  16220.     },
  16221.     {
  16222.       "kind": "youtube#commentThread",
  16223.       "etag": "da-6YEuc2GXZ6p7Es8ONRfNkPgM",
  16224.       "id": "UgxbhiZ8oXQrXQE7gxZ4AaABAg",
  16225.       "snippet": {
  16226.         "videoId": "atnSTtiWU5E",
  16227.         "topLevelComment": {
  16228.           "kind": "youtube#comment",
  16229.           "etag": "xV-HAA5ub1qiKaDsXcitUTp804M",
  16230.           "id": "UgxbhiZ8oXQrXQE7gxZ4AaABAg",
  16231.           "snippet": {
  16232.             "videoId": "atnSTtiWU5E",
  16233.             "textDisplay": "@jeanguylouisbourg u talked me into it. gona start working on a design plan.",
  16234.             "textOriginal": "@jeanguylouisbourg u talked me into it. gona start working on a design plan.",
  16235.             "authorDisplayName": "Ashaira",
  16236.             "authorChannelUrl": "http://www.youtube.com/channel/UCEHJwBjK3Hkwo8RQK39o9mw",
  16237.             "authorChannelId": {
  16238.               "value": "UCEHJwBjK3Hkwo8RQK39o9mw"
  16239.             },
  16240.             "canRate": true,
  16241.             "viewerRating": "none",
  16242.             "likeCount": 0,
  16243.             "publishedAt": "2011-04-20T11:26:13Z",
  16244.             "updatedAt": "2011-04-20T11:26:13Z"
  16245.           }
  16246.         },
  16247.         "canReply": true,
  16248.         "totalReplyCount": 0,
  16249.         "isPublic": true
  16250.       }
  16251.     },
  16252.     {
  16253.       "kind": "youtube#commentThread",
  16254.       "etag": "iKhFqihB_vLJpOSFHltJzKyqpeg",
  16255.       "id": "UgytMEnh5vRH1f5x4554AaABAg",
  16256.       "snippet": {
  16257.         "videoId": "atnSTtiWU5E",
  16258.         "topLevelComment": {
  16259.           "kind": "youtube#comment",
  16260.           "etag": "hLGQfT3F97aNoz5RNjm15-0t99w",
  16261.           "id": "UgytMEnh5vRH1f5x4554AaABAg",
  16262.           "snippet": {
  16263.             "videoId": "atnSTtiWU5E",
  16264.             "textDisplay": "wow this song sound like an awesome would be boss theme in a pony RPG! dang!",
  16265.             "textOriginal": "wow this song sound like an awesome would be boss theme in a pony RPG! dang!",
  16266.             "authorDisplayName": "jeanguylouisbourg",
  16267.             "authorChannelUrl": "http://www.youtube.com/channel/UCyIlB6H_1IG5MUG_m0wsXug",
  16268.             "authorChannelId": {
  16269.               "value": "UCyIlB6H_1IG5MUG_m0wsXug"
  16270.             },
  16271.             "canRate": true,
  16272.             "viewerRating": "none",
  16273.             "likeCount": 0,
  16274.             "publishedAt": "2011-04-20T02:54:20Z",
  16275.             "updatedAt": "2011-04-20T02:54:20Z"
  16276.           }
  16277.         },
  16278.         "canReply": true,
  16279.         "totalReplyCount": 0,
  16280.         "isPublic": true
  16281.       }
  16282.     },
  16283.     {
  16284.       "kind": "youtube#commentThread",
  16285.       "etag": "UOpTj93GhdyvxPAP99spkio_yik",
  16286.       "id": "UgzzFZSz0I5ix7iH1FV4AaABAg",
  16287.       "snippet": {
  16288.         "videoId": "atnSTtiWU5E",
  16289.         "topLevelComment": {
  16290.           "kind": "youtube#comment",
  16291.           "etag": "yy7-U9byfZ30TdBi17dnX6BSJjU",
  16292.           "id": "UgzzFZSz0I5ix7iH1FV4AaABAg",
  16293.           "snippet": {
  16294.             "videoId": "atnSTtiWU5E",
  16295.             "textDisplay": "@MegaZZ69 hmm...",
  16296.             "textOriginal": "@MegaZZ69 hmm...",
  16297.             "authorDisplayName": "jeistar",
  16298.             "authorChannelUrl": "http://www.youtube.com/channel/UCYTfdfEMkCVFxqi1ez_iVYg",
  16299.             "authorChannelId": {
  16300.               "value": "UCYTfdfEMkCVFxqi1ez_iVYg"
  16301.             },
  16302.             "canRate": true,
  16303.             "viewerRating": "none",
  16304.             "likeCount": 0,
  16305.             "publishedAt": "2011-04-19T03:40:47Z",
  16306.             "updatedAt": "2011-04-19T03:40:47Z"
  16307.           }
  16308.         },
  16309.         "canReply": true,
  16310.         "totalReplyCount": 0,
  16311.         "isPublic": true
  16312.       }
  16313.     },
  16314.     {
  16315.       "kind": "youtube#commentThread",
  16316.       "etag": "GF6YBYKdHTXwdSF2KqInc4oUXmg",
  16317.       "id": "UgyYQSN-t8RFa6gAu3F4AaABAg",
  16318.       "snippet": {
  16319.         "videoId": "atnSTtiWU5E",
  16320.         "topLevelComment": {
  16321.           "kind": "youtube#comment",
  16322.           "etag": "BzZxHOgC47N5leoYPjW4C7K7n4M",
  16323.           "id": "UgyYQSN-t8RFa6gAu3F4AaABAg",
  16324.           "snippet": {
  16325.             "videoId": "atnSTtiWU5E",
  16326.             "textDisplay": "So, what I gather...  This is NOT a work in progress?\n\nPlease, someone get that joke.  I know it wasn't good.  I'm sorry.",
  16327.             "textOriginal": "So, what I gather...  This is NOT a work in progress?\n\nPlease, someone get that joke.  I know it wasn't good.  I'm sorry.",
  16328.             "authorDisplayName": "Atlink",
  16329.             "authorChannelUrl": "http://www.youtube.com/channel/UCqU6e7MEs1arjtndh8VsSOw",
  16330.             "authorChannelId": {
  16331.               "value": "UCqU6e7MEs1arjtndh8VsSOw"
  16332.             },
  16333.             "canRate": true,
  16334.             "viewerRating": "none",
  16335.             "likeCount": 0,
  16336.             "publishedAt": "2011-04-18T13:24:34Z",
  16337.             "updatedAt": "2011-04-18T13:24:34Z"
  16338.           }
  16339.         },
  16340.         "canReply": true,
  16341.         "totalReplyCount": 0,
  16342.         "isPublic": true
  16343.       }
  16344.     },
  16345.     {
  16346.       "kind": "youtube#commentThread",
  16347.       "etag": "W6WnExsZptIgN1z9nsDcD3ytdmU",
  16348.       "id": "Ugx-4YJQ4I4DRq_SjrB4AaABAg",
  16349.       "snippet": {
  16350.         "videoId": "atnSTtiWU5E",
  16351.         "topLevelComment": {
  16352.           "kind": "youtube#comment",
  16353.           "etag": "VtoMbrWZMSSna9xLKEEAsbsMyhg",
  16354.           "id": "Ugx-4YJQ4I4DRq_SjrB4AaABAg",
  16355.           "snippet": {
  16356.             "videoId": "atnSTtiWU5E",
  16357.             "textDisplay": "@twilightsanity It better be in the MLP Online MMO as battle music.  That would be epic.  :D",
  16358.             "textOriginal": "@twilightsanity It better be in the MLP Online MMO as battle music.  That would be epic.  :D",
  16359.             "authorDisplayName": "ActionScripter",
  16360.             "authorChannelUrl": "http://www.youtube.com/channel/UChvLgjS_cIp0ALeGqtAu07g",
  16361.             "authorChannelId": {
  16362.               "value": "UChvLgjS_cIp0ALeGqtAu07g"
  16363.             },
  16364.             "canRate": true,
  16365.             "viewerRating": "none",
  16366.             "likeCount": 0,
  16367.             "publishedAt": "2011-04-16T08:02:30Z",
  16368.             "updatedAt": "2011-04-16T08:02:30Z"
  16369.           }
  16370.         },
  16371.         "canReply": true,
  16372.         "totalReplyCount": 0,
  16373.         "isPublic": true
  16374.       }
  16375.     },
  16376.     {
  16377.       "kind": "youtube#commentThread",
  16378.       "etag": "Ll8o_J8eFZkae7f7cZacrxBYiq4",
  16379.       "id": "Ugyyn3lPz743U3Ul73V4AaABAg",
  16380.       "snippet": {
  16381.         "videoId": "atnSTtiWU5E",
  16382.         "topLevelComment": {
  16383.           "kind": "youtube#comment",
  16384.           "etag": "BVdDDnPZbRgKHf_SaMmbeaDxnKI",
  16385.           "id": "Ugyyn3lPz743U3Ul73V4AaABAg",
  16386.           "snippet": {
  16387.             "videoId": "atnSTtiWU5E",
  16388.             "textDisplay": "If Zecora was a boss, this would be her battle music. ",
  16389.             "textOriginal": "If Zecora was a boss, this would be her battle music. ",
  16390.             "authorDisplayName": "Living Dead Beat",
  16391.             "authorChannelUrl": "http://www.youtube.com/channel/UC_x-kx93FYRIMDauaO5Zr3w",
  16392.             "authorChannelId": {
  16393.               "value": "UC_x-kx93FYRIMDauaO5Zr3w"
  16394.             },
  16395.             "canRate": true,
  16396.             "viewerRating": "none",
  16397.             "likeCount": 0,
  16398.             "publishedAt": "2011-04-15T08:44:25Z",
  16399.             "updatedAt": "2011-04-15T08:44:25Z"
  16400.           }
  16401.         },
  16402.         "canReply": true,
  16403.         "totalReplyCount": 0,
  16404.         "isPublic": true
  16405.       }
  16406.     },
  16407.     {
  16408.       "kind": "youtube#commentThread",
  16409.       "etag": "0QAKknx95VRP5FRNOQKNn9K8llc",
  16410.       "id": "UgxRcBRZzGsCylLQZhh4AaABAg",
  16411.       "snippet": {
  16412.         "videoId": "atnSTtiWU5E",
  16413.         "topLevelComment": {
  16414.           "kind": "youtube#comment",
  16415.           "etag": "YzRLdO2AyO0tFw_StRoLqSeu1l4",
  16416.           "id": "UgxRcBRZzGsCylLQZhh4AaABAg",
  16417.           "snippet": {
  16418.             "videoId": "atnSTtiWU5E",
  16419.             "textDisplay": "Men are invading little girls' shows!\nOh lol this is cool. *is a bronie*",
  16420.             "textOriginal": "Men are invading little girls' shows!\nOh lol this is cool. *is a bronie*",
  16421.             "authorDisplayName": "Aimar",
  16422.             "authorChannelUrl": "http://www.youtube.com/channel/UCUSRUK_wbQdlzhOil1BjbYw",
  16423.             "authorChannelId": {
  16424.               "value": "UCUSRUK_wbQdlzhOil1BjbYw"
  16425.             },
  16426.             "canRate": true,
  16427.             "viewerRating": "none",
  16428.             "likeCount": 0,
  16429.             "publishedAt": "2011-04-14T17:50:59Z",
  16430.             "updatedAt": "2011-04-14T17:50:59Z"
  16431.           }
  16432.         },
  16433.         "canReply": true,
  16434.         "totalReplyCount": 0,
  16435.         "isPublic": true
  16436.       }
  16437.     },
  16438.     {
  16439.       "kind": "youtube#commentThread",
  16440.       "etag": "BzkfqUMTPsteoh0QP9Os5srS9Wk",
  16441.       "id": "UgzTBayCJJosikFLlFl4AaABAg",
  16442.       "snippet": {
  16443.         "videoId": "atnSTtiWU5E",
  16444.         "topLevelComment": {
  16445.           "kind": "youtube#comment",
  16446.           "etag": "RqidbVBQBhiMtFz9T_EeGvF1onM",
  16447.           "id": "UgzTBayCJJosikFLlFl4AaABAg",
  16448.           "snippet": {
  16449.             "videoId": "atnSTtiWU5E",
  16450.             "textDisplay": "@BeeAre Oh lord, shit's gonna wipe the world out someday",
  16451.             "textOriginal": "@BeeAre Oh lord, shit's gonna wipe the world out someday",
  16452.             "authorDisplayName": "Brendan Lenhart",
  16453.             "authorChannelUrl": "http://www.youtube.com/channel/UCFoHGRRd8mr66eTVPm2_UZg",
  16454.             "authorChannelId": {
  16455.               "value": "UCFoHGRRd8mr66eTVPm2_UZg"
  16456.             },
  16457.             "canRate": true,
  16458.             "viewerRating": "none",
  16459.             "likeCount": 0,
  16460.             "publishedAt": "2011-04-12T17:27:22Z",
  16461.             "updatedAt": "2011-04-12T17:27:22Z"
  16462.           }
  16463.         },
  16464.         "canReply": true,
  16465.         "totalReplyCount": 0,
  16466.         "isPublic": true
  16467.       }
  16468.     },
  16469.     {
  16470.       "kind": "youtube#commentThread",
  16471.       "etag": "MbVLOu_kHIg9ntvyi4a8Fq5wNVE",
  16472.       "id": "UgzUFD6A1jJOhnsBmsB4AaABAg",
  16473.       "snippet": {
  16474.         "videoId": "atnSTtiWU5E",
  16475.         "topLevelComment": {
  16476.           "kind": "youtube#comment",
  16477.           "etag": "zaaMeBN83wDsJbdJqZrG8WmuTL8",
  16478.           "id": "UgzUFD6A1jJOhnsBmsB4AaABAg",
  16479.           "snippet": {
  16480.             "videoId": "atnSTtiWU5E",
  16481.             "textDisplay": "When I first started looking these up I was sad to find out there are no vocals (I can understand why, but I'm still a little sad). But this... this is so awesome it blows the vocals away. I love it!",
  16482.             "textOriginal": "When I first started looking these up I was sad to find out there are no vocals (I can understand why, but I'm still a little sad). But this... this is so awesome it blows the vocals away. I love it!",
  16483.             "authorDisplayName": "Nanenna",
  16484.             "authorChannelUrl": "http://www.youtube.com/channel/UCeSym3TaQkJSXIM2BmyazrA",
  16485.             "authorChannelId": {
  16486.               "value": "UCeSym3TaQkJSXIM2BmyazrA"
  16487.             },
  16488.             "canRate": true,
  16489.             "viewerRating": "none",
  16490.             "likeCount": 1,
  16491.             "publishedAt": "2011-04-12T16:45:44Z",
  16492.             "updatedAt": "2011-04-12T16:45:44Z"
  16493.           }
  16494.         },
  16495.         "canReply": true,
  16496.         "totalReplyCount": 0,
  16497.         "isPublic": true
  16498.       }
  16499.     }
  16500.   ]
  16501. }
  16502. {
  16503.   "kind": "youtube#commentThreadListResponse",
  16504.   "etag": "UHDRsXIHt9hFOKz8J-oC-oZtobw",
  16505.   "pageInfo": {
  16506.     "totalResults": 93,
  16507.     "resultsPerPage": 100
  16508.   },
  16509.   "items": [
  16510.     {
  16511.       "kind": "youtube#commentThread",
  16512.       "etag": "1xiTsVWI34meI0Dwl-u5pRigN6s",
  16513.       "id": "UgzljQ5-MmWWDf0vGfV4AaABAg",
  16514.       "snippet": {
  16515.         "videoId": "atnSTtiWU5E",
  16516.         "topLevelComment": {
  16517.           "kind": "youtube#comment",
  16518.           "etag": "VasHdNelSMJ2-piuG56hwegDGhE",
  16519.           "id": "UgzljQ5-MmWWDf0vGfV4AaABAg",
  16520.           "snippet": {
  16521.             "videoId": "atnSTtiWU5E",
  16522.             "textDisplay": "DJ BANDPUFFS DROPPIN' BEATS LIKE TEN MEGATON OWN BOMBS, FUCKING CARPET STYLE ON POOR EAR CITY. SIXTY THOUSAND SOULS, ALL CAUGHT IN A HEINOUS BLAST--VICTIMS SUSPECTED JAMMING OR WORSE. UNITED NATIONS STATEMENT: "DAMN SON THESE ARE SOME DOPE-ASS SOUNDS TURN THAT SHIT UP".",
  16523.             "textOriginal": "DJ BANDPUFFS DROPPIN' BEATS LIKE TEN MEGATON OWN BOMBS, FUCKING CARPET STYLE ON POOR EAR CITY. SIXTY THOUSAND SOULS, ALL CAUGHT IN A HEINOUS BLAST--VICTIMS SUSPECTED JAMMING OR WORSE. UNITED NATIONS STATEMENT: \"DAMN SON THESE ARE SOME DOPE-ASS SOUNDS TURN THAT SHIT UP\".",
  16524.             "authorDisplayName": "BeeAre",
  16525.             "authorChannelUrl": "http://www.youtube.com/channel/UCN8Kgnz2MewD8qWFs0d6rZw",
  16526.             "authorChannelId": {
  16527.               "value": "UCN8Kgnz2MewD8qWFs0d6rZw"
  16528.             },
  16529.             "canRate": true,
  16530.             "viewerRating": "none",
  16531.             "likeCount": 0,
  16532.             "publishedAt": "2011-04-11T09:13:33Z",
  16533.             "updatedAt": "2011-04-11T09:13:33Z"
  16534.           }
  16535.         },
  16536.         "canReply": true,
  16537.         "totalReplyCount": 0,
  16538.         "isPublic": true
  16539.       }
  16540.     },
  16541.     {
  16542.       "kind": "youtube#commentThread",
  16543.       "etag": "iBBilD4htknRG4HeCBzzM1Q3Od0",
  16544.       "id": "Ugx1375IzVvUJiX_61x4AaABAg",
  16545.       "snippet": {
  16546.         "videoId": "atnSTtiWU5E",
  16547.         "topLevelComment": {
  16548.           "kind": "youtube#comment",
  16549.           "etag": "XCIlhQz6lE5DRJAGQ9oFrdoPeLo",
  16550.           "id": "Ugx1375IzVvUJiX_61x4AaABAg",
  16551.           "snippet": {
  16552.             "videoId": "atnSTtiWU5E",
  16553.             "textDisplay": "This song is amazing.  Just randomly started dancing in my room at two in the morning.",
  16554.             "textOriginal": "This song is amazing.  Just randomly started dancing in my room at two in the morning.",
  16555.             "authorDisplayName": "HamEggNCheeseBiscuit",
  16556.             "authorChannelUrl": "http://www.youtube.com/channel/UCcTL5yxnyjKL4M64DW8dUaw",
  16557.             "authorChannelId": {
  16558.               "value": "UCcTL5yxnyjKL4M64DW8dUaw"
  16559.             },
  16560.             "canRate": true,
  16561.             "viewerRating": "none",
  16562.             "likeCount": 0,
  16563.             "publishedAt": "2011-04-11T05:43:16Z",
  16564.             "updatedAt": "2011-04-11T05:43:16Z"
  16565.           }
  16566.         },
  16567.         "canReply": true,
  16568.         "totalReplyCount": 0,
  16569.         "isPublic": true
  16570.       }
  16571.     },
  16572.     {
  16573.       "kind": "youtube#commentThread",
  16574.       "etag": "vaEkO6N-iNCgA4ak7ur1GkRuYDA",
  16575.       "id": "UgwPTOKX_mtk1z2yHIJ4AaABAg",
  16576.       "snippet": {
  16577.         "videoId": "atnSTtiWU5E",
  16578.         "topLevelComment": {
  16579.           "kind": "youtube#comment",
  16580.           "etag": "PupzPbOEvqRdQSFCgCgjdvREuGY",
  16581.           "id": "UgwPTOKX_mtk1z2yHIJ4AaABAg",
  16582.           "snippet": {
  16583.             "videoId": "atnSTtiWU5E",
  16584.             "textDisplay": "@sshemley BEEFCAKEEEEEEEEEEEEEEEEEEEEE",
  16585.             "textOriginal": "@sshemley BEEFCAKEEEEEEEEEEEEEEEEEEEEE",
  16586.             "authorDisplayName": "pandaBee",
  16587.             "authorChannelUrl": "http://www.youtube.com/channel/UCYY6TCuN6U5u2KanWtxDE-g",
  16588.             "authorChannelId": {
  16589.               "value": "UCYY6TCuN6U5u2KanWtxDE-g"
  16590.             },
  16591.             "canRate": true,
  16592.             "viewerRating": "none",
  16593.             "likeCount": 0,
  16594.             "publishedAt": "2011-04-09T01:09:36Z",
  16595.             "updatedAt": "2011-04-09T01:09:36Z"
  16596.           }
  16597.         },
  16598.         "canReply": true,
  16599.         "totalReplyCount": 0,
  16600.         "isPublic": true
  16601.       }
  16602.     },
  16603.     {
  16604.       "kind": "youtube#commentThread",
  16605.       "etag": "-9WQHjWk3nCwmcwyXsELClPepAs",
  16606.       "id": "Ugwuig40BGJQKSH_rOp4AaABAg",
  16607.       "snippet": {
  16608.         "videoId": "atnSTtiWU5E",
  16609.         "topLevelComment": {
  16610.           "kind": "youtube#comment",
  16611.           "etag": "ejXC-sNSde32mc9VHovDzYEsEds",
  16612.           "id": "Ugwuig40BGJQKSH_rOp4AaABAg",
  16613.           "snippet": {
  16614.             "videoId": "atnSTtiWU5E",
  16615.             "textDisplay": "@Brian626 Only the manliest of men watch this show!  *FLEX*",
  16616.             "textOriginal": "@Brian626 Only the manliest of men watch this show!  *FLEX*",
  16617.             "authorDisplayName": "Ashe's Crafting Corner ",
  16618.             "authorChannelUrl": "http://www.youtube.com/channel/UCvpXYDrONljnEkvLhPlyTGw",
  16619.             "authorChannelId": {
  16620.               "value": "UCvpXYDrONljnEkvLhPlyTGw"
  16621.             },
  16622.             "canRate": true,
  16623.             "viewerRating": "none",
  16624.             "likeCount": 0,
  16625.             "publishedAt": "2011-04-08T20:40:11Z",
  16626.             "updatedAt": "2011-04-08T20:40:11Z"
  16627.           }
  16628.         },
  16629.         "canReply": true,
  16630.         "totalReplyCount": 0,
  16631.         "isPublic": true
  16632.       }
  16633.     },
  16634.     {
  16635.       "kind": "youtube#commentThread",
  16636.       "etag": "JpzScWU_tFmoTKPCevub8U40H3o",
  16637.       "id": "Ugw1t_b5VKbtrwZIbQd4AaABAg",
  16638.       "snippet": {
  16639.         "videoId": "atnSTtiWU5E",
  16640.         "topLevelComment": {
  16641.           "kind": "youtube#comment",
  16642.           "etag": "52rtUjDIHYwEj3yeoKKAPCYwFFA",
  16643.           "id": "Ugw1t_b5VKbtrwZIbQd4AaABAg",
  16644.           "snippet": {
  16645.             "videoId": "atnSTtiWU5E",
  16646.             "textDisplay": "@SystemOfADork More like "Galloping in the Nineties!" xD",
  16647.             "textOriginal": "@SystemOfADork More like \"Galloping in the Nineties!\" xD",
  16648.             "authorDisplayName": "Zahriel",
  16649.             "authorChannelUrl": "http://www.youtube.com/channel/UCXXPhP_0_3sBTcpGQrsybcA",
  16650.             "authorChannelId": {
  16651.               "value": "UCXXPhP_0_3sBTcpGQrsybcA"
  16652.             },
  16653.             "canRate": true,
  16654.             "viewerRating": "none",
  16655.             "likeCount": 0,
  16656.             "publishedAt": "2011-04-07T04:16:44Z",
  16657.             "updatedAt": "2011-04-07T04:16:44Z"
  16658.           }
  16659.         },
  16660.         "canReply": true,
  16661.         "totalReplyCount": 0,
  16662.         "isPublic": true
  16663.       }
  16664.     },
  16665.     {
  16666.       "kind": "youtube#commentThread",
  16667.       "etag": "V73Cbr4W7HwDEL5FrSJXoUn9X50",
  16668.       "id": "UgwR7Ye09l5k0T-QYyV4AaABAg",
  16669.       "snippet": {
  16670.         "videoId": "atnSTtiWU5E",
  16671.         "topLevelComment": {
  16672.           "kind": "youtube#comment",
  16673.           "etag": "0XHwBR2YyJ2vtNxR_oOsmurp1Ws",
  16674.           "id": "UgwR7Ye09l5k0T-QYyV4AaABAg",
  16675.           "snippet": {
  16676.             "videoId": "atnSTtiWU5E",
  16677.             "textDisplay": "@ShyDeathKitten666 Indeed!",
  16678.             "textOriginal": "@ShyDeathKitten666 Indeed!",
  16679.             "authorDisplayName": "John Currey",
  16680.             "authorChannelUrl": "http://www.youtube.com/channel/UCqNFPyguqvP2t5hf25Qwz8g",
  16681.             "authorChannelId": {
  16682.               "value": "UCqNFPyguqvP2t5hf25Qwz8g"
  16683.             },
  16684.             "canRate": true,
  16685.             "viewerRating": "none",
  16686.             "likeCount": 0,
  16687.             "publishedAt": "2011-04-07T03:52:41Z",
  16688.             "updatedAt": "2011-04-07T03:52:41Z"
  16689.           }
  16690.         },
  16691.         "canReply": true,
  16692.         "totalReplyCount": 0,
  16693.         "isPublic": true
  16694.       }
  16695.     },
  16696.     {
  16697.       "kind": "youtube#commentThread",
  16698.       "etag": "GqGjKVzhs14MVLDeniVj0c9v1IA",
  16699.       "id": "UgwMSHVuknjTB8EH0qZ4AaABAg",
  16700.       "snippet": {
  16701.         "videoId": "atnSTtiWU5E",
  16702.         "topLevelComment": {
  16703.           "kind": "youtube#comment",
  16704.           "etag": "Bd393kNyWnP2WibCaTK6t71bWeo",
  16705.           "id": "UgwMSHVuknjTB8EH0qZ4AaABAg",
  16706.           "snippet": {
  16707.             "videoId": "atnSTtiWU5E",
  16708.             "textDisplay": "@SilvermoonBlood So doesn't that mean Chuck Norris watchs My Little Pony as well!",
  16709.             "textOriginal": "@SilvermoonBlood So doesn't that mean Chuck Norris watchs My Little Pony as well!",
  16710.             "authorDisplayName": "Grumpy Panda",
  16711.             "authorChannelUrl": "http://www.youtube.com/channel/UCkWpOe6sHiJPQRziCWrsvvA",
  16712.             "authorChannelId": {
  16713.               "value": "UCkWpOe6sHiJPQRziCWrsvvA"
  16714.             },
  16715.             "canRate": true,
  16716.             "viewerRating": "none",
  16717.             "likeCount": 0,
  16718.             "publishedAt": "2011-04-07T03:10:55Z",
  16719.             "updatedAt": "2011-04-07T03:10:55Z"
  16720.           }
  16721.         },
  16722.         "canReply": true,
  16723.         "totalReplyCount": 0,
  16724.         "isPublic": true
  16725.       }
  16726.     },
  16727.     {
  16728.       "kind": "youtube#commentThread",
  16729.       "etag": "91gkVgfiGXizD6MTQwY5nMM6mSQ",
  16730.       "id": "UgzZ34ur7Jpu_EICvz94AaABAg",
  16731.       "snippet": {
  16732.         "videoId": "atnSTtiWU5E",
  16733.         "topLevelComment": {
  16734.           "kind": "youtube#comment",
  16735.           "etag": "VgfOxmnkxwDCfjokFJcQIuJdcJM",
  16736.           "id": "UgzZ34ur7Jpu_EICvz94AaABAg",
  16737.           "snippet": {
  16738.             "videoId": "atnSTtiWU5E",
  16739.             "textDisplay": "Im so tough that i watch My little pony",
  16740.             "textOriginal": "Im so tough that i watch My little pony",
  16741.             "authorDisplayName": "blygox129",
  16742.             "authorChannelUrl": "http://www.youtube.com/channel/UCVh2rCvenjMNcbMv79KWzpg",
  16743.             "authorChannelId": {
  16744.               "value": "UCVh2rCvenjMNcbMv79KWzpg"
  16745.             },
  16746.             "canRate": true,
  16747.             "viewerRating": "none",
  16748.             "likeCount": 0,
  16749.             "publishedAt": "2011-04-06T19:56:44Z",
  16750.             "updatedAt": "2011-04-06T19:56:44Z"
  16751.           }
  16752.         },
  16753.         "canReply": true,
  16754.         "totalReplyCount": 0,
  16755.         "isPublic": true
  16756.       }
  16757.     },
  16758.     {
  16759.       "kind": "youtube#commentThread",
  16760.       "etag": "KO3l3rRVZ6Z_HTVezRGkN_n1LGo",
  16761.       "id": "UgzNOzb-4wfeKiFTER14AaABAg",
  16762.       "snippet": {
  16763.         "videoId": "atnSTtiWU5E",
  16764.         "topLevelComment": {
  16765.           "kind": "youtube#comment",
  16766.           "etag": "pSqkPXJhHBoQAbrO200oNsbimX0",
  16767.           "id": "UgzNOzb-4wfeKiFTER14AaABAg",
  16768.           "snippet": {
  16769.             "videoId": "atnSTtiWU5E",
  16770.             "textDisplay": "THE MANLIEST OF MEN WATCH PONIES",
  16771.             "textOriginal": "THE MANLIEST OF MEN WATCH PONIES",
  16772.             "authorDisplayName": "John Currey",
  16773.             "authorChannelUrl": "http://www.youtube.com/channel/UCqNFPyguqvP2t5hf25Qwz8g",
  16774.             "authorChannelId": {
  16775.               "value": "UCqNFPyguqvP2t5hf25Qwz8g"
  16776.             },
  16777.             "canRate": true,
  16778.             "viewerRating": "none",
  16779.             "likeCount": 0,
  16780.             "publishedAt": "2011-04-04T06:59:54Z",
  16781.             "updatedAt": "2011-04-04T06:59:54Z"
  16782.           }
  16783.         },
  16784.         "canReply": true,
  16785.         "totalReplyCount": 0,
  16786.         "isPublic": true
  16787.       }
  16788.     },
  16789.     {
  16790.       "kind": "youtube#commentThread",
  16791.       "etag": "Z-yASXOaziFT4njv-TYsaOO56hM",
  16792.       "id": "Ugx7Aj195oyVaYYJTrp4AaABAg",
  16793.       "snippet": {
  16794.         "videoId": "atnSTtiWU5E",
  16795.         "topLevelComment": {
  16796.           "kind": "youtube#comment",
  16797.           "etag": "6N5V3I8dV2x13Zajq_kBb7zBnxY",
  16798.           "id": "Ugx7Aj195oyVaYYJTrp4AaABAg",
  16799.           "snippet": {
  16800.             "videoId": "atnSTtiWU5E",
  16801.             "textDisplay": "BOSS FIGHT?",
  16802.             "textOriginal": "BOSS FIGHT?",
  16803.             "authorDisplayName": "Merit Ferret",
  16804.             "authorChannelUrl": "http://www.youtube.com/channel/UChISeJqIQTz0vm__WfUdCyw",
  16805.             "authorChannelId": {
  16806.               "value": "UChISeJqIQTz0vm__WfUdCyw"
  16807.             },
  16808.             "canRate": true,
  16809.             "viewerRating": "none",
  16810.             "likeCount": 0,
  16811.             "publishedAt": "2011-04-03T07:34:32Z",
  16812.             "updatedAt": "2011-04-03T07:34:32Z"
  16813.           }
  16814.         },
  16815.         "canReply": true,
  16816.         "totalReplyCount": 0,
  16817.         "isPublic": true
  16818.       }
  16819.     },
  16820.     {
  16821.       "kind": "youtube#commentThread",
  16822.       "etag": "zVI7X7M7-WoK7TxnKGgimAz6ySM",
  16823.       "id": "UgxVJr3oh9SV_hl4HyF4AaABAg",
  16824.       "snippet": {
  16825.         "videoId": "atnSTtiWU5E",
  16826.         "topLevelComment": {
  16827.           "kind": "youtube#comment",
  16828.           "etag": "W_dLszyB1fh-ncm70-eLvhWG2HA",
  16829.           "id": "UgxVJr3oh9SV_hl4HyF4AaABAg",
  16830.           "snippet": {
  16831.             "videoId": "atnSTtiWU5E",
  16832.             "textDisplay": "my FAV     how'd you  get soo  great?????????",
  16833.             "textOriginal": "my FAV     how'd you  get soo  great?????????",
  16834.             "authorDisplayName": "Ohiosteelheader",
  16835.             "authorChannelUrl": "http://www.youtube.com/channel/UCuu7yY3VEjFzpjIYnI9SPlQ",
  16836.             "authorChannelId": {
  16837.               "value": "UCuu7yY3VEjFzpjIYnI9SPlQ"
  16838.             },
  16839.             "canRate": true,
  16840.             "viewerRating": "none",
  16841.             "likeCount": 0,
  16842.             "publishedAt": "2011-04-02T01:09:34Z",
  16843.             "updatedAt": "2011-04-02T01:09:34Z"
  16844.           }
  16845.         },
  16846.         "canReply": true,
  16847.         "totalReplyCount": 0,
  16848.         "isPublic": true
  16849.       }
  16850.     },
  16851.     {
  16852.       "kind": "youtube#commentThread",
  16853.       "etag": "0P19_c0My1ksRxycJuclrxB1Nk8",
  16854.       "id": "UgzZDv6zdI3Ai8Tnc0N4AaABAg",
  16855.       "snippet": {
  16856.         "videoId": "atnSTtiWU5E",
  16857.         "topLevelComment": {
  16858.           "kind": "youtube#comment",
  16859.           "etag": "1VXERE6h3OzHoiEdNXqjpJo7Tmg",
  16860.           "id": "UgzZDv6zdI3Ai8Tnc0N4AaABAg",
  16861.           "snippet": {
  16862.             "videoId": "atnSTtiWU5E",
  16863.             "textDisplay": "SHE'S AN EVIL ENCHANTRESS\nSHE DOES EVIL DANCES...\n\nXD......",
  16864.             "textOriginal": "SHE'S AN EVIL ENCHANTRESS\nSHE DOES EVIL DANCES...\n\nXD......",
  16865.             "authorDisplayName": "Stitchmaniac2",
  16866.             "authorChannelUrl": "http://www.youtube.com/channel/UCDBmbme2wLh7yjo5ot9NDTg",
  16867.             "authorChannelId": {
  16868.               "value": "UCDBmbme2wLh7yjo5ot9NDTg"
  16869.             },
  16870.             "canRate": true,
  16871.             "viewerRating": "none",
  16872.             "likeCount": 0,
  16873.             "publishedAt": "2011-04-01T13:32:22Z",
  16874.             "updatedAt": "2011-04-01T13:32:22Z"
  16875.           }
  16876.         },
  16877.         "canReply": true,
  16878.         "totalReplyCount": 0,
  16879.         "isPublic": true
  16880.       }
  16881.     },
  16882.     {
  16883.       "kind": "youtube#commentThread",
  16884.       "etag": "jpmjWZB-KkwMy7JLq-HtLt8rp3k",
  16885.       "id": "UgwGDs4gdms-MzIkPmB4AaABAg",
  16886.       "snippet": {
  16887.         "videoId": "atnSTtiWU5E",
  16888.         "topLevelComment": {
  16889.           "kind": "youtube#comment",
  16890.           "etag": "AtustKRURevoLiJoEYD_v2oIRb8",
  16891.           "id": "UgwGDs4gdms-MzIkPmB4AaABAg",
  16892.           "snippet": {
  16893.             "videoId": "atnSTtiWU5E",
  16894.             "textDisplay": "Pinky-pie did say it was still a work in progress.  I guess this is the finished result.",
  16895.             "textOriginal": "Pinky-pie did say it was still a work in progress.  I guess this is the finished result.",
  16896.             "authorDisplayName": "Tylendal242",
  16897.             "authorChannelUrl": "http://www.youtube.com/channel/UCjbl5rXZVYAnXY0pYUtyW2Q",
  16898.             "authorChannelId": {
  16899.               "value": "UCjbl5rXZVYAnXY0pYUtyW2Q"
  16900.             },
  16901.             "canRate": true,
  16902.             "viewerRating": "none",
  16903.             "likeCount": 0,
  16904.             "publishedAt": "2011-04-01T06:07:20Z",
  16905.             "updatedAt": "2011-04-01T06:07:20Z"
  16906.           }
  16907.         },
  16908.         "canReply": true,
  16909.         "totalReplyCount": 0,
  16910.         "isPublic": true
  16911.       }
  16912.     },
  16913.     {
  16914.       "kind": "youtube#commentThread",
  16915.       "etag": "1nB9JL0yW58vbGnZ95bgjexhfqI",
  16916.       "id": "UgzukF3pPRFfjHEX6rh4AaABAg",
  16917.       "snippet": {
  16918.         "videoId": "atnSTtiWU5E",
  16919.         "topLevelComment": {
  16920.           "kind": "youtube#comment",
  16921.           "etag": "uxqBorLD6C2RtQg7d9mUs0q_NN0",
  16922.           "id": "UgzukF3pPRFfjHEX6rh4AaABAg",
  16923.           "snippet": {
  16924.             "videoId": "atnSTtiWU5E",
  16925.             "textDisplay": "@Brian626 A truer truth has never before been said.",
  16926.             "textOriginal": "@Brian626 A truer truth has never before been said.",
  16927.             "authorDisplayName": "GoochRash",
  16928.             "authorChannelUrl": "http://www.youtube.com/channel/UCP5I91TVayqEUaqYDWbC5ng",
  16929.             "authorChannelId": {
  16930.               "value": "UCP5I91TVayqEUaqYDWbC5ng"
  16931.             },
  16932.             "canRate": true,
  16933.             "viewerRating": "none",
  16934.             "likeCount": 0,
  16935.             "publishedAt": "2011-03-31T06:14:14Z",
  16936.             "updatedAt": "2011-03-31T06:14:14Z"
  16937.           }
  16938.         },
  16939.         "canReply": true,
  16940.         "totalReplyCount": 0,
  16941.         "isPublic": true
  16942.       }
  16943.     },
  16944.     {
  16945.       "kind": "youtube#commentThread",
  16946.       "etag": "lndPpS2uJUfhbf2BGAdCrP5WJNA",
  16947.       "id": "Ugx-kA0mUHsXcK4ZMHR4AaABAg",
  16948.       "snippet": {
  16949.         "videoId": "atnSTtiWU5E",
  16950.         "topLevelComment": {
  16951.           "kind": "youtube#comment",
  16952.           "etag": "UhCqsvEewVbpczjROlJCKV1lJEo",
  16953.           "id": "Ugx-kA0mUHsXcK4ZMHR4AaABAg",
  16954.           "snippet": {
  16955.             "videoId": "atnSTtiWU5E",
  16956.             "textDisplay": "@Brian626 Too. Right. Mate.",
  16957.             "textOriginal": "@Brian626 Too. Right. Mate.",
  16958.             "authorDisplayName": "John Thorne",
  16959.             "authorChannelUrl": "http://www.youtube.com/channel/UCwAqGp_SchcoZY7f8ca9pvw",
  16960.             "authorChannelId": {
  16961.               "value": "UCwAqGp_SchcoZY7f8ca9pvw"
  16962.             },
  16963.             "canRate": true,
  16964.             "viewerRating": "none",
  16965.             "likeCount": 0,
  16966.             "publishedAt": "2011-03-31T03:22:51Z",
  16967.             "updatedAt": "2011-03-31T03:22:51Z"
  16968.           }
  16969.         },
  16970.         "canReply": true,
  16971.         "totalReplyCount": 0,
  16972.         "isPublic": true
  16973.       }
  16974.     },
  16975.     {
  16976.       "kind": "youtube#commentThread",
  16977.       "etag": "5jTJ-vnVCt_GpCNN8m1hJfP2gtQ",
  16978.       "id": "Ugxqxc2SH72dXr19gTJ4AaABAg",
  16979.       "snippet": {
  16980.         "videoId": "atnSTtiWU5E",
  16981.         "topLevelComment": {
  16982.           "kind": "youtube#comment",
  16983.           "etag": "hYqDjbdKIkZlokWQzM0-XYgc2L0",
  16984.           "id": "Ugxqxc2SH72dXr19gTJ4AaABAg",
  16985.           "snippet": {
  16986.             "videoId": "atnSTtiWU5E",
  16987.             "textDisplay": "For some reason i picture this song in a Sonic game. Reminds me of some of the beats from the old adventure series, in fact a lot of these songs remind me of that...",
  16988.             "textOriginal": "For some reason i picture this song in a Sonic game. Reminds me of some of the beats from the old adventure series, in fact a lot of these songs remind me of that...",
  16989.             "authorDisplayName": "Zincy",
  16990.             "authorChannelUrl": "http://www.youtube.com/channel/UCj8y1CyvKGuuYwbJENbFF-w",
  16991.             "authorChannelId": {
  16992.               "value": "UCj8y1CyvKGuuYwbJENbFF-w"
  16993.             },
  16994.             "canRate": true,
  16995.             "viewerRating": "none",
  16996.             "likeCount": 0,
  16997.             "publishedAt": "2011-03-31T00:44:56Z",
  16998.             "updatedAt": "2011-03-31T00:44:56Z"
  16999.           }
  17000.         },
  17001.         "canReply": true,
  17002.         "totalReplyCount": 0,
  17003.         "isPublic": true
  17004.       }
  17005.     },
  17006.     {
  17007.       "kind": "youtube#commentThread",
  17008.       "etag": "PwiBwh0DJPnapGdlGc-6SeGLYMw",
  17009.       "id": "UgxQXrzPc-M-_Ro8U2d4AaABAg",
  17010.       "snippet": {
  17011.         "videoId": "atnSTtiWU5E",
  17012.         "topLevelComment": {
  17013.           "kind": "youtube#comment",
  17014.           "etag": "V3No9MWf9iNt1Y0BO-c9QDy83gg",
  17015.           "id": "UgxQXrzPc-M-_Ro8U2d4AaABAg",
  17016.           "snippet": {
  17017.             "videoId": "atnSTtiWU5E",
  17018.             "textDisplay": "Damn bro, how did you make one of the weaker (not bad) songs into the best eurobeat?",
  17019.             "textOriginal": "Damn bro, how did you make one of the weaker (not bad) songs into the best eurobeat?",
  17020.             "authorDisplayName": "NOUFGT",
  17021.             "authorChannelUrl": "http://www.youtube.com/channel/UCb1CEE02YNXU5eBO1iRHsVw",
  17022.             "authorChannelId": {
  17023.               "value": "UCb1CEE02YNXU5eBO1iRHsVw"
  17024.             },
  17025.             "canRate": true,
  17026.             "viewerRating": "none",
  17027.             "likeCount": 0,
  17028.             "publishedAt": "2011-03-30T04:40:49Z",
  17029.             "updatedAt": "2011-03-30T04:40:49Z"
  17030.           }
  17031.         },
  17032.         "canReply": true,
  17033.         "totalReplyCount": 0,
  17034.         "isPublic": true
  17035.       }
  17036.     },
  17037.     {
  17038.       "kind": "youtube#commentThread",
  17039.       "etag": "t5-h3YT5nz4wKAq1iCZmw4a4BEQ",
  17040.       "id": "Ugxeu2y8FK74XUAH9kl4AaABAg",
  17041.       "snippet": {
  17042.         "videoId": "atnSTtiWU5E",
  17043.         "topLevelComment": {
  17044.           "kind": "youtube#comment",
  17045.           "etag": "2ggT527c9_wGoMqTN124-9lJNSc",
  17046.           "id": "Ugxeu2y8FK74XUAH9kl4AaABAg",
  17047.           "snippet": {
  17048.             "videoId": "atnSTtiWU5E",
  17049.             "textDisplay": "0:25-0:37 What am I listening to? Every super ponybeat seems to be mostly made of parts that are not from the original song. ",
  17050.             "textOriginal": "0:25-0:37 What am I listening to? Every super ponybeat seems to be mostly made of parts that are not from the original song. ",
  17051.             "authorDisplayName": "1colonelsanders",
  17052.             "authorChannelUrl": "http://www.youtube.com/channel/UCd5BM0BNfhJlPkdl41aMRRg",
  17053.             "authorChannelId": {
  17054.               "value": "UCd5BM0BNfhJlPkdl41aMRRg"
  17055.             },
  17056.             "canRate": true,
  17057.             "viewerRating": "none",
  17058.             "likeCount": 0,
  17059.             "publishedAt": "2011-03-30T02:53:02Z",
  17060.             "updatedAt": "2011-03-30T02:53:02Z"
  17061.           }
  17062.         },
  17063.         "canReply": true,
  17064.         "totalReplyCount": 0,
  17065.         "isPublic": true
  17066.       }
  17067.     },
  17068.     {
  17069.       "kind": "youtube#commentThread",
  17070.       "etag": "p7r3o_bvm2Sr7xfA7Q1Gc2gVvrM",
  17071.       "id": "UgxfEyGOQsk6hyrUWiV4AaABAg",
  17072.       "snippet": {
  17073.         "videoId": "atnSTtiWU5E",
  17074.         "topLevelComment": {
  17075.           "kind": "youtube#comment",
  17076.           "etag": "6kFmRlA9QYXBgftjRZlFQPJPz0Q",
  17077.           "id": "UgxfEyGOQsk6hyrUWiV4AaABAg",
  17078.           "snippet": {
  17079.             "videoId": "atnSTtiWU5E",
  17080.             "textDisplay": "@Lostwinddragon not for little girls. this show is for MEN",
  17081.             "textOriginal": "@Lostwinddragon not for little girls. this show is for MEN",
  17082.             "authorDisplayName": "pandaBee",
  17083.             "authorChannelUrl": "http://www.youtube.com/channel/UCYY6TCuN6U5u2KanWtxDE-g",
  17084.             "authorChannelId": {
  17085.               "value": "UCYY6TCuN6U5u2KanWtxDE-g"
  17086.             },
  17087.             "canRate": true,
  17088.             "viewerRating": "none",
  17089.             "likeCount": 0,
  17090.             "publishedAt": "2011-03-29T20:32:45Z",
  17091.             "updatedAt": "2011-03-29T20:32:45Z"
  17092.           }
  17093.         },
  17094.         "canReply": true,
  17095.         "totalReplyCount": 0,
  17096.         "isPublic": true
  17097.       }
  17098.     },
  17099.     {
  17100.       "kind": "youtube#commentThread",
  17101.       "etag": "SwBlBCgCEs0_2gu_3stfGH14ezs",
  17102.       "id": "Ugzk1FlVubI6Zw_6XRF4AaABAg",
  17103.       "snippet": {
  17104.         "videoId": "atnSTtiWU5E",
  17105.         "topLevelComment": {
  17106.           "kind": "youtube#comment",
  17107.           "etag": "b_m_a5R5VdFNd5KpLzqekD5CpEU",
  17108.           "id": "Ugzk1FlVubI6Zw_6XRF4AaABAg",
  17109.           "snippet": {
  17110.             "videoId": "atnSTtiWU5E",
  17111.             "textDisplay": "put* pause*",
  17112.             "textOriginal": "put* pause*",
  17113.             "authorDisplayName": "Vescend Umficator",
  17114.             "authorChannelUrl": "http://www.youtube.com/channel/UCTEozzUNCozLNUdWwllXLOA",
  17115.             "authorChannelId": {
  17116.               "value": "UCTEozzUNCozLNUdWwllXLOA"
  17117.             },
  17118.             "canRate": true,
  17119.             "viewerRating": "none",
  17120.             "likeCount": 0,
  17121.             "publishedAt": "2011-03-29T17:40:49Z",
  17122.             "updatedAt": "2011-03-29T17:40:49Z"
  17123.           }
  17124.         },
  17125.         "canReply": true,
  17126.         "totalReplyCount": 0,
  17127.         "isPublic": true
  17128.       }
  17129.     },
  17130.     {
  17131.       "kind": "youtube#commentThread",
  17132.       "etag": "UjoH2RLzM862Ss6i4VT0HyLk4Zw",
  17133.       "id": "Ugx5JoNraVUdaBko6G94AaABAg",
  17134.       "snippet": {
  17135.         "videoId": "atnSTtiWU5E",
  17136.         "topLevelComment": {
  17137.           "kind": "youtube#comment",
  17138.           "etag": "lFsasi4BxmMwyzJrqHZXlRv09MY",
  17139.           "id": "Ugx5JoNraVUdaBko6G94AaABAg",
  17140.           "snippet": {
  17141.             "videoId": "atnSTtiWU5E",
  17142.             "textDisplay": "I wish u did a loop on it :) its quite easy, but a puse right in  the ending before the black list comes upp and it will automaticly loop, i need to listen to it over and over again. =)",
  17143.             "textOriginal": "I wish u did a loop on it :) its quite easy, but a puse right in  the ending before the black list comes upp and it will automaticly loop, i need to listen to it over and over again. =)",
  17144.             "authorDisplayName": "Vescend Umficator",
  17145.             "authorChannelUrl": "http://www.youtube.com/channel/UCTEozzUNCozLNUdWwllXLOA",
  17146.             "authorChannelId": {
  17147.               "value": "UCTEozzUNCozLNUdWwllXLOA"
  17148.             },
  17149.             "canRate": true,
  17150.             "viewerRating": "none",
  17151.             "likeCount": 0,
  17152.             "publishedAt": "2011-03-29T17:18:18Z",
  17153.             "updatedAt": "2011-03-29T17:18:18Z"
  17154.           }
  17155.         },
  17156.         "canReply": true,
  17157.         "totalReplyCount": 0,
  17158.         "isPublic": true
  17159.       }
  17160.     },
  17161.     {
  17162.       "kind": "youtube#commentThread",
  17163.       "etag": "4d9Jr7PGrYWP6nu-yukw-Zhm9SA",
  17164.       "id": "UgyIGP1CzWigW9wZm_d4AaABAg",
  17165.       "snippet": {
  17166.         "videoId": "atnSTtiWU5E",
  17167.         "topLevelComment": {
  17168.           "kind": "youtube#comment",
  17169.           "etag": "URk6_nVO3ywEajm03GARWqVOrM0",
  17170.           "id": "UgyIGP1CzWigW9wZm_d4AaABAg",
  17171.           "snippet": {
  17172.             "videoId": "atnSTtiWU5E",
  17173.             "textDisplay": "this video got me into my little pony: friendship is magic\n\nit's my favourite show now\nthank you so much",
  17174.             "textOriginal": "this video got me into my little pony: friendship is magic\n\nit's my favourite show now\nthank you so much",
  17175.             "authorDisplayName": "wickdaggler",
  17176.             "authorChannelUrl": "http://www.youtube.com/channel/UCDS4wqeuV8knngmQRMtmeiw",
  17177.             "authorChannelId": {
  17178.               "value": "UCDS4wqeuV8knngmQRMtmeiw"
  17179.             },
  17180.             "canRate": true,
  17181.             "viewerRating": "none",
  17182.             "likeCount": 0,
  17183.             "publishedAt": "2011-03-28T22:05:58Z",
  17184.             "updatedAt": "2011-03-28T22:05:58Z"
  17185.           }
  17186.         },
  17187.         "canReply": true,
  17188.         "totalReplyCount": 0,
  17189.         "isPublic": true
  17190.       }
  17191.     },
  17192.     {
  17193.       "kind": "youtube#commentThread",
  17194.       "etag": "IkpeobeYm0v3r_1yz7lPeBSlakE",
  17195.       "id": "Ugw6vIhSJ5V2rIvYPLx4AaABAg",
  17196.       "snippet": {
  17197.         "videoId": "atnSTtiWU5E",
  17198.         "topLevelComment": {
  17199.           "kind": "youtube#comment",
  17200.           "etag": "2J94xeb2_aZv9UCNrn4cjmpzNnc",
  17201.           "id": "Ugw6vIhSJ5V2rIvYPLx4AaABAg",
  17202.           "snippet": {
  17203.             "videoId": "atnSTtiWU5E",
  17204.             "textDisplay": "ITS THE PONY REVOLUTION AHAHAHAHAAAAA",
  17205.             "textOriginal": "ITS THE PONY REVOLUTION AHAHAHAHAAAAA",
  17206.             "authorDisplayName": "Paw Chi",
  17207.             "authorChannelUrl": "http://www.youtube.com/channel/UCf_XuAnqdYapzXUTeixTh-g",
  17208.             "authorChannelId": {
  17209.               "value": "UCf_XuAnqdYapzXUTeixTh-g"
  17210.             },
  17211.             "canRate": true,
  17212.             "viewerRating": "none",
  17213.             "likeCount": 0,
  17214.             "publishedAt": "2011-03-27T19:20:06Z",
  17215.             "updatedAt": "2011-03-27T19:20:06Z"
  17216.           }
  17217.         },
  17218.         "canReply": true,
  17219.         "totalReplyCount": 0,
  17220.         "isPublic": true
  17221.       }
  17222.     },
  17223.     {
  17224.       "kind": "youtube#commentThread",
  17225.       "etag": "9Wtc5RX5nPOyvpZOhJzxTaXOSAU",
  17226.       "id": "UgzeZEwAOMuknwJEipZ4AaABAg",
  17227.       "snippet": {
  17228.         "videoId": "atnSTtiWU5E",
  17229.         "topLevelComment": {
  17230.           "kind": "youtube#comment",
  17231.           "etag": "ayMD9mR7VllnwPQaHLKW3NWgTJ0",
  17232.           "id": "UgzeZEwAOMuknwJEipZ4AaABAg",
  17233.           "snippet": {
  17234.             "videoId": "atnSTtiWU5E",
  17235.             "textDisplay": "@SystemOfADork That's exactly what I thought :D",
  17236.             "textOriginal": "@SystemOfADork That's exactly what I thought :D",
  17237.             "authorDisplayName": "guitarskills2",
  17238.             "authorChannelUrl": "http://www.youtube.com/channel/UCHfJqvnlbtiui2t98ReWZxA",
  17239.             "authorChannelId": {
  17240.               "value": "UCHfJqvnlbtiui2t98ReWZxA"
  17241.             },
  17242.             "canRate": true,
  17243.             "viewerRating": "none",
  17244.             "likeCount": 0,
  17245.             "publishedAt": "2011-03-27T15:10:10Z",
  17246.             "updatedAt": "2011-03-27T15:10:10Z"
  17247.           }
  17248.         },
  17249.         "canReply": true,
  17250.         "totalReplyCount": 0,
  17251.         "isPublic": true
  17252.       }
  17253.     },
  17254.     {
  17255.       "kind": "youtube#commentThread",
  17256.       "etag": "d2rtcMfSuidV6RFN83VqQ7JeM-Y",
  17257.       "id": "UgxAaibWJJDNOezYOzB4AaABAg",
  17258.       "snippet": {
  17259.         "videoId": "atnSTtiWU5E",
  17260.         "topLevelComment": {
  17261.           "kind": "youtube#comment",
  17262.           "etag": "TpQ3sXlcqbJ_zbe0HyoHhXSuxGE",
  17263.           "id": "UgxAaibWJJDNOezYOzB4AaABAg",
  17264.           "snippet": {
  17265.             "videoId": "atnSTtiWU5E",
  17266.             "textDisplay": "@therainbowbear  this song is epic not slow your going to make everyone cry if you play this at a funeral",
  17267.             "textOriginal": "@therainbowbear  this song is epic not slow your going to make everyone cry if you play this at a funeral",
  17268.             "authorDisplayName": "Whoknowswhat",
  17269.             "authorChannelUrl": "http://www.youtube.com/channel/UCR8kUMe-6YUPovgv46zGvMg",
  17270.             "authorChannelId": {
  17271.               "value": "UCR8kUMe-6YUPovgv46zGvMg"
  17272.             },
  17273.             "canRate": true,
  17274.             "viewerRating": "none",
  17275.             "likeCount": 0,
  17276.             "publishedAt": "2011-03-27T03:29:22Z",
  17277.             "updatedAt": "2011-03-27T03:29:22Z"
  17278.           }
  17279.         },
  17280.         "canReply": true,
  17281.         "totalReplyCount": 0,
  17282.         "isPublic": true
  17283.       }
  17284.     },
  17285.     {
  17286.       "kind": "youtube#commentThread",
  17287.       "etag": "P239TcthSMlTfvdSkaSCCGDB6DM",
  17288.       "id": "UgymfmlrVCLweMO5n414AaABAg",
  17289.       "snippet": {
  17290.         "videoId": "atnSTtiWU5E",
  17291.         "topLevelComment": {
  17292.           "kind": "youtube#comment",
  17293.           "etag": "QzgyyqJsma4cXF34WodIzTfUXR0",
  17294.           "id": "UgymfmlrVCLweMO5n414AaABAg",
  17295.           "snippet": {
  17296.             "videoId": "atnSTtiWU5E",
  17297.             "textDisplay": "kinda reminds me of those songs they played in initial D.",
  17298.             "textOriginal": "kinda reminds me of those songs they played in initial D.",
  17299.             "authorDisplayName": "W.D. Gaster",
  17300.             "authorChannelUrl": "http://www.youtube.com/channel/UCv8HtLbHmaLVobhB1E8W9_Q",
  17301.             "authorChannelId": {
  17302.               "value": "UCv8HtLbHmaLVobhB1E8W9_Q"
  17303.             },
  17304.             "canRate": true,
  17305.             "viewerRating": "none",
  17306.             "likeCount": 2,
  17307.             "publishedAt": "2011-03-26T04:43:55Z",
  17308.             "updatedAt": "2011-03-26T04:43:55Z"
  17309.           }
  17310.         },
  17311.         "canReply": true,
  17312.         "totalReplyCount": 1,
  17313.         "isPublic": true
  17314.       },
  17315.       "replies": {
  17316.         "comments": [
  17317.           {
  17318.             "kind": "youtube#comment",
  17319.             "etag": "iVo0WLc1Hhzcq5MPusrmZlBYICY",
  17320.             "id": "UgymfmlrVCLweMO5n414AaABAg.8GbVF7BYEkP8YcHvZwRNfB",
  17321.             "snippet": {
  17322.               "videoId": "atnSTtiWU5E",
  17323.               "textDisplay": "W.D Gaster I mean he did do songs for Initial D, so that makes sense",
  17324.               "textOriginal": "W.D Gaster I mean he did do songs for Initial D, so that makes sense",
  17325.               "parentId": "UgymfmlrVCLweMO5n414AaABAg",
  17326.               "authorDisplayName": "gman7112",
  17327.               "authorChannelUrl": "http://www.youtube.com/channel/UC_Mujd3QyWttnz-7T_6K-uA",
  17328.               "authorChannelId": {
  17329.                 "value": "UC_Mujd3QyWttnz-7T_6K-uA"
  17330.               },
  17331.               "canRate": true,
  17332.               "viewerRating": "none",
  17333.               "likeCount": 0,
  17334.               "publishedAt": "2017-10-12T15:23:03Z",
  17335.               "updatedAt": "2017-10-12T15:23:03Z"
  17336.             }
  17337.           }
  17338.         ]
  17339.       }
  17340.     },
  17341.     {
  17342.       "kind": "youtube#commentThread",
  17343.       "etag": "RzjAVlXaG1mOZ2r6xvDT4IRS9eI",
  17344.       "id": "Ugwe_3KBoUw8tbuEUel4AaABAg",
  17345.       "snippet": {
  17346.         "videoId": "atnSTtiWU5E",
  17347.         "topLevelComment": {
  17348.           "kind": "youtube#comment",
  17349.           "etag": "oTn-CY3ep5lGgQY_W4Y7XxYGZ5I",
  17350.           "id": "Ugwe_3KBoUw8tbuEUel4AaABAg",
  17351.           "snippet": {
  17352.             "videoId": "atnSTtiWU5E",
  17353.             "textDisplay": "@Takahashifan4ever \nOoh, so that explains the Hydra in one episode, the DRAGON in another, and the surprisingly strong life moral (From the Zecora episode, nonetheless)\nI definitely passed this off as a Barbie-type girly poop before I saw it, but seeing just one episode kept me hooked...And I'm an 18 year old boy in college.",
  17354.             "textOriginal": "@Takahashifan4ever \nOoh, so that explains the Hydra in one episode, the DRAGON in another, and the surprisingly strong life moral (From the Zecora episode, nonetheless)\nI definitely passed this off as a Barbie-type girly poop before I saw it, but seeing just one episode kept me hooked...And I'm an 18 year old boy in college.",
  17355.             "authorDisplayName": "eIchristo",
  17356.             "authorChannelUrl": "http://www.youtube.com/channel/UC2DQfKQy2aYs965uLFC-scg",
  17357.             "authorChannelId": {
  17358.               "value": "UC2DQfKQy2aYs965uLFC-scg"
  17359.             },
  17360.             "canRate": true,
  17361.             "viewerRating": "none",
  17362.             "likeCount": 0,
  17363.             "publishedAt": "2011-03-25T19:53:31Z",
  17364.             "updatedAt": "2011-03-25T19:53:31Z"
  17365.           }
  17366.         },
  17367.         "canReply": true,
  17368.         "totalReplyCount": 0,
  17369.         "isPublic": true
  17370.       }
  17371.     },
  17372.     {
  17373.       "kind": "youtube#commentThread",
  17374.       "etag": "LCraPRZvdQ3JNeqK5PYXCyHXSwg",
  17375.       "id": "Ugx8Go0QysP25aXu90Z4AaABAg",
  17376.       "snippet": {
  17377.         "videoId": "atnSTtiWU5E",
  17378.         "topLevelComment": {
  17379.           "kind": "youtube#comment",
  17380.           "etag": "Wq5yN4Kn-6BO71pLl--973wsG7g",
  17381.           "id": "Ugx8Go0QysP25aXu90Z4AaABAg",
  17382.           "snippet": {
  17383.             "videoId": "atnSTtiWU5E",
  17384.             "textDisplay": "So hardcore. So...Pinkie-Pie.",
  17385.             "textOriginal": "So hardcore. So...Pinkie-Pie.",
  17386.             "authorDisplayName": "WhiteN0iz",
  17387.             "authorChannelUrl": "http://www.youtube.com/channel/UC0u-s0spiy4LvHqe-_UqbtQ",
  17388.             "authorChannelId": {
  17389.               "value": "UC0u-s0spiy4LvHqe-_UqbtQ"
  17390.             },
  17391.             "canRate": true,
  17392.             "viewerRating": "none",
  17393.             "likeCount": 0,
  17394.             "publishedAt": "2011-03-24T11:59:18Z",
  17395.             "updatedAt": "2011-03-24T11:59:18Z"
  17396.           }
  17397.         },
  17398.         "canReply": true,
  17399.         "totalReplyCount": 0,
  17400.         "isPublic": true
  17401.       }
  17402.     },
  17403.     {
  17404.       "kind": "youtube#commentThread",
  17405.       "etag": "FMemVd1HqM0uAmbex00-EyZcq-Q",
  17406.       "id": "UgxGXmiQlK5zTY-AEf14AaABAg",
  17407.       "snippet": {
  17408.         "videoId": "atnSTtiWU5E",
  17409.         "topLevelComment": {
  17410.           "kind": "youtube#comment",
  17411.           "etag": "dmTQr6TsUGKK0NzNp6P9i54dMkw",
  17412.           "id": "UgxGXmiQlK5zTY-AEf14AaABAg",
  17413.           "snippet": {
  17414.             "videoId": "atnSTtiWU5E",
  17415.             "textDisplay": "@jcattera You're right! This video IS DUMB!!!\r\n\r\n...To You. The rest of us are just paying attention to the music.",
  17416.             "textOriginal": "@jcattera You're right! This video IS DUMB!!!\r\n\r\n...To You. The rest of us are just paying attention to the music.",
  17417.             "authorDisplayName": "ryarod",
  17418.             "authorChannelUrl": "http://www.youtube.com/channel/UCMW5TNraMCcvLzPCJ464jFQ",
  17419.             "authorChannelId": {
  17420.               "value": "UCMW5TNraMCcvLzPCJ464jFQ"
  17421.             },
  17422.             "canRate": true,
  17423.             "viewerRating": "none",
  17424.             "likeCount": 2,
  17425.             "publishedAt": "2011-03-24T03:52:32Z",
  17426.             "updatedAt": "2011-03-24T03:52:32Z"
  17427.           }
  17428.         },
  17429.         "canReply": true,
  17430.         "totalReplyCount": 0,
  17431.         "isPublic": true
  17432.       }
  17433.     },
  17434.     {
  17435.       "kind": "youtube#commentThread",
  17436.       "etag": "e5lAGKhqTlDNCiL1DNpuHjTHQy8",
  17437.       "id": "UgwDCMEqJwLxoe4czQV4AaABAg",
  17438.       "snippet": {
  17439.         "videoId": "atnSTtiWU5E",
  17440.         "topLevelComment": {
  17441.           "kind": "youtube#comment",
  17442.           "etag": "eLGR-hDVwxFeywC7eYJ-zCj7jwI",
  17443.           "id": "UgwDCMEqJwLxoe4czQV4AaABAg",
  17444.           "snippet": {
  17445.             "videoId": "atnSTtiWU5E",
  17446.             "textDisplay": "This is my favorite ponybeat. Sounds epic, taking it to fighting practice later. This ought to be interesting.",
  17447.             "textOriginal": "This is my favorite ponybeat. Sounds epic, taking it to fighting practice later. This ought to be interesting.",
  17448.             "authorDisplayName": "SapphireNightLupin",
  17449.             "authorChannelUrl": "http://www.youtube.com/channel/UCyVfnmcbudzJUAjO1ZCDf-Q",
  17450.             "authorChannelId": {
  17451.               "value": "UCyVfnmcbudzJUAjO1ZCDf-Q"
  17452.             },
  17453.             "canRate": true,
  17454.             "viewerRating": "none",
  17455.             "likeCount": 1,
  17456.             "publishedAt": "2011-03-23T12:22:18Z",
  17457.             "updatedAt": "2011-03-23T12:22:18Z"
  17458.           }
  17459.         },
  17460.         "canReply": true,
  17461.         "totalReplyCount": 0,
  17462.         "isPublic": true
  17463.       }
  17464.     },
  17465.     {
  17466.       "kind": "youtube#commentThread",
  17467.       "etag": "z7h5Rx8V061-buKGIejH_85mgSU",
  17468.       "id": "Ugy6Tc3a3UwARKoVNwJ4AaABAg",
  17469.       "snippet": {
  17470.         "videoId": "atnSTtiWU5E",
  17471.         "topLevelComment": {
  17472.           "kind": "youtube#comment",
  17473.           "etag": "9FgRexdrUcTKpiS3DmGsAqDdGLg",
  17474.           "id": "Ugy6Tc3a3UwARKoVNwJ4AaABAg",
  17475.           "snippet": {
  17476.             "videoId": "atnSTtiWU5E",
  17477.             "textDisplay": "@Bandpuffs amen to that O3O",
  17478.             "textOriginal": "@Bandpuffs amen to that O3O",
  17479.             "authorDisplayName": "Deej",
  17480.             "authorChannelUrl": "http://www.youtube.com/channel/UCfIoVthY0482yjOtyZHLFow",
  17481.             "authorChannelId": {
  17482.               "value": "UCfIoVthY0482yjOtyZHLFow"
  17483.             },
  17484.             "canRate": true,
  17485.             "viewerRating": "none",
  17486.             "likeCount": 0,
  17487.             "publishedAt": "2011-03-21T04:28:52Z",
  17488.             "updatedAt": "2011-03-21T04:28:52Z"
  17489.           }
  17490.         },
  17491.         "canReply": true,
  17492.         "totalReplyCount": 0,
  17493.         "isPublic": true
  17494.       }
  17495.     },
  17496.     {
  17497.       "kind": "youtube#commentThread",
  17498.       "etag": "OAmxnjcwFaHnU7laDzlyWQ8Z5us",
  17499.       "id": "UgxlTdclFJ6ZUrZR0JN4AaABAg",
  17500.       "snippet": {
  17501.         "videoId": "atnSTtiWU5E",
  17502.         "topLevelComment": {
  17503.           "kind": "youtube#comment",
  17504.           "etag": "F69MONWemuFX5xWdpU7W-JgErIc",
  17505.           "id": "UgxlTdclFJ6ZUrZR0JN4AaABAg",
  17506.           "snippet": {
  17507.             "videoId": "atnSTtiWU5E",
  17508.             "textDisplay": "AHHHHH I'M SO FUCKING HAPPY :'D",
  17509.             "textOriginal": "AHHHHH I'M SO FUCKING HAPPY :'D",
  17510.             "authorDisplayName": "aqua",
  17511.             "authorChannelUrl": "http://www.youtube.com/channel/UCY56l438bS5__injXPC8pgg",
  17512.             "authorChannelId": {
  17513.               "value": "UCY56l438bS5__injXPC8pgg"
  17514.             },
  17515.             "canRate": true,
  17516.             "viewerRating": "none",
  17517.             "likeCount": 1,
  17518.             "publishedAt": "2011-03-21T00:44:51Z",
  17519.             "updatedAt": "2011-03-21T00:44:51Z"
  17520.           }
  17521.         },
  17522.         "canReply": true,
  17523.         "totalReplyCount": 0,
  17524.         "isPublic": true
  17525.       }
  17526.     },
  17527.     {
  17528.       "kind": "youtube#commentThread",
  17529.       "etag": "kBDCfhMslAeDuUo1AxaJ99J-t-w",
  17530.       "id": "UgwAEonno6RYKzmGHEZ4AaABAg",
  17531.       "snippet": {
  17532.         "videoId": "atnSTtiWU5E",
  17533.         "topLevelComment": {
  17534.           "kind": "youtube#comment",
  17535.           "etag": "Ih7hhKhngjX1zFyRbitcWJmRyNI",
  17536.           "id": "UgwAEonno6RYKzmGHEZ4AaABAg",
  17537.           "snippet": {
  17538.             "videoId": "atnSTtiWU5E",
  17539.             "textDisplay": "I usually don't like eurobeat music, but this is fantastic!",
  17540.             "textOriginal": "I usually don't like eurobeat music, but this is fantastic!",
  17541.             "authorDisplayName": "Xsupernova1337",
  17542.             "authorChannelUrl": "http://www.youtube.com/channel/UCyDiEfjN1qGW1meHtT0pFCA",
  17543.             "authorChannelId": {
  17544.               "value": "UCyDiEfjN1qGW1meHtT0pFCA"
  17545.             },
  17546.             "canRate": true,
  17547.             "viewerRating": "none",
  17548.             "likeCount": 0,
  17549.             "publishedAt": "2011-03-20T23:37:51Z",
  17550.             "updatedAt": "2011-03-20T23:37:51Z"
  17551.           }
  17552.         },
  17553.         "canReply": true,
  17554.         "totalReplyCount": 0,
  17555.         "isPublic": true
  17556.       }
  17557.     },
  17558.     {
  17559.       "kind": "youtube#commentThread",
  17560.       "etag": "GGuaTLp9snyb0FAzZGBxxQv7L1Q",
  17561.       "id": "UgyT3Tlx91XSvayWUPh4AaABAg",
  17562.       "snippet": {
  17563.         "videoId": "atnSTtiWU5E",
  17564.         "topLevelComment": {
  17565.           "kind": "youtube#comment",
  17566.           "etag": "-O4n-jxIhobFpnZ1wjycSU4UMAU",
  17567.           "id": "UgyT3Tlx91XSvayWUPh4AaABAg",
  17568.           "snippet": {
  17569.             "videoId": "atnSTtiWU5E",
  17570.             "textDisplay": "Sit down and shut up you bloke!\nThese hot beats are not a joke!",
  17571.             "textOriginal": "Sit down and shut up you bloke!\nThese hot beats are not a joke!",
  17572.             "authorDisplayName": "TheGoggleguy",
  17573.             "authorChannelUrl": "http://www.youtube.com/channel/UCJAhNEuXH7Yhgv2bAwzg28g",
  17574.             "authorChannelId": {
  17575.               "value": "UCJAhNEuXH7Yhgv2bAwzg28g"
  17576.             },
  17577.             "canRate": true,
  17578.             "viewerRating": "none",
  17579.             "likeCount": 0,
  17580.             "publishedAt": "2011-03-20T04:50:26Z",
  17581.             "updatedAt": "2011-03-20T04:50:26Z"
  17582.           }
  17583.         },
  17584.         "canReply": true,
  17585.         "totalReplyCount": 0,
  17586.         "isPublic": true
  17587.       }
  17588.     },
  17589.     {
  17590.       "kind": "youtube#commentThread",
  17591.       "etag": "Jx8I23gusI9yZBnxRDT7_4ybXkM",
  17592.       "id": "UgyX2GviH3xtG_b507R4AaABAg",
  17593.       "snippet": {
  17594.         "videoId": "atnSTtiWU5E",
  17595.         "topLevelComment": {
  17596.           "kind": "youtube#comment",
  17597.           "etag": "PP3a4h2IX1su5EcsoOSCTSuyEyI",
  17598.           "id": "UgyX2GviH3xtG_b507R4AaABAg",
  17599.           "snippet": {
  17600.             "videoId": "atnSTtiWU5E",
  17601.             "textDisplay": "SOME INITIAL D SHIT UP IN THIS BITCH! WHERE ARE MY KEYS IM TAKING THE FC FOR A DRIVE!!",
  17602.             "textOriginal": "SOME INITIAL D SHIT UP IN THIS BITCH! WHERE ARE MY KEYS IM TAKING THE FC FOR A DRIVE!!",
  17603.             "authorDisplayName": "Bendym4n123",
  17604.             "authorChannelUrl": "http://www.youtube.com/channel/UCPUYAfL2UafYv0GmN-gDkkA",
  17605.             "authorChannelId": {
  17606.               "value": "UCPUYAfL2UafYv0GmN-gDkkA"
  17607.             },
  17608.             "canRate": true,
  17609.             "viewerRating": "none",
  17610.             "likeCount": 0,
  17611.             "publishedAt": "2011-03-19T16:49:30Z",
  17612.             "updatedAt": "2011-03-19T16:49:30Z"
  17613.           }
  17614.         },
  17615.         "canReply": true,
  17616.         "totalReplyCount": 0,
  17617.         "isPublic": true
  17618.       }
  17619.     },
  17620.     {
  17621.       "kind": "youtube#commentThread",
  17622.       "etag": "rlOPBW5710DFON7DHCyrQjwmcw4",
  17623.       "id": "UgyvteWdatJTFe56bsd4AaABAg",
  17624.       "snippet": {
  17625.         "videoId": "atnSTtiWU5E",
  17626.         "topLevelComment": {
  17627.           "kind": "youtube#comment",
  17628.           "etag": "oysjKqQiHsN0qt6-2WBmn8iyT3g",
  17629.           "id": "UgyvteWdatJTFe56bsd4AaABAg",
  17630.           "snippet": {
  17631.             "videoId": "atnSTtiWU5E",
  17632.             "textDisplay": "If only they knew what they would create once they aired it on HUB.",
  17633.             "textOriginal": "If only they knew what they would create once they aired it on HUB.",
  17634.             "authorDisplayName": "MrPresidentFox",
  17635.             "authorChannelUrl": "http://www.youtube.com/channel/UCR7akhmW1UNGtTmjz1veapA",
  17636.             "authorChannelId": {
  17637.               "value": "UCR7akhmW1UNGtTmjz1veapA"
  17638.             },
  17639.             "canRate": true,
  17640.             "viewerRating": "none",
  17641.             "likeCount": 0,
  17642.             "publishedAt": "2011-03-18T22:36:23Z",
  17643.             "updatedAt": "2011-03-18T22:36:23Z"
  17644.           }
  17645.         },
  17646.         "canReply": true,
  17647.         "totalReplyCount": 0,
  17648.         "isPublic": true
  17649.       }
  17650.     },
  17651.     {
  17652.       "kind": "youtube#commentThread",
  17653.       "etag": "hB1io90ZTNe1n87VW5SPg9oQvFM",
  17654.       "id": "UgzO4Ph5YyKLXNl8h-F4AaABAg",
  17655.       "snippet": {
  17656.         "videoId": "atnSTtiWU5E",
  17657.         "topLevelComment": {
  17658.           "kind": "youtube#comment",
  17659.           "etag": "ICoqcbJbYmgIuKQv3gNti8lUqF4",
  17660.           "id": "UgzO4Ph5YyKLXNl8h-F4AaABAg",
  17661.           "snippet": {
  17662.             "videoId": "atnSTtiWU5E",
  17663.             "textDisplay": "I just had an orgasm in my ears.",
  17664.             "textOriginal": "I just had an orgasm in my ears.",
  17665.             "authorDisplayName": "WashingMachine0",
  17666.             "authorChannelUrl": "http://www.youtube.com/channel/UCSJhtoVcSw5MXzQid7TeIBw",
  17667.             "authorChannelId": {
  17668.               "value": "UCSJhtoVcSw5MXzQid7TeIBw"
  17669.             },
  17670.             "canRate": true,
  17671.             "viewerRating": "none",
  17672.             "likeCount": 0,
  17673.             "publishedAt": "2011-03-18T20:19:36Z",
  17674.             "updatedAt": "2011-03-18T20:19:36Z"
  17675.           }
  17676.         },
  17677.         "canReply": true,
  17678.         "totalReplyCount": 0,
  17679.         "isPublic": true
  17680.       }
  17681.     },
  17682.     {
  17683.       "kind": "youtube#commentThread",
  17684.       "etag": "_G9nLXvwABOKNu9R62Lm2UwfO5I",
  17685.       "id": "UgxNvKCtqkLBEjll-O14AaABAg",
  17686.       "snippet": {
  17687.         "videoId": "atnSTtiWU5E",
  17688.         "topLevelComment": {
  17689.           "kind": "youtube#comment",
  17690.           "etag": "dT30uRZ4IyiVBrGXWUPHcYC4Ok0",
  17691.           "id": "UgxNvKCtqkLBEjll-O14AaABAg",
  17692.           "snippet": {
  17693.             "videoId": "atnSTtiWU5E",
  17694.             "textDisplay": "Wow...this is just...BADASS.....I wondered how could such a short song do...so.....goood.....",
  17695.             "textOriginal": "Wow...this is just...BADASS.....I wondered how could such a short song do...so.....goood.....",
  17696.             "authorDisplayName": "Sailor Ranger",
  17697.             "authorChannelUrl": "http://www.youtube.com/channel/UCP_akdaDGra4QbpZnXlykWw",
  17698.             "authorChannelId": {
  17699.               "value": "UCP_akdaDGra4QbpZnXlykWw"
  17700.             },
  17701.             "canRate": true,
  17702.             "viewerRating": "none",
  17703.             "likeCount": 0,
  17704.             "publishedAt": "2011-03-18T08:38:25Z",
  17705.             "updatedAt": "2011-03-18T08:38:25Z"
  17706.           }
  17707.         },
  17708.         "canReply": true,
  17709.         "totalReplyCount": 0,
  17710.         "isPublic": true
  17711.       }
  17712.     },
  17713.     {
  17714.       "kind": "youtube#commentThread",
  17715.       "etag": "ihjwuzOdgbAwpOOIYVeKoJkpVCY",
  17716.       "id": "UgzJ5uoCEMog4owZufJ4AaABAg",
  17717.       "snippet": {
  17718.         "videoId": "atnSTtiWU5E",
  17719.         "topLevelComment": {
  17720.           "kind": "youtube#comment",
  17721.           "etag": "sVeHOb0f7RNQDAf26VxNVXYNy08",
  17722.           "id": "UgzJ5uoCEMog4owZufJ4AaABAg",
  17723.           "snippet": {
  17724.             "videoId": "atnSTtiWU5E",
  17725.             "textDisplay": "Can we get one with lyrics!?! :D I mean vocals...",
  17726.             "textOriginal": "Can we get one with lyrics!?! :D I mean vocals...",
  17727.             "authorDisplayName": "TheAbercrombieFiles",
  17728.             "authorChannelUrl": "http://www.youtube.com/channel/UC-DAyQhfY3MBG4ttZSd4mEA",
  17729.             "authorChannelId": {
  17730.               "value": "UC-DAyQhfY3MBG4ttZSd4mEA"
  17731.             },
  17732.             "canRate": true,
  17733.             "viewerRating": "none",
  17734.             "likeCount": 0,
  17735.             "publishedAt": "2011-03-16T19:55:44Z",
  17736.             "updatedAt": "2011-03-16T19:55:44Z"
  17737.           }
  17738.         },
  17739.         "canReply": true,
  17740.         "totalReplyCount": 0,
  17741.         "isPublic": true
  17742.       }
  17743.     },
  17744.     {
  17745.       "kind": "youtube#commentThread",
  17746.       "etag": "j8qtpgd29RKZw6UYmqU9UhnGzuE",
  17747.       "id": "Ugxl3BAWbuW8R3TE1Sd4AaABAg",
  17748.       "snippet": {
  17749.         "videoId": "atnSTtiWU5E",
  17750.         "topLevelComment": {
  17751.           "kind": "youtube#comment",
  17752.           "etag": "mTHSkwKsgc6F2Tnk__0WQaiA0ZU",
  17753.           "id": "Ugxl3BAWbuW8R3TE1Sd4AaABAg",
  17754.           "snippet": {
  17755.             "videoId": "atnSTtiWU5E",
  17756.             "textDisplay": "Can we get one with lyrics!?! :D ",
  17757.             "textOriginal": "Can we get one with lyrics!?! :D ",
  17758.             "authorDisplayName": "TheAbercrombieFiles",
  17759.             "authorChannelUrl": "http://www.youtube.com/channel/UC-DAyQhfY3MBG4ttZSd4mEA",
  17760.             "authorChannelId": {
  17761.               "value": "UC-DAyQhfY3MBG4ttZSd4mEA"
  17762.             },
  17763.             "canRate": true,
  17764.             "viewerRating": "none",
  17765.             "likeCount": 0,
  17766.             "publishedAt": "2011-03-16T19:55:37Z",
  17767.             "updatedAt": "2011-03-16T19:55:37Z"
  17768.           }
  17769.         },
  17770.         "canReply": true,
  17771.         "totalReplyCount": 0,
  17772.         "isPublic": true
  17773.       }
  17774.     },
  17775.     {
  17776.       "kind": "youtube#commentThread",
  17777.       "etag": "n_Jd5-zZBfs2OOnKnwjTMA805-s",
  17778.       "id": "UgwijbbfDIonNvrBQ6h4AaABAg",
  17779.       "snippet": {
  17780.         "videoId": "atnSTtiWU5E",
  17781.         "topLevelComment": {
  17782.           "kind": "youtube#comment",
  17783.           "etag": "cSUrYvu9IyFuSZXecHo4zu4ZD3Q",
  17784.           "id": "UgwijbbfDIonNvrBQ6h4AaABAg",
  17785.           "snippet": {
  17786.             "videoId": "atnSTtiWU5E",
  17787.             "textDisplay": "I hope we get a Eurobeat Remix of the Grand Galloping Gala song.",
  17788.             "textOriginal": "I hope we get a Eurobeat Remix of the Grand Galloping Gala song.",
  17789.             "authorDisplayName": "LibraryLass",
  17790.             "authorChannelUrl": "http://www.youtube.com/channel/UCT-yvUPdHZkAmELgBOjBG6A",
  17791.             "authorChannelId": {
  17792.               "value": "UCT-yvUPdHZkAmELgBOjBG6A"
  17793.             },
  17794.             "canRate": true,
  17795.             "viewerRating": "none",
  17796.             "likeCount": 0,
  17797.             "publishedAt": "2011-03-15T08:10:22Z",
  17798.             "updatedAt": "2011-03-15T08:10:22Z"
  17799.           }
  17800.         },
  17801.         "canReply": true,
  17802.         "totalReplyCount": 0,
  17803.         "isPublic": true
  17804.       }
  17805.     },
  17806.     {
  17807.       "kind": "youtube#commentThread",
  17808.       "etag": "bx82nEaKrAhC8dy6EtJ2eOThiZI",
  17809.       "id": "UgxUdMWiPNCqjFcNmz54AaABAg",
  17810.       "snippet": {
  17811.         "videoId": "atnSTtiWU5E",
  17812.         "topLevelComment": {
  17813.           "kind": "youtube#comment",
  17814.           "etag": "VYyXuM2wbgPB8comevz8GjgTibM",
  17815.           "id": "UgxUdMWiPNCqjFcNmz54AaABAg",
  17816.           "snippet": {
  17817.             "videoId": "atnSTtiWU5E",
  17818.             "textDisplay": "@jcattera Dumb comment!",
  17819.             "textOriginal": "@jcattera Dumb comment!",
  17820.             "authorDisplayName": "YouDuck2345",
  17821.             "authorChannelUrl": "http://www.youtube.com/channel/UC8QTJZvFOKKLiiomOEs86Aw",
  17822.             "authorChannelId": {
  17823.               "value": "UC8QTJZvFOKKLiiomOEs86Aw"
  17824.             },
  17825.             "canRate": true,
  17826.             "viewerRating": "none",
  17827.             "likeCount": 0,
  17828.             "publishedAt": "2011-03-15T00:33:44Z",
  17829.             "updatedAt": "2011-03-15T00:33:44Z"
  17830.           }
  17831.         },
  17832.         "canReply": true,
  17833.         "totalReplyCount": 0,
  17834.         "isPublic": true
  17835.       }
  17836.     },
  17837.     {
  17838.       "kind": "youtube#commentThread",
  17839.       "etag": "5gbCEkNB1Gh2q_LHfw8xw4YFjnQ",
  17840.       "id": "UgxRwWEeaFn1ZjzQged4AaABAg",
  17841.       "snippet": {
  17842.         "videoId": "atnSTtiWU5E",
  17843.         "topLevelComment": {
  17844.           "kind": "youtube#comment",
  17845.           "etag": "1b7XPrYW3_Lhj_1Lg6OGtSr-HJ4",
  17846.           "id": "UgxRwWEeaFn1ZjzQged4AaABAg",
  17847.           "snippet": {
  17848.             "videoId": "atnSTtiWU5E",
  17849.             "textDisplay": "@Bandpuffs Sorry bronie but its not a family show its exslucive for manly men",
  17850.             "textOriginal": "@Bandpuffs Sorry bronie but its not a family show its exslucive for manly men",
  17851.             "authorDisplayName": "ImSuchaGamer",
  17852.             "authorChannelUrl": "http://www.youtube.com/channel/UCl5iuCg5Z5nj4BHdwTmZkFA",
  17853.             "authorChannelId": {
  17854.               "value": "UCl5iuCg5Z5nj4BHdwTmZkFA"
  17855.             },
  17856.             "canRate": true,
  17857.             "viewerRating": "none",
  17858.             "likeCount": 0,
  17859.             "publishedAt": "2011-03-14T21:17:36Z",
  17860.             "updatedAt": "2011-03-14T21:17:36Z"
  17861.           }
  17862.         },
  17863.         "canReply": true,
  17864.         "totalReplyCount": 0,
  17865.         "isPublic": true
  17866.       }
  17867.     },
  17868.     {
  17869.       "kind": "youtube#commentThread",
  17870.       "etag": "3Bzj9bhqucTvvWSK6G1rnmCdVoo",
  17871.       "id": "UgyVEzh_3HVglKefA1V4AaABAg",
  17872.       "snippet": {
  17873.         "videoId": "atnSTtiWU5E",
  17874.         "topLevelComment": {
  17875.           "kind": "youtube#comment",
  17876.           "etag": "Okg26uOLeGOoMqRduBEzMuiTkyc",
  17877.           "id": "UgyVEzh_3HVglKefA1V4AaABAg",
  17878.           "snippet": {
  17879.             "videoId": "atnSTtiWU5E",
  17880.             "textDisplay": "Any word on if Eurobeat Brony's working on one for Cutie Mark Crusaders theme?",
  17881.             "textOriginal": "Any word on if Eurobeat Brony's working on one for Cutie Mark Crusaders theme?",
  17882.             "authorDisplayName": "MikeOShay",
  17883.             "authorChannelUrl": "http://www.youtube.com/channel/UCw-Z1TgQHz9NikYUoXQSsPA",
  17884.             "authorChannelId": {
  17885.               "value": "UCw-Z1TgQHz9NikYUoXQSsPA"
  17886.             },
  17887.             "canRate": true,
  17888.             "viewerRating": "none",
  17889.             "likeCount": 0,
  17890.             "publishedAt": "2011-03-13T10:41:23Z",
  17891.             "updatedAt": "2011-03-13T10:41:23Z"
  17892.           }
  17893.         },
  17894.         "canReply": true,
  17895.         "totalReplyCount": 0,
  17896.         "isPublic": true
  17897.       }
  17898.     },
  17899.     {
  17900.       "kind": "youtube#commentThread",
  17901.       "etag": "YM0XiS___t0Q4-rw2gyP3SEJ7Q4",
  17902.       "id": "UgzbdtkmoML_RLZ06rt4AaABAg",
  17903.       "snippet": {
  17904.         "videoId": "atnSTtiWU5E",
  17905.         "topLevelComment": {
  17906.           "kind": "youtube#comment",
  17907.           "etag": "t6XwJLCIHheGC-3QzvhW8Ru_LV4",
  17908.           "id": "UgzbdtkmoML_RLZ06rt4AaABAg",
  17909.           "snippet": {
  17910.             "videoId": "atnSTtiWU5E",
  17911.             "textDisplay": "Dumb video!",
  17912.             "textOriginal": "Dumb video!",
  17913.             "authorDisplayName": "jcattera",
  17914.             "authorChannelUrl": "http://www.youtube.com/channel/UCMFMv4r5cyFM31uquMvx3Lg",
  17915.             "authorChannelId": {
  17916.               "value": "UCMFMv4r5cyFM31uquMvx3Lg"
  17917.             },
  17918.             "canRate": true,
  17919.             "viewerRating": "none",
  17920.             "likeCount": 0,
  17921.             "publishedAt": "2011-03-13T00:22:00Z",
  17922.             "updatedAt": "2011-03-13T00:22:00Z"
  17923.           }
  17924.         },
  17925.         "canReply": true,
  17926.         "totalReplyCount": 0,
  17927.         "isPublic": true
  17928.       }
  17929.     },
  17930.     {
  17931.       "kind": "youtube#commentThread",
  17932.       "etag": "ubugkHgTK79-6LL5ZEJ5j2GDasA",
  17933.       "id": "UgwZrF2E32AD3ykz1kp4AaABAg",
  17934.       "snippet": {
  17935.         "videoId": "atnSTtiWU5E",
  17936.         "topLevelComment": {
  17937.           "kind": "youtube#comment",
  17938.           "etag": "9hNPcEcBZ2MWzb2WGJWUJQGytos",
  17939.           "id": "UgwZrF2E32AD3ykz1kp4AaABAg",
  17940.           "snippet": {
  17941.             "videoId": "atnSTtiWU5E",
  17942.             "textDisplay": "The song reminds me so much of a stage theme from Initial D.\r\nNo one ever beats the Evil Enchantress and her 86.",
  17943.             "textOriginal": "The song reminds me so much of a stage theme from Initial D.\r\nNo one ever beats the Evil Enchantress and her 86.",
  17944.             "authorDisplayName": "Brother Orin",
  17945.             "authorChannelUrl": "http://www.youtube.com/channel/UCIgw3JviaZWQOQmaW47CoZg",
  17946.             "authorChannelId": {
  17947.               "value": "UCIgw3JviaZWQOQmaW47CoZg"
  17948.             },
  17949.             "canRate": true,
  17950.             "viewerRating": "none",
  17951.             "likeCount": 1,
  17952.             "publishedAt": "2011-03-11T22:04:00Z",
  17953.             "updatedAt": "2011-03-11T22:04:00Z"
  17954.           }
  17955.         },
  17956.         "canReply": true,
  17957.         "totalReplyCount": 0,
  17958.         "isPublic": true
  17959.       }
  17960.     },
  17961.     {
  17962.       "kind": "youtube#commentThread",
  17963.       "etag": "Qwfj5QBkZS6JIdC35nDJa84hkj4",
  17964.       "id": "UgzNt3K34ndHONq4fbd4AaABAg",
  17965.       "snippet": {
  17966.         "videoId": "atnSTtiWU5E",
  17967.         "topLevelComment": {
  17968.           "kind": "youtube#comment",
  17969.           "etag": "_VCQkICcjYnISNy3edvLNnr2KUY",
  17970.           "id": "UgzNt3K34ndHONq4fbd4AaABAg",
  17971.           "snippet": {
  17972.             "videoId": "atnSTtiWU5E",
  17973.             "textDisplay": "@TheHammer117 YESZ! SHOW ME YOUR HOOVES!",
  17974.             "textOriginal": "@TheHammer117 YESZ! SHOW ME YOUR HOOVES!",
  17975.             "authorDisplayName": "Kalas17",
  17976.             "authorChannelUrl": "http://www.youtube.com/channel/UCC9J71HdV3KPTKLvpWG2B7g",
  17977.             "authorChannelId": {
  17978.               "value": "UCC9J71HdV3KPTKLvpWG2B7g"
  17979.             },
  17980.             "canRate": true,
  17981.             "viewerRating": "none",
  17982.             "likeCount": 0,
  17983.             "publishedAt": "2011-03-11T00:59:07Z",
  17984.             "updatedAt": "2011-03-11T00:59:07Z"
  17985.           }
  17986.         },
  17987.         "canReply": true,
  17988.         "totalReplyCount": 0,
  17989.         "isPublic": true
  17990.       }
  17991.     },
  17992.     {
  17993.       "kind": "youtube#commentThread",
  17994.       "etag": "UCpspSNwqX0QX3u10baeUWjysSQ",
  17995.       "id": "UgyXzdtyGdjcaoXnYwV4AaABAg",
  17996.       "snippet": {
  17997.         "videoId": "atnSTtiWU5E",
  17998.         "topLevelComment": {
  17999.           "kind": "youtube#comment",
  18000.           "etag": "BmRHiElwbRav5zieKkB9KcKM1BY",
  18001.           "id": "UgyXzdtyGdjcaoXnYwV4AaABAg",
  18002.           "snippet": {
  18003.             "videoId": "atnSTtiWU5E",
  18004.             "textDisplay": "Captain Pony: PONYYY PAWWWNCH!!!!",
  18005.             "textOriginal": "Captain Pony: PONYYY PAWWWNCH!!!!",
  18006.             "authorDisplayName": "Devnul",
  18007.             "authorChannelUrl": "http://www.youtube.com/channel/UC7dhL8enALoQTlGdXWurBOQ",
  18008.             "authorChannelId": {
  18009.               "value": "UC7dhL8enALoQTlGdXWurBOQ"
  18010.             },
  18011.             "canRate": true,
  18012.             "viewerRating": "none",
  18013.             "likeCount": 0,
  18014.             "publishedAt": "2011-03-10T20:54:31Z",
  18015.             "updatedAt": "2011-03-10T20:54:31Z"
  18016.           }
  18017.         },
  18018.         "canReply": true,
  18019.         "totalReplyCount": 0,
  18020.         "isPublic": true
  18021.       }
  18022.     },
  18023.     {
  18024.       "kind": "youtube#commentThread",
  18025.       "etag": "PlJmTD0SXiCrj-AUF6Z45mvxXqI",
  18026.       "id": "UgxWJ-aeq-36qPx9C4F4AaABAg",
  18027.       "snippet": {
  18028.         "videoId": "atnSTtiWU5E",
  18029.         "topLevelComment": {
  18030.           "kind": "youtube#comment",
  18031.           "etag": "cTZwsig2pDBJkNRMjPitNq5AZVE",
  18032.           "id": "UgxWJ-aeq-36qPx9C4F4AaABAg",
  18033.           "snippet": {
  18034.             "videoId": "atnSTtiWU5E",
  18035.             "textDisplay": "sounds like something you would hear in a video game...",
  18036.             "textOriginal": "sounds like something you would hear in a video game...",
  18037.             "authorDisplayName": "Tea-Dust",
  18038.             "authorChannelUrl": "http://www.youtube.com/channel/UCGmgq40u_fXIctTntvBtOJQ",
  18039.             "authorChannelId": {
  18040.               "value": "UCGmgq40u_fXIctTntvBtOJQ"
  18041.             },
  18042.             "canRate": true,
  18043.             "viewerRating": "none",
  18044.             "likeCount": 0,
  18045.             "publishedAt": "2011-03-09T13:52:04Z",
  18046.             "updatedAt": "2011-03-09T13:52:04Z"
  18047.           }
  18048.         },
  18049.         "canReply": true,
  18050.         "totalReplyCount": 0,
  18051.         "isPublic": true
  18052.       }
  18053.     },
  18054.     {
  18055.       "kind": "youtube#commentThread",
  18056.       "etag": "p1g7CqbgfrId_tQg6fT7_hBkMHI",
  18057.       "id": "UgyIdqPXaypPUSaCetN4AaABAg",
  18058.       "snippet": {
  18059.         "videoId": "atnSTtiWU5E",
  18060.         "topLevelComment": {
  18061.           "kind": "youtube#comment",
  18062.           "etag": "nvCLyURpI0ArtCL5AdRDhPvAopM",
  18063.           "id": "UgyIdqPXaypPUSaCetN4AaABAg",
  18064.           "snippet": {
  18065.             "videoId": "atnSTtiWU5E",
  18066.             "textDisplay": "Shes an evil enchantress who does evil dances......",
  18067.             "textOriginal": "Shes an evil enchantress who does evil dances......",
  18068.             "authorDisplayName": "TakinYoCup",
  18069.             "authorChannelUrl": "http://www.youtube.com/channel/UC5dQ3t9JooFp9eXaiGxi-0g",
  18070.             "authorChannelId": {
  18071.               "value": "UC5dQ3t9JooFp9eXaiGxi-0g"
  18072.             },
  18073.             "canRate": true,
  18074.             "viewerRating": "none",
  18075.             "likeCount": 0,
  18076.             "publishedAt": "2011-03-09T01:59:15Z",
  18077.             "updatedAt": "2011-03-09T01:59:15Z"
  18078.           }
  18079.         },
  18080.         "canReply": true,
  18081.         "totalReplyCount": 0,
  18082.         "isPublic": true
  18083.       }
  18084.     },
  18085.     {
  18086.       "kind": "youtube#commentThread",
  18087.       "etag": "THfY_OWubhUWpZgWf8fIU0OQn9s",
  18088.       "id": "Ugz4OhwVuGjTyW9_nc14AaABAg",
  18089.       "snippet": {
  18090.         "videoId": "atnSTtiWU5E",
  18091.         "topLevelComment": {
  18092.           "kind": "youtube#comment",
  18093.           "etag": "6fluWCt0cVyNHIEQaoWTRAhE2VQ",
  18094.           "id": "Ugz4OhwVuGjTyW9_nc14AaABAg",
  18095.           "snippet": {
  18096.             "videoId": "atnSTtiWU5E",
  18097.             "textDisplay": "Christ, this is the one thing keeping me going. I have do a research project that's due at 9AM and it's 3:30AM. I likely won't get any sleep tonight, and hopefully this will get me pumped up enough to pull it off.",
  18098.             "textOriginal": "Christ, this is the one thing keeping me going. I have do a research project that's due at 9AM and it's 3:30AM. I likely won't get any sleep tonight, and hopefully this will get me pumped up enough to pull it off.",
  18099.             "authorDisplayName": "MikeOShay",
  18100.             "authorChannelUrl": "http://www.youtube.com/channel/UCw-Z1TgQHz9NikYUoXQSsPA",
  18101.             "authorChannelId": {
  18102.               "value": "UCw-Z1TgQHz9NikYUoXQSsPA"
  18103.             },
  18104.             "canRate": true,
  18105.             "viewerRating": "none",
  18106.             "likeCount": 0,
  18107.             "publishedAt": "2011-03-08T11:34:39Z",
  18108.             "updatedAt": "2011-03-08T11:34:39Z"
  18109.           }
  18110.         },
  18111.         "canReply": true,
  18112.         "totalReplyCount": 0,
  18113.         "isPublic": true
  18114.       }
  18115.     },
  18116.     {
  18117.       "kind": "youtube#commentThread",
  18118.       "etag": "rPZoPlh0jEsPZjqSFJUxVa_o6RY",
  18119.       "id": "UgysW9a_zUNFISi7PpZ4AaABAg",
  18120.       "snippet": {
  18121.         "videoId": "atnSTtiWU5E",
  18122.         "topLevelComment": {
  18123.           "kind": "youtube#comment",
  18124.           "etag": "l7JBm2sCwCnjs4V6FPW0k5oPe2o",
  18125.           "id": "UgysW9a_zUNFISi7PpZ4AaABAg",
  18126.           "snippet": {
  18127.             "videoId": "atnSTtiWU5E",
  18128.             "textDisplay": "@dvdp21 \n\nSooooo... watch out!(?)",
  18129.             "textOriginal": "@dvdp21 \n\nSooooo... watch out!(?)",
  18130.             "authorDisplayName": "Neos Avias",
  18131.             "authorChannelUrl": "http://www.youtube.com/channel/UCOHn12A5d5EM5Wj8wfHojqw",
  18132.             "authorChannelId": {
  18133.               "value": "UCOHn12A5d5EM5Wj8wfHojqw"
  18134.             },
  18135.             "canRate": true,
  18136.             "viewerRating": "none",
  18137.             "likeCount": 0,
  18138.             "publishedAt": "2011-03-08T06:39:07Z",
  18139.             "updatedAt": "2011-03-08T06:39:07Z"
  18140.           }
  18141.         },
  18142.         "canReply": true,
  18143.         "totalReplyCount": 0,
  18144.         "isPublic": true
  18145.       }
  18146.     },
  18147.     {
  18148.       "kind": "youtube#commentThread",
  18149.       "etag": "CXuxcJeKF5nwsq389am_j5DRJO0",
  18150.       "id": "UgwyGc1T06lyFOf0pux4AaABAg",
  18151.       "snippet": {
  18152.         "videoId": "atnSTtiWU5E",
  18153.         "topLevelComment": {
  18154.           "kind": "youtube#comment",
  18155.           "etag": "F0YlwdwgvnMPXKjbiOsYDbyKxPY",
  18156.           "id": "UgwyGc1T06lyFOf0pux4AaABAg",
  18157.           "snippet": {
  18158.             "videoId": "atnSTtiWU5E",
  18159.             "textDisplay": "@sexydick1996 His wiki article can probably explain it a lot better than I can. In short, he's a singer/producer who's renowned for his eurobeat stuff.",
  18160.             "textOriginal": "@sexydick1996 His wiki article can probably explain it a lot better than I can. In short, he's a singer/producer who's renowned for his eurobeat stuff.",
  18161.             "authorDisplayName": "w",
  18162.             "authorChannelUrl": "http://www.youtube.com/channel/UCHhhCKL-RVX5lYET34Mamgg",
  18163.             "authorChannelId": {
  18164.               "value": "UCHhhCKL-RVX5lYET34Mamgg"
  18165.             },
  18166.             "canRate": true,
  18167.             "viewerRating": "none",
  18168.             "likeCount": 0,
  18169.             "publishedAt": "2011-03-07T21:13:27Z",
  18170.             "updatedAt": "2011-03-07T21:13:27Z"
  18171.           }
  18172.         },
  18173.         "canReply": true,
  18174.         "totalReplyCount": 0,
  18175.         "isPublic": true
  18176.       }
  18177.     },
  18178.     {
  18179.       "kind": "youtube#commentThread",
  18180.       "etag": "zp7t2fbK0BAUGaDrGlGSv7730Wc",
  18181.       "id": "UgyR96pvrwLkCIIi8DB4AaABAg",
  18182.       "snippet": {
  18183.         "videoId": "atnSTtiWU5E",
  18184.         "topLevelComment": {
  18185.           "kind": "youtube#comment",
  18186.           "etag": "_5EowxoPobGUijlhw3hYSVL4EwU",
  18187.           "id": "UgyR96pvrwLkCIIi8DB4AaABAg",
  18188.           "snippet": {
  18189.             "videoId": "atnSTtiWU5E",
  18190.             "textDisplay": "I half-expected to hear Dave Rodgers singing this.\n\nWHY HASN'T THIS HAPPENED YET",
  18191.             "textOriginal": "I half-expected to hear Dave Rodgers singing this.\n\nWHY HASN'T THIS HAPPENED YET",
  18192.             "authorDisplayName": "w",
  18193.             "authorChannelUrl": "http://www.youtube.com/channel/UCHhhCKL-RVX5lYET34Mamgg",
  18194.             "authorChannelId": {
  18195.               "value": "UCHhhCKL-RVX5lYET34Mamgg"
  18196.             },
  18197.             "canRate": true,
  18198.             "viewerRating": "none",
  18199.             "likeCount": 1,
  18200.             "publishedAt": "2011-03-07T06:11:53Z",
  18201.             "updatedAt": "2011-03-07T06:11:53Z"
  18202.           }
  18203.         },
  18204.         "canReply": true,
  18205.         "totalReplyCount": 0,
  18206.         "isPublic": true
  18207.       }
  18208.     },
  18209.     {
  18210.       "kind": "youtube#commentThread",
  18211.       "etag": "gVCaS0c4kP6eZN_rP9UuUsZPsg8",
  18212.       "id": "UgxHFkRAD0G4cYALNtB4AaABAg",
  18213.       "snippet": {
  18214.         "videoId": "atnSTtiWU5E",
  18215.         "topLevelComment": {
  18216.           "kind": "youtube#comment",
  18217.           "etag": "N_hPwAnBkhZ9fn1BLcXYS4CDGVU",
  18218.           "id": "UgxHFkRAD0G4cYALNtB4AaABAg",
  18219.           "snippet": {
  18220.             "videoId": "atnSTtiWU5E",
  18221.             "textDisplay": "this song works SO well when you have it in the back ground while beating some ass, great work :D",
  18222.             "textOriginal": "this song works SO well when you have it in the back ground while beating some ass, great work :D",
  18223.             "authorDisplayName": "Lunar Templar",
  18224.             "authorChannelUrl": "http://www.youtube.com/channel/UCi2WWiWOA4z22WrNDJf37fg",
  18225.             "authorChannelId": {
  18226.               "value": "UCi2WWiWOA4z22WrNDJf37fg"
  18227.             },
  18228.             "canRate": true,
  18229.             "viewerRating": "none",
  18230.             "likeCount": 0,
  18231.             "publishedAt": "2011-03-05T02:58:20Z",
  18232.             "updatedAt": "2011-03-05T02:58:20Z"
  18233.           }
  18234.         },
  18235.         "canReply": true,
  18236.         "totalReplyCount": 0,
  18237.         "isPublic": true
  18238.       }
  18239.     },
  18240.     {
  18241.       "kind": "youtube#commentThread",
  18242.       "etag": "GsfILbWpgVbBPmpG6NH_YhQZv-0",
  18243.       "id": "UgyDEVlpgnSEq8ccxuh4AaABAg",
  18244.       "snippet": {
  18245.         "videoId": "atnSTtiWU5E",
  18246.         "topLevelComment": {
  18247.           "kind": "youtube#comment",
  18248.           "etag": "wd2T6vcRYJQJnejerzLRbUcBP2Y",
  18249.           "id": "UgyDEVlpgnSEq8ccxuh4AaABAg",
  18250.           "snippet": {
  18251.             "videoId": "atnSTtiWU5E",
  18252.             "textDisplay": "We need a Flutterguy Vocal version of this song. Or some crazy shit like that.",
  18253.             "textOriginal": "We need a Flutterguy Vocal version of this song. Or some crazy shit like that.",
  18254.             "authorDisplayName": "AiesSkah",
  18255.             "authorChannelUrl": "http://www.youtube.com/channel/UCIg-iFPZeShJcMWGZ8Ykwrg",
  18256.             "authorChannelId": {
  18257.               "value": "UCIg-iFPZeShJcMWGZ8Ykwrg"
  18258.             },
  18259.             "canRate": true,
  18260.             "viewerRating": "none",
  18261.             "likeCount": 0,
  18262.             "publishedAt": "2011-03-02T01:59:08Z",
  18263.             "updatedAt": "2011-03-02T01:59:08Z"
  18264.           }
  18265.         },
  18266.         "canReply": true,
  18267.         "totalReplyCount": 0,
  18268.         "isPublic": true
  18269.       }
  18270.     },
  18271.     {
  18272.       "kind": "youtube#commentThread",
  18273.       "etag": "Somjq0NRRiTsGktloBDqaFV0Lgk",
  18274.       "id": "UgxcXoKWIPf9Y0XSNLl4AaABAg",
  18275.       "snippet": {
  18276.         "videoId": "atnSTtiWU5E",
  18277.         "topLevelComment": {
  18278.           "kind": "youtube#comment",
  18279.           "etag": "_9MAhSZ6QF0GJ-dXT4EDAGOdPUs",
  18280.           "id": "UgxcXoKWIPf9Y0XSNLl4AaABAg",
  18281.           "snippet": {
  18282.             "videoId": "atnSTtiWU5E",
  18283.             "textDisplay": "Now i see what they mean...by 2012 coming...When the world accepts ponies. Surely it is the end of everything.  I am not making fun of them whatsoever, you like what you want it's not gonna matter to me.  Nothing makes sense anymore when these damn ponies come outta left field and just suddenly make everything not have sense to me anymore.  Well in the end enjoy your ponies people if you like it then ya like it.  ",
  18284.             "textOriginal": "Now i see what they mean...by 2012 coming...When the world accepts ponies. Surely it is the end of everything.  I am not making fun of them whatsoever, you like what you want it's not gonna matter to me.  Nothing makes sense anymore when these damn ponies come outta left field and just suddenly make everything not have sense to me anymore.  Well in the end enjoy your ponies people if you like it then ya like it.  ",
  18285.             "authorDisplayName": "Freki Vaughn",
  18286.             "authorChannelUrl": "http://www.youtube.com/channel/UCdJUZnkko56qSJMTIfrX1fQ",
  18287.             "authorChannelId": {
  18288.               "value": "UCdJUZnkko56qSJMTIfrX1fQ"
  18289.             },
  18290.             "canRate": true,
  18291.             "viewerRating": "none",
  18292.             "likeCount": 0,
  18293.             "publishedAt": "2011-02-26T17:30:56Z",
  18294.             "updatedAt": "2011-02-26T17:30:56Z"
  18295.           }
  18296.         },
  18297.         "canReply": true,
  18298.         "totalReplyCount": 0,
  18299.         "isPublic": true
  18300.       }
  18301.     },
  18302.     {
  18303.       "kind": "youtube#commentThread",
  18304.       "etag": "ulwHvdzMetLAn4JyByDmtTYgIuw",
  18305.       "id": "UgyKF829mrR-0VwKLvx4AaABAg",
  18306.       "snippet": {
  18307.         "videoId": "atnSTtiWU5E",
  18308.         "topLevelComment": {
  18309.           "kind": "youtube#comment",
  18310.           "etag": "0Q0WIVs0hCr6aH_WD98M_nHEWVg",
  18311.           "id": "UgyKF829mrR-0VwKLvx4AaABAg",
  18312.           "snippet": {
  18313.             "videoId": "atnSTtiWU5E",
  18314.             "textDisplay": "I'm totally putting this on Brawl...",
  18315.             "textOriginal": "I'm totally putting this on Brawl...",
  18316.             "authorDisplayName": "supersaiyanmikito",
  18317.             "authorChannelUrl": "http://www.youtube.com/channel/UCwh48wKUiGmVs9vDzgalmaQ",
  18318.             "authorChannelId": {
  18319.               "value": "UCwh48wKUiGmVs9vDzgalmaQ"
  18320.             },
  18321.             "canRate": true,
  18322.             "viewerRating": "none",
  18323.             "likeCount": 0,
  18324.             "publishedAt": "2011-02-26T07:18:17Z",
  18325.             "updatedAt": "2011-02-26T07:18:17Z"
  18326.           }
  18327.         },
  18328.         "canReply": true,
  18329.         "totalReplyCount": 0,
  18330.         "isPublic": true
  18331.       }
  18332.     },
  18333.     {
  18334.       "kind": "youtube#commentThread",
  18335.       "etag": "bjLtdd9FZoY8ovuqSsPKIkplXu0",
  18336.       "id": "Ugw-2FJ2xB3tpskJ8V54AaABAg",
  18337.       "snippet": {
  18338.         "videoId": "atnSTtiWU5E",
  18339.         "topLevelComment": {
  18340.           "kind": "youtube#comment",
  18341.           "etag": "XU_bBgXs8i48UImWqc00E0ZBuL4",
  18342.           "id": "Ugw-2FJ2xB3tpskJ8V54AaABAg",
  18343.           "snippet": {
  18344.             "videoId": "atnSTtiWU5E",
  18345.             "textDisplay": "She's an evil enchantress\r\nShe does evil dances\r\nAnd if you look deep in her eyes\r\nshe puts you in trances\r\nThen what will she do?\r\nShe'll make an evil brew\r\nThen eat you all up\r\nIn a big tasty stew\r\nSoooooooo WATCH OUT!",
  18346.             "textOriginal": "She's an evil enchantress\r\nShe does evil dances\r\nAnd if you look deep in her eyes\r\nshe puts you in trances\r\nThen what will she do?\r\nShe'll make an evil brew\r\nThen eat you all up\r\nIn a big tasty stew\r\nSoooooooo WATCH OUT!",
  18347.             "authorDisplayName": "angelfox123456",
  18348.             "authorChannelUrl": "http://www.youtube.com/channel/UCFtceEdfPCtLVstD5EdAPaQ",
  18349.             "authorChannelId": {
  18350.               "value": "UCFtceEdfPCtLVstD5EdAPaQ"
  18351.             },
  18352.             "canRate": true,
  18353.             "viewerRating": "none",
  18354.             "likeCount": 0,
  18355.             "publishedAt": "2011-02-26T06:11:53Z",
  18356.             "updatedAt": "2011-02-26T06:11:53Z"
  18357.           }
  18358.         },
  18359.         "canReply": true,
  18360.         "totalReplyCount": 0,
  18361.         "isPublic": true
  18362.       }
  18363.     },
  18364.     {
  18365.       "kind": "youtube#commentThread",
  18366.       "etag": "RexaoP3Ef1Dth3SB6wsEd7WC-Bo",
  18367.       "id": "Ugzq4E6BEsUmeeraoUx4AaABAg",
  18368.       "snippet": {
  18369.         "videoId": "atnSTtiWU5E",
  18370.         "topLevelComment": {
  18371.           "kind": "youtube#comment",
  18372.           "etag": "u2FYkkbA8Ec6h8hcd4FFkftBw4Y",
  18373.           "id": "Ugzq4E6BEsUmeeraoUx4AaABAg",
  18374.           "snippet": {
  18375.             "videoId": "atnSTtiWU5E",
  18376.             "textDisplay": "I think... my head is about to explode from EXTREME AMOUNTS OF EUROBEAT!",
  18377.             "textOriginal": "I think... my head is about to explode from EXTREME AMOUNTS OF EUROBEAT!",
  18378.             "authorDisplayName": "KAHATO",
  18379.             "authorChannelUrl": "http://www.youtube.com/channel/UCCw_iO6fv5lsnKRWrm6Nq9g",
  18380.             "authorChannelId": {
  18381.               "value": "UCCw_iO6fv5lsnKRWrm6Nq9g"
  18382.             },
  18383.             "canRate": true,
  18384.             "viewerRating": "none",
  18385.             "likeCount": 0,
  18386.             "publishedAt": "2011-02-26T00:21:49Z",
  18387.             "updatedAt": "2011-02-26T00:21:49Z"
  18388.           }
  18389.         },
  18390.         "canReply": true,
  18391.         "totalReplyCount": 0,
  18392.         "isPublic": true
  18393.       }
  18394.     },
  18395.     {
  18396.       "kind": "youtube#commentThread",
  18397.       "etag": "zKm-RPcrjKat5FDdacV47ZK02DE",
  18398.       "id": "UgwCvUa1dCFK5YkjURp4AaABAg",
  18399.       "snippet": {
  18400.         "videoId": "atnSTtiWU5E",
  18401.         "topLevelComment": {
  18402.           "kind": "youtube#comment",
  18403.           "etag": "5AHMDu_ZIYJ4yrxQpRra4K0xIXo",
  18404.           "id": "UgwCvUa1dCFK5YkjURp4AaABAg",
  18405.           "snippet": {
  18406.             "videoId": "atnSTtiWU5E",
  18407.             "textDisplay": "We need to get this shit playing in clubs",
  18408.             "textOriginal": "We need to get this shit playing in clubs",
  18409.             "authorDisplayName": "monseurkez",
  18410.             "authorChannelUrl": "http://www.youtube.com/channel/UC3pclnA8NRVW52cRcoZsYqg",
  18411.             "authorChannelId": {
  18412.               "value": "UC3pclnA8NRVW52cRcoZsYqg"
  18413.             },
  18414.             "canRate": true,
  18415.             "viewerRating": "none",
  18416.             "likeCount": 0,
  18417.             "publishedAt": "2011-02-25T18:04:55Z",
  18418.             "updatedAt": "2011-02-25T18:04:55Z"
  18419.           }
  18420.         },
  18421.         "canReply": true,
  18422.         "totalReplyCount": 0,
  18423.         "isPublic": true
  18424.       }
  18425.     },
  18426.     {
  18427.       "kind": "youtube#commentThread",
  18428.       "etag": "lwzu_a_Mh5SNpKMeyTYg2puxLto",
  18429.       "id": "Ugwl7npWWlW-oVoGTZ94AaABAg",
  18430.       "snippet": {
  18431.         "videoId": "atnSTtiWU5E",
  18432.         "topLevelComment": {
  18433.           "kind": "youtube#comment",
  18434.           "etag": "meCrzzrmckQ7L7b7LCQk1Nwo9Qc",
  18435.           "id": "Ugwl7npWWlW-oVoGTZ94AaABAg",
  18436.           "snippet": {
  18437.             "videoId": "atnSTtiWU5E",
  18438.             "textDisplay": "Totally agree, Sonic! This is my second favorite (you can't beat Ghostie). It's stupid danceable, and with so little to start with!",
  18439.             "textOriginal": "Totally agree, Sonic! This is my second favorite (you can't beat Ghostie). It's stupid danceable, and with so little to start with!",
  18440.             "authorDisplayName": "AubriGryphon",
  18441.             "authorChannelUrl": "http://www.youtube.com/channel/UCsuwZ5wN8pp44SIFLEtVDBQ",
  18442.             "authorChannelId": {
  18443.               "value": "UCsuwZ5wN8pp44SIFLEtVDBQ"
  18444.             },
  18445.             "canRate": true,
  18446.             "viewerRating": "none",
  18447.             "likeCount": 0,
  18448.             "publishedAt": "2011-02-24T18:42:14Z",
  18449.             "updatedAt": "2011-02-24T18:42:14Z"
  18450.           }
  18451.         },
  18452.         "canReply": true,
  18453.         "totalReplyCount": 0,
  18454.         "isPublic": true
  18455.       }
  18456.     },
  18457.     {
  18458.       "kind": "youtube#commentThread",
  18459.       "etag": "r0rsI3f3ZLue7VLnPWkFumM5KoY",
  18460.       "id": "Ugy_gOoLucrc1Hck9EZ4AaABAg",
  18461.       "snippet": {
  18462.         "videoId": "atnSTtiWU5E",
  18463.         "topLevelComment": {
  18464.           "kind": "youtube#comment",
  18465.           "etag": "Ud263Tl5LA2tsm2cZwaWJouQWbE",
  18466.           "id": "Ugy_gOoLucrc1Hck9EZ4AaABAg",
  18467.           "snippet": {
  18468.             "videoId": "atnSTtiWU5E",
  18469.             "textDisplay": "How does he manage to create such an epic song from what little he had to go by o__o",
  18470.             "textOriginal": "How does he manage to create such an epic song from what little he had to go by o__o",
  18471.             "authorDisplayName": "Tommy",
  18472.             "authorChannelUrl": "http://www.youtube.com/channel/UCcBTInJF8V4qPMfhLCYHE8w",
  18473.             "authorChannelId": {
  18474.               "value": "UCcBTInJF8V4qPMfhLCYHE8w"
  18475.             },
  18476.             "canRate": true,
  18477.             "viewerRating": "none",
  18478.             "likeCount": 0,
  18479.             "publishedAt": "2011-02-24T01:23:00Z",
  18480.             "updatedAt": "2011-02-24T01:23:00Z"
  18481.           }
  18482.         },
  18483.         "canReply": true,
  18484.         "totalReplyCount": 0,
  18485.         "isPublic": true
  18486.       }
  18487.     },
  18488.     {
  18489.       "kind": "youtube#commentThread",
  18490.       "etag": "IHxI-X9V7D5f4Gbzd_4AdseV-Uk",
  18491.       "id": "Ugxpi8rLgKQSHSl6ITV4AaABAg",
  18492.       "snippet": {
  18493.         "videoId": "atnSTtiWU5E",
  18494.         "topLevelComment": {
  18495.           "kind": "youtube#comment",
  18496.           "etag": "hhnEvtXvWeqeNTEou7k8pUEWA7w",
  18497.           "id": "Ugxpi8rLgKQSHSl6ITV4AaABAg",
  18498.           "snippet": {
  18499.             "videoId": "atnSTtiWU5E",
  18500.             "textDisplay": "Strangely enough, the mental image I get from this is basically a MLPFiM themed version of Pokemon Puzzle League: Twilight Sparkle VS Zecora with the backdrop being the area just outside Zecora's home in Everfree Forest.\n\n\nAhahha, imagine that? I bet Zecora would be dropping rhymes every time she gets a chain. (Oh darn it now I want this game to be made.)",
  18501.             "textOriginal": "Strangely enough, the mental image I get from this is basically a MLPFiM themed version of Pokemon Puzzle League: Twilight Sparkle VS Zecora with the backdrop being the area just outside Zecora's home in Everfree Forest.\n\n\nAhahha, imagine that? I bet Zecora would be dropping rhymes every time she gets a chain. (Oh darn it now I want this game to be made.)",
  18502.             "authorDisplayName": "Ann M White",
  18503.             "authorChannelUrl": "http://www.youtube.com/channel/UCmTryG5mN-QKaVsjvjlT5-w",
  18504.             "authorChannelId": {
  18505.               "value": "UCmTryG5mN-QKaVsjvjlT5-w"
  18506.             },
  18507.             "canRate": true,
  18508.             "viewerRating": "none",
  18509.             "likeCount": 0,
  18510.             "publishedAt": "2011-02-21T14:55:33Z",
  18511.             "updatedAt": "2011-02-21T14:55:33Z"
  18512.           }
  18513.         },
  18514.         "canReply": true,
  18515.         "totalReplyCount": 0,
  18516.         "isPublic": true
  18517.       }
  18518.     },
  18519.     {
  18520.       "kind": "youtube#commentThread",
  18521.       "etag": "GAj2DBcZhReHRKdzADx9G8zGhBU",
  18522.       "id": "Ugx9DNoOx7rjBfB5W4B4AaABAg",
  18523.       "snippet": {
  18524.         "videoId": "atnSTtiWU5E",
  18525.         "topLevelComment": {
  18526.           "kind": "youtube#comment",
  18527.           "etag": "SFxw1QyDx1-F0WslnyClX40mW98",
  18528.           "id": "Ugx9DNoOx7rjBfB5W4B4AaABAg",
  18529.           "snippet": {
  18530.             "videoId": "atnSTtiWU5E",
  18531.             "textDisplay": "Holy crap this is awesome",
  18532.             "textOriginal": "Holy crap this is awesome",
  18533.             "authorDisplayName": "vevemon",
  18534.             "authorChannelUrl": "http://www.youtube.com/channel/UCswgzcA63Q3QK5Six54-82A",
  18535.             "authorChannelId": {
  18536.               "value": "UCswgzcA63Q3QK5Six54-82A"
  18537.             },
  18538.             "canRate": true,
  18539.             "viewerRating": "none",
  18540.             "likeCount": 0,
  18541.             "publishedAt": "2011-02-21T06:47:29Z",
  18542.             "updatedAt": "2011-02-21T06:47:29Z"
  18543.           }
  18544.         },
  18545.         "canReply": true,
  18546.         "totalReplyCount": 0,
  18547.         "isPublic": true
  18548.       }
  18549.     },
  18550.     {
  18551.       "kind": "youtube#commentThread",
  18552.       "etag": "Va1FswCLp2JKhP2Y-tNnlsyUBsQ",
  18553.       "id": "UgxG_0e_yevIyGrhBWp4AaABAg",
  18554.       "snippet": {
  18555.         "videoId": "atnSTtiWU5E",
  18556.         "topLevelComment": {
  18557.           "kind": "youtube#comment",
  18558.           "etag": "L3HyLUUNTSjGg7_7_BDgOp31ucA",
  18559.           "id": "UgxG_0e_yevIyGrhBWp4AaABAg",
  18560.           "snippet": {
  18561.             "videoId": "atnSTtiWU5E",
  18562.             "textDisplay": "@Takahashifan4ever Ain't no guy who did it. Lauren Faust is awesome either way.",
  18563.             "textOriginal": "@Takahashifan4ever Ain't no guy who did it. Lauren Faust is awesome either way.",
  18564.             "authorDisplayName": "Yuyuchan4ever",
  18565.             "authorChannelUrl": "http://www.youtube.com/channel/UCEI6NpqiESfKb7tbHq-caTQ",
  18566.             "authorChannelId": {
  18567.               "value": "UCEI6NpqiESfKb7tbHq-caTQ"
  18568.             },
  18569.             "canRate": true,
  18570.             "viewerRating": "none",
  18571.             "likeCount": 0,
  18572.             "publishedAt": "2011-02-21T04:25:29Z",
  18573.             "updatedAt": "2011-02-21T04:25:29Z"
  18574.           }
  18575.         },
  18576.         "canReply": true,
  18577.         "totalReplyCount": 0,
  18578.         "isPublic": true
  18579.       }
  18580.     },
  18581.     {
  18582.       "kind": "youtube#commentThread",
  18583.       "etag": "SESdrRVR6PqiSwHuBbvULB0BUdc",
  18584.       "id": "UgwCpl7Fy0xwj342wUR4AaABAg",
  18585.       "snippet": {
  18586.         "videoId": "atnSTtiWU5E",
  18587.         "topLevelComment": {
  18588.           "kind": "youtube#comment",
  18589.           "etag": "eIBE5e2gcdNzw7PbezoTM7js7Lg",
  18590.           "id": "UgwCpl7Fy0xwj342wUR4AaABAg",
  18591.           "snippet": {
  18592.             "videoId": "atnSTtiWU5E",
  18593.             "textDisplay": "I have to agree, a singer should be found and lyrics put to this song. I really wanna make a para routine for it just hearing the instrumental, and words would help. :D",
  18594.             "textOriginal": "I have to agree, a singer should be found and lyrics put to this song. I really wanna make a para routine for it just hearing the instrumental, and words would help. :D",
  18595.             "authorDisplayName": "Aazera",
  18596.             "authorChannelUrl": "http://www.youtube.com/channel/UC46f5I0ohrKf3BYcKdS1SBw",
  18597.             "authorChannelId": {
  18598.               "value": "UC46f5I0ohrKf3BYcKdS1SBw"
  18599.             },
  18600.             "canRate": true,
  18601.             "viewerRating": "none",
  18602.             "likeCount": 0,
  18603.             "publishedAt": "2011-02-20T14:29:49Z",
  18604.             "updatedAt": "2011-02-20T14:29:49Z"
  18605.           }
  18606.         },
  18607.         "canReply": true,
  18608.         "totalReplyCount": 0,
  18609.         "isPublic": true
  18610.       }
  18611.     },
  18612.     {
  18613.       "kind": "youtube#commentThread",
  18614.       "etag": "4knwEpItOTic4OzqKSMeLWJS0p4",
  18615.       "id": "UgwatCLdQI0iS6iIlGR4AaABAg",
  18616.       "snippet": {
  18617.         "videoId": "atnSTtiWU5E",
  18618.         "topLevelComment": {
  18619.           "kind": "youtube#comment",
  18620.           "etag": "0DzvEmnmhI0tg0iDsLFALEnEp_o",
  18621.           "id": "UgwatCLdQI0iS6iIlGR4AaABAg",
  18622.           "snippet": {
  18623.             "videoId": "atnSTtiWU5E",
  18624.             "textDisplay": "@Bandpuffs \n>mega man style mlp game\n\nthis needs to happen",
  18625.             "textOriginal": "@Bandpuffs \n\u003emega man style mlp game\n\nthis needs to happen",
  18626.             "authorDisplayName": "Patrick Moscatello",
  18627.             "authorChannelUrl": "http://www.youtube.com/channel/UC9aJSM5FE3lvakY9Q9Hd5Tg",
  18628.             "authorChannelId": {
  18629.               "value": "UC9aJSM5FE3lvakY9Q9Hd5Tg"
  18630.             },
  18631.             "canRate": true,
  18632.             "viewerRating": "none",
  18633.             "likeCount": 0,
  18634.             "publishedAt": "2011-02-19T18:24:45Z",
  18635.             "updatedAt": "2011-02-19T18:24:45Z"
  18636.           }
  18637.         },
  18638.         "canReply": true,
  18639.         "totalReplyCount": 0,
  18640.         "isPublic": true
  18641.       }
  18642.     },
  18643.     {
  18644.       "kind": "youtube#commentThread",
  18645.       "etag": "b780BST60m3pIUtDW2c3WX01gDk",
  18646.       "id": "UgxXWnG7z2SQRAW2lLd4AaABAg",
  18647.       "snippet": {
  18648.         "videoId": "atnSTtiWU5E",
  18649.         "topLevelComment": {
  18650.           "kind": "youtube#comment",
  18651.           "etag": "t4bnWQ-EJjhZ01k0piVkKwfNdIs",
  18652.           "id": "UgxXWnG7z2SQRAW2lLd4AaABAg",
  18653.           "snippet": {
  18654.             "videoId": "atnSTtiWU5E",
  18655.             "textDisplay": "@dvdp21 someone MUST put these lyrics into it",
  18656.             "textOriginal": "@dvdp21 someone MUST put these lyrics into it",
  18657.             "authorDisplayName": "Eeptog",
  18658.             "authorChannelUrl": "http://www.youtube.com/channel/UCk4kxxlgc8FPKkFsXndspSg",
  18659.             "authorChannelId": {
  18660.               "value": "UCk4kxxlgc8FPKkFsXndspSg"
  18661.             },
  18662.             "canRate": true,
  18663.             "viewerRating": "none",
  18664.             "likeCount": 0,
  18665.             "publishedAt": "2011-02-18T09:35:00Z",
  18666.             "updatedAt": "2011-02-18T09:35:00Z"
  18667.           }
  18668.         },
  18669.         "canReply": true,
  18670.         "totalReplyCount": 0,
  18671.         "isPublic": true
  18672.       }
  18673.     },
  18674.     {
  18675.       "kind": "youtube#commentThread",
  18676.       "etag": "d_c_U9l1HsoNN1KnjytL_oJvaA4",
  18677.       "id": "UgwfIE8tm3dtw_EUqft4AaABAg",
  18678.       "snippet": {
  18679.         "videoId": "atnSTtiWU5E",
  18680.         "topLevelComment": {
  18681.           "kind": "youtube#comment",
  18682.           "etag": "jcLZZKTXreRZ6HNSS-2D73ZuCIA",
  18683.           "id": "UgwfIE8tm3dtw_EUqft4AaABAg",
  18684.           "snippet": {
  18685.             "videoId": "atnSTtiWU5E",
  18686.             "textDisplay": "@dvdp21 forgot one line " SOOOOOOO LET'S DANCE!"",
  18687.             "textOriginal": "@dvdp21 forgot one line \" SOOOOOOO LET'S DANCE!\"",
  18688.             "authorDisplayName": "Lady Leora",
  18689.             "authorChannelUrl": "http://www.youtube.com/channel/UCktarGy1LtVq_uuxxeBNXtg",
  18690.             "authorChannelId": {
  18691.               "value": "UCktarGy1LtVq_uuxxeBNXtg"
  18692.             },
  18693.             "canRate": true,
  18694.             "viewerRating": "none",
  18695.             "likeCount": 0,
  18696.             "publishedAt": "2011-02-18T06:41:48Z",
  18697.             "updatedAt": "2011-02-18T06:41:48Z"
  18698.           }
  18699.         },
  18700.         "canReply": true,
  18701.         "totalReplyCount": 0,
  18702.         "isPublic": true
  18703.       }
  18704.     },
  18705.     {
  18706.       "kind": "youtube#commentThread",
  18707.       "etag": "0nQamFf117C1trlRBWf5xxTYmYY",
  18708.       "id": "Ugw4Kklo2B60exbW6xd4AaABAg",
  18709.       "snippet": {
  18710.         "videoId": "atnSTtiWU5E",
  18711.         "topLevelComment": {
  18712.           "kind": "youtube#comment",
  18713.           "etag": "PU0m04h-UKlRDue1RYJx2VZBBUo",
  18714.           "id": "Ugw4Kklo2B60exbW6xd4AaABAg",
  18715.           "snippet": {
  18716.             "videoId": "atnSTtiWU5E",
  18717.             "textDisplay": "@Lostwinddragon \n\nWell, it's not just a show for little girls, it's a show for the whole family now, with awesome writing, humor, and voice acting. Lauren Faust has managed to breath new life into what was previously just a 30 minute long toy commercial. That, and the fact that Eurobeat Brony is a musical mastermind",
  18718.             "textOriginal": "@Lostwinddragon \n\nWell, it's not just a show for little girls, it's a show for the whole family now, with awesome writing, humor, and voice acting. Lauren Faust has managed to breath new life into what was previously just a 30 minute long toy commercial. That, and the fact that Eurobeat Brony is a musical mastermind",
  18719.             "authorDisplayName": "Bandpuffs",
  18720.             "authorChannelUrl": "http://www.youtube.com/channel/UC0YPokWZTBVtN7AhxtEfDeQ",
  18721.             "authorChannelId": {
  18722.               "value": "UC0YPokWZTBVtN7AhxtEfDeQ"
  18723.             },
  18724.             "canRate": true,
  18725.             "viewerRating": "none",
  18726.             "likeCount": 0,
  18727.             "publishedAt": "2011-02-18T03:41:54Z",
  18728.             "updatedAt": "2011-02-18T03:41:54Z"
  18729.           }
  18730.         },
  18731.         "canReply": true,
  18732.         "totalReplyCount": 0,
  18733.         "isPublic": true
  18734.       }
  18735.     },
  18736.     {
  18737.       "kind": "youtube#commentThread",
  18738.       "etag": "J8B2WE2i0ZZCv2k4mthsfmVa0gc",
  18739.       "id": "UgwhEmOY_kBOCJEpHGx4AaABAg",
  18740.       "snippet": {
  18741.         "videoId": "atnSTtiWU5E",
  18742.         "topLevelComment": {
  18743.           "kind": "youtube#comment",
  18744.           "etag": "pztbGs03qrqr7PZd1Ix0L2TWg5E",
  18745.           "id": "UgwhEmOY_kBOCJEpHGx4AaABAg",
  18746.           "snippet": {
  18747.             "videoId": "atnSTtiWU5E",
  18748.             "textDisplay": "So much win, my head asplode!",
  18749.             "textOriginal": "So much win, my head asplode!",
  18750.             "authorDisplayName": "Patrik333",
  18751.             "authorChannelUrl": "http://www.youtube.com/channel/UCsfZ83nzPmgXgLmzTbe7YKw",
  18752.             "authorChannelId": {
  18753.               "value": "UCsfZ83nzPmgXgLmzTbe7YKw"
  18754.             },
  18755.             "canRate": true,
  18756.             "viewerRating": "none",
  18757.             "likeCount": 0,
  18758.             "publishedAt": "2011-02-18T01:00:25Z",
  18759.             "updatedAt": "2011-02-18T01:00:25Z"
  18760.           }
  18761.         },
  18762.         "canReply": true,
  18763.         "totalReplyCount": 0,
  18764.         "isPublic": true
  18765.       }
  18766.     },
  18767.     {
  18768.       "kind": "youtube#commentThread",
  18769.       "etag": "aC2y7KfF7_8tzeMt1NX7HebPPGo",
  18770.       "id": "Ugy6eztgtt4GntCpRQ54AaABAg",
  18771.       "snippet": {
  18772.         "videoId": "atnSTtiWU5E",
  18773.         "topLevelComment": {
  18774.           "kind": "youtube#comment",
  18775.           "etag": "PRrFOlzulps1vn7S7EkEzg1-mZU",
  18776.           "id": "Ugy6eztgtt4GntCpRQ54AaABAg",
  18777.           "snippet": {
  18778.             "videoId": "atnSTtiWU5E",
  18779.             "textDisplay": "@claw7705 \n\nlol, I've always thought of the Megaman X or the Megaman Zero series when I listen to this one in particular. I'd definitely think it'd be a perfect Zecora Level theme if we where talking a Megaman style game.",
  18780.             "textOriginal": "@claw7705 \n\nlol, I've always thought of the Megaman X or the Megaman Zero series when I listen to this one in particular. I'd definitely think it'd be a perfect Zecora Level theme if we where talking a Megaman style game.",
  18781.             "authorDisplayName": "Bandpuffs",
  18782.             "authorChannelUrl": "http://www.youtube.com/channel/UC0YPokWZTBVtN7AhxtEfDeQ",
  18783.             "authorChannelId": {
  18784.               "value": "UC0YPokWZTBVtN7AhxtEfDeQ"
  18785.             },
  18786.             "canRate": true,
  18787.             "viewerRating": "none",
  18788.             "likeCount": 0,
  18789.             "publishedAt": "2011-02-17T21:49:41Z",
  18790.             "updatedAt": "2011-02-17T21:49:41Z"
  18791.           }
  18792.         },
  18793.         "canReply": true,
  18794.         "totalReplyCount": 0,
  18795.         "isPublic": true
  18796.       }
  18797.     },
  18798.     {
  18799.       "kind": "youtube#commentThread",
  18800.       "etag": "rQMwAoZZey_nJt5nxKDI0yuwZn0",
  18801.       "id": "Ugx9FV2k_TxsxobA6FN4AaABAg",
  18802.       "snippet": {
  18803.         "videoId": "atnSTtiWU5E",
  18804.         "topLevelComment": {
  18805.           "kind": "youtube#comment",
  18806.           "etag": "-VZ87KF1YLzSl3hVJl3ta1GQhCg",
  18807.           "id": "Ugx9FV2k_TxsxobA6FN4AaABAg",
  18808.           "snippet": {
  18809.             "videoId": "atnSTtiWU5E",
  18810.             "textDisplay": "@claw7705 OMGSHHH!!! TOTALLY! If they ever make a video game for the ponies, this should definitely be on there!",
  18811.             "textOriginal": "@claw7705 OMGSHHH!!! TOTALLY! If they ever make a video game for the ponies, this should definitely be on there!",
  18812.             "authorDisplayName": "laced_melodiies",
  18813.             "authorChannelUrl": "http://www.youtube.com/channel/UCfNl4swwRbNRLyaDKV0krXQ",
  18814.             "authorChannelId": {
  18815.               "value": "UCfNl4swwRbNRLyaDKV0krXQ"
  18816.             },
  18817.             "canRate": true,
  18818.             "viewerRating": "none",
  18819.             "likeCount": 0,
  18820.             "publishedAt": "2011-02-17T06:54:54Z",
  18821.             "updatedAt": "2011-02-17T06:54:54Z"
  18822.           }
  18823.         },
  18824.         "canReply": true,
  18825.         "totalReplyCount": 0,
  18826.         "isPublic": true
  18827.       }
  18828.     },
  18829.     {
  18830.       "kind": "youtube#commentThread",
  18831.       "etag": "ZIVoFDgJ4NRDuEJZwfb1u5xhuSI",
  18832.       "id": "UgyDj5eLfj6wTygCU754AaABAg",
  18833.       "snippet": {
  18834.         "videoId": "atnSTtiWU5E",
  18835.         "topLevelComment": {
  18836.           "kind": "youtube#comment",
  18837.           "etag": "EBdhCtUQU9oZeP-vRRpaz0tprA4",
  18838.           "id": "UgyDj5eLfj6wTygCU754AaABAg",
  18839.           "snippet": {
  18840.             "videoId": "atnSTtiWU5E",
  18841.             "textDisplay": "._. epic\n\nThis and the other 3 ponybeat songs have replaced my initial d mix for driving to work at high speeds\n\nidk, the fast pace helps me concentrate on timing my shifts and doing head math to make sure i don't fuck up a maneuver at 140 km/h",
  18842.             "textOriginal": "._. epic\n\nThis and the other 3 ponybeat songs have replaced my initial d mix for driving to work at high speeds\n\nidk, the fast pace helps me concentrate on timing my shifts and doing head math to make sure i don't fuck up a maneuver at 140 km/h",
  18843.             "authorDisplayName": "MinecraftMike",
  18844.             "authorChannelUrl": "http://www.youtube.com/channel/UC5xBwQkJkzSFIoNvm79gzUg",
  18845.             "authorChannelId": {
  18846.               "value": "UC5xBwQkJkzSFIoNvm79gzUg"
  18847.             },
  18848.             "canRate": true,
  18849.             "viewerRating": "none",
  18850.             "likeCount": 0,
  18851.             "publishedAt": "2011-02-17T06:21:02Z",
  18852.             "updatedAt": "2011-02-17T06:21:02Z"
  18853.           }
  18854.         },
  18855.         "canReply": true,
  18856.         "totalReplyCount": 0,
  18857.         "isPublic": true
  18858.       }
  18859.     },
  18860.     {
  18861.       "kind": "youtube#commentThread",
  18862.       "etag": "pWHy4YMIUyQMKj98jhLKVTC26KY",
  18863.       "id": "UgwaI5RAmstJfMjrmjh4AaABAg",
  18864.       "snippet": {
  18865.         "videoId": "atnSTtiWU5E",
  18866.         "topLevelComment": {
  18867.           "kind": "youtube#comment",
  18868.           "etag": "tIJLxcWqWSTM_NWrpW1nTlA90x4",
  18869.           "id": "UgwaI5RAmstJfMjrmjh4AaABAg",
  18870.           "snippet": {
  18871.             "videoId": "atnSTtiWU5E",
  18872.             "textDisplay": "Somehow, I vaguely expect this to segue into "Vampire Killer".  Which is a good thing. :>",
  18873.             "textOriginal": "Somehow, I vaguely expect this to segue into \"Vampire Killer\".  Which is a good thing. :\u003e",
  18874.             "authorDisplayName": "AubriGryphon",
  18875.             "authorChannelUrl": "http://www.youtube.com/channel/UCsuwZ5wN8pp44SIFLEtVDBQ",
  18876.             "authorChannelId": {
  18877.               "value": "UCsuwZ5wN8pp44SIFLEtVDBQ"
  18878.             },
  18879.             "canRate": true,
  18880.             "viewerRating": "none",
  18881.             "likeCount": 0,
  18882.             "publishedAt": "2011-02-17T06:18:06Z",
  18883.             "updatedAt": "2011-02-17T06:18:06Z"
  18884.           }
  18885.         },
  18886.         "canReply": true,
  18887.         "totalReplyCount": 0,
  18888.         "isPublic": true
  18889.       }
  18890.     },
  18891.     {
  18892.       "kind": "youtube#commentThread",
  18893.       "etag": "79GxnEfhxSW7r0A_YqgXx8T1zRE",
  18894.       "id": "UgwjgPw9e0E-OCS3ooF4AaABAg",
  18895.       "snippet": {
  18896.         "videoId": "atnSTtiWU5E",
  18897.         "topLevelComment": {
  18898.           "kind": "youtube#comment",
  18899.           "etag": "6fWx7QK09dJy4lPCsE0bMxityCg",
  18900.           "id": "UgwjgPw9e0E-OCS3ooF4AaABAg",
  18901.           "snippet": {
  18902.             "videoId": "atnSTtiWU5E",
  18903.             "textDisplay": "@pendejochy I feel like Im running in the 90's.",
  18904.             "textOriginal": "@pendejochy I feel like Im running in the 90's.",
  18905.             "authorDisplayName": "duskaxe",
  18906.             "authorChannelUrl": "http://www.youtube.com/channel/UCGSUhoSv-me3RHkF2lfDIBg",
  18907.             "authorChannelId": {
  18908.               "value": "UCGSUhoSv-me3RHkF2lfDIBg"
  18909.             },
  18910.             "canRate": true,
  18911.             "viewerRating": "none",
  18912.             "likeCount": 0,
  18913.             "publishedAt": "2011-02-16T15:01:16Z",
  18914.             "updatedAt": "2011-02-16T15:01:16Z"
  18915.           }
  18916.         },
  18917.         "canReply": true,
  18918.         "totalReplyCount": 0,
  18919.         "isPublic": true
  18920.       }
  18921.     },
  18922.     {
  18923.       "kind": "youtube#commentThread",
  18924.       "etag": "8dTLx9n8NqorqCDzzlC1Z4OiwsE",
  18925.       "id": "Ugxi05RhBeD5z6PAI0p4AaABAg",
  18926.       "snippet": {
  18927.         "videoId": "atnSTtiWU5E",
  18928.         "topLevelComment": {
  18929.           "kind": "youtube#comment",
  18930.           "etag": "SMedwLLHrHv7jiOFd3xVFIMluwI",
  18931.           "id": "Ugxi05RhBeD5z6PAI0p4AaABAg",
  18932.           "snippet": {
  18933.             "videoId": "atnSTtiWU5E",
  18934.             "textDisplay": "Zecora Boss Battle!!!!",
  18935.             "textOriginal": "Zecora Boss Battle!!!!",
  18936.             "authorDisplayName": "Benjamin Boston",
  18937.             "authorChannelUrl": "http://www.youtube.com/channel/UC59A938Iy0fJXoX4Sn2ev8g",
  18938.             "authorChannelId": {
  18939.               "value": "UC59A938Iy0fJXoX4Sn2ev8g"
  18940.             },
  18941.             "canRate": true,
  18942.             "viewerRating": "none",
  18943.             "likeCount": 0,
  18944.             "publishedAt": "2011-02-16T13:04:24Z",
  18945.             "updatedAt": "2011-02-16T13:04:24Z"
  18946.           }
  18947.         },
  18948.         "canReply": true,
  18949.         "totalReplyCount": 0,
  18950.         "isPublic": true
  18951.       }
  18952.     },
  18953.     {
  18954.       "kind": "youtube#commentThread",
  18955.       "etag": "AsqcVvo5eQTImNpMsH3zXRZT_-4",
  18956.       "id": "UgyQ6hJc1PZ5d6MprSx4AaABAg",
  18957.       "snippet": {
  18958.         "videoId": "atnSTtiWU5E",
  18959.         "topLevelComment": {
  18960.           "kind": "youtube#comment",
  18961.           "etag": "gq-rnlb-eXwJg4Vw5uel7RwT2NM",
  18962.           "id": "UgyQ6hJc1PZ5d6MprSx4AaABAg",
  18963.           "snippet": {
  18964.             "videoId": "atnSTtiWU5E",
  18965.             "textDisplay": "I FUCKING LOVE YOU! oh, btw, if you can guess who i am in the chat, ill see if i can throw this song into one of my solos",
  18966.             "textOriginal": "I FUCKING LOVE YOU! oh, btw, if you can guess who i am in the chat, ill see if i can throw this song into one of my solos",
  18967.             "authorDisplayName": "Skywishes media",
  18968.             "authorChannelUrl": "http://www.youtube.com/channel/UCsnzH61xHGkwoaxReKS4MxA",
  18969.             "authorChannelId": {
  18970.               "value": "UCsnzH61xHGkwoaxReKS4MxA"
  18971.             },
  18972.             "canRate": true,
  18973.             "viewerRating": "none",
  18974.             "likeCount": 0,
  18975.             "publishedAt": "2011-02-13T02:52:28Z",
  18976.             "updatedAt": "2011-02-13T02:52:28Z"
  18977.           }
  18978.         },
  18979.         "canReply": true,
  18980.         "totalReplyCount": 0,
  18981.         "isPublic": true
  18982.       }
  18983.     },
  18984.     {
  18985.       "kind": "youtube#commentThread",
  18986.       "etag": "uN57XZ3R2XBK8VCLXdeFRVn1Lgw",
  18987.       "id": "Ugxf8Yfx8mwUA1o_lcZ4AaABAg",
  18988.       "snippet": {
  18989.         "videoId": "atnSTtiWU5E",
  18990.         "topLevelComment": {
  18991.           "kind": "youtube#comment",
  18992.           "etag": "euTu4pAd5I99Mq9sxt3ee8rYO8M",
  18993.           "id": "Ugxf8Yfx8mwUA1o_lcZ4AaABAg",
  18994.           "snippet": {
  18995.             "videoId": "atnSTtiWU5E",
  18996.             "textDisplay": "@ChainAlgorithm0 \n\nI'm pretty sure Eurobeat Brony does this all by ear. He has to write it all out in the program, on top of the original composition that he mixes into the song. It's tough stuff.",
  18997.             "textOriginal": "@ChainAlgorithm0 \n\nI'm pretty sure Eurobeat Brony does this all by ear. He has to write it all out in the program, on top of the original composition that he mixes into the song. It's tough stuff.",
  18998.             "authorDisplayName": "Bandpuffs",
  18999.             "authorChannelUrl": "http://www.youtube.com/channel/UC0YPokWZTBVtN7AhxtEfDeQ",
  19000.             "authorChannelId": {
  19001.               "value": "UC0YPokWZTBVtN7AhxtEfDeQ"
  19002.             },
  19003.             "canRate": true,
  19004.             "viewerRating": "none",
  19005.             "likeCount": 1,
  19006.             "publishedAt": "2011-02-13T01:28:35Z",
  19007.             "updatedAt": "2011-02-13T01:28:35Z"
  19008.           }
  19009.         },
  19010.         "canReply": true,
  19011.         "totalReplyCount": 0,
  19012.         "isPublic": true
  19013.       }
  19014.     },
  19015.     {
  19016.       "kind": "youtube#commentThread",
  19017.       "etag": "HGarz0dUk8zbuNqiOWGRAVL6h0s",
  19018.       "id": "Ugx0aAfvIH_cyLSXXyF4AaABAg",
  19019.       "snippet": {
  19020.         "videoId": "atnSTtiWU5E",
  19021.         "topLevelComment": {
  19022.           "kind": "youtube#comment",
  19023.           "etag": "JrtmuFvChqlbWxK8l9h5KO9Vw2A",
  19024.           "id": "Ugx0aAfvIH_cyLSXXyF4AaABAg",
  19025.           "snippet": {
  19026.             "videoId": "atnSTtiWU5E",
  19027.             "textDisplay": "ok, where the hell are you getting the sheet music for this?  i need it NOW",
  19028.             "textOriginal": "ok, where the hell are you getting the sheet music for this?  i need it NOW",
  19029.             "authorDisplayName": "ChainAlgorithmOfficial",
  19030.             "authorChannelUrl": "http://www.youtube.com/channel/UCmfotw_QjW-hgoMpFY4TYHg",
  19031.             "authorChannelId": {
  19032.               "value": "UCmfotw_QjW-hgoMpFY4TYHg"
  19033.             },
  19034.             "canRate": true,
  19035.             "viewerRating": "none",
  19036.             "likeCount": 0,
  19037.             "publishedAt": "2011-02-12T04:59:11Z",
  19038.             "updatedAt": "2011-02-12T04:59:11Z"
  19039.           }
  19040.         },
  19041.         "canReply": true,
  19042.         "totalReplyCount": 0,
  19043.         "isPublic": true
  19044.       }
  19045.     },
  19046.     {
  19047.       "kind": "youtube#commentThread",
  19048.       "etag": "GjXRiL3RYh5jrDUO3kPKoBhjCIA",
  19049.       "id": "UgxLsQ-JAf3WBnWn4OZ4AaABAg",
  19050.       "snippet": {
  19051.         "videoId": "atnSTtiWU5E",
  19052.         "topLevelComment": {
  19053.           "kind": "youtube#comment",
  19054.           "etag": "zbSUs0VRQcVBAUHSegtc15OYuj4",
  19055.           "id": "UgxLsQ-JAf3WBnWn4OZ4AaABAg",
  19056.           "snippet": {
  19057.             "videoId": "atnSTtiWU5E",
  19058.             "textDisplay": "nao im scared of ponies Cx they can techno mix o:",
  19059.             "textOriginal": "nao im scared of ponies Cx they can techno mix o:",
  19060.             "authorDisplayName": "kay christo",
  19061.             "authorChannelUrl": "http://www.youtube.com/channel/UCfhVGeBhs2eAH1VGbpropMg",
  19062.             "authorChannelId": {
  19063.               "value": "UCfhVGeBhs2eAH1VGbpropMg"
  19064.             },
  19065.             "canRate": true,
  19066.             "viewerRating": "none",
  19067.             "likeCount": 0,
  19068.             "publishedAt": "2011-02-11T14:02:32Z",
  19069.             "updatedAt": "2011-02-11T14:02:32Z"
  19070.           }
  19071.         },
  19072.         "canReply": true,
  19073.         "totalReplyCount": 0,
  19074.         "isPublic": true
  19075.       }
  19076.     },
  19077.     {
  19078.       "kind": "youtube#commentThread",
  19079.       "etag": "B5RclATx7VjAWyL_kXOEq1OhZro",
  19080.       "id": "UgyeQU0KDGeXj6KSt5N4AaABAg",
  19081.       "snippet": {
  19082.         "videoId": "atnSTtiWU5E",
  19083.         "topLevelComment": {
  19084.           "kind": "youtube#comment",
  19085.           "etag": "tVnQcliouqxlzvg5aeoIFSaIi4M",
  19086.           "id": "UgyeQU0KDGeXj6KSt5N4AaABAg",
  19087.           "snippet": {
  19088.             "videoId": "atnSTtiWU5E",
  19089.             "textDisplay": "nao im scared of ponies Cx",
  19090.             "textOriginal": "nao im scared of ponies Cx",
  19091.             "authorDisplayName": "kay christo",
  19092.             "authorChannelUrl": "http://www.youtube.com/channel/UCfhVGeBhs2eAH1VGbpropMg",
  19093.             "authorChannelId": {
  19094.               "value": "UCfhVGeBhs2eAH1VGbpropMg"
  19095.             },
  19096.             "canRate": true,
  19097.             "viewerRating": "none",
  19098.             "likeCount": 0,
  19099.             "publishedAt": "2011-02-11T14:02:09Z",
  19100.             "updatedAt": "2011-02-11T14:02:09Z"
  19101.           }
  19102.         },
  19103.         "canReply": true,
  19104.         "totalReplyCount": 0,
  19105.         "isPublic": true
  19106.       }
  19107.     },
  19108.     {
  19109.       "kind": "youtube#commentThread",
  19110.       "etag": "0CT7O4vDju6BCxao_mA0wbNFIBc",
  19111.       "id": "Ugz2YbEjD-bXKEcXu0V4AaABAg",
  19112.       "snippet": {
  19113.         "videoId": "atnSTtiWU5E",
  19114.         "topLevelComment": {
  19115.           "kind": "youtube#comment",
  19116.           "etag": "cEv7XTTLIG4RwvPA13Lyppnogdg",
  19117.           "id": "Ugz2YbEjD-bXKEcXu0V4AaABAg",
  19118.           "snippet": {
  19119.             "videoId": "atnSTtiWU5E",
  19120.             "textDisplay": "Evil Enchantress, raves and she dances.\nShe loves those tunes.\nEvil Enchantress, raves and she dances.\nShe loves these beats.\n\nWe just need Lou Rawls or somepony for a vocal version. =D",
  19121.             "textOriginal": "Evil Enchantress, raves and she dances.\nShe loves those tunes.\nEvil Enchantress, raves and she dances.\nShe loves these beats.\n\nWe just need Lou Rawls or somepony for a vocal version. =D",
  19122.             "authorDisplayName": "Kuro Neko",
  19123.             "authorChannelUrl": "http://www.youtube.com/channel/UCo_OUOvjMKIv9A2Bq62GtXQ",
  19124.             "authorChannelId": {
  19125.               "value": "UCo_OUOvjMKIv9A2Bq62GtXQ"
  19126.             },
  19127.             "canRate": true,
  19128.             "viewerRating": "none",
  19129.             "likeCount": 0,
  19130.             "publishedAt": "2011-02-08T13:53:48Z",
  19131.             "updatedAt": "2011-02-08T13:53:48Z"
  19132.           }
  19133.         },
  19134.         "canReply": true,
  19135.         "totalReplyCount": 0,
  19136.         "isPublic": true
  19137.       }
  19138.     },
  19139.     {
  19140.       "kind": "youtube#commentThread",
  19141.       "etag": "XhOI4ZyX_pz3OfDZwRs1zdWZPRE",
  19142.       "id": "Ugw6N4Hy3E5xDLy-xuN4AaABAg",
  19143.       "snippet": {
  19144.         "videoId": "atnSTtiWU5E",
  19145.         "topLevelComment": {
  19146.           "kind": "youtube#comment",
  19147.           "etag": "ry_Tdrq8ugtheQUET_giZ3laJMs",
  19148.           "id": "Ugw6N4Hy3E5xDLy-xuN4AaABAg",
  19149.           "snippet": {
  19150.             "videoId": "atnSTtiWU5E",
  19151.             "textDisplay": "@Exarian \nNo, not really. The Album artwork with Fluttershy was made by the actual artist, so that's the "official" one I guess. But the 80s Cherilee album artwork was made by another fan. You can use whatever album artwork you want, heck you could even make your own. I'd upload it with whatever the next song would be. Variety wouldn't hurt.",
  19152.             "textOriginal": "@Exarian \nNo, not really. The Album artwork with Fluttershy was made by the actual artist, so that's the \"official\" one I guess. But the 80s Cherilee album artwork was made by another fan. You can use whatever album artwork you want, heck you could even make your own. I'd upload it with whatever the next song would be. Variety wouldn't hurt.",
  19153.             "authorDisplayName": "Bandpuffs",
  19154.             "authorChannelUrl": "http://www.youtube.com/channel/UC0YPokWZTBVtN7AhxtEfDeQ",
  19155.             "authorChannelId": {
  19156.               "value": "UC0YPokWZTBVtN7AhxtEfDeQ"
  19157.             },
  19158.             "canRate": true,
  19159.             "viewerRating": "none",
  19160.             "likeCount": 0,
  19161.             "publishedAt": "2011-02-06T21:24:48Z",
  19162.             "updatedAt": "2011-02-06T21:24:48Z"
  19163.           }
  19164.         },
  19165.         "canReply": true,
  19166.         "totalReplyCount": 0,
  19167.         "isPublic": true
  19168.       }
  19169.     },
  19170.     {
  19171.       "kind": "youtube#commentThread",
  19172.       "etag": "xFIcRCL9CHVIIP3J6XeZXoYe-_g",
  19173.       "id": "UgxzYe2L2Y06GZl3HYh4AaABAg",
  19174.       "snippet": {
  19175.         "videoId": "atnSTtiWU5E",
  19176.         "topLevelComment": {
  19177.           "kind": "youtube#comment",
  19178.           "etag": "kOjiKOuq5-FUuAj-wyQHJJevySc",
  19179.           "id": "UgxzYe2L2Y06GZl3HYh4AaABAg",
  19180.           "snippet": {
  19181.             "videoId": "atnSTtiWU5E",
  19182.             "textDisplay": "now that DJ P0N-3 has been introduced, will that be your standard cover art?",
  19183.             "textOriginal": "now that DJ P0N-3 has been introduced, will that be your standard cover art?",
  19184.             "authorDisplayName": "Exarian",
  19185.             "authorChannelUrl": "http://www.youtube.com/channel/UCdUc3DnmyM8V0HMMk4IRrYw",
  19186.             "authorChannelId": {
  19187.               "value": "UCdUc3DnmyM8V0HMMk4IRrYw"
  19188.             },
  19189.             "canRate": true,
  19190.             "viewerRating": "none",
  19191.             "likeCount": 0,
  19192.             "publishedAt": "2011-02-06T05:17:33Z",
  19193.             "updatedAt": "2011-02-06T05:17:33Z"
  19194.           }
  19195.         },
  19196.         "canReply": true,
  19197.         "totalReplyCount": 0,
  19198.         "isPublic": true
  19199.       }
  19200.     },
  19201.     {
  19202.       "kind": "youtube#commentThread",
  19203.       "etag": "-nzCm6850tzlkd7ZbkDXpBo0wyE",
  19204.       "id": "UgxKv97jyC_fRbtgQ4Z4AaABAg",
  19205.       "snippet": {
  19206.         "videoId": "atnSTtiWU5E",
  19207.         "topLevelComment": {
  19208.           "kind": "youtube#comment",
  19209.           "etag": "eeZCSoA0MfG3RijFeKsAplb3lGg",
  19210.           "id": "UgxKv97jyC_fRbtgQ4Z4AaABAg",
  19211.           "snippet": {
  19212.             "videoId": "atnSTtiWU5E",
  19213.             "textDisplay": "I expect that if they ever made a videogame with MLP, this music should come off for the Final Boss :p epic, but doesn't go too far into being out of tune with the Girlish Charm.",
  19214.             "textOriginal": "I expect that if they ever made a videogame with MLP, this music should come off for the Final Boss :p epic, but doesn't go too far into being out of tune with the Girlish Charm.",
  19215.             "authorDisplayName": "Jeb",
  19216.             "authorChannelUrl": "http://www.youtube.com/channel/UCwLjqqRK_J8Kq7MJIGmGxyg",
  19217.             "authorChannelId": {
  19218.               "value": "UCwLjqqRK_J8Kq7MJIGmGxyg"
  19219.             },
  19220.             "canRate": true,
  19221.             "viewerRating": "none",
  19222.             "likeCount": 0,
  19223.             "publishedAt": "2011-02-03T05:12:00Z",
  19224.             "updatedAt": "2011-02-03T05:12:00Z"
  19225.           }
  19226.         },
  19227.         "canReply": true,
  19228.         "totalReplyCount": 0,
  19229.         "isPublic": true
  19230.       }
  19231.     },
  19232.     {
  19233.       "kind": "youtube#commentThread",
  19234.       "etag": "HjU3lqfXSdOytOZaqd9c205mzlY",
  19235.       "id": "UgwYaPX9QU0TvXtS-uh4AaABAg",
  19236.       "snippet": {
  19237.         "videoId": "atnSTtiWU5E",
  19238.         "topLevelComment": {
  19239.           "kind": "youtube#comment",
  19240.           "etag": "lhLUS-I0evF0RTSXVh2bSU1TQtw",
  19241.           "id": "UgwYaPX9QU0TvXtS-uh4AaABAg",
  19242.           "snippet": {
  19243.             "videoId": "atnSTtiWU5E",
  19244.             "textDisplay": "I want this to be the new theme song.",
  19245.             "textOriginal": "I want this to be the new theme song.",
  19246.             "authorDisplayName": "Jacky Tideman",
  19247.             "authorChannelUrl": "http://www.youtube.com/channel/UCIroyw5uiR1cRmwLVFbK0kw",
  19248.             "authorChannelId": {
  19249.               "value": "UCIroyw5uiR1cRmwLVFbK0kw"
  19250.             },
  19251.             "canRate": true,
  19252.             "viewerRating": "none",
  19253.             "likeCount": 0,
  19254.             "publishedAt": "2011-01-31T18:40:56Z",
  19255.             "updatedAt": "2011-01-31T18:40:56Z"
  19256.           }
  19257.         },
  19258.         "canReply": true,
  19259.         "totalReplyCount": 0,
  19260.         "isPublic": true
  19261.       }
  19262.     },
  19263.     {
  19264.       "kind": "youtube#commentThread",
  19265.       "etag": "vTqtCvA3oRTfruAOpqzL7xnzvwU",
  19266.       "id": "UgwQm1G3K6V58AqIxJh4AaABAg",
  19267.       "snippet": {
  19268.         "videoId": "atnSTtiWU5E",
  19269.         "topLevelComment": {
  19270.           "kind": "youtube#comment",
  19271.           "etag": "h4aLQ9E6AZx1fCWuHxcD-_N_Q6k",
  19272.           "id": "UgwQm1G3K6V58AqIxJh4AaABAg",
  19273.           "snippet": {
  19274.             "videoId": "atnSTtiWU5E",
  19275.             "textDisplay": "**Infinite Loop'd**",
  19276.             "textOriginal": "**Infinite Loop'd**",
  19277.             "authorDisplayName": "ParallelLogic",
  19278.             "authorChannelUrl": "http://www.youtube.com/channel/UCop-LQejEC3y1ZREv7QSaZg",
  19279.             "authorChannelId": {
  19280.               "value": "UCop-LQejEC3y1ZREv7QSaZg"
  19281.             },
  19282.             "canRate": true,
  19283.             "viewerRating": "none",
  19284.             "likeCount": 0,
  19285.             "publishedAt": "2011-01-29T12:51:25Z",
  19286.             "updatedAt": "2011-01-29T12:51:25Z"
  19287.           }
  19288.         },
  19289.         "canReply": true,
  19290.         "totalReplyCount": 0,
  19291.         "isPublic": true
  19292.       }
  19293.     },
  19294.     {
  19295.       "kind": "youtube#commentThread",
  19296.       "etag": "I6fUEJU8XxMOb0SxjdlCy9XlppU",
  19297.       "id": "UgxCK-K96zScwGRsahl4AaABAg",
  19298.       "snippet": {
  19299.         "videoId": "atnSTtiWU5E",
  19300.         "topLevelComment": {
  19301.           "kind": "youtube#comment",
  19302.           "etag": "zdFzCo7HUPSUC1s5lgHClKOG9e0",
  19303.           "id": "UgxCK-K96zScwGRsahl4AaABAg",
  19304.           "snippet": {
  19305.             "videoId": "atnSTtiWU5E",
  19306.             "textDisplay": "check the description now, I added a link to the album art for you.",
  19307.             "textOriginal": "check the description now, I added a link to the album art for you.",
  19308.             "authorDisplayName": "Bandpuffs",
  19309.             "authorChannelUrl": "http://www.youtube.com/channel/UC0YPokWZTBVtN7AhxtEfDeQ",
  19310.             "authorChannelId": {
  19311.               "value": "UC0YPokWZTBVtN7AhxtEfDeQ"
  19312.             },
  19313.             "canRate": true,
  19314.             "viewerRating": "none",
  19315.             "likeCount": 0,
  19316.             "publishedAt": "2011-01-29T09:00:37Z",
  19317.             "updatedAt": "2011-01-29T09:00:37Z"
  19318.           }
  19319.         },
  19320.         "canReply": true,
  19321.         "totalReplyCount": 0,
  19322.         "isPublic": true
  19323.       }
  19324.     },
  19325.     {
  19326.       "kind": "youtube#commentThread",
  19327.       "etag": "EM8PWoKrT-kV6ego1FcCDwOCB3k",
  19328.       "id": "UgxrQJVQOrj7gxdlzUx4AaABAg",
  19329.       "snippet": {
  19330.         "videoId": "atnSTtiWU5E",
  19331.         "topLevelComment": {
  19332.           "kind": "youtube#comment",
  19333.           "etag": "xkaYdpcddJcImKqu7MgS8hxr2eY",
  19334.           "id": "UgxrQJVQOrj7gxdlzUx4AaABAg",
  19335.           "snippet": {
  19336.             "videoId": "atnSTtiWU5E",
  19337.             "textDisplay": "wat?\n",
  19338.             "textOriginal": "wat?\n",
  19339.             "authorDisplayName": "Sharpie",
  19340.             "authorChannelUrl": "http://www.youtube.com/channel/UChP49m16bhExY9IY-6I7mYw",
  19341.             "authorChannelId": {
  19342.               "value": "UChP49m16bhExY9IY-6I7mYw"
  19343.             },
  19344.             "canRate": true,
  19345.             "viewerRating": "none",
  19346.             "likeCount": 0,
  19347.             "publishedAt": "2011-01-29T01:54:21Z",
  19348.             "updatedAt": "2011-01-29T01:54:21Z"
  19349.           }
  19350.         },
  19351.         "canReply": true,
  19352.         "totalReplyCount": 0,
  19353.         "isPublic": true
  19354.       }
  19355.     },
  19356.     {
  19357.       "kind": "youtube#commentThread",
  19358.       "etag": "EtOZlLeNZzOU2uhQd4LXO0jBIg4",
  19359.       "id": "Ugx96K_uXyWLrROdh894AaABAg",
  19360.       "snippet": {
  19361.         "videoId": "atnSTtiWU5E",
  19362.         "topLevelComment": {
  19363.           "kind": "youtube#comment",
  19364.           "etag": "aqMdwkF75wdM5-Mzuk5EXVawjcw",
  19365.           "id": "Ugx96K_uXyWLrROdh894AaABAg",
  19366.           "snippet": {
  19367.             "videoId": "atnSTtiWU5E",
  19368.             "textDisplay": "BRB, gonna do some evil dances",
  19369.             "textOriginal": "BRB, gonna do some evil dances",
  19370.             "authorDisplayName": "SanguineQuest",
  19371.             "authorChannelUrl": "http://www.youtube.com/channel/UCzMjirsWWuoAvViNkeM9evw",
  19372.             "authorChannelId": {
  19373.               "value": "UCzMjirsWWuoAvViNkeM9evw"
  19374.             },
  19375.             "canRate": true,
  19376.             "viewerRating": "none",
  19377.             "likeCount": 1,
  19378.             "publishedAt": "2011-01-29T00:19:21Z",
  19379.             "updatedAt": "2011-01-29T00:19:21Z"
  19380.           }
  19381.         },
  19382.         "canReply": true,
  19383.         "totalReplyCount": 1,
  19384.         "isPublic": true
  19385.       },
  19386.       "replies": {
  19387.         "comments": [
  19388.           {
  19389.             "kind": "youtube#comment",
  19390.             "etag": "g8AthqNvmyzZ5gUU9YLKk7zVCVU",
  19391.             "id": "Ugx96K_uXyWLrROdh894AaABAg.8GcFaTsWpAo9SifXo9jB40",
  19392.             "snippet": {
  19393.               "videoId": "atnSTtiWU5E",
  19394.               "textDisplay": "the first comment on the first ever brony song",
  19395.               "textOriginal": "the first comment on the first ever brony song",
  19396.               "parentId": "Ugx96K_uXyWLrROdh894AaABAg",
  19397.               "authorDisplayName": "swamii;",
  19398.               "authorChannelUrl": "http://www.youtube.com/channel/UCHOj4wWbeYGNUH1kGZlnFuA",
  19399.               "authorChannelId": {
  19400.                 "value": "UCHOj4wWbeYGNUH1kGZlnFuA"
  19401.               },
  19402.               "canRate": true,
  19403.               "viewerRating": "none",
  19404.               "likeCount": 0,
  19405.               "publishedAt": "2021-09-25T17:14:26Z",
  19406.               "updatedAt": "2021-09-25T17:14:26Z"
  19407.             }
  19408.           }
  19409.         ]
  19410.       }
  19411.     },
  19412.     {
  19413.       "kind": "youtube#commentThread",
  19414.       "etag": "2WfunJmpPeB-bwjWMV32ai9P9Ss",
  19415.       "id": "UgzSN5PnjgxwITn7_-94AaABAg",
  19416.       "snippet": {
  19417.         "videoId": "atnSTtiWU5E",
  19418.         "topLevelComment": {
  19419.           "kind": "youtube#comment",
  19420.           "etag": "aJyzFQnSUC80ZoG5gv5KwBnmC-s",
  19421.           "id": "UgzSN5PnjgxwITn7_-94AaABAg",
  19422.           "snippet": {
  19423.             "videoId": "atnSTtiWU5E",
  19424.             "textDisplay": "confound these ponies, they drive me to kickass eurobeat tunes",
  19425.             "textOriginal": "confound these ponies, they drive me to kickass eurobeat tunes",
  19426.             "authorDisplayName": "KnightStrider062",
  19427.             "authorChannelUrl": "http://www.youtube.com/channel/UCGpNo1dIfQUym2Tzmvih_zA",
  19428.             "authorChannelId": {
  19429.               "value": "UCGpNo1dIfQUym2Tzmvih_zA"
  19430.             },
  19431.             "canRate": true,
  19432.             "viewerRating": "none",
  19433.             "likeCount": 1,
  19434.             "publishedAt": "2011-01-28T09:26:28Z",
  19435.             "updatedAt": "2011-01-28T09:26:28Z"
  19436.           }
  19437.         },
  19438.         "canReply": true,
  19439.         "totalReplyCount": 0,
  19440.         "isPublic": true
  19441.       }
  19442.     }
  19443.   ]
  19444. }
  19445.  
  19446.  
  19447.  
  19448.  
  19449.  
  19450. failed to paste to https://ponepaste.org/ - too many lines?
  19451.  paste title: atnSTtiWU5E comments + wip
  19452.  vc: 6kIFV
  19453.  
  19454. This was pasted via http://axuhongbo.top/paste/
  19455.  vc: JKHQSEOR

Reply to "atnSTtiWU5E comments + wip"

Here you can reply to the paste above

captcha