diff --git a/README.md b/README.md
index d5f16e0..5de2cdd 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,8 @@ Cog Function
 | forcemention | **Alpha** | <details><summary>Mentions unmentionable roles</summary>Very simple cog, mention doesn't persist</details> |
 | hangman | **Alpha** | <details><summary>Play a game of hangman</summary>Some visual glitches and needs more customization</details> |
 | howdoi | **Incomplete** | <details><summary>Ask coding questions and get results from StackExchange</summary>Not yet functional</details> |
-| leaver | **Alpha** | <details><summary>Send a message in a channel when a user leaves the server</summary>Just released, please report bugs</details> |
+| leaver | **Beta** | <details><summary>Send a message in a channel when a user leaves the server</summary>Seems to be functional, please report any bugs or suggestions</details> |
+| infochannel | **Alpha** | <details><summary>Create a channel to display server info</summary>Just released, please report bugs</details> |
 | lovecalculator | **Alpha** | <details><summary>Calculate the love between two users</summary>[Snap-Ons] Just updated to V3</details> |
 | lseen | **Alpha** | <details><summary>Track when a member was last online</summary>Alpha release, please report bugs</details> |
 | nudity | **Incomplete** | <details><summary>Checks for NSFW images posted in non-NSFW channels</summary>Library this is based on has a bug, waiting for author to merge my PR</details> |
diff --git a/announcedaily/announcedaily.py b/announcedaily/announcedaily.py
index 4c1b029..a6b5c81 100644
--- a/announcedaily/announcedaily.py
+++ b/announcedaily/announcedaily.py
@@ -97,7 +97,7 @@ class AnnounceDaily(Cog):
         if ctx.message.attachments:
             att_ = ctx.message.attachments[0]
             try:
-                h = att_.height
+                att_.height
             except AttributeError:
                 await ctx.send("You must attach an image, no other file will be accepted")
                 return
@@ -140,7 +140,7 @@ class AnnounceDaily(Cog):
     @_ad.command()
     async def listimg(self, ctx: commands.Context):
         """
-        List all registered announcement immages
+        List all registered announcement images
         """
         images = await self.config.images()
         for page in pagify("\n".join(images)):
@@ -192,7 +192,7 @@ class AnnounceDaily(Cog):
         await self.config.time.set({"hour": h, "minute": m, "second": s})
 
         await ctx.send(
-            "Announcements time has been set to {}::{}::{} every day\n"
+            "Announcement time has been set to {}::{}::{} every day\n"
             "**Changes will apply after next scheduled announcement or reload**".format(h, m, s)
         )
 
@@ -229,7 +229,7 @@ class AnnounceDaily(Cog):
                 await channel.send(choice)
 
     async def check_day(self):
-        while self is self.bot.get_cog("AnnounceDaily"):
+        while True:
             tomorrow = datetime.now() + timedelta(days=1)
             time = await self.config.time()
             h, m, s = time["hour"], time["minute"], time["second"]
diff --git a/announcedaily/info..json b/announcedaily/info.json
similarity index 94%
rename from announcedaily/info..json
rename to announcedaily/info.json
index a0eb7ae..84315bf 100644
--- a/announcedaily/info..json
+++ b/announcedaily/info.json
@@ -10,7 +10,6 @@
   "description": "Send daily announcements to all servers at a specified times",
   "hidden": true,
   "install_msg": "Thank you for installing AnnounceDaily! Get started with `[p]load announcedaily` and `[p]help AnnounceDaily`",
-  "requirements": [],
   "short": "Send daily announcements",
   "tags": [
     "bobloy"
diff --git a/audiotrivia/audiotrivia.py b/audiotrivia/audiotrivia.py
index 97ff456..586f5b7 100644
--- a/audiotrivia/audiotrivia.py
+++ b/audiotrivia/audiotrivia.py
@@ -5,20 +5,23 @@ from typing import List
 import lavalink
 import yaml
 from redbot.cogs.audio import Audio
+from redbot.cogs.audio.core.utilities import validation
 from redbot.cogs.trivia import LOG
 from redbot.cogs.trivia.trivia import InvalidListError, Trivia
 from redbot.core import commands, Config, checks
 from redbot.core.bot import Red
 from redbot.core.data_manager import cog_data_path
 from redbot.core.utils.chat_formatting import box
+# from redbot.cogs.audio.utils import userlimit
+
 
 from .audiosession import AudioSession
 
 
 class AudioTrivia(Trivia):
     """
-    Custom commands
-    Creates commands used to display text and adjust roles
+    Upgrade to the Trivia cog that enables audio trivia
+    Replaces the Trivia cog
     """
 
     def __init__(self, bot: Red):
@@ -88,19 +91,24 @@ class AudioTrivia(Trivia):
         if session is not None:
             await ctx.send("There is already an ongoing trivia session in this channel.")
             return
-
         status = await self.audio.config.status()
+        notify = await self.audio.config.guild(ctx.guild).notify()
 
         if status:
             await ctx.send(
-                "I recommend disabling audio status with `{}audioset status`".format(ctx.prefix)
+                "It is recommended to disable audio status with `{}audioset status`".format(ctx.prefix)
+            )
+
+        if notify:
+            await ctx.send(
+                "It is recommended to disable audio notify with `{}audioset notify`".format(ctx.prefix)
             )
 
         if not self.audio._player_check(ctx):
             try:
                 if not ctx.author.voice.channel.permissions_for(
                     ctx.me
-                ).connect or self.audio._userlimit(ctx.author.voice.channel):
+                ).connect or self.audio.is_vc_full(ctx.author.voice.channel):
                     return await ctx.send("I don't have permission to connect to your channel.")
                 await lavalink.connect(ctx.author.voice.channel)
                 lavaplayer = lavalink.get_player(ctx.guild.id)
@@ -110,9 +118,8 @@ class AudioTrivia(Trivia):
 
         lavaplayer = lavalink.get_player(ctx.guild.id)
         lavaplayer.store("channel", ctx.channel.id)  # What's this for? I dunno
-        lavaplayer.store("guild", ctx.guild.id)
 
-        await self.audio._data_check(ctx)
+        await self.audio.set_player_settings(ctx)
 
         if not ctx.author.voice or ctx.author.voice.channel != lavaplayer.channel:
             return await ctx.send(
@@ -148,7 +155,8 @@ class AudioTrivia(Trivia):
                 "The trivia list was parsed successfully, however it appears to be empty!"
             )
             return
-        settings = await self.conf.guild(ctx.guild).all()
+
+        settings = await self.config.guild(ctx.guild).all()
         audiosettings = await self.audioconf.guild(ctx.guild).all()
         config = trivia_dict.pop("CONFIG", None)
         if config and settings["allow_override"]:
@@ -196,7 +204,7 @@ class AudioTrivia(Trivia):
 
         with path.open(encoding="utf-8") as file:
             try:
-                dict_ = yaml.load(file)
+                dict_ = yaml.load(file, Loader=yaml.SafeLoader)
             except yaml.error.YAMLError as exc:
                 raise InvalidListError("YAML parsing failed.") from exc
             else:
diff --git a/audiotrivia/data/lists/anime.yaml b/audiotrivia/data/lists/anime.yaml
new file mode 100644
index 0000000..7a27a0e
--- /dev/null
+++ b/audiotrivia/data/lists/anime.yaml
@@ -0,0 +1,7303 @@
+AUTHOR: Plab
+https://www.youtube.com/watch?v=2uq34TeWEdQ:
+- 'Hagane no Renkinjutsushi (2009)'
+- '(2009) الخيميائي المعدني الكامل'
+- 'FMA (2009)'
+- 'FMA2'
+- 'FMA: B'
+- 'FMA:B'
+- 'FMAB'
+- 'Full Metal Alchemist 2'
+- 'Full Metal Alchemist: Brotherhood'
+- 'Full Metal Alchemist: Fraternitate'
+- 'Fullmetal Alchemist (2009)'
+- 'Fullmetal Alchemist - Bratrství'
+- 'Fullmetal Alchemist 2'
+- 'Fullmetal Alchemist Brotherhood'
+- 'Fullmetal Alchemist: Brotherhood'
+- 'Fullmetal Alchemist: Teräsalkemisti'
+- 'Fullmetal Alchemist: Testvériség'
+- 'HagaRen (2009)'
+- 'hagaren2'
+- 'Metal Simyacı: Kardeşlik'
+- 'Metalinis Alchemikas 2'
+- 'Stalowy Alchemik'
+- 'Stålalkemisten'
+- 'Железният алхимик: Братство'
+- 'Металният алхимик 2'
+- 'Металният алхимик: Братство'
+- 'Сталевий алхімік. Братерство'
+- 'Стальной Алхимик: Братство'
+- 'Стоманеният алхимик (2009 г.)'
+- 'Стоманеният алхимик 2'
+- 'Стоманеният алхимик: Братство'
+- 'Суцільнометалевий алхімік: Братерство'
+- 'Цулметаллан Алхимич: Ахан дүүсийн барилдлага'
+- 'אלכימאי המתכת 2009'
+- 'الخيميائي المعدني الكامل: الأخوة'
+- 'کیمیاگر تمام فلزی : داستان برادری'
+- '鋼の錬金術師 FULLMETAL ALCHEMIST (2009)'
+- '鋼之鍊金術師 BROTHERHOOD'
+- '鋼之鍊金術師FA'
+- '钢之炼金术师 2009'
+- '钢之炼金术师 FULLMETAL ALCHEMIST'
+- '강철의 연금술사 리메이크'
+https://www.youtube.com/watch?v=iOsN2FP3-l4:
+- 'Hagane no Renkinjutsushi (2009)'
+- '(2009) الخيميائي المعدني الكامل'
+- 'FMA (2009)'
+- 'FMA2'
+- 'FMA: B'
+- 'FMA:B'
+- 'FMAB'
+- 'Full Metal Alchemist 2'
+- 'Full Metal Alchemist: Brotherhood'
+- 'Full Metal Alchemist: Fraternitate'
+- 'Fullmetal Alchemist (2009)'
+- 'Fullmetal Alchemist - Bratrství'
+- 'Fullmetal Alchemist 2'
+- 'Fullmetal Alchemist Brotherhood'
+- 'Fullmetal Alchemist: Brotherhood'
+- 'Fullmetal Alchemist: Teräsalkemisti'
+- 'Fullmetal Alchemist: Testvériség'
+- 'HagaRen (2009)'
+- 'hagaren2'
+- 'Metal Simyacı: Kardeşlik'
+- 'Metalinis Alchemikas 2'
+- 'Stalowy Alchemik'
+- 'Stålalkemisten'
+- 'Железният алхимик: Братство'
+- 'Металният алхимик 2'
+- 'Металният алхимик: Братство'
+- 'Сталевий алхімік. Братерство'
+- 'Стальной Алхимик: Братство'
+- 'Стоманеният алхимик (2009 г.)'
+- 'Стоманеният алхимик 2'
+- 'Стоманеният алхимик: Братство'
+- 'Суцільнометалевий алхімік: Братерство'
+- 'Цулметаллан Алхимич: Ахан дүүсийн барилдлага'
+- 'אלכימאי המתכת 2009'
+- 'الخيميائي المعدني الكامل: الأخوة'
+- 'کیمیاگر تمام فلزی : داستان برادری'
+- '鋼の錬金術師 FULLMETAL ALCHEMIST (2009)'
+- '鋼之鍊金術師 BROTHERHOOD'
+- '鋼之鍊金術師FA'
+- '钢之炼金术师 2009'
+- '钢之炼金术师 FULLMETAL ALCHEMIST'
+- '강철의 연금술사 리메이크'
+https://www.youtube.com/watch?v=j3qHKeZjrdU:
+- 'Hagane no Renkinjutsushi (2009)'
+- '(2009) الخيميائي المعدني الكامل'
+- 'FMA (2009)'
+- 'FMA2'
+- 'FMA: B'
+- 'FMA:B'
+- 'FMAB'
+- 'Full Metal Alchemist 2'
+- 'Full Metal Alchemist: Brotherhood'
+- 'Full Metal Alchemist: Fraternitate'
+- 'Fullmetal Alchemist (2009)'
+- 'Fullmetal Alchemist - Bratrství'
+- 'Fullmetal Alchemist 2'
+- 'Fullmetal Alchemist Brotherhood'
+- 'Fullmetal Alchemist: Brotherhood'
+- 'Fullmetal Alchemist: Teräsalkemisti'
+- 'Fullmetal Alchemist: Testvériség'
+- 'HagaRen (2009)'
+- 'hagaren2'
+- 'Metal Simyacı: Kardeşlik'
+- 'Metalinis Alchemikas 2'
+- 'Stalowy Alchemik'
+- 'Stålalkemisten'
+- 'Железният алхимик: Братство'
+- 'Металният алхимик 2'
+- 'Металният алхимик: Братство'
+- 'Сталевий алхімік. Братерство'
+- 'Стальной Алхимик: Братство'
+- 'Стоманеният алхимик (2009 г.)'
+- 'Стоманеният алхимик 2'
+- 'Стоманеният алхимик: Братство'
+- 'Суцільнометалевий алхімік: Братерство'
+- 'Цулметаллан Алхимич: Ахан дүүсийн барилдлага'
+- 'אלכימאי המתכת 2009'
+- 'الخيميائي المعدني الكامل: الأخوة'
+- 'کیمیاگر تمام فلزی : داستان برادری'
+- '鋼の錬金術師 FULLMETAL ALCHEMIST (2009)'
+- '鋼之鍊金術師 BROTHERHOOD'
+- '鋼之鍊金術師FA'
+- '钢之炼金术师 2009'
+- '钢之炼金术师 FULLMETAL ALCHEMIST'
+- '강철의 연금술사 리메이크'
+https://www.youtube.com/watch?v=KMZBauH47Jo:
+- 'Fullmetal Alchemist'
+- 'FMA'
+- 'Full Metal Alchemist'
+- 'Fullmetal Alchemist (2003)'
+- 'Hagane no Renkinjutsushi'
+- 'HagaRen'
+- '鋼の錬金術師'
+https://www.youtube.com/watch?v=cRA5gsdCf4c:
+- 'Hagane no Renkinjutsushi (2009)'
+- '(2009) الخيميائي المعدني الكامل'
+- 'FMA (2009)'
+- 'FMA2'
+- 'FMA: B'
+- 'FMA:B'
+- 'FMAB'
+- 'Full Metal Alchemist 2'
+- 'Full Metal Alchemist: Brotherhood'
+- 'Full Metal Alchemist: Fraternitate'
+- 'Fullmetal Alchemist (2009)'
+- 'Fullmetal Alchemist - Bratrství'
+- 'Fullmetal Alchemist 2'
+- 'Fullmetal Alchemist Brotherhood'
+- 'Fullmetal Alchemist: Brotherhood'
+- 'Fullmetal Alchemist: Teräsalkemisti'
+- 'Fullmetal Alchemist: Testvériség'
+- 'HagaRen (2009)'
+- 'hagaren2'
+- 'Metal Simyacı: Kardeşlik'
+- 'Metalinis Alchemikas 2'
+- 'Stalowy Alchemik'
+- 'Stålalkemisten'
+- 'Железният алхимик: Братство'
+- 'Металният алхимик 2'
+- 'Металният алхимик: Братство'
+- 'Сталевий алхімік. Братерство'
+- 'Стальной Алхимик: Братство'
+- 'Стоманеният алхимик (2009 г.)'
+- 'Стоманеният алхимик 2'
+- 'Стоманеният алхимик: Братство'
+- 'Суцільнометалевий алхімік: Братерство'
+- 'Цулметаллан Алхимич: Ахан дүүсийн барилдлага'
+- 'אלכימאי המתכת 2009'
+- 'الخيميائي المعدني الكامل: الأخوة'
+- 'کیمیاگر تمام فلزی : داستان برادری'
+- '鋼の錬金術師 FULLMETAL ALCHEMIST (2009)'
+- '鋼之鍊金術師 BROTHERHOOD'
+- '鋼之鍊金術師FA'
+- '钢之炼金术师 2009'
+- '钢之炼金术师 FULLMETAL ALCHEMIST'
+- '강철의 연금술사 리메이크'
+https://www.youtube.com/watch?v=XMXgHfHxKVM:
+- 'Shingeki no Kyojin'
+- 'Advancing Giants'
+- 'AoT'
+- 'AoT TV'
+- 'Atacul Titanilor'
+- 'Ataque a los Titanes'
+- 'Ataque dos Titãs'
+- 'Attack on Titan'
+- 'L`attacco dei Giganti'
+- 'L`attaque des Titans'
+- 'shingeki'
+- 'Shingeki no Kyojin TV'
+- 'SnK'
+- 'Útok Titánů'
+- 'Η Επίθεση των Τιτάνων'
+- 'Атака Титанів'
+- 'Вторжение Гигантов'
+- 'На бій проти титанів'
+- 'Нашествие на гиганти'
+- 'Поход срещу титаните'
+- 'מתקפת הטיטאנים'
+- 'الهجوم على العمالقة'
+- 'حمله به تایتان'
+- '进击的巨人'
+- '進撃の巨人 attack on titan'
+- '進擊的巨人'
+- '진격의 거인'
+https://www.youtube.com/watch?v=PbWFpzi8C94:
+- 'Shingeki no Kyojin'
+- 'Advancing Giants'
+- 'AoT'
+- 'AoT TV'
+- 'Atacul Titanilor'
+- 'Ataque a los Titanes'
+- 'Ataque dos Titãs'
+- 'Attack on Titan'
+- 'L`attacco dei Giganti'
+- 'L`attaque des Titans'
+- 'shingeki'
+- 'Shingeki no Kyojin TV'
+- 'SnK'
+- 'Útok Titánů'
+- 'Η Επίθεση των Τιτάνων'
+- 'Атака Титанів'
+- 'Вторжение Гигантов'
+- 'На бій проти титанів'
+- 'Нашествие на гиганти'
+- 'Поход срещу титаните'
+- 'מתקפת הטיטאנים'
+- 'الهجوم على العمالقة'
+- 'حمله به تایتان'
+- '进击的巨人'
+- '進撃の巨人 attack on titan'
+- '進擊的巨人'
+- '진격의 거인'
+https://www.youtube.com/watch?v=LKP-vZvjbh8:
+- 'Shingeki no Kyojin'
+- 'Advancing Giants'
+- 'AoT'
+- 'AoT TV'
+- 'Atacul Titanilor'
+- 'Ataque a los Titanes'
+- 'Ataque dos Titãs'
+- 'Attack on Titan'
+- 'L`attacco dei Giganti'
+- 'L`attaque des Titans'
+- 'shingeki'
+- 'Shingeki no Kyojin TV'
+- 'SnK'
+- 'Útok Titánů'
+- 'Η Επίθεση των Τιτάνων'
+- 'Атака Титанів'
+- 'Вторжение Гигантов'
+- 'На бій проти титанів'
+- 'Нашествие на гиганти'
+- 'Поход срещу титаните'
+- 'מתקפת הטיטאנים'
+- 'الهجوم على العمالقة'
+- 'حمله به تایتان'
+- '进击的巨人'
+- '進撃の巨人 attack on titan'
+- '進擊的巨人'
+- '진격의 거인'
+https://www.youtube.com/watch?v=swwUoExDIng:
+- 'Shingeki no Kyojin'
+- 'Advancing Giants'
+- 'AoT'
+- 'AoT TV'
+- 'Atacul Titanilor'
+- 'Ataque a los Titanes'
+- 'Ataque dos Titãs'
+- 'Attack on Titan'
+- 'L`attacco dei Giganti'
+- 'L`attaque des Titans'
+- 'shingeki'
+- 'Shingeki no Kyojin TV'
+- 'SnK'
+- 'Útok Titánů'
+- 'Η Επίθεση των Τιτάνων'
+- 'Атака Титанів'
+- 'Вторжение Гигантов'
+- 'На бій проти титанів'
+- 'Нашествие на гиганти'
+- 'Поход срещу титаните'
+- 'מתקפת הטיטאנים'
+- 'الهجوم على العمالقة'
+- 'حمله به تایتان'
+- '进击的巨人'
+- '進撃の巨人 attack on titan'
+- '進擊的巨人'
+- '진격의 거인'
+https://www.youtube.com/watch?v=0dK7JgKivQM:
+- 'Shingeki no Kyojin'
+- 'Advancing Giants'
+- 'AoT'
+- 'AoT TV'
+- 'Atacul Titanilor'
+- 'Ataque a los Titanes'
+- 'Ataque dos Titãs'
+- 'Attack on Titan'
+- 'L`attacco dei Giganti'
+- 'L`attaque des Titans'
+- 'shingeki'
+- 'Shingeki no Kyojin TV'
+- 'SnK'
+- 'Útok Titánů'
+- 'Η Επίθεση των Τιτάνων'
+- 'Атака Титанів'
+- 'Вторжение Гигантов'
+- 'На бій проти титанів'
+- 'Нашествие на гиганти'
+- 'Поход срещу титаните'
+- 'מתקפת הטיטאנים'
+- 'الهجوم على العمالقة'
+- 'حمله به تایتان'
+- '进击的巨人'
+- '進撃の巨人 attack on titan'
+- '進擊的巨人'
+- '진격의 거인'
+https://www.youtube.com/watch?v=REHaJZgWwxY:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=jbv5rCcTCfc:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=4uHbNfZDxqA:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=FL3vlCHxMMY:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=YCq4-r9annU:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=rbfMXMazK04:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=nCfjA8XU_Yg:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=XkL2W2GZ65c:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=-B3rpKfva1w:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=11uUb2hN4Cw:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=wfp3fRpzPUY:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=yzwd_8vYzCc:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=iXpGVuaQwXo:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=n2RgysLc66E:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=0xMFEE4uMgM:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=F-2kXUEeJLM:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=WlJYq767iNI:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=yo6WngP0nxM:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=zXwrf5BH7YQ:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=yphHnNQ-i60:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=CmPsqGaVdCQ:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=Sken4RHX9FY:
+- 'Ginga Eiyuu Densetsu'
+- 'Gin''eiden'
+- 'GinEiDen'
+- 'Heldensagen Vom Kosmosinsel'
+- 'Heldensagen vom Kosmosinsel'
+- 'Legend of the Galactic Heroes'
+- 'LoGH'
+- 'LOTGH'
+- 'LotGH'
+- '銀河英雄伝説'
+https://www.youtube.com/watch?v=CUf-8aXt9Hw:
+- 'Ginga Eiyuu Densetsu'
+- 'Gin''eiden'
+- 'GinEiDen'
+- 'Heldensagen Vom Kosmosinsel'
+- 'Heldensagen vom Kosmosinsel'
+- 'Legend of the Galactic Heroes'
+- 'LoGH'
+- 'LOTGH'
+- 'LotGH'
+- '銀河英雄伝説'
+https://www.youtube.com/watch?v=Ca_aLlLtStY:
+- 'Ginga Eiyuu Densetsu'
+- 'Gin''eiden'
+- 'GinEiDen'
+- 'Heldensagen Vom Kosmosinsel'
+- 'Heldensagen vom Kosmosinsel'
+- 'Legend of the Galactic Heroes'
+- 'LoGH'
+- 'LOTGH'
+- 'LotGH'
+- '銀河英雄伝説'
+https://www.youtube.com/watch?v=cKWqPXkLgzY:
+- '3-gatsu no Lion'
+- '3月のライオン'
+- '3月的狮子'
+- '3월의 라이온'
+- 'March Comes In Like a Lion'
+- 'March Comes in Like a Lion'
+- 'March comes in like a lion'
+- 'sangatsu (2016)'
+- 'Sangatsu no Lion'
+- 'Un marzo da leoni'
+- 'Март месец връхлита като лъв'
+- 'Март месец те връхлита като лъв'
+- 'Мартовский лев'
+- '3月のライオン'
+https://www.youtube.com/watch?v=PKjbF2a90Fo:
+- '3-gatsu no Lion'
+- '3月のライオン'
+- '3月的狮子'
+- '3월의 라이온'
+- 'March Comes In Like a Lion'
+- 'March Comes in Like a Lion'
+- 'March comes in like a lion'
+- 'sangatsu (2016)'
+- 'Sangatsu no Lion'
+- 'Un marzo da leoni'
+- 'Март месец връхлита като лъв'
+- 'Март месец те връхлита като лъв'
+- 'Мартовский лев'
+- '3月のライオン'
+https://www.youtube.com/watch?v=5htUWLGqlnQ:
+- '3-gatsu no Lion'
+- '3月のライオン'
+- '3月的狮子'
+- '3월의 라이온'
+- 'March Comes In Like a Lion'
+- 'March Comes in Like a Lion'
+- 'March comes in like a lion'
+- 'sangatsu (2016)'
+- 'Sangatsu no Lion'
+- 'Un marzo da leoni'
+- 'Март месец връхлита като лъв'
+- 'Март месец те връхлита като лъв'
+- 'Мартовский лев'
+- '3月のライオン'
+https://www.youtube.com/watch?v=oHdZOKm5xzo:
+- 'Clannad'
+- 'CLANNAD'
+- 'Clannad 1'
+- 'Clannad TV'
+- 'Кланад'
+- 'Кланнад'
+- 'خانواده'
+- 'كلاناد'
+- 'کلاناد'
+- 'แคลนนาด'
+- 'クラナド'
+- '클라나드'
+https://www.youtube.com/watch?v=hVMJxT3O9qA:
+- 'Clannad: After Story'
+- 'Clannad 2'
+- 'Clannad After Story'
+- 'Clannad AS'
+- 'CLANNAD ~AFTER STORY~'
+- 'Clannad2'
+- 'Кланад: Продовження Історії'
+- 'Кланнад: След историята'
+- 'خانواده: ادامه داستان'
+- 'كلاناد ما بعد القصة'
+- 'کلاناد ادامه داستان'
+- 'แคลนนาด อาฟเตอร์ สตอรี่'
+- 'クラナド アフターストーリー'
+- 'クラナド- AFTER STORY'
+- '클라나드 애프터 스토리'
+https://www.youtube.com/watch?v=EP69zYnelKs:
+- 'Bakemonogatari'
+- 'bakemono'
+- 'BMG'
+- 'Canavar Hikayeleri'
+- 'Ghostory'
+- 'Monstrų Istorijos'
+- 'Бакемоноґатарі'
+- 'Истории за Чудовището'
+- 'Истории о Чудовищах'
+- 'Монстрассказы'
+- 'Монстроповідання'
+- 'Оповідання про монстрів'
+- 'Потвороповідь'
+- 'باکمونوگاتاری'
+- 'داستان از ما بهتران'
+- 'บาเกะโมโนกาตาริ'
+- 'ปกรณัมของเหล่าภูต'
+- '化物語'
+- '化物语'
+- '괴물 이야기'
+- '바케모노가타리'
+https://www.youtube.com/watch?v=2OC6ARG6fZA:
+- 'Bakemonogatari'
+- 'bakemono'
+- 'BMG'
+- 'Canavar Hikayeleri'
+- 'Ghostory'
+- 'Monstrų Istorijos'
+- 'Бакемоноґатарі'
+- 'Истории за Чудовището'
+- 'Истории о Чудовищах'
+- 'Монстрассказы'
+- 'Монстроповідання'
+- 'Оповідання про монстрів'
+- 'Потвороповідь'
+- 'باکمونوگاتاری'
+- 'داستان از ما بهتران'
+- 'บาเกะโมโนกาตาริ'
+- 'ปกรณัมของเหล่าภูต'
+- '化物語'
+- '化物语'
+- '괴물 이야기'
+- '바케모노가타리'
+https://www.youtube.com/watch?v=PiauQ7P7mtQ:
+- 'Bakemonogatari'
+- 'bakemono'
+- 'BMG'
+- 'Canavar Hikayeleri'
+- 'Ghostory'
+- 'Monstrų Istorijos'
+- 'Бакемоноґатарі'
+- 'Истории за Чудовището'
+- 'Истории о Чудовищах'
+- 'Монстрассказы'
+- 'Монстроповідання'
+- 'Оповідання про монстрів'
+- 'Потвороповідь'
+- 'باکمونوگاتاری'
+- 'داستان از ما بهتران'
+- 'บาเกะโมโนกาตาริ'
+- 'ปกรณัมของเหล่าภูต'
+- '化物語'
+- '化物语'
+- '괴물 이야기'
+- '바케모노가타리'
+https://www.youtube.com/watch?v=5yQcLzUTnO4:
+- 'Bakemonogatari'
+- 'bakemono'
+- 'BMG'
+- 'Canavar Hikayeleri'
+- 'Ghostory'
+- 'Monstrų Istorijos'
+- 'Бакемоноґатарі'
+- 'Истории за Чудовището'
+- 'Истории о Чудовищах'
+- 'Монстрассказы'
+- 'Монстроповідання'
+- 'Оповідання про монстрів'
+- 'Потвороповідь'
+- 'باکمونوگاتاری'
+- 'داستان از ما بهتران'
+- 'บาเกะโมโนกาตาริ'
+- 'ปกรณัมของเหล่าภูต'
+- '化物語'
+- '化物语'
+- '괴물 이야기'
+- '바케모노가타리'
+https://www.youtube.com/watch?v=hhxmwHErUhU:
+- 'Owarimonogatari'
+- 'Endstory'
+- 'OMG'
+- 'Истории Последствий'
+- 'Край на историята'
+- '終物語'
+https://www.youtube.com/watch?v=2---3Iysnqg:
+- 'Haikyuu!!'
+- 'Haikyu!!'
+- 'Haikyu!! Los Ases del Voley'
+- 'Haikyuu'
+- 'Odbojka'
+- 'Висока топка'
+- 'Хайкю!!'
+- 'ハイキュー!!'
+- '排球少年!!'
+https://www.youtube.com/watch?v=IK6hHzAPhuI:
+- 'Haikyuu!!'
+- 'Haikyu!!'
+- 'Haikyu!! Los Ases del Voley'
+- 'Haikyuu'
+- 'Odbojka'
+- 'Висока топка'
+- 'Хайкю!!'
+- 'ハイキュー!!'
+- '排球少年!!'
+https://www.youtube.com/watch?v=as-sSVx3SmQ:
+- 'Haikyuu!!'
+- 'Haikyu!!'
+- 'Haikyu!! Los Ases del Voley'
+- 'Haikyuu'
+- 'Odbojka'
+- 'Висока топка'
+- 'Хайкю!!'
+- 'ハイキュー!!'
+- '排球少年!!'
+https://www.youtube.com/watch?v=cZ7zQbMxm28:
+- 'Code Geass: Hangyaku no Lelouch'
+- 'cg r1'
+- 'cg1'
+- 'cghnl'
+- 'Code Geass'
+- 'code geass'
+- 'Code Geass 1'
+- 'Code Geass R1'
+- 'Code Geass ~ Lelouch de la rébellion'
+- 'Code Geass 反叛的魯路修'
+- 'Code Geass 反叛的鲁鲁修'
+- 'Code Geass: Cuộc khởi nghĩa của Lelouch'
+- 'Code Geass: Lelouch da Rebelião'
+- 'Code Geass: Lelouch de la Rebelión'
+- 'Code Geass: Lelouch de la Rebel·lió'
+- 'Code Geass: Lelouch of the Rebellion'
+- 'Code Geass: Lelouch`un Başkaldırısı'
+- 'CodeGeass'
+- 'Código Geass R1'
+- 'Código Geass: Lelouch da Rebelião'
+- 'geass'
+- 'geass1'
+- 'Kodas Geass: Leloušio sukilimas'
+- 'Код Геас: Бунтът на Люлюш'
+- 'Код Гиас: Восставший Лелуш'
+- 'Код Гиасс: Восстание Лелуша'
+- 'Код Ґіас: Повстання Лелуша (R1)'
+- 'קוד ג`יאס'
+- 'โค้ด กีอัส ภาคการปฏิวัติของลูลูช'
+- 'コードギアス 反逆のルルーシュ'
+- '叛逆的鲁鲁修'
+- '코드기어스 반역의 를르슈'
+https://www.youtube.com/watch?v=YBhsDtFUgdM:
+- 'Code Geass: Hangyaku no Lelouch'
+- 'cg r1'
+- 'cg1'
+- 'cghnl'
+- 'Code Geass'
+- 'code geass'
+- 'Code Geass 1'
+- 'Code Geass R1'
+- 'Code Geass ~ Lelouch de la rébellion'
+- 'Code Geass 反叛的魯路修'
+- 'Code Geass 反叛的鲁鲁修'
+- 'Code Geass: Cuộc khởi nghĩa của Lelouch'
+- 'Code Geass: Lelouch da Rebelião'
+- 'Code Geass: Lelouch de la Rebelión'
+- 'Code Geass: Lelouch de la Rebel·lió'
+- 'Code Geass: Lelouch of the Rebellion'
+- 'Code Geass: Lelouch`un Başkaldırısı'
+- 'CodeGeass'
+- 'Código Geass R1'
+- 'Código Geass: Lelouch da Rebelião'
+- 'geass'
+- 'geass1'
+- 'Kodas Geass: Leloušio sukilimas'
+- 'Код Геас: Бунтът на Люлюш'
+- 'Код Гиас: Восставший Лелуш'
+- 'Код Гиасс: Восстание Лелуша'
+- 'Код Ґіас: Повстання Лелуша (R1)'
+- 'קוד ג`יאס'
+- 'โค้ด กีอัส ภาคการปฏิวัติของลูลูช'
+- 'コードギアス 反逆のルルーシュ'
+- '叛逆的鲁鲁修'
+- '코드기어스 반역의 를르슈'
+https://www.youtube.com/watch?v=zp3jvJkv5fo:
+- 'Code Geass: Hangyaku no Lelouch'
+- 'cg r1'
+- 'cg1'
+- 'cghnl'
+- 'Code Geass'
+- 'code geass'
+- 'Code Geass 1'
+- 'Code Geass R1'
+- 'Code Geass ~ Lelouch de la rébellion'
+- 'Code Geass 反叛的魯路修'
+- 'Code Geass 反叛的鲁鲁修'
+- 'Code Geass: Cuộc khởi nghĩa của Lelouch'
+- 'Code Geass: Lelouch da Rebelião'
+- 'Code Geass: Lelouch de la Rebelión'
+- 'Code Geass: Lelouch de la Rebel·lió'
+- 'Code Geass: Lelouch of the Rebellion'
+- 'Code Geass: Lelouch`un Başkaldırısı'
+- 'CodeGeass'
+- 'Código Geass R1'
+- 'Código Geass: Lelouch da Rebelião'
+- 'geass'
+- 'geass1'
+- 'Kodas Geass: Leloušio sukilimas'
+- 'Код Геас: Бунтът на Люлюш'
+- 'Код Гиас: Восставший Лелуш'
+- 'Код Гиасс: Восстание Лелуша'
+- 'Код Ґіас: Повстання Лелуша (R1)'
+- 'קוד ג`יאס'
+- 'โค้ด กีอัส ภาคการปฏิวัติของลูลูช'
+- 'コードギアス 反逆のルルーシュ'
+- '叛逆的鲁鲁修'
+- '코드기어스 반역의 를르슈'
+https://www.youtube.com/watch?v=bTU9RfI8WBk:
+- 'Code Geass: Hangyaku no Lelouch'
+- 'cg r1'
+- 'cg1'
+- 'cghnl'
+- 'Code Geass'
+- 'code geass'
+- 'Code Geass 1'
+- 'Code Geass R1'
+- 'Code Geass ~ Lelouch de la rébellion'
+- 'Code Geass 反叛的魯路修'
+- 'Code Geass 反叛的鲁鲁修'
+- 'Code Geass: Cuộc khởi nghĩa của Lelouch'
+- 'Code Geass: Lelouch da Rebelião'
+- 'Code Geass: Lelouch de la Rebelión'
+- 'Code Geass: Lelouch de la Rebel·lió'
+- 'Code Geass: Lelouch of the Rebellion'
+- 'Code Geass: Lelouch`un Başkaldırısı'
+- 'CodeGeass'
+- 'Código Geass R1'
+- 'Código Geass: Lelouch da Rebelião'
+- 'geass'
+- 'geass1'
+- 'Kodas Geass: Leloušio sukilimas'
+- 'Код Геас: Бунтът на Люлюш'
+- 'Код Гиас: Восставший Лелуш'
+- 'Код Гиасс: Восстание Лелуша'
+- 'Код Ґіас: Повстання Лелуша (R1)'
+- 'קוד ג`יאס'
+- 'โค้ด กีอัส ภาคการปฏิวัติของลูลูช'
+- 'コードギアス 反逆のルルーシュ'
+- '叛逆的鲁鲁修'
+- '코드기어스 반역의 를르슈'
+https://www.youtube.com/watch?v=2Ex3bu6CxPU:
+- 'Shigatsu wa Kimi no Uso'
+- '4월은 너의 거짓말'
+- 'Bugie d`aprile'
+- 'kimiuso'
+- 'Nisan`daki Yalanın'
+- 'Shigatsu Wa Kimi No Uso - Sekunden in Moll'
+- 'Your Lie in April'
+- '四月は君の嘘'
+- '四月是你的谎言'
+https://www.youtube.com/watch?v=U-ZNfo_NlIU:
+- 'JoJo no Kimyou na Bouken'
+- 'Jo Jo`s Bizarre Adventures'
+- 'jojo'
+- 'JoJo no Kimiyona Boken'
+- 'JoJo`s Bizarre Adventure'
+- 'JoJo`s Bizarre Adventure (suite)'
+- 'JoJo`s Bizarre Adventure - DVD 3 & 4'
+- 'JoJo的奇妙冒险'
+- 'JoJo的奇妙冒險'
+- 'Le bizzarre avventure di JoJo'
+- 'Невероятните приключения на ДжоДжо'
+- 'הרפתקואותיו הביזריות של ג`וג`ו'
+- 'مغامرة جوجو الغريبة (1993) (اوفا)'
+- 'ジョジョの奇妙な冒険'
+https://www.youtube.com/watch?v=K28Lcc-MdJs:
+- 'Shouwa Genroku Rakugo Shinjuu'
+- 'Showa and Genroku Era Lover''s Suicide Through Rakugo'
+- 'Showa Genroku Rakugo Shinju'
+- '昭和元禄落語心中'
+https://www.youtube.com/watch?v=dWk-VpK4hJo:
+- 'Cowboy Bebop'
+- 'Bebop'
+- 'Bebop TV'
+- 'CB'
+- 'CBB'
+- 'CowBe'
+- 'COWBOY BEBOP'
+- 'Csillagközi fejvadászok'
+- 'Kaubojus Bebopas'
+- 'Kaubojus Bibopas'
+- 'Kovboj Bebop'
+- 'Kovboy Bebop'
+- 'Ковбой Бибоп ТВ'
+- 'Ковбой Бібоп ТБ'
+- 'Марсиански каубой'
+- 'קאובוי ביבופ'
+- 'راعي البقر بيبوب'
+- 'کابوی بیباپ'
+- 'カウボーイビバップ'
+- '星际牛仔'
+- '星際牛仔'
+- '카우보이 비밥'
+https://www.youtube.com/watch?v=lG0uaNS87Dc:
+- 'Mushishi Zoku Shou'
+- 'MUSHI-SHI -Next Passage-'
+- 'MUSHI-SHI The Next Passage'
+- 'Mushi-shi Zoku Shou'
+- 'Mushishi Zokushou'
+- 'Mushishi: The Next Chapter'
+- '蟲師 続章'
+https://www.youtube.com/watch?v=9S50a4rStNA:
+- 'Hajime no Ippo'
+- 'Fighting Spirit'
+- 'Hajime no Ippo: The Fighting'
+- 'The First Step'
+- 'はじめの一歩 THE FIGHTING!'
+https://www.youtube.com/watch?v=x1VNM57PHms:
+- 'Hajime no Ippo'
+- 'Fighting Spirit'
+- 'Hajime no Ippo: The Fighting'
+- 'The First Step'
+- 'はじめの一歩 THE FIGHTING!'
+https://www.youtube.com/watch?v=0vbuobfmBgE:
+- 'Hajime no Ippo'
+- 'Fighting Spirit'
+- 'Hajime no Ippo: The Fighting'
+- 'The First Step'
+- 'はじめの一歩 THE FIGHTING!'
+https://www.youtube.com/watch?v=GfwHsqOOTpc:
+- 'Hajime no Ippo'
+- 'Fighting Spirit'
+- 'Hajime no Ippo: The Fighting'
+- 'The First Step'
+- 'はじめの一歩 THE FIGHTING!'
+https://www.youtube.com/watch?v=1JoFsTDfd-8:
+- 'Yakusoku no Neverland'
+- 'The Promised Neverland'
+- '約束のネバーランド'
+https://www.youtube.com/watch?v=LI6gNLwe4Mc:
+- 'Great Teacher Onizuka'
+- 'GTO'
+- 'GTO - The Animation'
+- 'グレート・ティーチャー・オニヅカ'
+https://www.youtube.com/watch?v=C_t47BVtPuE:
+- 'Tengen Toppa Gurren Lagann'
+- 'Gurren Lagann'
+- 'Gurren Laggan'
+- 'Heavenly Breakthrough Gurren Lagann'
+- 'Making Break-Through Gurren Lagann'
+- 'Tengen Toppa Gurren-Lagann'
+- 'TTGL'
+- '天元突破グレンラガン'
+https://www.youtube.com/watch?v=-lNqHleBzSM:
+- 'Natsume Yuujinchou'
+- 'Natsume Yujin-cho'
+- 'Natsume Yujincho'
+- 'Natsume''s Book of Friends'
+- '夏目友人帳'
+https://www.youtube.com/watch?v=ZukRwP2AWS0:
+- 'Zoku Natsume Yuujinchou'
+- 'Natsume2'
+- 'Natsume`s Book of Friends (2)'
+- 'ny2'
+- 'nyc2'
+- 'zny'
+- 'znyc'
+- 'ادامه ی کتابٍ دوستان ناتسومه'
+- 'زاکو ناتسومه یوجینچو'
+- 'นัตสึเมะกับบันทึกพิศวง ภาค 2'
+- '続 夏目友人帳'
+- '续 夏目友人帐'
+- '续.夏目友人帐'
+https://www.youtube.com/watch?v=wkeB3WPD9i4:
+- 'Natsume Yuujinchou San'
+- 'Natsume`s Book of Friends (3)'
+- 'ny3'
+- 'nyc3'
+- 'زاکو ناتسومه یوجینچو 3'
+- 'کتابٍ دوستان ناتسومه 3'
+- 'นัตสึเมะกับบันทึกพิศวง ภาค 3'
+- '夏目友人帐 参'
+- '夏目友人帐3'
+- '夏目友人帳 参'
+https://www.youtube.com/watch?v=NIvj0_buxgc:
+- 'Natsume Yuujinchou Shi'
+- 'Natsume Yujincho 4'
+- 'Natsume Yuujinchou 4'
+- 'Natsume Yuujinchou Four'
+- 'Natsume''s Book of Friends 4'
+- 'Natsume''s Book of Friends Season 4'
+- '夏目友人帳 肆'
+https://www.youtube.com/watch?v=ivl7hK9D_5c:
+- 'Natsume Yuujinchou Go'
+- 'Natsume''s Book of Friends 5'
+- 'Natsume''s Book of Friends Five'
+- '夏目友人帳 伍'
+https://www.youtube.com/watch?v=atxYe-nOa9w:
+- 'One Punch Man'
+- '1PM'
+- 'ONE PUNCH MAN ワンパンマン'
+- 'One Punch-Man'
+- 'One-Punch Man'
+- 'OPM'
+- 'Tek Vuruş Adam'
+- 'Wanpanman'
+- 'Ванпанчмен'
+- 'Уанпънч-мен'
+- 'ワンパンマン'
+- '一拳超人'
+- '원펀맨'
+https://www.youtube.com/watch?v=msTB5r8nUHU:
+- 'Monster'
+- 'MONSTER'
+- 'モンスター'
+https://www.youtube.com/watch?v=C337shIT9LI:
+- 'Suzumiya Haruhi no Yuuutsu'
+- 'The Melancholy of Haruhi Suzumiya'
+- '涼宮ハルヒの憂鬱'
+https://www.youtube.com/watch?v=yu0HjPzFYnY:
+- 'Boku no Hero Academia'
+- 'My Hero Academia'
+- '僕のヒーローアカデミア'
+https://www.youtube.com/watch?v=Q7w5IMyJ3pM:
+- 'Boku no Hero Academia'
+- 'My Hero Academia'
+- '僕のヒーローアカデミア'
+https://www.youtube.com/watch?v=v1YojYU5nPQ:
+- 'Boku no Hero Academia'
+- 'My Hero Academia'
+- '僕のヒーローアカデミア'
+https://www.youtube.com/watch?v=XhIA35OAIw4:
+- 'Boku no Hero Academia'
+- 'My Hero Academia'
+- '僕のヒーローアカデミア'
+https://www.youtube.com/watch?v=8QE9cmfxx4s:
+- 'Death Note'
+- 'Caderno da Morte'
+- 'DEATH NOTE'
+- 'Death Note - A halállista'
+- 'Death Note - Carnetul morţii'
+- 'Death Note - Zápisník smrti'
+- 'DN'
+- 'Mirties Užrašai'
+- 'Notatnik śmierci'
+- 'Notes Śmierci'
+- 'Quaderno della Morte'
+- 'Sveska Smrti'
+- 'Ölüm Defteri'
+- 'Τετράδιο Θανάτου'
+- 'Бележник на Смъртта'
+- 'Записник Смерті'
+- 'Свеска Смрти'
+- 'Тетрадка на Смъртта'
+- 'Тетрадь cмерти'
+- 'Үхлийн Тэмдэглэл'
+- 'מחברת המוות'
+- 'دفترچه مرگ'
+- 'دفترچه یادداشت مرگ'
+- 'كـتـاب الـموت'
+- 'مدونة الموت'
+- 'مذكرة الموت'
+- 'موت نوٹ'
+- 'डेथ नोट'
+- 'デスノート'
+- '死亡笔记'
+- '데스노트'
+https://www.youtube.com/watch?v=d5HT8HoiAHg:
+- 'Death Note'
+- 'Caderno da Morte'
+- 'DEATH NOTE'
+- 'Death Note - A halállista'
+- 'Death Note - Carnetul morţii'
+- 'Death Note - Zápisník smrti'
+- 'DN'
+- 'Mirties Užrašai'
+- 'Notatnik śmierci'
+- 'Notes Śmierci'
+- 'Quaderno della Morte'
+- 'Sveska Smrti'
+- 'Ölüm Defteri'
+- 'Τετράδιο Θανάτου'
+- 'Бележник на Смъртта'
+- 'Записник Смерті'
+- 'Свеска Смрти'
+- 'Тетрадка на Смъртта'
+- 'Тетрадь cмерти'
+- 'Үхлийн Тэмдэглэл'
+- 'מחברת המוות'
+- 'دفترچه مرگ'
+- 'دفترچه یادداشت مرگ'
+- 'كـتـاب الـموت'
+- 'مدونة الموت'
+- 'مذكرة الموت'
+- 'موت نوٹ'
+- 'डेथ नोट'
+- 'デスノート'
+- '死亡笔记'
+- '데스노트'
+https://www.youtube.com/watch?v=8vMRheOXO_w:
+- 'Bakuman.'
+- 'bakuman'
+- 'Bakuman'
+- 'Бакуман'
+- 'バクマン.'
+- '爆漫王'
+- '食梦者'
+https://www.youtube.com/watch?v=UASYpcT1etY:
+- 'Bakuman.'
+- 'bakuman'
+- 'Bakuman'
+- 'Бакуман'
+- 'バクマン.'
+- '爆漫王'
+- '食梦者'
+https://www.youtube.com/watch?v=2v6iOVhw6mQ:
+- 'Ping Pong the Animation'
+- 'Ping Pong The Animation'
+- 'PPTA'
+- 'ピンポン THE ANIMATION'
+- 'ピンポン The Animation'
+https://www.youtube.com/watch?v=3vP4iMoVYAg:
+- 'Sora yori mo Tooi Basho'
+- 'A Place Further Than the Universe'
+- 'Sora yorimo Tooi Basho'
+- 'Uchuu yori mo Tooi Basho'
+- 'Uchuu Yorimo Toui Basho'
+- 'Yorimoi'
+- '宇宙よりも遠い場所'
+https://www.youtube.com/watch?v=xkH8ti1gakE:
+- 'Yojouhan Shinwa Taikei'
+- '4-1/2 Tatami Mythological Chronicles'
+- '4.5 Tatami Mythological Chronicles'
+- '5 татами'
+- 'tatami'
+- 'tatami galaxy'
+- 'The Tatami Galaxy'
+- 'Yojou-Han Shinwa Taikei'
+- 'Yojouhan'
+- 'Легенды комнаты на 4'
+- '四叠半神话大系'
+- '四畳半神話大系'
+https://www.youtube.com/watch?v=KS9UfmCFn_Y:
+- 'Ansatsu Kyoushitsu'
+- 'Assassination Classroom'
+- '暗殺教室'
+https://www.youtube.com/watch?v=jZEcqbuSa7I:
+- 'Ansatsu Kyoushitsu'
+- 'Assassination Classroom'
+- '暗殺教室'
+https://www.youtube.com/watch?v=c_J7ybxenOQ:
+- 'Ansatsu Kyoushitsu'
+- 'Assassination Classroom'
+- '暗殺教室'
+https://www.youtube.com/watch?v=YdIOSzYApzo:
+- 'Fate/Zero'
+- 'f/z'
+- 'Fate Zero'
+- 'FateZero'
+- 'fz'
+- 'fz1'
+- 'Доля/Початок'
+- 'Нулева съдба'
+- 'Судьба/Зиро'
+- 'Судьба/Начало'
+- 'Съдба/Началото'
+- 'Фатум 2011'
+- 'Фатум/Початок'
+- 'سرنوشت / صفر'
+- 'فیت / زیرو'
+- 'قسمت / صفر'
+- 'フェイト/ゼロ'
+https://www.youtube.com/watch?v=r1JJUk7Cl7A:
+- 'Fate/Zero'
+- 'f/z'
+- 'Fate Zero'
+- 'FateZero'
+- 'fz'
+- 'fz1'
+- 'Доля/Початок'
+- 'Нулева съдба'
+- 'Судьба/Зиро'
+- 'Судьба/Начало'
+- 'Съдба/Началото'
+- 'Фатум 2011'
+- 'Фатум/Початок'
+- 'سرنوشت / صفر'
+- 'فیت / زیرو'
+- 'قسمت / صفر'
+- 'フェイト/ゼロ'
+https://www.youtube.com/watch?v=mtuwpsc8KKI:
+- 'Violet Evergarden'
+- 'ヴァイオレット・エヴァーガーデン'
+- '紫罗兰永恒花园'
+- '바이올렛 에버가든'
+https://www.youtube.com/watch?v=NQCax11Q0Bs:
+- 'No Game No Life'
+- 'NGNL'
+- 'No Game'
+- 'No Game, No Life'
+- 'No Life'
+- 'ノーゲーム・ノーライフ'
+https://www.youtube.com/watch?v=jwmRWhmJknc:
+- 'Aria the Origination'
+- 'ARIA The ORIGINATION'
+- 'Aria4'
+- 'Ария: Оригиналът'
+- 'アリア The ORIGINATION'
+- '水星领航员 第3季 ~ The ORIGINATION'
+- '아리아 디 오리지네이션'
+https://www.youtube.com/watch?v=8I8nWdkp-Vg:
+- 'Aria The Avvenire'
+- 'ARIA The AVVENIRE'
+https://www.youtube.com/watch?v=07PfoVA1h1k:
+- 'Aria the Animation'
+- 'Aria'
+- 'ARIA The ANIMATION'
+- 'Ария (первый сезон)'
+- 'Ария: Анимацията'
+- 'アリア The ANIMATION'
+- '水星领航员'
+https://www.youtube.com/watch?v=WTKa7G9cFY0:
+- 'Aria the Animation'
+- 'Aria'
+- 'ARIA The ANIMATION'
+- 'Ария (первый сезон)'
+- 'Ария: Анимацията'
+- 'アリア The ANIMATION'
+- '水星领航员'
+https://www.youtube.com/watch?v=iW4atnm_5h0:
+- 'Slam Dunk'
+- 'スラムダンク'
+https://www.youtube.com/watch?v=8rreetbeDzA:
+- 'Slam Dunk'
+- 'スラムダンク'
+https://www.youtube.com/watch?v=nS4d-KQ2QvE:
+- 'Uchuu Kyoudai'
+- 'Space Bros'
+- 'Space Brothers'
+- 'Uchu Kyodai'
+- 'Uchuu Kyodai'
+- '宇宙兄弟'
+https://www.youtube.com/watch?v=N5zzN2yZpWg:
+- 'Uchuu Kyoudai'
+- 'Space Bros'
+- 'Space Brothers'
+- 'Uchu Kyodai'
+- 'Uchuu Kyodai'
+- '宇宙兄弟'
+https://www.youtube.com/watch?v=uG608A_RYl8:
+- 'Uchuu Kyoudai'
+- 'Space Bros'
+- 'Space Brothers'
+- 'Uchu Kyodai'
+- 'Uchuu Kyodai'
+- '宇宙兄弟'
+https://www.youtube.com/watch?v=cy1UJaCTtfE:
+- 'Uchuu Kyoudai'
+- 'Space Bros'
+- 'Space Brothers'
+- 'Uchu Kyodai'
+- 'Uchuu Kyodai'
+- '宇宙兄弟'
+https://www.youtube.com/watch?v=Y9G20wV0KHE:
+- 'Boku dake ga Inai Machi'
+- 'BokuMachi'
+- 'Desaparecido'
+- 'Erased'
+- 'Erased - Die Stadt, in der es mich nicht gibt -'
+- 'Erased - La città in cui io non ci sono'
+- 'Öldürülmüş'
+- 'в който ме няма'
+- 'в който мен ме няма'
+- 'где меня больше нет'
+- 'Город'
+- 'Града'
+- 'Градът'
+- '僕だけがいない街'
+- '나만이 없는 거리'
+https://www.youtube.com/watch?v=ZwXKz2CeHwY:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=54dp8ucsGG8:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=dNi5bO2KQUU:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=lZylQYE6YmU:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=SU6AZA810FA:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=AL8m1Uktt4c:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=U-1rNzn1w6o:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=NsjzqNrXtE0:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=o7sZWSVH37g:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=CFM_zypYFHM:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=d0kYhG2FX4Q:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=eS0hCgXMnT4:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=wSw-fXQ2UBU:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=1xXNzI3STaI:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=Yk5jRT5GVpg:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=cZsj0dTTmy8:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=XWAiw4IqH_0:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=wwCDFIuT6AY:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=a4GldSJTZPw:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=6N5PM0iqSDA:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=4HHcnKgOyTQ:
+- 'Ano Hi Mita Hana no Namae o Bokutachi wa Mada Shiranai.'
+- 'Ano Hana'
+- 'Ano Hana: Ancora non conosciamo il nome del fiore che abbiamo visto quel giorno'
+- 'anohana'
+- 'Anohana: The Flower We Saw That Day'
+- 'który widzieliśmy tamtego dnia.'
+- 'Nadal nie znamy nazwy kwiatu'
+- 'O Gün Gördüğümüz Çiçeğin Adını Hala Bilmiyoruz'
+- 'We Still Don`t Know the Name of the Flower We Saw That Day.'
+- 'А нам всё невдомёк'
+- 'Ано Хана'
+- 'Все още не знаем името на цветето, което видяхме онзи ден.'
+- 'как звался тот цветок'
+- 'Невиданный цветок'
+- 'Невідома квітка'
+- 'Тэр Нэгэн Өдөр Харсан Цэцгийн Нэрийг Бид Одоо ч Мэдэхгүй'
+- 'Тэр Цэцэг'
+- 'що ми побачили того дня'
+- 'אנחנו עדיין לא יודעים את השם של הפרח שראינו באותו היום'
+- 'لازلنا لا نعرف أسماء الزهور التي رأيناها في ذلك اليوم'
+- 'هنوز اسم گلی که آن روز دیدیم را نمی دانیم'
+- 'ดอกไม้ มิตรภาพ และ ความทรงจำ'
+- 'あの日見た花の名前を僕達はまだ知らない.'
+- '我们仍未知道那天所看见的花的名字.'
+- '我們仍未知道那天所看見的花名。'
+- '那日所見花兒之名我們仍未知曉'
+- '那日所见花儿之名我们仍未知晓'
+- '那朵花'
+- '그날 본 꽃의 이름을 우리는 아직 모른다'
+https://www.youtube.com/watch?v=EKq0QdvBJJo:
+- 'Major'
+- 'Major 1st Season'
+- 'Major S1'
+- 'Мейжър С1'
+- 'ميجر'
+- 'メジャー'
+- '메이저 1기'
+https://www.youtube.com/watch?v=zXtXXiex7S0:
+- 'Major'
+- 'Major 1st Season'
+- 'Major S1'
+- 'Мейжър С1'
+- 'ميجر'
+- 'メジャー'
+- '메이저 1기'
+https://www.youtube.com/watch?v=PPfprhZU7ro:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=t-QSmNReDyI:
+- 'Shinseiki Evangelion'
+- 'eva'
+- 'eva tv'
+- 'Evangelion'
+- 'Evangelion TV'
+- 'Neon Genesis Evangelion'
+- 'Neon Genesis Evangelion Platinum'
+- 'Neon Genesis Evangelion Renewal'
+- 'NGE'
+- 'nge tv'
+- 'sse'
+- 'ева'
+- 'Евангелион'
+- 'Нова ера: Євангеліон'
+- 'єва'
+- 'Євангеліон'
+- 'Євангеліон нового покоління'
+- 'ניאון ג`נסיס אוונג`ליון'
+- 'อีวานเกเลี่ยน: มหาสงครามวันพิพากษา'
+- '新世紀エヴァンゲリオン'
+- '新世纪福音战士'
+- '신세기 에반게리온'
+https://www.youtube.com/watch?v=qUk1ZoCGqsA:
+- 'Nichijou'
+- 'Everyday Life'
+- 'My Ordinary Life'
+- 'nichijou tv'
+- 'Nichijou: My Ordinary Life'
+- 'Nichijō'
+- 'Мелочи жизни'
+- 'Повседневность'
+- 'روزهای معمولی من'
+- '日常'
+https://www.youtube.com/watch?v=j-HPhUy5Awk:
+- 'Nichijou'
+- 'Everyday Life'
+- 'My Ordinary Life'
+- 'nichijou tv'
+- 'Nichijou: My Ordinary Life'
+- 'Nichijō'
+- 'Мелочи жизни'
+- 'Повседневность'
+- 'روزهای معمولی من'
+- '日常'
+https://www.youtube.com/watch?v=5Gb_Uhee_RU:
+- 'Kamisama Hajimemashita'
+- 'Divine Nanami'
+- 'Kami-sama Kiss'
+- 'Kamihaji'
+- 'Kamisama Kiss'
+- 'Soy una Diosa ¿Y ahora qué?'
+- 'Бог [ТВ-1]'
+- 'Очень приятно'
+- 'بوسه ایزدی'
+- 'حضرت ایزد از ملاقاتتون خوشوقتم'
+- '神様はじめました'
+https://www.youtube.com/watch?v=LIBPhMB4nZw:
+- 'Kuroko no Basket'
+- 'KuroBas'
+- 'Kuroko no Basuke'
+- 'Kuroko''s Basketball'
+- '黒子のバスケ'
+https://www.youtube.com/watch?v=089nwtLOLmU:
+- 'Kuroko no Basket'
+- 'KuroBas'
+- 'Kuroko no Basuke'
+- 'Kuroko''s Basketball'
+- '黒子のバスケ'
+https://www.youtube.com/watch?v=LVbse3y-XFg:
+- 'Kuroko no Baske'
+- 'Kurobas'
+- 'kuroko no basket'
+- 'Kuroko no Basket'
+- 'Kuroko no Basuke'
+- 'Kuroko`s Basketball'
+- 'The Basketball Which Kuroko Plays'
+- 'THE BASKETBALL WHICH KUROKO PLAYS.'
+- 'Баскетбол Куроко'
+- 'Баскетболът на Куроко'
+- '幻影籃球王'
+- '影子籃球員'
+- '黑子的篮球'
+- '黒バス'
+- '黒子のバスケ'
+https://www.youtube.com/watch?v=-rR3uKBR-TI:
+- 'Kuroko no Basket'
+- 'KuroBas'
+- 'Kuroko no Basuke'
+- 'Kuroko''s Basketball'
+- '黒子のバスケ'
+https://www.youtube.com/watch?v=bv6Sb6icss0:
+- 'Kuroko no Basket'
+- 'KuroBas'
+- 'Kuroko no Basuke'
+- 'Kuroko''s Basketball'
+- '黒子のバスケ'
+https://www.youtube.com/watch?v=Eq6EYcpWB_c:
+- 'Samurai Champloo'
+- 'SAMURAI CHAMPLOO'
+- 'サムライチャンプルー'
+https://www.youtube.com/watch?v=vm6R8MgqR9A:
+- 'Shokugeki no Souma'
+- 'Food Wars ! Shokugeki no Soma'
+- 'Food Wars! Shokugeki no Soma'
+- 'Food Wars: Shokugeki no Soma'
+- 'Shokugeki no Soma'
+- 'Voedselgevecht!'
+- 'Повар-боец Сома'
+- '食戟のソーマ'
+- '食戟之灵'
+https://www.youtube.com/watch?v=oEy-D7dAjvw:
+- 'Shokugeki no Souma'
+- 'Food Wars ! Shokugeki no Soma'
+- 'Food Wars! Shokugeki no Soma'
+- 'Food Wars: Shokugeki no Soma'
+- 'Shokugeki no Soma'
+- 'Voedselgevecht!'
+- 'Повар-боец Сома'
+- '食戟のソーマ'
+- '食戟之灵'
+https://www.youtube.com/watch?v=y6ZnP3jpSJk:
+- 'Shokugeki no Souma'
+- 'Food Wars ! Shokugeki no Soma'
+- 'Food Wars! Shokugeki no Soma'
+- 'Food Wars: Shokugeki no Soma'
+- 'Shokugeki no Soma'
+- 'Voedselgevecht!'
+- 'Повар-боец Сома'
+- '食戟のソーマ'
+- '食戟之灵'
+https://www.youtube.com/watch?v=N3AIT585JoE:
+- 'Usagi Drop'
+- 'Bunny Drop'
+- 'うさぎドロップ'
+https://www.youtube.com/watch?v=rBPegoYoD9Q:
+- 'Hellsing'
+- 'hellsing tv'
+- 'hellsingtv'
+- 'Helsingas'
+- 'Хеллсинг'
+- 'Хеллсинг: Война с нечистью'
+- 'Хелсинг'
+- 'Хелсінг'
+- 'هيلسنج'
+- 'เฮลล์ซิ่ง'
+- 'ヘルシング'
+- '王家国教骑士团'
+- '헬싱'
+https://www.youtube.com/watch?v=Rm8UjBAS3cs:
+- 'Kiseijuu: Sei no Kakuritsu'
+- 'Il Parassita'
+- 'Kiseijuu'
+- 'L`ospite indesiderato'
+- 'Parasite'
+- 'Parasyte'
+- 'Parasyte -the maxim-'
+- 'Parasyte: The Maxim'
+- 'Parazit: Mravní zásady života'
+- 'Паразит'
+- 'Паразит: Жизненный принцип'
+- 'Паразит: Основно правило'
+- '寄生兽 生命的准则'
+- '寄生獣 セイの格率'
+- '기생수'
+https://www.youtube.com/watch?v=z1PWA11Ec3E:
+- 'Seishun Buta Yarou wa Bunny Girl Senpai no Yume o Minai'
+- 'aobuta'
+- 'Puberty Syndrome: Abnormal Experiences During Adolescence Due to Sensitivity and Instability.'
+- 'Rascal Does Not Dream of Bunny Girl Senpai'
+- 'Seibuta'
+- 'Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai'
+- '青春ブタ野郎はバニーガール先輩の夢を見ない'
+- '青春期笨蛋不做兔女郎学姐的梦'
+- '청춘 돼지는 바니걸 선배의 꿈을 꾸지 않는다'
+https://www.youtube.com/watch?v=A-D6RwES6Ls:
+- 'Cross Game'
+- 'crossgame'
+- 'Перекрестная игра'
+- 'Перехрестна гра'
+- 'クロスゲーム'
+- '四葉遊戲'
+- '幸运四叶草'
+- '크로스 게임'
+https://www.youtube.com/watch?v=dy_WNIx2hec:
+- 'Nana'
+- 'Nana tv'
+- 'Нана'
+- 'نانا'
+- 'นานะ'
+- 'ナナ'
+- '娜娜'
+- '나나'
+https://www.youtube.com/watch?v=wUzdaCHM6WM:
+- 'Nana'
+- 'Nana tv'
+- 'Нана'
+- 'نانا'
+- 'นานะ'
+- 'ナナ'
+- '娜娜'
+- '나나'
+https://www.youtube.com/watch?v=3Ga2MqOI9Y8:
+- 'Nana'
+- 'Nana tv'
+- 'Нана'
+- 'نانا'
+- 'นานะ'
+- 'ナナ'
+- '娜娜'
+- '나나'
+https://www.youtube.com/watch?v=WUW2hRQkegM:
+- 'Yuu☆Yuu☆Hakusho'
+- 'Ghost Fighter'
+- 'Poltergeist Report'
+- 'Yu Yu Hakusho'
+- 'Yu Yu Hakusho: Ghost Files'
+- 'Yu Yu Hakusho: Ghostfiles'
+- 'Yuu Yuu Hakusho'
+- 'YuYu Hakusho'
+- '幽☆遊☆白書'
+https://www.youtube.com/watch?v=2l9V2ejc6OY:
+- 'Yuu☆Yuu☆Hakusho'
+- 'Ghost Fighter'
+- 'Poltergeist Report'
+- 'Yu Yu Hakusho'
+- 'Yu Yu Hakusho: Ghost Files'
+- 'Yu Yu Hakusho: Ghostfiles'
+- 'Yuu Yuu Hakusho'
+- 'YuYu Hakusho'
+- '幽☆遊☆白書'
+https://www.youtube.com/watch?v=9dyb9yrBd68:
+- 'Yuu☆Yuu☆Hakusho'
+- 'Ghost Fighter'
+- 'Poltergeist Report'
+- 'Yu Yu Hakusho'
+- 'Yu Yu Hakusho: Ghost Files'
+- 'Yu Yu Hakusho: Ghostfiles'
+- 'Yuu Yuu Hakusho'
+- 'YuYu Hakusho'
+- '幽☆遊☆白書'
+https://www.youtube.com/watch?v=0TRs6cMZkQY:
+- 'Hunter x Hunter'
+- 'Hantā Hantā'
+- 'HUNTER×HUNTER(ハンター×ハンター)'
+- 'HxH'
+- 'ハンターxハンター'
+https://www.youtube.com/watch?v=WsIk-tOzdFc:
+- 'Hunter x Hunter'
+- 'Hantā Hantā'
+- 'HUNTER×HUNTER(ハンター×ハンター)'
+- 'HxH'
+- 'ハンターxハンター'
+https://www.youtube.com/watch?v=ocQ6PDiP014:
+- 'Berserk'
+- 'Berserk (2016)'
+- 'Berserk (Saison 1)'
+- 'Берсерк (2016)'
+- 'ベルセルク'
+https://www.youtube.com/watch?v=q2SWV5xxtcQ:
+- 'Berserk'
+- 'Berserk (2016)'
+- 'Berserk (Saison 1)'
+- 'Берсерк (2016)'
+- 'ベルセルク'
+https://www.youtube.com/watch?v=Kx-1TghelNQ:
+- 'Berserk'
+- 'Berserk (2016)'
+- 'Berserk (Saison 1)'
+- 'Берсерк (2016)'
+- 'ベルセルク'
+https://www.youtube.com/watch?v=XVSgHFCIA6k:
+- 'Kingdom'
+- 'Kingdom (2012)'
+- 'キングダム'
+- '王者天下'
+https://www.youtube.com/watch?v=rxebYxY9NXE:
+- 'Chihayafuru'
+- 'Chihayafull'
+- 'ちはやふる'
+https://www.youtube.com/watch?v=b4NyjHtWaUM:
+- 'Chihayafuru'
+- 'Chihayafull'
+- 'ちはやふる'
+https://www.youtube.com/watch?v=1Y9nulcg3Yw:
+- 'Kuroshitsuji'
+- 'Black Butler'
+- 'Dark Butler'
+- 'El Mayordomo Negro'
+- 'Il Maggiordomo Nero'
+- 'Kara Uşak'
+- 'Kuro Shitsuji'
+- 'Melnais Virssulainis'
+- 'Mordomo Negro'
+- 'Paslaptingasis liokajus'
+- 'Su Matzurdomu Nieddu'
+- 'Μαύρος Μπάτλερ'
+- 'Темний дворецький'
+- 'Тёмный Дворецкий'
+- 'Черният Иконом'
+- 'الخادم الأسود'
+- '黑执事'
+- '黒執事'
+https://www.youtube.com/watch?v=M22jx3PNxr0:
+- 'Kuroshitsuji'
+- 'Black Butler'
+- 'Dark Butler'
+- 'El Mayordomo Negro'
+- 'Il Maggiordomo Nero'
+- 'Kara Uşak'
+- 'Kuro Shitsuji'
+- 'Melnais Virssulainis'
+- 'Mordomo Negro'
+- 'Paslaptingasis liokajus'
+- 'Su Matzurdomu Nieddu'
+- 'Μαύρος Μπάτλερ'
+- 'Темний дворецький'
+- 'Тёмный Дворецкий'
+- 'Черният Иконом'
+- 'الخادم الأسود'
+- '黑执事'
+- '黒執事'
+https://www.youtube.com/watch?v=TJFf3KJTSsk:
+- 'Psycho-Pass'
+- 'PP1'
+- 'Psycho Pass'
+- 'PSYCHO-PASS'
+- 'Psycho-Pass Shin Henshuu-ban'
+- 'PSYCHO-PASS 新編集版'
+- 'Psycho-Pass: Extended Edition'
+- 'PSYCHO-PASS心靈判官'
+- 'Психо-пас'
+- 'Психо-паспорт'
+- 'Психопаспорт'
+- 'サイコパス'
+- '心理测量者'
+https://www.youtube.com/watch?v=51PjegTadWU:
+- 'Uchuu Senkan Yamato'
+- 'Acorazado espacial Yamato'
+- 'Crucero Espacial Yamato'
+- 'Kosmiczny pancernik Yamato'
+- 'Patrulha Estelar'
+- 'Space Battleship Yamato'
+- 'Space Cruiser Yamato'
+- 'Star Blazers'
+- 'Star Blazers: The Quest for Iscandar'
+- 'yamato1'
+- 'Διαστημόπλοιο Αργώ'
+- 'Космический крейсер Ямато'
+- 'חלוצי החלל'
+- 'أبطال الفضاء'
+- '宇宙戦艦ヤマト'
+https://www.youtube.com/watch?v=bT9erRpdJLQ:
+- 'Uchuu Senkan Yamato'
+- 'Acorazado espacial Yamato'
+- 'Crucero Espacial Yamato'
+- 'Kosmiczny pancernik Yamato'
+- 'Patrulha Estelar'
+- 'Space Battleship Yamato'
+- 'Space Cruiser Yamato'
+- 'Star Blazers'
+- 'Star Blazers: The Quest for Iscandar'
+- 'yamato1'
+- 'Διαστημόπλοιο Αργώ'
+- 'Космический крейсер Ямато'
+- 'חלוצי החלל'
+- 'أبطال الفضاء'
+- '宇宙戦艦ヤマト'
+https://www.youtube.com/watch?v=MN_WgwEmRaw:
+- 'Ookami to Koushinryou'
+- 'Aktar ve Kurt'
+- 'Kurt ve Baharat'
+- 'otk'
+- 'S&W'
+- 'SaW'
+- 'Spice and Wolf'
+- 'spice&wolf'
+- 'spice+wolf'
+- 'Spicy Wolf'
+- 'SW'
+- 'Vilkė ir Prieskoniai'
+- 'Wilk i Przyprawa'
+- 'Wolf and Spice'
+- 'Вовчиця та спеції'
+- 'Вовчиця і спеції'
+- 'Волчица и пряности'
+- 'תבלין וזאב'
+- '狼と香辛料'
+- '狼与香辛料'
+- '狼與辛香料'
+- '늑대와 향신료'
+https://www.youtube.com/watch?v=A08fzhikzuo:
+- 'Ookami to Koushinryou'
+- 'Aktar ve Kurt'
+- 'Kurt ve Baharat'
+- 'otk'
+- 'S&W'
+- 'SaW'
+- 'Spice and Wolf'
+- 'spice&wolf'
+- 'spice+wolf'
+- 'Spicy Wolf'
+- 'SW'
+- 'Vilkė ir Prieskoniai'
+- 'Wilk i Przyprawa'
+- 'Wolf and Spice'
+- 'Вовчиця та спеції'
+- 'Вовчиця і спеції'
+- 'Волчица и пряности'
+- 'תבלין וזאב'
+- '狼と香辛料'
+- '狼与香辛料'
+- '狼與辛香料'
+- '늑대와 향신료'
+https://www.youtube.com/watch?v=MTw9tYs5bEQ:
+- 'Sakamichi no Apollon'
+- 'Apollo on the Slope'
+- 'Kids on the Slope'
+- 'Sakamichi no Aporon'
+- '坂道のアポロン'
+https://www.youtube.com/watch?v=Bs4VBfpIaes:
+- 'Katanagatari'
+- 'Sword Stories'
+- 'Sword Story'
+- 'Истории мечей'
+- 'Катанагатари'
+- 'Катанасказы'
+- 'قصص السيوف'
+- 'カタナガタリ'
+- '刀語'
+- '刀语'
+https://www.youtube.com/watch?v=yt8v3s6RPSs:
+- 'Katanagatari'
+- 'Sword Stories'
+- 'Sword Story'
+- 'Истории мечей'
+- 'Катанагатари'
+- 'Катанасказы'
+- 'قصص السيوف'
+- 'カタナガタリ'
+- '刀語'
+- '刀语'
+https://www.youtube.com/watch?v=rdZxHfUNmvY:
+- 'Mobile Suit Gundam'
+- 'First Gundam'
+- 'Gundam'
+- 'gundam 79'
+- 'gundam1'
+- 'Kidou Senshi Gundam'
+- 'Mobile Suit Gundam: 0079'
+- 'MSG'
+- 'MSG: 0079'
+- 'Ґандам'
+- 'החליפה המונעת גאנדם'
+- '机动战士高达'
+- '机动战士高达u.c 0079'
+- '機動戦士ガンダム'
+- '機動戰士高達'
+https://www.youtube.com/watch?v=lQrDASSYKmw:
+- 'Mobile Suit Zeta Gundam'
+- 'Kidou Senshi Zeta Gundam'
+- 'Mobile Suit Z Gundam'
+- '機動戦士Zガンダム'
+- '機動戦士Ζガンダム'
+https://www.youtube.com/watch?v=Zw-X8DkdZhM:
+- 'Kidou Senshi Gundam ZZ'
+- 'Gundam ZZ'
+- 'Mobile Suit Gundam Double Zeta'
+- 'Mobile Suit Gundam ZZ'
+- 'Mobile Suit ZZ Gundam'
+- 'MSGZZ'
+- 'ZZ Gundam'
+- '機動戦士ガンダムZZ'
+https://www.youtube.com/watch?v=N0LKHt0JBFg:
+- 'Kidou Senshi Gundam ZZ'
+- 'Gundam ZZ'
+- 'Mobile Suit Gundam Double Zeta'
+- 'Mobile Suit Gundam ZZ'
+- 'Mobile Suit ZZ Gundam'
+- 'MSGZZ'
+- 'ZZ Gundam'
+- '機動戦士ガンダムZZ'
+https://www.youtube.com/watch?v=mYe_-oFkMaI:
+- 'Mobile Suit Gundam Wing'
+- 'New Mobile Report Gundam Wing'
+- 'Shin Kidou Senki Gundam Wing'
+- '新機動戦記ガンダムW'
+https://www.youtube.com/watch?v=nNwQ37pZWiU:
+- 'Mobile Suit Gundam'
+- 'First Gundam'
+- 'Gundam'
+- 'gundam 79'
+- 'gundam1'
+- 'Kidou Senshi Gundam'
+- 'Mobile Suit Gundam: 0079'
+- 'MSG'
+- 'MSG: 0079'
+- 'Ґандам'
+- 'החליפה המונעת גאנדם'
+- '机动战士高达'
+- '机动战士高达u.c 0079'
+- '機動戦士ガンダム'
+- '機動戰士高達'
+https://www.youtube.com/watch?v=lEIFT3Bx-Ok:
+- 'Mobile Suit Gundam'
+- 'First Gundam'
+- 'Gundam'
+- 'gundam 79'
+- 'gundam1'
+- 'Kidou Senshi Gundam'
+- 'Mobile Suit Gundam: 0079'
+- 'MSG'
+- 'MSG: 0079'
+- 'Ґандам'
+- 'החליפה המונעת גאנדם'
+- '机动战士高达'
+- '机动战士高达u.c 0079'
+- '機動戦士ガンダム'
+- '機動戰士高達'
+https://www.youtube.com/watch?v=tpqwY7tsZS4:
+- 'Turn A Gundam'
+- 'Mobile Suit Gundam Turn A'
+- '∀ Gundam'
+- '∀ガンダム'
+https://www.youtube.com/watch?v=EMRaR15RBno:
+- 'Kidou Senshi Gundam SEED'
+- 'G SEED'
+- 'GS'
+- 'Gundam S'
+- 'Gundam SEED'
+- 'Gundam SEED TV'
+- 'Mobile Suit Gundam SEED'
+- 'Mobile Suit Gundam Seed'
+- 'Seed'
+- 'Мобилен Костюм Гъндам Сийд'
+- 'Мобильный воин ГАНДАМ: Поколение'
+- 'Ґандам SEED'
+- 'โมบิลสูท กันดั้มซี้ด'
+- '机动战士高达SEED'
+- '機動戦士ガンダムSEED'
+- '種'
+- '기동전사 건담 SEED'
+https://www.youtube.com/watch?v=RNh6ltDBQFY:
+- 'Mobile Suit Gundam: Iron-Blooded Orphans'
+- 'G-Tekketsu'
+- 'Gundam IBO'
+- 'Kidou Senshi Gundam: Tekketsu no Orphans'
+- 'Mobile Suit GUNDAM Iron Blooded Orphans'
+- '機動戦士ガンダム 鉄血のオルフェンズ'
+https://www.youtube.com/watch?v=_46zFe7lwRM:
+- 'Shirobako'
+- 'SHIROBAKO'
+- 'White Box'
+- 'Белая коробка'
+- '白箱'
+https://www.youtube.com/watch?v=xD7SJ5wgGX0:
+- 'Shirobako'
+- 'SHIROBAKO'
+- 'White Box'
+- 'Белая коробка'
+- '白箱'
+https://www.youtube.com/watch?v=ZVgHN8cfy1I:
+- 'Kino no Tabi: The Beautiful World'
+- 'Călătoria lui Kino: Lumea frumoasă'
+- 'kino'
+- 'Kino no tabi'
+- 'Kino''s Journey'
+- 'Kino''s Travels: The Beautiful World'
+- 'Kino`nun Seyahati: Güzel Dünya'
+- 'Kino`s Journey'
+- 'Kino`s Journey: The Beautiful World'
+- 'Kino`s Travels: The Beautiful World'
+- 'Kinos Journey'
+- 'Kinos resa'
+- 'L`Odyssée de Kino'
+- 'Podróż Kino'
+- 'Viaje de Kino: El Maravilloso Mundo'
+- 'Подорож Кіно ~Прекрасний світ~'
+- 'Прекрасный мир кинопутешествия'
+- 'Путешествие Кино - прекрасный мир'
+- 'Пътуването на Кино - Прекрасният Свят'
+- 'Странствия Кино'
+- 'המסע של קינו'
+- 'سفرهای کینو: دنیای زیبا'
+- 'キノの旅 -the Beautiful World-'
+- '키노의 여행: The Beautiful Woirld'
+https://www.youtube.com/watch?v=nGShsyMsfAg:
+- 'Magi: The Labyrinth of Magic'
+- 'magi'
+- 'Magi - The Labyrinth of Magic'
+- 'Magi 1, The Labyrinth of Magic'
+- 'Маги'
+- 'Маги: Вълшебният лабиринт'
+- 'Маги: Магическият лабиринт'
+- 'علاءالدین و هزارتوی جادو'
+- 'ماجي: متاهة السحر'
+- 'ماگی: هزارتوی جادو'
+- 'متاهة السحر'
+- 'マギ The labyrinth of magic'
+https://www.youtube.com/watch?v=c_GqBXDudFg:
+- 'Magi: The Labyrinth of Magic'
+- 'magi'
+- 'Magi - The Labyrinth of Magic'
+- 'Magi 1, The Labyrinth of Magic'
+- 'Маги'
+- 'Маги: Вълшебният лабиринт'
+- 'Маги: Магическият лабиринт'
+- 'علاءالدین و هزارتوی جادو'
+- 'ماجي: متاهة السحر'
+- 'ماگی: هزارتوی جادو'
+- 'متاهة السحر'
+- 'マギ The labyrinth of magic'
+https://www.youtube.com/watch?v=gfZh80kZm3g:
+- 'Nodame Cantabile'
+- 'のだめカンタービレ'
+https://www.youtube.com/watch?v=gW3Z3X4pyV8:
+- 'Nodame Cantabile Finale'
+- 'Nodame Cantabile Season 3'
+- 'Nodame Cantabile Third Season'
+- 'Nodame Cantabile: Finale'
+- 'のだめカンタービレ フィナーレ'
+https://www.youtube.com/watch?v=UbJeAf7stfQ:
+- 'One Outs'
+- 'but I!'
+- 'One Outs: Nobody Wins'
+- 'oo'
+- 'oo!'
+- 'Один на вылет'
+- 'ون أوتس: لا أحد يفوز سواي!'
+- 'ワンナウツ'
+- '超智遊戲'
+https://www.youtube.com/watch?v=gWCnKoEgfP0:
+- 'Noragami'
+- 'Stray God'
+- 'Бездомный Бог'
+- 'Уличен бог'
+- 'ノラガミ'
+- '野良神'
+- '노라가미'
+https://www.youtube.com/watch?v=aZenmeRytEM:
+- 'Noragami Aragoto'
+- 'Бездомный Бог 2'
+- 'ノラガミ ARAGOTO'
+https://www.youtube.com/watch?v=Qq61e-LtJTU:
+- 'Rurouni Kenshin: Meiji Kenkaku Romantan'
+- 'Kenshin'
+- 'kenshin'
+- 'Kenshin Samurai Vagabondo'
+- 'kenshin tv'
+- 'Kenshin, le vagabond'
+- 'Kenshin: El Guerrero Samurái'
+- 'rk'
+- 'rk tv'
+- 'rktv'
+- 'RuroKen'
+- 'RuroKen TV'
+- 'Rurouni Kenshin'
+- 'Rurouni Kenshin - Legend of Kyoto'
+- 'Rurouni Kenshin - Tales of the Meiji'
+- 'Rurouni Kenshin - Wandering Samurai'
+- 'Rurouni Kenshin TV'
+- 'Rurouni Kenshin: Meiji Swordsman Romantic Story'
+- 'Rurouni Kenshin: Romance of a Meiji Swordsman'
+- 'Samurai X'
+- 'Samurajai X'
+- 'Samuray X'
+- 'Wanderer Kenshin'
+- 'Бродяга Кэнсин'
+- 'Руроуні Кеншін ~Оповіді Мейджі~'
+- 'Самурай Х'
+- 'الرحالة كينشن'
+- 'ساموراي إكس'
+- 'ซามูไรพเนจร'
+- 'るろうに剣心 -明治剣客浪漫譚-'
+- 'るろけん'
+- 'るろ剣'
+- '浪客剑心'
+https://www.youtube.com/watch?v=U0e33pfs2lo:
+- 'Rurouni Kenshin: Meiji Kenkaku Romantan'
+- 'Kenshin'
+- 'kenshin'
+- 'Kenshin Samurai Vagabondo'
+- 'kenshin tv'
+- 'Kenshin, le vagabond'
+- 'Kenshin: El Guerrero Samurái'
+- 'rk'
+- 'rk tv'
+- 'rktv'
+- 'RuroKen'
+- 'RuroKen TV'
+- 'Rurouni Kenshin'
+- 'Rurouni Kenshin - Legend of Kyoto'
+- 'Rurouni Kenshin - Tales of the Meiji'
+- 'Rurouni Kenshin - Wandering Samurai'
+- 'Rurouni Kenshin TV'
+- 'Rurouni Kenshin: Meiji Swordsman Romantic Story'
+- 'Rurouni Kenshin: Romance of a Meiji Swordsman'
+- 'Samurai X'
+- 'Samurajai X'
+- 'Samuray X'
+- 'Wanderer Kenshin'
+- 'Бродяга Кэнсин'
+- 'Руроуні Кеншін ~Оповіді Мейджі~'
+- 'Самурай Х'
+- 'الرحالة كينشن'
+- 'ساموراي إكس'
+- 'ซามูไรพเนจร'
+- 'るろうに剣心 -明治剣客浪漫譚-'
+- 'るろけん'
+- 'るろ剣'
+- '浪客剑心'
+https://www.youtube.com/watch?v=CzKxhSLuMgM:
+- 'Rurouni Kenshin: Meiji Kenkaku Romantan'
+- 'Kenshin'
+- 'kenshin'
+- 'Kenshin Samurai Vagabondo'
+- 'kenshin tv'
+- 'Kenshin, le vagabond'
+- 'Kenshin: El Guerrero Samurái'
+- 'rk'
+- 'rk tv'
+- 'rktv'
+- 'RuroKen'
+- 'RuroKen TV'
+- 'Rurouni Kenshin'
+- 'Rurouni Kenshin - Legend of Kyoto'
+- 'Rurouni Kenshin - Tales of the Meiji'
+- 'Rurouni Kenshin - Wandering Samurai'
+- 'Rurouni Kenshin TV'
+- 'Rurouni Kenshin: Meiji Swordsman Romantic Story'
+- 'Rurouni Kenshin: Romance of a Meiji Swordsman'
+- 'Samurai X'
+- 'Samurajai X'
+- 'Samuray X'
+- 'Wanderer Kenshin'
+- 'Бродяга Кэнсин'
+- 'Руроуні Кеншін ~Оповіді Мейджі~'
+- 'Самурай Х'
+- 'الرحالة كينشن'
+- 'ساموراي إكس'
+- 'ซามูไรพเนจร'
+- 'るろうに剣心 -明治剣客浪漫譚-'
+- 'るろけん'
+- 'るろ剣'
+- '浪客剑心'
+https://www.youtube.com/watch?v=rkRApaiMjW0:
+- 'Rurouni Kenshin: Meiji Kenkaku Romantan'
+- 'Kenshin'
+- 'kenshin'
+- 'Kenshin Samurai Vagabondo'
+- 'kenshin tv'
+- 'Kenshin, le vagabond'
+- 'Kenshin: El Guerrero Samurái'
+- 'rk'
+- 'rk tv'
+- 'rktv'
+- 'RuroKen'
+- 'RuroKen TV'
+- 'Rurouni Kenshin'
+- 'Rurouni Kenshin - Legend of Kyoto'
+- 'Rurouni Kenshin - Tales of the Meiji'
+- 'Rurouni Kenshin - Wandering Samurai'
+- 'Rurouni Kenshin TV'
+- 'Rurouni Kenshin: Meiji Swordsman Romantic Story'
+- 'Rurouni Kenshin: Romance of a Meiji Swordsman'
+- 'Samurai X'
+- 'Samurajai X'
+- 'Samuray X'
+- 'Wanderer Kenshin'
+- 'Бродяга Кэнсин'
+- 'Руроуні Кеншін ~Оповіді Мейджі~'
+- 'Самурай Х'
+- 'الرحالة كينشن'
+- 'ساموراي إكس'
+- 'ซามูไรพเนจร'
+- 'るろうに剣心 -明治剣客浪漫譚-'
+- 'るろけん'
+- 'るろ剣'
+- '浪客剑心'
+https://www.youtube.com/watch?v=5DCGQ57ykME:
+- 'Dororo'
+- 'Dororo to Hyakkimaru'
+- 'どろろ'
+https://www.youtube.com/watch?v=Lr1n00PY6Rg:
+- 'Dororo'
+- 'Dororo to Hyakkimaru'
+- 'どろろ'
+https://www.youtube.com/watch?v=4JpR-M1wE5s:
+- 'Kono Subarashii Sekai ni Shukufuku o!'
+- 'Kono Subarashii Sekai ni Shukufuku wo!'
+- 'konosuba'
+- 'KONOSUBA - As Bênçãos de Deus Nesse Mundo Maravilhoso!'
+- 'Konosuba: God`s Blessing on This Wonderful World!'
+- 'Этот замечательный мир!'
+- 'この素晴らしい世界に祝福を!'
+- '为美好的世界献上祝福!'
+- '이 멋진 세계에 축복을!'
+https://www.youtube.com/watch?v=Y3Xmzu0OtS8:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=ey0T9h1Ibng:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=p1URzwlqOL0:
+- 'Beck'
+- 'BECK'
+- 'Beck - Mongolian Chop Squad'
+- 'BECK MONGOLIAN CHOP SQUAD'
+- 'Beck: Mongolian Chop Squad'
+- 'Mongolian Chop Squad'
+- 'Бек'
+- 'ベック'
+https://www.youtube.com/watch?v=m7_-RBl0lfY:
+- 'K-On!'
+- 'K on'
+- 'K-on'
+- 'K-ON!'
+- 'K-ON! Season 1'
+- 'Keion'
+- 'けいおん!'
+https://www.youtube.com/watch?v=CZ-OyT4ivkM:
+- 'Planetes'
+- 'PES'
+- 'PLANET-ES'
+- 'Planètes'
+- 'ΠΛΑΝΗΤΕΣ'
+- 'Мандрівники'
+- 'Планетес'
+- 'Планети'
+- 'Странники'
+- 'プラネテス'
+- '星空清理者'
+https://www.youtube.com/watch?v=ddYbBTPEbqQ:
+- 'Gin no Saji'
+- 'Ginsaji'
+- 'Silver Spoon'
+- 'الملعقة الفضية'
+- '銀の匙'
+- '銀の匙 Silver Spoon'
+- '银之匙 Silver Spoon'
+- '은수저'
+https://www.youtube.com/watch?v=8mU2a2oqMzg:
+- 'Gin no Saji'
+- 'Ginsaji'
+- 'Silver Spoon'
+- 'الملعقة الفضية'
+- '銀の匙'
+- '銀の匙 Silver Spoon'
+- '银之匙 Silver Spoon'
+- '은수저'
+https://www.youtube.com/watch?v=FJqGirLjQn4:
+- 'Dragon Ball'
+- 'DB'
+- 'Dragonball'
+- 'ドラゴンボール'
+https://www.youtube.com/watch?v=BT1Dp69D7q0:
+- 'Dragon Ball'
+- 'DB'
+- 'Dragonball'
+- 'ドラゴンボール'
+https://www.youtube.com/watch?v=odhuGelEH3g:
+- 'Dragon Ball Kai'
+- 'Bola de Drac Kai'
+- 'Bola de Drac Z Kai'
+- 'dbk'
+- 'dbkai'
+- 'dbzkai'
+- 'Dragon Ball Z Kai'
+- 'Dragonball Kai'
+- 'Drakonų Kova: Kai'
+- 'Драконова топка Кай'
+- 'دراغون بول كاي'
+- 'ドラゴンボール改'
+- '龙珠·改'
+- '龙珠改'
+https://www.youtube.com/watch?v=UNDr08uCRqQ:
+- 'Dragon Ball Kai'
+- 'Bola de Drac Kai'
+- 'Bola de Drac Z Kai'
+- 'dbk'
+- 'dbkai'
+- 'dbzkai'
+- 'Dragon Ball Z Kai'
+- 'Dragonball Kai'
+- 'Drakonų Kova: Kai'
+- 'Драконова топка Кай'
+- 'دراغون بول كاي'
+- 'ドラゴンボール改'
+- '龙珠·改'
+- '龙珠改'
+https://www.youtube.com/watch?v=rO3_O_5BYw4:
+- 'Dragon Ball Super'
+- 'DB Super'
+- 'DBS'
+- 'Dragon Ball Chou'
+- 'Dragonball Super'
+- 'ドラゴンボール超'
+- 'ドラゴンボール超(スーパー)'
+https://www.youtube.com/watch?v=vWtOP721n0s:
+- 'Dragon Ball Super'
+- 'DB Super'
+- 'DBS'
+- 'Dragon Ball Chou'
+- 'Dragonball Super'
+- 'ドラゴンボール超'
+- 'ドラゴンボール超(スーパー)'
+https://www.youtube.com/watch?v=tJVAkofTFbI:
+- 'Hinamatsuri'
+- 'HINAMATSURI'
+- 'ヒナまつり'
+https://www.youtube.com/watch?v=EMe_zK3th8E:
+- 'ReLife'
+- 'ReLIFE'
+https://www.youtube.com/watch?v=j7myzgxz9nI:
+- 'Gyakkyou Burai Kaiji: Ultimate Survivor'
+- 'kaiji'
+- 'Kaiji'
+- 'Kaiji: Ultimate Survivor'
+- 'Suffering Outcast Kaiji: Ultimate Survivor'
+- 'The Suffering Pariah Kaiji: Ultimate Survivor'
+- 'Tobaku Mokushiroku Kaiji'
+- 'Кайджи'
+- 'Кайджи: Вечно оцеляващият'
+- 'Кайдзи'
+- 'كايجي'
+- '賭博破戒録カイジ'
+- '赌博默示录'
+- '逆境無頼カイジ Ultimate Survivor'
+https://www.youtube.com/watch?v=BQ0KfA_oSZQ:
+- 'Gyakkyou Burai Kaiji: Ultimate Survivor'
+- 'kaiji'
+- 'Kaiji'
+- 'Kaiji: Ultimate Survivor'
+- 'Suffering Outcast Kaiji: Ultimate Survivor'
+- 'The Suffering Pariah Kaiji: Ultimate Survivor'
+- 'Tobaku Mokushiroku Kaiji'
+- 'Кайджи'
+- 'Кайджи: Вечно оцеляващият'
+- 'Кайдзи'
+- 'كايجي'
+- '賭博破戒録カイジ'
+- '赌博默示录'
+- '逆境無頼カイジ Ultimate Survivor'
+https://www.youtube.com/watch?v=bmHYFDiXaqA:
+- 'Hachimitsu to Clover II'
+- 'Honey & Clover II'
+- 'Honey and Clover 2'
+- 'Honey and Clover II'
+- 'ハチミツとクローバー II'
+https://www.youtube.com/watch?v=XgWkIrFQQE0:
+- 'Higurashi no Naku Koro ni'
+- 'The Moment the Cicadas Cry'
+- 'When the Cicadas Cry'
+- 'When They Cry'
+- 'ひぐらしのなく頃に'
+https://www.youtube.com/watch?v=idovoRQuKx0:
+- 'Higurashi no Naku Koro ni Rei'
+- 'higu3'
+- 'Higurashi no Naku Koro ni 3rd Season'
+- 'Higurashi no Naku Koro ni Dai San Ki'
+- 'higurashi3'
+- 'HiguRei'
+- 'HnNKnR'
+- 'When They Cry - Higurashi 3'
+- 'When They Cry Rei'
+- 'When They Cry: Rei'
+- 'В час'
+- 'Когда плачут цикады 3'
+- 'коли плачуть цикади ІІІ'
+- 'ひぐらしのなく頃に礼'
+- '寒蝉鸣泣之时 礼'
+- '暮蟬悲鳴時 禮'
+https://www.youtube.com/watch?v=QXSBh4gtQ7g:
+- 'Ouran Koukou Host Club'
+- 'Ohran Koko Host Club'
+- 'OHSHC'
+- 'Ouran High School Host Club'
+- 'Ouran Koukou Host Bu'
+- 'Ouran Koukou Hosutobu'
+- '桜蘭高校ホスト部'
+https://www.youtube.com/watch?v=Y675EaSEFVA:
+- 'SKET Dance'
+- 'SKET DANCE'
+- 'スケットダンス'
+https://www.youtube.com/watch?v=rcsow1i21zE:
+- 'SKET Dance'
+- 'SKET DANCE'
+- 'スケットダンス'
+https://www.youtube.com/watch?v=EefNiVvWAB0:
+- 'Ballroom e Youkoso'
+- 'Benvenuti al ballo'
+- 'Welcome to the Ballroom'
+- 'ボールルームへようこそ'
+- '볼룸에 오신 것을 환영합니다'
+https://www.youtube.com/watch?v=IObxVd-TwkM:
+- 'Ballroom e Youkoso'
+- 'Benvenuti al ballo'
+- 'Welcome to the Ballroom'
+- 'ボールルームへようこそ'
+- '볼룸에 오신 것을 환영합니다'
+https://www.youtube.com/watch?v=tvHqaimwcKE:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=v9OhNoPAZJY:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=wI5NEngxTnA:
+- 'Bungou Stray Dogs'
+- 'Bungo Stray Dogs'
+- 'Literary Stray Dogs'
+- '文豪ストレイドッグス'
+https://www.youtube.com/watch?v=CJAF-1TAM7g:
+- 'Initial D First Stage'
+- 'ID'
+- '頭文字〈イニシャル〉D'
+https://www.youtube.com/watch?v=LxcbqKBworY:
+- 'Initial D Second Stage'
+- 'ID2nd'
+- 'IDSS'
+- 'Initial D - 2eme étape'
+- 'Initial D: Second Stage'
+- '头文字D第二部'
+- '頭文字[イニシャル]D Second Stage'
+https://www.youtube.com/watch?v=ymKNoTN3kZk:
+- 'Initial D Fourth Stage'
+- 'Initial D 4th Stage'
+- '頭文字〈イニシャル〉D FOURTH STAGE'
+https://www.youtube.com/watch?v=KwCfHVGamn8:
+- 'InuYasha'
+- 'Inu Yasha'
+- '犬夜叉'
+https://www.youtube.com/watch?v=Iv2AK8nFKBk:
+- 'InuYasha'
+- 'Inu Yasha'
+- '犬夜叉'
+https://www.youtube.com/watch?v=p56pg3EMJLE:
+- 'InuYasha'
+- 'Inu Yasha'
+- '犬夜叉'
+https://www.youtube.com/watch?v=4v0lSXBcJIU:
+- 'InuYasha'
+- 'Inu Yasha'
+- '犬夜叉'
+https://www.youtube.com/watch?v=0Zn8znVHq9I:
+- 'InuYasha'
+- 'Inu Yasha'
+- '犬夜叉'
+https://www.youtube.com/watch?v=9MI6oDpZ_qM:
+- 'InuYasha'
+- 'Inu Yasha'
+- '犬夜叉'
+https://www.youtube.com/watch?v=zL6lJ3cP6kw:
+- 'Sakurasou no Pet na Kanojo'
+- 'Sakura-sou no Pet na Kanojo'
+- 'The Pet Girl of Sakurasou'
+- 'さくら荘のペットな彼女'
+https://www.youtube.com/watch?v=N6AaSfL4yVk:
+- 'Sakurasou no Pet na Kanojo'
+- 'Sakura-sou no Pet na Kanojo'
+- 'The Pet Girl of Sakurasou'
+- 'さくら荘のペットな彼女'
+https://www.youtube.com/watch?v=4OxFSy8G5wk:
+- 'Trigun'
+- 'トライガン'
+https://www.youtube.com/watch?v=aVbjOmraAkI:
+- 'xxxHOLiC'
+- 'Holic TV'
+- 'XXX Holic'
+- 'xxxHolic'
+- 'xxxHolic - Die Serie'
+- 'xxxHolic - La série'
+- 'xxxHOLiC TV'
+- 'xxxГолік'
+- 'xxxโฮลิค'
+- 'XXXホリック'
+- 'Пристрастяване'
+- 'Триплексоголик'
+- 'холік'
+- 'โฮลิค'
+https://www.youtube.com/watch?v=BJnnMoFju1o:
+- 'xxxHOLiC Shunmuki'
+- 'shunmuki'
+- 'xxxHOLiC 春夢記'
+- 'Триплексоголик: Весенний сон'
+https://www.youtube.com/watch?v=lofnZX2GtAc:
+- 'Yahari Ore no Seishun LoveCome wa Machigatte Iru.'
+- 'My Teen Romantic Comedy SNAFU'
+- 'My Teen Romantic Comedy: SNAFU'
+- 'My Teenage RomCom SNAFU'
+- 'My Youth Romantic Comedy Is Wrong As I Expected.'
+- 'Oregairu'
+- 'Yahari Ore no Seishun Love Come wa Machigatteiru'
+- 'Yahari Ore no Seishun Love Comedy wa Machigatteiru'
+- 'Както си и мислех'
+- 'романтиката в училищния ми живот не се получи'
+- 'やはり俺の青春ラブコメはまちがっている.'
+- '我的青春恋爱喜剧果然有问题'
+- '果然我的青春戀愛喜劇搞錯了.'
+- '역시 내 청춘 러브코메디는 잘못됐다.'
+https://www.youtube.com/watch?v=QDezQD57h-g:
+- 'Cardcaptor Sakura'
+- 'Card Captor Sakura'
+- 'Card Captors'
+- 'Cardcaptors'
+- 'CCS'
+- 'CCS TV'
+- 'CCSTV'
+- 'Clow Master Sakura'
+- 'Pesca la tua carta Sakura'
+- 'Sakura , Stăpâna Cărţilor Magice'
+- 'Sakura Card Captor'
+- 'Sakura Card Captors'
+- 'Sakura, a Caçadora de Cartas'
+- 'Sakura, Cazadora de Cartas'
+- 'Sakura, chasseuse de cartes'
+- 'Sakura, la Caçadora de Cartes'
+- 'Thủ lĩnh thẻ bài'
+- 'Zdobywczyni kart Sakura'
+- 'Οι Περιπέτειες της Νίκης'
+- 'Ловец карт Сакура'
+- 'Сакура - мисливець за картами'
+- 'Сакура - собирательница карт'
+- 'סאקורה'
+- 'آسرة البطاقات ساكورا'
+- 'การ์ดแคปเตอร์ ซากุระ'
+- 'カードキャプターさくら'
+- '魔卡少女樱'
+- '카드캡터 사쿠라'
+- '카드캡터 체리'
+https://www.youtube.com/watch?v=-gY38_os5O0:
+- 'Cardcaptor Sakura'
+- 'Card Captor Sakura'
+- 'Card Captors'
+- 'Cardcaptors'
+- 'CCS'
+- 'CCS TV'
+- 'CCSTV'
+- 'Clow Master Sakura'
+- 'Pesca la tua carta Sakura'
+- 'Sakura , Stăpâna Cărţilor Magice'
+- 'Sakura Card Captor'
+- 'Sakura Card Captors'
+- 'Sakura, a Caçadora de Cartas'
+- 'Sakura, Cazadora de Cartas'
+- 'Sakura, chasseuse de cartes'
+- 'Sakura, la Caçadora de Cartes'
+- 'Thủ lĩnh thẻ bài'
+- 'Zdobywczyni kart Sakura'
+- 'Οι Περιπέτειες της Νίκης'
+- 'Ловец карт Сакура'
+- 'Сакура - мисливець за картами'
+- 'Сакура - собирательница карт'
+- 'סאקורה'
+- 'آسرة البطاقات ساكورا'
+- 'การ์ดแคปเตอร์ ซากุระ'
+- 'カードキャプターさくら'
+- '魔卡少女樱'
+- '카드캡터 사쿠라'
+- '카드캡터 체리'
+https://www.youtube.com/watch?v=9i1WqQEueUM:
+- 'Cardcaptor Sakura'
+- 'Card Captor Sakura'
+- 'Card Captors'
+- 'Cardcaptors'
+- 'CCS'
+- 'CCS TV'
+- 'CCSTV'
+- 'Clow Master Sakura'
+- 'Pesca la tua carta Sakura'
+- 'Sakura , Stăpâna Cărţilor Magice'
+- 'Sakura Card Captor'
+- 'Sakura Card Captors'
+- 'Sakura, a Caçadora de Cartas'
+- 'Sakura, Cazadora de Cartas'
+- 'Sakura, chasseuse de cartes'
+- 'Sakura, la Caçadora de Cartes'
+- 'Thủ lĩnh thẻ bài'
+- 'Zdobywczyni kart Sakura'
+- 'Οι Περιπέτειες της Νίκης'
+- 'Ловец карт Сакура'
+- 'Сакура - мисливець за картами'
+- 'Сакура - собирательница карт'
+- 'סאקורה'
+- 'آسرة البطاقات ساكورا'
+- 'การ์ดแคปเตอร์ ซากุระ'
+- 'カードキャプターさくら'
+- '魔卡少女樱'
+- '카드캡터 사쿠라'
+- '카드캡터 체리'
+https://www.youtube.com/watch?v=sbwT8yJjtUQ:
+- 'Cardcaptor Sakura: Clear Card Hen'
+- 'Cardcaptor Sakura Clear Card'
+- 'Cardcaptor Sakura: Clear Card'
+- 'CCS2'
+- 'カードキャプターさくら クリアカード編'
+- '카드 캡터 사쿠라 클리어 카드 편'
+https://www.youtube.com/watch?v=-hA4na_3jT0:
+- 'Angel Beats!'
+- 'AB!'
+- 'Angel Beats'
+- 'Angelo širdies dūžiai'
+- 'Eņģeļa Pulss'
+- 'Ангельские ритмы!'
+- 'Пульс ангела!'
+- 'แองเจิลบีทส์ แผนพิชิตนางฟ้า'
+- 'エンジェル ビーツ!'
+- '天使的心跳'
+- '天使的脉动'
+- '엔젤비츠!'
+- '엔젤비트!'
+https://www.youtube.com/watch?v=uMsOlhzPEfY:
+- 'Fullmetal Alchemist'
+- 'FMA'
+- 'Full Metal Alchemist'
+- 'Fullmetal Alchemist (2003)'
+- 'Hagane no Renkinjutsushi'
+- 'HagaRen'
+- '鋼の錬金術師'
+https://www.youtube.com/watch?v=IDmINk_SGB0:
+- 'Fullmetal Alchemist'
+- 'FMA'
+- 'Full Metal Alchemist'
+- 'Fullmetal Alchemist (2003)'
+- 'Hagane no Renkinjutsushi'
+- 'HagaRen'
+- '鋼の錬金術師'
+https://www.youtube.com/watch?v=S1t70AiH4CA:
+- 'Fullmetal Alchemist'
+- 'FMA'
+- 'Full Metal Alchemist'
+- 'Fullmetal Alchemist (2003)'
+- 'Hagane no Renkinjutsushi'
+- 'HagaRen'
+- '鋼の錬金術師'
+https://www.youtube.com/watch?v=ORe7gt-mY14:
+- 'Fullmetal Alchemist'
+- 'FMA'
+- 'Full Metal Alchemist'
+- 'Fullmetal Alchemist (2003)'
+- 'Hagane no Renkinjutsushi'
+- 'HagaRen'
+- '鋼の錬金術師'
+https://www.youtube.com/watch?v=IZzSxLdLVp4:
+- 'Space Dandy'
+- 'Космический Денди'
+- 'Космическото Конте'
+- 'Космо Денді'
+- 'スペース☆ダンディ'
+- '宇宙浪子'
+https://www.youtube.com/watch?v=i-ZwhxaOQJk:
+- 'Working!!'
+- 'Muncind'
+- 'Wagnaria!!'
+- 'working'
+- 'WORKING!!'
+- 'Работа`!!'
+- 'Работаю!!'
+- '迷糊餐厅'
+https://www.youtube.com/watch?v=s9Z9Ysc31AE:
+- 'Working!!'
+- 'Muncind'
+- 'Wagnaria!!'
+- 'working'
+- 'WORKING!!'
+- 'Работа`!!'
+- 'Работаю!!'
+- '迷糊餐厅'
+https://www.youtube.com/watch?v=fvxX3gYfYqc:
+- 'Working!!'
+- 'Muncind'
+- 'Wagnaria!!'
+- 'working'
+- 'WORKING!!'
+- 'Работа`!!'
+- 'Работаю!!'
+- '迷糊餐厅'
+https://www.youtube.com/watch?v=WNt8zC9zjEk:
+- 'Durarara!!'
+- 'Dhurarara!!'
+- 'drrr'
+- 'Drrr!!'
+- 'drrr1'
+- 'Dulalala!!'
+- 'Dullalala'
+- 'Dullalala!!'
+- 'Durarara'
+- 'Dyurarara!!'
+- 'Дурарара!!'
+- 'Дюрарара!!'
+- 'デュラララ!!'
+- '无头骑士异闻录'
+- '无头骑士异闻录 DuRaRaRa!!'
+- '無頭騎士異聞錄'
+- '無頭騎士異聞錄 DuRaRaRa!!'
+- '듀라라라!!'
+https://www.youtube.com/watch?v=RQOc_07raNE:
+- 'Durarara!!'
+- 'Dhurarara!!'
+- 'drrr'
+- 'Drrr!!'
+- 'drrr1'
+- 'Dulalala!!'
+- 'Dullalala'
+- 'Dullalala!!'
+- 'Durarara'
+- 'Dyurarara!!'
+- 'Дурарара!!'
+- 'Дюрарара!!'
+- 'デュラララ!!'
+- '无头骑士异闻录'
+- '无头骑士异闻录 DuRaRaRa!!'
+- '無頭騎士異聞錄'
+- '無頭騎士異聞錄 DuRaRaRa!!'
+- '듀라라라!!'
+https://www.youtube.com/watch?v=wdSXq3PS1nc:
+- 'Durarara!!'
+- 'Dhurarara!!'
+- 'drrr'
+- 'Drrr!!'
+- 'drrr1'
+- 'Dulalala!!'
+- 'Dullalala'
+- 'Dullalala!!'
+- 'Durarara'
+- 'Dyurarara!!'
+- 'Дурарара!!'
+- 'Дюрарара!!'
+- 'デュラララ!!'
+- '无头骑士异闻录'
+- '无头骑士异闻录 DuRaRaRa!!'
+- '無頭騎士異聞錄'
+- '無頭騎士異聞錄 DuRaRaRa!!'
+- '듀라라라!!'
+https://www.youtube.com/watch?v=kuj4d1TWesQ:
+- 'Nanatsu no Taizai'
+- 'I Sette Peccati Capitali'
+- 'Seven Deadly Sins'
+- 'The Seven Deadly Sins'
+- 'Yedi Ölümcül Günah'
+- 'Седемте смъртни гряха'
+- 'Семь Смертных Грехов'
+- 'الخطايا السبع المميتة'
+- '七つの大罪'
+- '七つの大罪 The Seven Deadly Sins'
+https://www.youtube.com/watch?v=WK-EUELKb9A:
+- 'Nanatsu no Taizai'
+- 'I Sette Peccati Capitali'
+- 'Seven Deadly Sins'
+- 'The Seven Deadly Sins'
+- 'Yedi Ölümcül Günah'
+- 'Седемте смъртни гряха'
+- 'Семь Смертных Грехов'
+- 'الخطايا السبع المميتة'
+- '七つの大罪'
+- '七つの大罪 The Seven Deadly Sins'
+https://www.youtube.com/watch?v=ijpGNlWDG5k:
+- 'Non Non Biyori'
+- 'のんのんびより'
+https://www.youtube.com/watch?v=9Z5GDLMYwgc:
+- 'Non Non Biyori'
+- 'のんのんびより'
+https://www.youtube.com/watch?v=dWfxcRj39tg:
+- 'Black Lagoon'
+- 'BL'
+- 'BL1'
+- 'BLACK LAGOON'
+- 'Black Lagoon 1'
+- 'Black Lagoon 1st Season'
+- 'Black Lagoon First Season'
+- 'Juodoji Lagūna'
+- 'Kara Lagün'
+- 'Laguna Neagră'
+- 'Melnā Lagūna'
+- 'Пираты "Чёрной лагуны"'
+- 'Пірати «Чорної Лагуни»'
+- 'Черната Лагуна'
+- 'Чорна лагуна'
+- 'Чёрная лагуна'
+- 'مرداب سیاه'
+- 'จารชนพันธุ์เถื่อน'
+- 'ブラック・ラグーン'
+- '企業傭兵'
+- '黑礁'
+- '블랙 라군'
+https://www.youtube.com/watch?v=ucOVnaqdLbA:
+- 'Detective Conan'
+- 'Case Closed'
+- 'Detectiu Conan'
+- 'Meitantei Conan'
+- '名探偵コナン'
+https://www.youtube.com/watch?v=UjjTMNDZi-A:
+- 'Death Parade'
+- 'デス・パレード'
+https://www.youtube.com/watch?v=QisptZEIPTA:
+- 'Mahou Shoujo Lyrical Nanoha StrikerS'
+- 'Garota Mágica Lírica Nanoha StrikerS'
+- 'Magical Girl Lyrical Nanoha StrikerS'
+- 'mglnss'
+- 'mslns'
+- 'mslnss'
+- 'Nanoha Season 3'
+- 'nanoha strikers'
+- 'nanoha3'
+- 'NanohaSS'
+- 'StrikerS'
+- '魔法少女リリカルなのはStrikerS'
+- '魔法少女奈叶SS'
+- '魔法少女奈叶StrikerS'
+https://www.youtube.com/watch?v=bmLVLG9yraY:
+- 'Mahou Shoujo Lyrical Nanoha ViVid'
+- 'Magical Girl Lyrical Nanoha ViVid'
+- 'Magical Girl Lyrical Nanoha Vivid'
+- 'Mahou Shoujo Lyrical Nanoha Vivid'
+- 'Nanoha ViVid'
+- '魔法少女リリカルなのは ViVid'
+- '魔法少女リリカルなのはViVid'
+https://www.youtube.com/watch?v=xX6R_TTnPEA:
+- 'Asobi Asobase'
+- 'Asobi Asobase -workshop of fun-'
+- 'Asobi Asobase: Workshop Of Fun'
+- 'あそびあそばせ'
+https://www.youtube.com/watch?v=b1XKAjzLxZo:
+- 'Maison Ikkoku'
+- 'Cara Dolce Kyoko'
+- 'Ikkoku House'
+- 'je t`aime'
+- 'Juliette'
+- 'Juliette, je t`aime'
+- 'Maison Ikkoku TV'
+- 'MI'
+- 'Доходный дом Иккоку'
+- 'مايسن إيكّوكو'
+- 'めぞん一刻'
+- '相聚一刻'
+https://www.youtube.com/watch?v=TH_572d1XA4:
+- 'Maison Ikkoku'
+- 'Cara Dolce Kyoko'
+- 'Ikkoku House'
+- 'je t`aime'
+- 'Juliette'
+- 'Juliette, je t`aime'
+- 'Maison Ikkoku TV'
+- 'MI'
+- 'Доходный дом Иккоку'
+- 'مايسن إيكّوكو'
+- 'めぞん一刻'
+- '相聚一刻'
+https://www.youtube.com/watch?v=KuZbmLLv1vM:
+- 'Mahoutsukai no Yome'
+- 'Die Braut des Magiers'
+- 'Mahou Tsukai no Yome'
+- 'Mahoyome'
+- 'The Ancient Magus Bride'
+- 'The Ancient Magus'' Bride'
+- 'The Ancient Magus` Bride'
+- 'Жената на магьосника'
+- 'عروس المشعوذ القديم'
+- '魔法使いの嫁'
+- '魔法使的新娘'
+- '마법사의 신부'
+https://www.youtube.com/watch?v=eke8NcZSE30:
+- 'Mahoutsukai no Yome'
+- 'Maho Yome'
+- 'Mahou Tsukai no Yome'
+- 'MahoYome'
+- 'The Ancient Magus'' Bride'
+- 'The Magician''s Bride'
+- 'まほよめ'
+- '魔法使いの嫁'
+https://www.youtube.com/watch?v=GtYClR8rmZk:
+- 'Saint Seiya'
+- 'Knights of the Zodiac'
+- 'Saint Seiya: Knights of the Zodiac'
+- 'Zodiac Knights'
+- '聖闘士星矢(セイントセイヤ)'
+https://www.youtube.com/watch?v=djM2Ic7zCNs:
+- 'Saint Seiya'
+- 'Knights of the Zodiac'
+- 'Saint Seiya: Knights of the Zodiac'
+- 'Zodiac Knights'
+- '聖闘士星矢(セイントセイヤ)'
+https://www.youtube.com/watch?v=fgM1whMyww4:
+- 'Saint Seiya: Meiou Hades Juuni Kyuu Hen'
+- 'Les Chevaliers du Zodiaque - Chapitre Hadès - Le Sanctuaire'
+- 'Los Caballeros del Zodiaco - Saga de Hades - Santuario'
+- 'Os Cavaleiros do Zodíaco - Hades: A Saga do Santuário'
+- 'Saint Seiya Hades'
+- 'Saint Seiya: The Hades Chapter - Sanctuary'
+- 'Saint Seiya: The Hades Sanctuary Chapter'
+- 'ssh'
+- '圣斗士星矢 冥王十二宫篇'
+- '聖闘士星矢 冥王ハーデス十二宮編'
+https://www.youtube.com/watch?v=wvgh8KB8xCs:
+- 'Saint Seiya: Saintia Shou'
+- 'Aziz Seiya: Azize Shou'
+- 'Saint Seiya Saintia Sho'
+- 'Saint Seiya: Saintia Sho'
+- '圣斗士星矢 圣斗少女翔'
+- '聖闘士星矢 Saintia翔'
+- '聖闘士星矢 セインティア翔'
+- '聖鬥士星矢 聖鬥少女翔'
+https://www.youtube.com/watch?v=_1JvxrSlDRc:
+- 'Saint Seiya Omega'
+- 'sso'
+- '聖闘士星矢Ω[セイントセイヤオメガ]'
+https://www.youtube.com/watch?v=ufd4wOj2fD8:
+- 'Princess Tutu'
+- 'プリンセスチュチュ'
+https://www.youtube.com/watch?v=HL25C0H9vVw:
+- 'Shoujo Kakumei Utena'
+- 'La rivoluzione di Utena'
+- 'Revolutionary Girl Utena'
+- 'Revolutionary Girl Utena TV'
+- 'Rewolucjonistka Utena'
+- 'rgu'
+- 'Shoujo Kakumei Utena TV'
+- 'sku'
+- 'Utena'
+- 'Utena - La fillette révolutionnaire'
+- 'Utena la fillette révolutionnaire'
+- 'Utena TV'
+- 'Юная революционерка Утэна'
+- '少女革命'
+- '少女革命ウテナ'
+https://www.youtube.com/watch?v=u67olZLcDPc:
+- 'Tensei Shitara Slime Datta Ken'
+- 'TenSura'
+- 'That Time I Got Reincarnated as a Slime'
+- '転スラ'
+- '転生したらスライムだった件'
+https://www.youtube.com/watch?v=yfpINN7bkj4:
+- 'Tensei Shitara Slime Datta Ken'
+- 'TenSura'
+- 'That Time I Got Reincarnated as a Slime'
+- '転スラ'
+- '転生したらスライムだった件'
+https://www.youtube.com/watch?v=yOgHsrsrf34:
+- 'Yowamushi Pedal'
+- 'Yowapeda'
+- '弱虫ペダル'
+https://www.youtube.com/watch?v=BeRRtuYGzSE:
+- 'Yowamushi Pedal'
+- 'Yowapeda'
+- '弱虫ペダル'
+https://www.youtube.com/watch?v=CIxJNi8MtaU:
+- 'Yowamushi Pedal'
+- 'Yowapeda'
+- '弱虫ペダル'
+https://www.youtube.com/watch?v=Im6-iZGmgsA:
+- 'Gankutsuou'
+- 'Cavern King'
+- 'Contele de Monte Cristo'
+- 'Count of Monte Cristo'
+- 'El Conde de Monte Cristo'
+- 'gank'
+- 'Gank-Ou'
+- 'Ganku-Ou'
+- 'Gankut-Ou'
+- 'Gankutsu Ou'
+- 'Gankutsuou - Le comte de Monte-Cristo'
+- 'Gankutsuou De Monte Cristo'
+- 'Gankutsuou: Hrabia Monte Christo'
+- 'Gankutsuou: The Count of Monte Cristo'
+- 'Grafas Montekristas'
+- 'Greven af Monte Christo'
+- 'Greven af Monte-Cristo'
+- 'Hrabia Monte Christo'
+- 'Hrabě Monte Christo'
+- 'Il conte di Montecristo'
+- 'King of the Cave'
+- 'Le comte de Monte-Cristo'
+- 'Lord of the Cave'
+- 'Monte Cristo'
+- 'Monte Cristo grófja'
+- 'Monte Kristo Kontu'
+- 'MonteCristo'
+- 'O Conde de Monte Cristo'
+- 'The Count'
+- 'The Count of Monte Cristo'
+- 'The Count of Monte Cristo: Gankutsuou'
+- 'Zemsta hrabiego Monte Cristo'
+- 'Граф Монте-Кристо'
+- 'مونت كريستو'
+- 'کونت مونت کریستو'
+- '巌窟王'
+- '암굴왕'
+https://www.youtube.com/watch?v=_1h4mQAEWI8:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=3qpBFlASUK4:
+- 'Nagi no Asukara'
+- 'A Lull in the Sea'
+- 'Earth color of a calm'
+- 'Nagi-Asu: A Lull in the Sea'
+- 'nagiasu'
+- '來自風平浪靜的明日'
+- '凪のあすから'
+- '来自风平浪静的明天'
+https://www.youtube.com/watch?v=1ODMew2vLfE:
+- 'Nagi no Asukara'
+- 'A Lull in the Sea'
+- 'Earth color of a calm'
+- 'Nagi-Asu: A Lull in the Sea'
+- 'nagiasu'
+- '來自風平浪靜的明日'
+- '凪のあすから'
+- '来自风平浪静的明天'
+https://www.youtube.com/watch?v=Y8SwZJAUiW4:
+- 'Nisemonogatari'
+- 'Fake Tale'
+- 'Impostory'
+- '偽物語'
+https://www.youtube.com/watch?v=xjBTNbEXbAA:
+- 'Naruto'
+- 'Narutas'
+- 'NARUTO'
+- 'Naruto TV'
+- 'NARUTO 少年篇'
+- 'Naruto: Shounen Hen'
+- 'NTV'
+- 'Phénomène Naruto'
+- 'Наруто'
+- 'נארוטו'
+- 'ناروتو'
+- 'ناروٹو'
+- 'நருடோ'
+- 'ナルト'
+- 'ナルト 少年篇'
+- '火影忍者'
+- '나루토'
+https://www.youtube.com/watch?v=wCI9SuOT6qk:
+- 'Naruto'
+- 'Narutas'
+- 'NARUTO'
+- 'Naruto TV'
+- 'NARUTO 少年篇'
+- 'Naruto: Shounen Hen'
+- 'NTV'
+- 'Phénomène Naruto'
+- 'Наруто'
+- 'נארוטו'
+- 'ناروتو'
+- 'ناروٹو'
+- 'நருடோ'
+- 'ナルト'
+- 'ナルト 少年篇'
+- '火影忍者'
+- '나루토'
+https://www.youtube.com/watch?v=pY15k20Hqq0:
+- 'Naruto'
+- 'Narutas'
+- 'NARUTO'
+- 'Naruto TV'
+- 'NARUTO 少年篇'
+- 'Naruto: Shounen Hen'
+- 'NTV'
+- 'Phénomène Naruto'
+- 'Наруто'
+- 'נארוטו'
+- 'ناروتو'
+- 'ناروٹو'
+- 'நருடோ'
+- 'ナルト'
+- 'ナルト 少年篇'
+- '火影忍者'
+- '나루토'
+https://www.youtube.com/watch?v=A6b11LTIAkc:
+- 'Naruto'
+- 'Narutas'
+- 'NARUTO'
+- 'Naruto TV'
+- 'NARUTO 少年篇'
+- 'Naruto: Shounen Hen'
+- 'NTV'
+- 'Phénomène Naruto'
+- 'Наруто'
+- 'נארוטו'
+- 'ناروتو'
+- 'ناروٹو'
+- 'நருடோ'
+- 'ナルト'
+- 'ナルト 少年篇'
+- '火影忍者'
+- '나루토'
+https://www.youtube.com/watch?v=YsWTD6Pk-S8:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=eWNNjIIq4TA:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=aJRu5ltxXjc:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=kmL3EuiiWXM:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=H3aqR_n3sM4:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=XNGLHlNndkI:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=lGTp4VogNaQ:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=L2ncHzfts_0:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=UwV0opF9ttM:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=yu12tTrkJ-g:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=BEW8Ru7Hjdc:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=gFT7G2zLUbE:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=7oTfYnq0yQA:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=rxi1eHkF0cQ:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=tUL1we0oqPc:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=otxA7fpPMPc:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=mdqE5RZqXVg:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=12wou9u-S5Y:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=d08dw3ztKZw:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=OLpBmcUrvZ8:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=HuPzRFpj6tE:
+- 'Shijou Saikyou no Deshi Kenichi'
+- 'History''s Strongest Disciple Kenichi'
+- 'KenIchi: The Mightiest Disciple'
+- '史上最強の弟子 ケンイチ'
+https://www.youtube.com/watch?v=Tt_gYZI6n_M:
+- 'Shijou Saikyou no Deshi Ken`ichi'
+- 'el Discípulo Más Fuerte de la Historia.'
+- 'History`s Strongest Disciple Kenichi'
+- 'HSD Kenichi'
+- 'HSDK'
+- 'Ken`ichi'
+- 'Kenichi'
+- 'Kenichi: The Mightiest Disciple'
+- 'o discípulo mais forte da História'
+- 'Най-силният ученик в историята Кеничи'
+- 'Сильнейший в истории ученик Кэнъити'
+- '史上最強の弟子 ケンイチ'
+- '史上最强弟子兼一'
+https://www.youtube.com/watch?v=jZvFEtR8RH0:
+- 'Tate no Yuusha no Nariagari'
+- 'The Rising of the Shield Hero'
+- '盾の勇者の成り上がり'
+https://www.youtube.com/watch?v=HutPrLMPWw0:
+- 'Tate no Yuusha no Nariagari'
+- 'The Rising of the Shield Hero'
+- '盾の勇者の成り上がり'
+https://www.youtube.com/watch?v=379VTZNVbKg:
+- 'Darker than Black: Kuro no Keiyakusha'
+- 'Darker than Black'
+- 'Darker than BLACK -黒の契約者-'
+- 'Darker than BLACK: Kuro no Keiyakusha'
+- 'DTB'
+https://www.youtube.com/watch?v=S-PjhOWhx3Q:
+- 'Darker than Black: Kuro no Keiyakusha'
+- 'Darker than Black'
+- 'Darker than BLACK -黒の契約者-'
+- 'Darker than BLACK: Kuro no Keiyakusha'
+- 'DTB'
+https://www.youtube.com/watch?v=Tu-WyAn1zWg:
+- 'Darker than Black: Kuro no Keiyakusha'
+- 'Darker than Black'
+- 'Darker than BLACK -黒の契約者-'
+- 'Darker than BLACK: Kuro no Keiyakusha'
+- 'DTB'
+https://www.youtube.com/watch?v=vRVEZq8plc0:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=lrnD7R9ohRs:
+- 'Uchouten Kazoku'
+- 'La famille excentrique'
+- 'The Eccentric Family'
+- 'Uchoten Kazoku'
+- '有頂天家族'
+https://www.youtube.com/watch?v=AJpIJ6hbYco:
+- 'Uchouten Kazoku'
+- 'La famille excentrique'
+- 'The Eccentric Family'
+- 'Uchoten Kazoku'
+- '有頂天家族'
+https://www.youtube.com/watch?v=qL5x6JuaeHw:
+- 'Kaichou wa Maid-sama!'
+- 'Class President is a Maid!'
+- 'Kaichou wa Maid-sama'
+- 'kaichou wa maidsama'
+- 'KaichouMaid'
+- 'KwMs'
+- 'Maid Sama!'
+- 'Maid-sama'
+- 'Maidsama'
+- 'Przewodnicząca jest Pokojówką!'
+- 'Służąca Przewodnicząca'
+- 'Şefa clasei e servitoare.'
+- 'Президент - горничная!'
+- 'Президент студенческого совета - горничная!'
+- 'Президент студради - покоївка'
+- 'Училищната президентка е прислужничка!'
+- 'نماینده مدرسه پیشخدمته!'
+- '会長はメイド様!'
+- '会长是女仆大人'
+https://www.youtube.com/watch?v=8muiDhiRb_M:
+- 'Kami nomi zo Shiru Sekai'
+- 'Kaminomi'
+- 'The World God Only Knows'
+- '神のみぞ知るセカイ'
+https://www.youtube.com/watch?v=ci3A3OmNHko:
+- 'Kill la Kill'
+- 'Dressed to Kill'
+- 'KILL la KILL'
+- 'Kiru ra Kiru'
+- 'KLK'
+- 'キルラキル'
+https://www.youtube.com/watch?v=qaLeO-2Fytg:
+- 'Kill la Kill'
+- 'Dressed to Kill'
+- 'KILL la KILL'
+- 'Kiru ra Kiru'
+- 'KLK'
+- 'キルラキル'
+https://www.youtube.com/watch?v=MdvcITUrVbI:
+- 'Sekaiichi Hatsukoi'
+- 'Sekai Ichi Hatsukoi - World''s Greatest First Love'
+- 'Sekai''ichi Hatsukoi'
+- 'Sekai-ichi Hatsukoi'
+- 'World''s Greatest First Love'
+- '世界一初恋 TV'
+https://www.youtube.com/watch?v=g1ARRcK4LVs:
+- 'Zankyou no Terror'
+- 'Terror in Resonance'
+- 'Terror in Tokyo'
+- 'Terror of Resonance'
+- '残響のテロル'
+https://www.youtube.com/watch?v=BILJVT9QN9o:
+- 'Fairy Tail'
+- 'FAIRY TAIL'
+- 'Fairy Tail TV'
+- 'Fairytail'
+- 'FT'
+- 'Pasaka'
+- 'Peri Kuyruğu'
+- 'Приказна история'
+- 'Сказка о хвосте феи'
+- 'Хвост феи'
+- 'פיירי טייל'
+- 'دم فرشته'
+- 'فيري تيل'
+- 'فيری تيل'
+- 'フェアリーテイル'
+- '妖精的尾巴'
+https://www.youtube.com/watch?v=AJwoiL0K768:
+- 'Fairy Tail'
+- 'FAIRY TAIL'
+- 'Fairy Tail TV'
+- 'Fairytail'
+- 'FT'
+- 'Pasaka'
+- 'Peri Kuyruğu'
+- 'Приказна история'
+- 'Сказка о хвосте феи'
+- 'Хвост феи'
+- 'פיירי טייל'
+- 'دم فرشته'
+- 'فيري تيل'
+- 'فيری تيل'
+- 'フェアリーテイル'
+- '妖精的尾巴'
+https://www.youtube.com/watch?v=rZSZfeaAJsc:
+- 'Fairy Tail'
+- 'FAIRY TAIL'
+- 'Fairy Tail TV'
+- 'Fairytail'
+- 'FT'
+- 'Pasaka'
+- 'Peri Kuyruğu'
+- 'Приказна история'
+- 'Сказка о хвосте феи'
+- 'Хвост феи'
+- 'פיירי טייל'
+- 'دم فرشته'
+- 'فيري تيل'
+- 'فيری تيل'
+- 'フェアリーテイル'
+- '妖精的尾巴'
+https://www.youtube.com/watch?v=ZTxmeLxWvTk:
+- 'Fairy Tail'
+- 'FAIRY TAIL'
+- 'Fairy Tail TV'
+- 'Fairytail'
+- 'FT'
+- 'Pasaka'
+- 'Peri Kuyruğu'
+- 'Приказна история'
+- 'Сказка о хвосте феи'
+- 'Хвост феи'
+- 'פיירי טייל'
+- 'دم فرشته'
+- 'فيري تيل'
+- 'فيری تيل'
+- 'フェアリーテイル'
+- '妖精的尾巴'
+https://www.youtube.com/watch?v=A16UqwmSt7c:
+- 'Fairy Tail'
+- 'FAIRY TAIL'
+- 'Fairy Tail TV'
+- 'Fairytail'
+- 'FT'
+- 'Pasaka'
+- 'Peri Kuyruğu'
+- 'Приказна история'
+- 'Сказка о хвосте феи'
+- 'Хвост феи'
+- 'פיירי טייל'
+- 'دم فرشته'
+- 'فيري تيل'
+- 'فيری تيل'
+- 'フェアリーテイル'
+- '妖精的尾巴'
+https://www.youtube.com/watch?v=aqRuzjIBkxY:
+- 'Fairy Tail'
+- 'FAIRY TAIL'
+- 'Fairy Tail TV'
+- 'Fairytail'
+- 'FT'
+- 'Pasaka'
+- 'Peri Kuyruğu'
+- 'Приказна история'
+- 'Сказка о хвосте феи'
+- 'Хвост феи'
+- 'פיירי טייל'
+- 'دم فرشته'
+- 'فيري تيل'
+- 'فيری تيل'
+- 'フェアリーテイル'
+- '妖精的尾巴'
+https://www.youtube.com/watch?v=WKAwCfn6RhU:
+- 'Fairy Tail'
+- 'FAIRY TAIL'
+- 'Fairy Tail TV'
+- 'Fairytail'
+- 'FT'
+- 'Pasaka'
+- 'Peri Kuyruğu'
+- 'Приказна история'
+- 'Сказка о хвосте феи'
+- 'Хвост феи'
+- 'פיירי טייל'
+- 'دم فرشته'
+- 'فيري تيل'
+- 'فيری تيل'
+- 'フェアリーテイル'
+- '妖精的尾巴'
+https://www.youtube.com/watch?v=yFETB_ukhTk:
+- 'Fairy Tail'
+- 'FAIRY TAIL'
+- 'Fairy Tail TV'
+- 'Fairytail'
+- 'FT'
+- 'Pasaka'
+- 'Peri Kuyruğu'
+- 'Приказна история'
+- 'Сказка о хвосте феи'
+- 'Хвост феи'
+- 'פיירי טייל'
+- 'دم فرشته'
+- 'فيري تيل'
+- 'فيری تيل'
+- 'フェアリーテイル'
+- '妖精的尾巴'
+https://www.youtube.com/watch?v=b36-p0UryRw:
+- 'Fairy Tail'
+- 'FAIRY TAIL'
+- 'Fairy Tail TV'
+- 'Fairytail'
+- 'FT'
+- 'Pasaka'
+- 'Peri Kuyruğu'
+- 'Приказна история'
+- 'Сказка о хвосте феи'
+- 'Хвост феи'
+- 'פיירי טייל'
+- 'دم فرشته'
+- 'فيري تيل'
+- 'فيری تيل'
+- 'フェアリーテイル'
+- '妖精的尾巴'
+https://www.youtube.com/watch?v=e-7uuV7B7mo:
+- 'Fairy Tail'
+- 'FAIRY TAIL'
+- 'Fairy Tail TV'
+- 'Fairytail'
+- 'FT'
+- 'Pasaka'
+- 'Peri Kuyruğu'
+- 'Приказна история'
+- 'Сказка о хвосте феи'
+- 'Хвост феи'
+- 'פיירי טייל'
+- 'دم فرشته'
+- 'فيري تيل'
+- 'فيری تيل'
+- 'フェアリーテイル'
+- '妖精的尾巴'
+https://www.youtube.com/watch?v=QahFijEd3hY:
+- 'Golden Kamuy'
+- 'ゴールデンカムイ'
+https://www.youtube.com/watch?v=uEL-RZ5PKgQ:
+- 'Golden Kamuy'
+- 'ゴールデンカムイ'
+https://www.youtube.com/watch?v=iOrkj_MFXm8:
+- 'Gosick'
+- 'Goshiku'
+- 'GOSICK'
+- 'Госик'
+- 'Готика'
+- 'Готически свят'
+https://www.youtube.com/watch?v=bAlS6eJveuo:
+- 'Glass no Kamen'
+- 'Glass Mask'
+- 'Il grande sogno di Maya'
+- 'Laura ou la passion du théâtre'
+- 'Mask of Glass'
+- 'ガラスの仮面'
+https://www.youtube.com/watch?v=UwBTjSMCUYo:
+- 'Hikaru no Go'
+- 'HikaGo'
+- 'HnG'
+- 'Хикару и Го'
+- 'היקארו נו גו'
+- 'ฮิคารุ เซียนโกะ'
+- 'ヒカルの碁'
+- '棋魂'
+https://www.youtube.com/watch?v=XVfR-fmh1qE:
+- 'Hikaru no Go'
+- 'HikaGo'
+- 'HnG'
+- 'Хикару и Го'
+- 'היקארו נו גו'
+- 'ฮิคารุ เซียนโกะ'
+- 'ヒカルの碁'
+- '棋魂'
+https://www.youtube.com/watch?v=FbfbYywSBB8:
+- 'Hikaru no Go'
+- 'HikaGo'
+- 'HnG'
+- 'Хикару и Го'
+- 'היקארו נו גו'
+- 'ฮิคารุ เซียนโกะ'
+- 'ヒカルの碁'
+- '棋魂'
+https://www.youtube.com/watch?v=6DsK5x9Itss:
+- 'Yuusha-Ou GaoGaiGar Final'
+- 'Brave King GaoGaiGar Final'
+- 'GaoGaiGar Final'
+- 'King of Braves GaoGaiGar Final'
+- 'Yuusha Ou GaoGaiGar Final'
+- 'Yuusha-Oh GaoGaiGar Final'
+- '勇者王ガオガイガーFINAL'
+https://www.youtube.com/watch?v=Msuu3b-L-2k:
+- 'Hyouka'
+- 'Hyoka'
+- 'Hyou-ka'
+- 'Hyou-ka: You can''t escape'
+- 'Hyou-ka: You Can`t Escape'
+- 'Hyouka: Forbidden Secrets'
+- 'Hyouka: You can''t escape'
+- 'I scream'
+- 'Ice-cream'
+- 'The Niece of Time'
+- 'Хьёка'
+- 'هیوکا'
+- 'ปริศนาความทรงจำ'
+- '冰果'
+- '冰菓'
+- '氷菓'
+- '빙과'
+https://www.youtube.com/watch?v=aa_rX6J2fuQ:
+- 'Hyouka'
+- 'Hyoka'
+- 'Hyou-ka'
+- 'Hyou-ka: You can''t escape'
+- 'Hyou-ka: You Can`t Escape'
+- 'Hyouka: Forbidden Secrets'
+- 'Hyouka: You can''t escape'
+- 'I scream'
+- 'Ice-cream'
+- 'The Niece of Time'
+- 'Хьёка'
+- 'هیوکا'
+- 'ปริศนาความทรงจำ'
+- '冰果'
+- '冰菓'
+- '氷菓'
+- '빙과'
+https://www.youtube.com/watch?v=M8zyki0Si6A:
+- 'Lovely Complex'
+- 'Bezvadná dvojka'
+- 'LC'
+- 'LoveCom'
+- 'Lovely★Complex'
+- 'Uroczy związek'
+- 'Комплекс кохання'
+- 'Любовен Комплекс'
+- 'Трогательный комплекс'
+- 'ラブ★コン'
+- '恋爱方程式'
+https://www.youtube.com/watch?v=KM9ZF9nvlBc:
+- 'Lovely Complex'
+- 'Bezvadná dvojka'
+- 'LC'
+- 'LoveCom'
+- 'Lovely★Complex'
+- 'Uroczy związek'
+- 'Комплекс кохання'
+- 'Любовен Комплекс'
+- 'Трогательный комплекс'
+- 'ラブ★コン'
+- '恋爱方程式'
+https://www.youtube.com/watch?v=KOWcj7XKnfQ:
+- 'Overlord'
+- 'Over Lord'
+- 'OVERLORD'
+- 'Владетелят'
+- 'Повелитель'
+- 'اوفرلورد'
+- 'オーバーロード'
+- '오버로드'
+https://www.youtube.com/watch?v=lfpyJUnwW0w:
+- 'Overlord II'
+- 'Over Lord 2'
+- 'オーバーロードⅡ'
+https://www.youtube.com/watch?v=S9yfM5OrpKU:
+- 'Overlord'
+- 'Over Lord'
+- 'OVERLORD'
+- 'Владетелят'
+- 'Повелитель'
+- 'اوفرلورد'
+- 'オーバーロード'
+- '오버로드'
+https://www.youtube.com/watch?v=C_68r0xJhX0:
+- 'Saiunkoku Monogatari'
+- 'CcP'
+- 'Colorcloud Palace'
+- 'ColourCloud Palace'
+- 'Colourcloud Palace'
+- 'Kokumono'
+- 'Saimono'
+- 'saimono'
+- 'Saiun'
+- 'Story of the Land of Many-Colored Clouds'
+- 'Tale of Saiunkoku'
+- 'Tales of Saiunkoku'
+- 'The Story of Saiunkoku'
+- 'The Tale of Saiun Country'
+- 'The Tale of the Luminous Cloud Palace'
+- 'ToS'
+- 'Приказка за страната на многоцветните облаци'
+- '彩云国物语'
+- '彩雲国物語'
+https://www.youtube.com/watch?v=erh6DUUXsjA:
+- 'Kodomo no Omocha'
+- 'Child''s Toy'
+- 'Kodocha'
+- 'こどものおもちゃ'
+https://www.youtube.com/watch?v=8Ez0zrDxwkY:
+- 'Kodomo no Omocha'
+- 'Child''s Toy'
+- 'Kodocha'
+- 'こどものおもちゃ'
+https://www.youtube.com/watch?v=Da3JfD4CDnY:
+- 'Koukyou Shihen Eureka Seven'
+- 'Eureka 7'
+- 'Eureka Seven'
+- 'Eureka Seven Psalms of Planets'
+- '交響詩篇エウレカセブン'
+https://www.youtube.com/watch?v=3QKeYCLoYgg:
+- 'Koukyou Shihen Eureka Seven'
+- 'Eureka 7'
+- 'Eureka Seven'
+- 'Eureka Seven Psalms of Planets'
+- '交響詩篇エウレカセブン'
+https://www.youtube.com/watch?v=Tg7EQpMMUq0:
+- 'Koukyou Shihen Eureka Seven'
+- 'Eureka 7'
+- 'Eureka Seven'
+- 'Eureka Seven Psalms of Planets'
+- '交響詩篇エウレカセブン'
+https://www.youtube.com/watch?v=935szsi41Vo:
+- 'Koukyou Shihen Eureka Seven'
+- 'Eureka 7'
+- 'Eureka Seven'
+- 'Eureka Seven Psalms of Planets'
+- '交響詩篇エウレカセブン'
+https://www.youtube.com/watch?v=aeegEiFWCmM:
+- 'Eureka Seven AO'
+- 'Eureka 7 AO'
+- 'Eureka Seven Astral Ocean'
+- 'エウレカセブンAO'
+https://www.youtube.com/watch?v=iSGCKUU044A:
+- 'D.Gray-man'
+- 'D.G'
+- 'D.Gray-Man'
+- 'D.格雷少年'
+- 'DGM'
+- 'dgrayman'
+- 'Grayman'
+- 'O Homen Cinza'
+- 'Ди Грей Мен'
+- 'Сивият'
+- 'دي. جراي مان'
+- 'ดีเกรย์แมน'
+- 'ディー・グレイマン'
+- '驅魔少年'
+- '디그레이맨'
+https://www.youtube.com/watch?v=zK-EVhaeB48:
+- 'D.Gray-man'
+- 'D.G'
+- 'D.Gray-Man'
+- 'D.格雷少年'
+- 'DGM'
+- 'dgrayman'
+- 'Grayman'
+- 'O Homen Cinza'
+- 'Ди Грей Мен'
+- 'Сивият'
+- 'دي. جراي مان'
+- 'ดีเกรย์แมน'
+- 'ディー・グレイマン'
+- '驅魔少年'
+- '디그레이맨'
+https://www.youtube.com/watch?v=AVo2xm89Suw:
+- 'D.Gray-man'
+- 'D.G'
+- 'D.Gray-Man'
+- 'D.格雷少年'
+- 'DGM'
+- 'dgrayman'
+- 'Grayman'
+- 'O Homen Cinza'
+- 'Ди Грей Мен'
+- 'Сивият'
+- 'دي. جراي مان'
+- 'ดีเกรย์แมน'
+- 'ディー・グレイマン'
+- '驅魔少年'
+- '디그레이맨'
+https://www.youtube.com/watch?v=ZK05OU05Zig:
+- 'Fullmetal Panic!'
+- '!פול מטאל פאניק'
+- 'FMP'
+- 'FMP!'
+- 'FMP1'
+- 'Full Metal Panic'
+- 'Full Metal Panic!'
+- 'Металева тривога'
+- 'Металлобоязнь'
+- 'Пълна метална паника!'
+- 'Сталева тривога!'
+- 'Стальная тревога'
+- 'ฟูลเมทัล แพนิค!'
+- 'フルメタル・パニック!'
+- '全金属狂潮'
+- '全金属狂潮2 校园篇'
+- '풀 메탈 패닉!'
+https://www.youtube.com/watch?v=Q82FOFotCyg:
+- 'Full Metal Panic? Fumoffu'
+- 'Full Metal Panic Fumoffu'
+- 'Fullmetal Panic? Fumoffu'
+- 'フルメタル・パニック? ふもっふ'
+https://www.youtube.com/watch?v=VD1WMzMlBQo:
+- 'Dennou Coil'
+- 'Coil - A Circle of Children'
+- 'Cyber Coil'
+- 'Cyberkrąg'
+- 'Den-noh Coil'
+- 'DenCo'
+- 'Denno Coil'
+- 'Dennō Coil'
+- 'Виртуален шум'
+- 'Кибер-виток'
+- 'ذغال الکترونیکی'
+- 'سایبر کویل'
+- '电脑线圈'
+- '電脳コイル'
+https://www.youtube.com/watch?v=VUxx7iCSekQ:
+- 'Hidamari Sketch'
+- 'ひだまりスケッチ'
+https://www.youtube.com/watch?v=mPwHWmyIhws:
+- 'Hidamari Sketch x Honeycomb'
+- 'Hidamari Sketch 4th Season'
+- 'Hidamari Sketch Dai Yon Ki'
+- 'Hidamari Sketch Fourth Series'
+- 'Hidamari Sketch x Hanikamu'
+- 'Hidamari Sketch: xHoneycomb'
+- 'ひだまりスケッチ×ハニカム'
+https://www.youtube.com/watch?v=YKnDzLHZHkU:
+- 'Akagami no Shirayuki-hime'
+- 'Akagami no Shirayukihime'
+- 'Die rothaarige Schneeprinzessin'
+- 'Shirayuki aux cheveux rouges'
+- 'Snow White with the Red Hair'
+- '赤髪の白雪姫 Snow White with the Red Hair'
+- '빨강머리 백설공주'
+https://www.youtube.com/watch?v=Wyj68m_nNxY:
+- 'City Hunter'
+- 'CHun1'
+- 'CITY HUNTER'
+- 'City Hunter (1. Staffel)'
+- 'city hunter 1'
+- 'Nicky Larson'
+- 'Şehir Avcısı'
+- 'Городской охотник'
+- 'صياد المدينة'
+- 'シティーハンター'
+https://www.youtube.com/watch?v=6hJ9tHvP55g:
+- 'City Hunter'
+- 'CHun1'
+- 'CITY HUNTER'
+- 'City Hunter (1. Staffel)'
+- 'city hunter 1'
+- 'Nicky Larson'
+- 'Şehir Avcısı'
+- 'Городской охотник'
+- 'صياد المدينة'
+- 'シティーハンター'
+https://www.youtube.com/watch?v=NVKqS7hkxTQ:
+- 'City Hunter'
+- 'CHun1'
+- 'CITY HUNTER'
+- 'City Hunter (1. Staffel)'
+- 'city hunter 1'
+- 'Nicky Larson'
+- 'Şehir Avcısı'
+- 'Городской охотник'
+- 'صياد المدينة'
+- 'シティーハンター'
+https://www.youtube.com/watch?v=uLWjBJMEMaU:
+- 'City Hunter'
+- 'CHun1'
+- 'CITY HUNTER'
+- 'City Hunter (1. Staffel)'
+- 'city hunter 1'
+- 'Nicky Larson'
+- 'Şehir Avcısı'
+- 'Городской охотник'
+- 'صياد المدينة'
+- 'シティーハンター'
+https://www.youtube.com/watch?v=D4LHdvB0RZg:
+- 'City Hunter'
+- 'CHun1'
+- 'CITY HUNTER'
+- 'City Hunter (1. Staffel)'
+- 'city hunter 1'
+- 'Nicky Larson'
+- 'Şehir Avcısı'
+- 'Городской охотник'
+- 'صياد المدينة'
+- 'シティーハンター'
+https://www.youtube.com/watch?v=gz69tyXfhMA:
+- 'City Hunter'
+- 'CHun1'
+- 'CITY HUNTER'
+- 'City Hunter (1. Staffel)'
+- 'city hunter 1'
+- 'Nicky Larson'
+- 'Şehir Avcısı'
+- 'Городской охотник'
+- 'صياد المدينة'
+- 'シティーハンター'
+https://www.youtube.com/watch?v=jVw-cUMEQMc:
+- 'Juuni Kokuki'
+- '12 Karalysčių'
+- '12 Kingdoms'
+- '12 Kingdoms - Juuni Kokki'
+- '12 Kokuki'
+- '12 Krallık'
+- '12 królestw'
+- '12 Împărăţii'
+- '12 อาณาจักรเทพยุทธ์'
+- '12K'
+- 'Doce Reinos'
+- 'Doze Reinos'
+- 'Dvanáct království'
+- 'Dwanaście królestw'
+- 'Els Dotze Regnes'
+- 'JK'
+- 'Juuni'
+- 'Juuni Kokki'
+- 'Kaksteist Kuningriiki'
+- 'Les 12 royaumes'
+- 'Los Doce Reinos'
+- 'Record of 12 countries'
+- 'The Twelve Kingdoms'
+- 'Дванадесете Кралства'
+- 'Двенадцать королевств'
+- 'Хроники Двенадцати Королевств'
+- 'Хроніки дванадцяти королівств'
+- 'שתים עשרה הממלכות'
+- 'الممالك الاثنى عشر'
+- '十二国記'
+- '十二国记'
+https://www.youtube.com/watch?v=sjJzR6ghQ2c:
+- 'Kimi ni Todoke'
+- 'Kimi ni Todoke: From Me to You'
+- 'Reaching You'
+- '君に届け'
+https://www.youtube.com/watch?v=fv2Ybecq92E:
+- 'Toaru Majutsu no Index'
+- 'A Certain Magical Index'
+- 'Historia pewnego magicznego Indexu'
+- 'Index'
+- 'Index1'
+- 'To Aru Majutsu no Index'
+- 'Toaru Majutsu no Kinsho Mokuroku'
+- 'Индекс Волшебства'
+- 'Некий магический индекс'
+- 'То ару маджіцу но Індекс'
+- 'คัมภีร์คาถาต้องห้าม อินเด็กซ์'
+- 'とある魔術の禁書目録[インデックス]'
+- '魔法禁书目录'
+- '魔法禁書目錄'
+https://www.youtube.com/watch?v=Q34iirTNwr4:
+- 'Toaru Majutsu no Index'
+- 'A Certain Magical Index'
+- 'Historia pewnego magicznego Indexu'
+- 'Index'
+- 'Index1'
+- 'To Aru Majutsu no Index'
+- 'Toaru Majutsu no Kinsho Mokuroku'
+- 'Индекс Волшебства'
+- 'Некий магический индекс'
+- 'То ару маджіцу но Індекс'
+- 'คัมภีร์คาถาต้องห้าม อินเด็กซ์'
+- 'とある魔術の禁書目録[インデックス]'
+- '魔法禁书目录'
+- '魔法禁書目錄'
+https://www.youtube.com/watch?v=YKvnc7z0roM:
+- 'Toaru Majutsu no Index II'
+- 'A Certain Magical Index 2'
+- 'A Certain Magical Index II'
+- 'Index2'
+- 'To Aru Majutsu no Index II'
+- 'Toaru Majutsu no Index 2'
+- 'Toaru Majutsu no Kinsho Mokuroku II'
+- 'とある魔術の禁書目録[インデックス]II'
+- 'とある魔術の禁書目録II'
+- '魔法禁书目录 2'
+- '魔法禁書目錄 II'
+https://www.youtube.com/watch?v=uqEwvVIeFr4:
+- 'Toaru Majutsu no Index II'
+- 'A Certain Magical Index 2'
+- 'A Certain Magical Index II'
+- 'Index2'
+- 'To Aru Majutsu no Index II'
+- 'Toaru Majutsu no Index 2'
+- 'Toaru Majutsu no Kinsho Mokuroku II'
+- 'とある魔術の禁書目録[インデックス]II'
+- 'とある魔術の禁書目録II'
+- '魔法禁书目录 2'
+- '魔法禁書目錄 II'
+https://www.youtube.com/watch?v=us6W03IJ8X0:
+- 'Toaru Majutsu no Index III'
+- 'A Certain Magical Index III'
+- 'Toaru Majutsu no Index 3'
+- 'Toaru Majutsu no Kinsho Mokuroku 3'
+- 'とある魔術の禁書目録III'
+- 'とある魔術の禁書目録Ⅲ'
+https://www.youtube.com/watch?v=tJzF1tu7-dw:
+- 'Toaru Majutsu no Index III'
+- 'A Certain Magical Index III'
+- 'Toaru Majutsu no Index 3'
+- 'Toaru Majutsu no Kinsho Mokuroku 3'
+- 'とある魔術の禁書目録III'
+- 'とある魔術の禁書目録Ⅲ'
+https://www.youtube.com/watch?v=iZ2j45PHlHs:
+- 'Toaru Kagaku no Railgun'
+- 'A Certain Scientific Railgun'
+- 'railgun'
+- 'To Aru Kagaku no Railgun'
+- 'Toaru Kagaku no Choudenjihou'
+- 'Некий научный рейлган'
+- 'เรลกัน แฟ้มลับคดีวิทยาศาสตร์'
+- 'とある科学の超電磁砲[レールガン]'
+- '某科学的超电磁炮'
+- '科學超電磁砲'
+- '魔法禁书目录外传_科学的超电磁炮'
+- '어떤 과학의 초전자포'
+https://www.youtube.com/watch?v=1NYUKIZCV5k:
+- 'Toaru Kagaku no Railgun'
+- 'A Certain Scientific Railgun'
+- 'Toaru Kagaku no Choudenjihou'
+- 'とある科学の超電磁砲'
+https://www.youtube.com/watch?v=rNWITQJzbls:
+- 'Toaru Kagaku no Railgun S'
+- 'A Certain Scientific Railgun 2'
+- 'A Certain Scientific Railgun 2nd Season'
+- 'A Certain Scientific Railgun S'
+- 'Toaru Kagaku no Choudenjihou 2'
+- 'Toaru Kagaku no Railgun 2'
+- 'Toaru Kagaku no Railgun 2nd Season'
+- 'とある科学の超電磁砲S'
+https://www.youtube.com/watch?v=2covdFPm1GE:
+- 'Toaru Kagaku no Railgun S'
+- 'A Certain Scientific Railgun 2'
+- 'A Certain Scientific Railgun 2nd Season'
+- 'A Certain Scientific Railgun S'
+- 'Toaru Kagaku no Choudenjihou 2'
+- 'Toaru Kagaku no Railgun 2'
+- 'Toaru Kagaku no Railgun 2nd Season'
+- 'とある科学の超電磁砲S'
+https://www.youtube.com/watch?v=3zUodItQWx8:
+- 'Yuuki Yuuna wa Yuusha de Aru'
+- 'Yuki Yuna Is a Hero'
+- 'yuyuyu'
+- '結城友奈は勇者である'
+- '结城友奈是勇者'
+- '유우키 유우나는 용사다'
+https://www.youtube.com/watch?v=Egmf2bl6HoI:
+- 'Ef - a Tale of Memories.'
+- 'ef'
+- 'ef - a tale of memories.'
+- 'ef - opowieść o wspomnieniach'
+- 'ef - prisiminimų pasaka'
+- 'ef - розповідь про спогади'
+- 'ef1'
+- 'Ef: A Tale of Memories'
+- 'Еф - Приказка за Спомените'
+- 'Перо на вечността: История за спомени'
+- 'Эф - история воспоминаний'
+- '悠久之翼'
+https://www.youtube.com/watch?v=PxvYla19EOQ:
+- 'Junjou Romantica'
+- 'Junjo Romantica'
+- 'Junjou Romantica 1'
+- 'Чиста Романтика'
+- 'Чистая романтика'
+- '純情ロマンチカ'
+- '纯情罗曼史'
+https://www.youtube.com/watch?v=j7TsN9rHA0I:
+- 'Junjou Romantica'
+- 'Junjo Romantica'
+- 'Junjou Romantica 1'
+- 'Чиста Романтика'
+- 'Чистая романтика'
+- '純情ロマンチカ'
+- '纯情罗曼史'
+https://www.youtube.com/watch?v=hYFA8IcmX0w:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=SjIXE-YWMHM:
+- 'Kindaichi Shounen no Jikenbo'
+- 'Kindaichi Case Files'
+- 'Les Enquetes de Kindaichi'
+- 'Young Kindaichi''s Casebook'
+- '金田一少年の事件簿'
+https://www.youtube.com/watch?v=e_HYQZsAk54:
+- 'Kindaichi Shounen no Jikenbo'
+- 'Kindaichi Case Files'
+- 'Les Enquetes de Kindaichi'
+- 'Young Kindaichi''s Casebook'
+- '金田一少年の事件簿'
+https://www.youtube.com/watch?v=AvBhJw1ZZdo:
+- 'Kindaichi Shounen no Jikenbo'
+- 'Kindaichi Case Files'
+- 'Les Enquetes de Kindaichi'
+- 'Young Kindaichi''s Casebook'
+- '金田一少年の事件簿'
+https://www.youtube.com/watch?v=TE5cWjN3fdk:
+- 'Kindaichi Shounen no Jikenbo'
+- 'Kindaichi Case Files'
+- 'Les Enquetes de Kindaichi'
+- 'Young Kindaichi''s Casebook'
+- '金田一少年の事件簿'
+https://www.youtube.com/watch?v=p0RAE_erKUs:
+- 'Kindaichi Shounen no Jikenbo'
+- 'Kindaichi Case Files'
+- 'Les Enquetes de Kindaichi'
+- 'Young Kindaichi''s Casebook'
+- '金田一少年の事件簿'
+https://www.youtube.com/watch?v=fflOd-dHbZI:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=dvTWmdlBl_U:
+- 'Kindaichi Shounen no Jikenbo'
+- 'Kindaichi Case Files'
+- 'Les Enquetes de Kindaichi'
+- 'Young Kindaichi''s Casebook'
+- '金田一少年の事件簿'
+https://www.youtube.com/watch?v=nftv-qmi5rY:
+- 'Kindaichi Shounen no Jikenbo Returns'
+- 'Kindaichi Case Files R'
+- 'Kindaichi R'
+- 'Los casos de Kindaichi regresan'
+- 'The Case File of Young Kindaichi Returns'
+- 'The File of Young Kindaichi Returns'
+- '金田一少年の事件簿R[リターンズ]'
+https://www.youtube.com/watch?v=2R9VmRtuNwo:
+- 'Kokoro Connect'
+- 'kokoco'
+- 'kokoroco'
+- 'ココロコネクト'
+https://www.youtube.com/watch?v=8vIux5EO7ck:
+- 'Slayers Next'
+- 'スレイヤーズ NEXT'
+- 'スレイヤーズNEXT'
+https://www.youtube.com/watch?v=O5rJRlq11pc:
+- 'Slayers Try'
+- 'スレイヤーズ TRY'
+https://www.youtube.com/watch?v=0iXzeZF173Q:
+- 'Prince of Tennis'
+- 'Tennis no Ouji-sama'
+- 'The Prince of Tennis'
+- 'テニスの王子様'
+https://www.youtube.com/watch?v=7Uu7caB0OWI:
+- 'Tennis no Oujisama'
+- 'Tennis no Ouji-sama'
+- 'The Prince of Tennis'
+- 'テニスの王子様'
+https://www.youtube.com/watch?v=NwBjuFcX7z8:
+- 'Prince of Tennis'
+- 'Tennis no Ouji-sama'
+- 'The Prince of Tennis'
+- 'テニスの王子様'
+https://www.youtube.com/watch?v=Bm1n0zF0yEk:
+- 'Touch'
+- 'Bateadores'
+- 'Prendi il mondo e vai'
+- 'Théo ou la batte de la victoire'
+- 'Touch TV'
+- 'Касание'
+- 'لمسة'
+- 'ทัช ยอดรักนักกีฬา'
+- 'タッチ'
+- '棒球英豪'
+- '터치'
+https://www.youtube.com/watch?v=7nreCjekf8k:
+- 'Nurarihyon no Mago'
+- 'Grandchild of Nurarihyon'
+- 'Nura: Rise of the Yokai Clan'
+- 'The Grandson of Nurarihyon'
+- 'ぬらりひょんの孫'
+https://www.youtube.com/watch?v=K7WVSvTdcos:
+- 'Nurarihyon no Mago'
+- 'Grandchild of Nurarihyon'
+- 'Nura: Rise of the Yokai Clan'
+- 'The Grandson of Nurarihyon'
+- 'ぬらりひょんの孫'
+https://www.youtube.com/watch?v=k-XHBUganUs:
+- 'Persona: Trinity Soul'
+- 'persona'
+- 'PERSONA -trinity soul-'
+- 'Persona -trinity soul-'
+- 'Persona trinity soul'
+- 'Персона: Душа троицы'
+- 'ペルソナ トリニティ・ソウル'
+- '女神异闻录 -圣洁之魂-'
+https://www.youtube.com/watch?v=bm-WORKaOEc:
+- 'Persona: Trinity Soul'
+- 'persona'
+- 'PERSONA -trinity soul-'
+- 'Persona -trinity soul-'
+- 'Persona trinity soul'
+- 'Персона: Душа троицы'
+- 'ペルソナ トリニティ・ソウル'
+- '女神异闻录 -圣洁之魂-'
+https://www.youtube.com/watch?v=_F6LD_czS8s:
+- 'Persona: Trinity Soul'
+- 'persona'
+- 'PERSONA -trinity soul-'
+- 'Persona -trinity soul-'
+- 'Persona trinity soul'
+- 'Персона: Душа троицы'
+- 'ペルソナ トリニティ・ソウル'
+- '女神异闻录 -圣洁之魂-'
+https://www.youtube.com/watch?v=QvSswGgmMd0:
+- 'Persona: Trinity Soul'
+- 'persona'
+- 'PERSONA -trinity soul-'
+- 'Persona -trinity soul-'
+- 'Persona trinity soul'
+- 'Персона: Душа троицы'
+- 'ペルソナ トリニティ・ソウル'
+- '女神异闻录 -圣洁之魂-'
+https://www.youtube.com/watch?v=mVvoD_ErXUo:
+- 'Persona: Trinity Soul'
+- 'persona'
+- 'PERSONA -trinity soul-'
+- 'Persona -trinity soul-'
+- 'Persona trinity soul'
+- 'Персона: Душа троицы'
+- 'ペルソナ トリニティ・ソウル'
+- '女神异闻录 -圣洁之魂-'
+https://www.youtube.com/watch?v=xoQuu7GPxAI:
+- 'Wolf`s Rain'
+- 'Vilkų lietus'
+- 'Wolfs Rain'
+- 'WR'
+- 'Вовчий дощ'
+- 'Волчий дождь'
+- 'Вълчи дъжд'
+- 'مطر الذئاب'
+- 'ウルフズレイン'
+- '狼雨'
+https://www.youtube.com/watch?v=YtNMIbQPzCY:
+- 'Zetsuen no Tempest'
+- 'Blast of Tempest'
+- 'Zetsuen no Tempest: The Civilization Blaster'
+- '絶園のテンペスト'
+https://www.youtube.com/watch?v=K6OTgfKirvQ:
+- 'Zetsuen no Tempest'
+- 'Blast of Tempest'
+- 'Zetsuen no Tempest: The Civilization Blaster'
+- '絶園のテンペスト'
+https://www.youtube.com/watch?v=ES06Fkkl8ac:
+- 'Girls und Panzer'
+- 'garupan'
+- 'Girls and Panzer'
+- 'GIRLS und PANZER'
+- 'GuP'
+- 'Kızlar ve Panzerler'
+- 'Mädchen und Panzer'
+- 'ガルパン'
+- 'ガールズ&パンツァー'
+- '女子高生&重戰車'
+- '少女与战车'
+- '少女與戰車'
+https://www.youtube.com/watch?v=wew9zHCJYyI:
+- 'High Score Girl'
+- 'Hi Score Girl'
+- 'ハイスコアガール'
+https://www.youtube.com/watch?v=JRmgL564x8E:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=5vG5i-tkHEE:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=CZ73Qv-RQNg:
+- 'Log Horizon'
+- 'ورود به افق'
+- 'ログ・ホライズン'
+- '记录的地平线'
+- '로그 호라이즌'
+https://www.youtube.com/watch?v=igeYwGslD-M:
+- 'Full Moon wo Sagashite'
+- 'Full Moon o Sagashite'
+- 'Searching for the Full Moon'
+- '満月をさがして'
+https://www.youtube.com/watch?v=PXivj3ksge0:
+- 'Full Moon wo Sagashite'
+- 'Full Moon o Sagashite'
+- 'Searching for the Full Moon'
+- '満月をさがして'
+https://www.youtube.com/watch?v=qVULv9jIlI4:
+- 'Hyouge Mono'
+- 'Hyougemono'
+- 'Чудные вещи'
+- 'へうげもの'
+https://www.youtube.com/watch?v=s0kPAh2EBjM:
+- 'Kobato.'
+- 'Kobato'
+- 'kobato'
+- 'Кобато'
+- 'كوباتو'
+- 'こばと.'
+- '奇蹟少女'
+- '小鸠'
+https://www.youtube.com/watch?v=AzV9ug9BQds:
+- 'Azumanga Daioh'
+- 'Azumanga Daioh: The Animation'
+- 'Azumanga Daiou'
+- 'あずまんが大王'
+- 'あずまんが大王 THE ANIMATION'
+https://www.youtube.com/watch?v=DD3wSwOX7CY:
+- 'Grisaia no Kajitsu'
+- 'Le Fruit De La Grisaia'
+- 'The Fruit of Grisaia'
+- 'グリザイアの果実'
+https://www.youtube.com/watch?v=fABdDZBFJzs:
+- 'Grisaia no Rakuen'
+- 'Het Paradijs van Grisaia'
+- 'The Eden of Grisaia'
+- 'グリザイアの楽園'
+- '그리자이아의 낙원'
+https://www.youtube.com/watch?v=4J8jcI0WtzM:
+- 'Kekkai Sensen'
+- 'Blood Blockade Battlefront'
+- '血界戦線'
+https://www.youtube.com/watch?v=_16vOCt-sYk:
+- 'Kekkai Sensen & Beyond'
+- 'Blood Blockade Battlefront & Beyond'
+- '血界戦線 & BEYOND'
+- '혈계전선 & 비욘드'
+https://www.youtube.com/watch?v=I4aQQBLokNo:
+- 'Macross'
+- 'Cho Jiku Yosai Macross'
+- 'Choujikuu Yousai Macross'
+- 'Robotech (U.S.)'
+- 'SDF Macross'
+- 'Super Dimensional Fortress Macross'
+- '超時空要塞マクロス'
+https://www.youtube.com/watch?v=9yWpFWhmdnw:
+- 'Macross'
+- 'Cho Jiku Yosai Macross'
+- 'Choujikuu Yousai Macross'
+- 'Robotech (U.S.)'
+- 'SDF Macross'
+- 'Super Dimensional Fortress Macross'
+- '超時空要塞マクロス'
+https://www.youtube.com/watch?v=57sTEUanE_Q:
+- 'Macross Frontier'
+- 'macF'
+- 'Macross F'
+- 'Macross Frontier Deculture Edition'
+- 'Macross Frontier Yakku Deculture Edition'
+- 'Macross Fufonfia'
+- 'Макрос F'
+- 'Макросс F'
+- 'Макросс Фронтир'
+- 'マクロスF'
+- 'マクロスfrontier'
+- '마크로스 프론티어'
+https://www.youtube.com/watch?v=eEQ3JLP8cxQ:
+- 'Macross Frontier'
+- 'macF'
+- 'Macross F'
+- 'Macross Frontier Deculture Edition'
+- 'Macross Frontier Yakku Deculture Edition'
+- 'Macross Fufonfia'
+- 'Макрос F'
+- 'Макросс F'
+- 'Макросс Фронтир'
+- 'マクロスF'
+- 'マクロスfrontier'
+- '마크로스 프론티어'
+https://www.youtube.com/watch?v=9OS1hZCU6z4:
+- 'Macross Delta'
+- 'Macross Δ'
+- 'Макросс Дельта'
+- 'マクロスΔ[デルタ]'
+- '超时空要塞Δ'
+- '마크로스 델타'
+https://www.youtube.com/watch?v=MuNMinXVIIM:
+- 'Macross Delta'
+- 'Macross Δ'
+- 'Макросс Дельта'
+- 'マクロスΔ[デルタ]'
+- '超时空要塞Δ'
+- '마크로스 델타'
+https://www.youtube.com/watch?v=X2LvnbC6LgQ:
+- 'Ushio to Tora'
+- 'Ushio and Tora'
+- 'ushitora'
+- 'うしおととら'
+https://www.youtube.com/watch?v=kALFWulNp1Y:
+- 'Ushio to Tora'
+- 'Ushio and Tora'
+- 'ushitora'
+- 'うしおととら'
+https://www.youtube.com/watch?v=cXabZ_-QPb0:
+- 'Drifters'
+- 'DRIFTERS'
+- 'Drifters: Battle in a Brand-new World War'
+https://www.youtube.com/watch?v=wApAEg0ErgE:
+- 'Haibane Renmei'
+- 'Ailes Grises'
+- 'Alas Grises'
+- 'Ales Grises'
+- 'Ali Grigie'
+- 'Charcoal Feather Federation'
+- 'Haibane'
+- 'Haibane Renmei - Ailes Grises'
+- 'Haibane renmei: Stowarzyszenie szaropiórych'
+- 'HR'
+- 'La Federación de las Plumas de Carbón'
+- 'La Federazione delle Piume Cineree'
+- 'Przymierze szarych skrzydeł'
+- 'Альянс Пепельнокрылых'
+- 'Альянс Попелястокрилих'
+- 'Альянс Серокрылых'
+- 'Союз Серокрылых'
+- 'Союз сірокрилих'
+- 'Съюзът на Среброкрилите'
+- 'Товариство сірокрилих'
+- 'بال گچی ها'
+- 'هایبانه رنمی'
+- '灰羽聯盟'
+- '灰羽連盟'
+- '잿빛 날개의 연맹'
+- '하이바네 연맹'
+- '회색 날개의 연맹'
+https://www.youtube.com/watch?v=3Zrr0k6WSEE:
+- 'Kaleido Star'
+- 'Kaleido Star: New Wings'
+- 'カレイドスター'
+https://www.youtube.com/watch?v=dMtweykufLo:
+- 'Kaleido Star'
+- 'Kaleido Star: New Wings'
+- 'カレイドスター'
+https://www.youtube.com/watch?v=QQ6qIWNkLbk:
+- 'Tiger & Bunny'
+- 'Taibani'
+- 'TIGER & BUNNY (タイガー・アンド・バニー)'
+- 'Tiger and Bunny'
+https://www.youtube.com/watch?v=kycPLw1IoSw:
+- 'Yume-iro Pâtissière'
+- 'Dream-Colored Pastry Chef'
+- 'Yume-Iro Pâtissière'
+- 'Yumeiro Patissiere'
+- 'Yumeiro Pâtissière'
+- 'YumePati'
+- '夢色パティシエール'
+https://www.youtube.com/watch?v=BkHZhFhxQUI:
+- 'Beelzebub'
+- 'beel'
+- 'Beelzebub TV'
+- 'Белзебъб'
+- 'Велзевул'
+- 'Вельзепуз'
+- 'بلزباب'
+- 'べるぜバブ'
+- '惡魔奶爸'
+https://www.youtube.com/watch?v=MQ2wWTAO5B4:
+- 'Beelzebub'
+- 'beel'
+- 'Beelzebub TV'
+- 'Белзебъб'
+- 'Велзевул'
+- 'Вельзепуз'
+- 'بلزباب'
+- 'べるぜバブ'
+- '惡魔奶爸'
+https://www.youtube.com/watch?v=8gjiI0KRxjA:
+- 'Beelzebub'
+- 'beel'
+- 'Beelzebub TV'
+- 'Белзебъб'
+- 'Велзевул'
+- 'Вельзепуз'
+- 'بلزباب'
+- 'べるぜバブ'
+- '惡魔奶爸'
+https://www.youtube.com/watch?v=5C0IE_Y5CUU:
+- 'Beelzebub'
+- 'beel'
+- 'Beelzebub TV'
+- 'Белзебъб'
+- 'Велзевул'
+- 'Вельзепуз'
+- 'بلزباب'
+- 'べるぜバブ'
+- '惡魔奶爸'
+https://www.youtube.com/watch?v=G1tpPYTI07c:
+- 'Beelzebub'
+- 'beel'
+- 'Beelzebub TV'
+- 'Белзебъб'
+- 'Велзевул'
+- 'Вельзепуз'
+- 'بلزباب'
+- 'べるぜバブ'
+- '惡魔奶爸'
+https://www.youtube.com/watch?v=6GW0wXMt2CQ:
+- 'Date a Live'
+- 'Рандеву с жизнью'
+- 'Среща на живо'
+- 'デート・ア・ライブ'
+- '约会大作战'
+https://www.youtube.com/watch?v=JT0OXWLozz8:
+- 'Date a Live'
+- 'Рандеву с жизнью'
+- 'Среща на живо'
+- 'デート・ア・ライブ'
+- '约会大作战'
+https://www.youtube.com/watch?v=gHTqQSW_g4k:
+- 'Date A Live III'
+- 'Date A Live 3rd Season'
+- 'デート・ア・ライブⅢ'
+https://www.youtube.com/watch?v=iVBmh1EmC5M:
+- 'Jigoku Shoujo'
+- 'Cehennem Kızı'
+- 'Dívka z Pekla'
+- 'Fata Iadului'
+- 'Garota do Inferno'
+- 'Hell Girl'
+- 'hg1'
+- 'Jigoku Shojo'
+- 'js'
+- 'La chica infernal'
+- 'La fille des enfers'
+- 'Menina do Inferno'
+- 'Piekielna dziewczyna'
+- 'Pokoli Lány'
+- 'Адская девочка'
+- 'Момичето от ада'
+- 'Пекельна дівчина'
+- 'فتاة الجحيم'
+- 'สัญญามรณะ ธิดาอเวจี'
+- '地狱少女'
+- '地獄少女'
+https://www.youtube.com/watch?v=BpFBY9ML-2g:
+- 'Jigoku Shoujo'
+- 'Cehennem Kızı'
+- 'Dívka z Pekla'
+- 'Fata Iadului'
+- 'Garota do Inferno'
+- 'Hell Girl'
+- 'hg1'
+- 'Jigoku Shojo'
+- 'js'
+- 'La chica infernal'
+- 'La fille des enfers'
+- 'Menina do Inferno'
+- 'Piekielna dziewczyna'
+- 'Pokoli Lány'
+- 'Адская девочка'
+- 'Момичето от ада'
+- 'Пекельна дівчина'
+- 'فتاة الجحيم'
+- 'สัญญามรณะ ธิดาอเวจี'
+- '地狱少女'
+- '地獄少女'
+https://www.youtube.com/watch?v=MExUl7kouk0:
+- 'Jigoku Shoujo Yoi no Togi'
+- 'Hell Girl Yoi no Togi'
+- 'Hell Girl: Fourth Twilight'
+- '地獄少女宵伽'
+https://www.youtube.com/watch?v=UElVwKyA5R8:
+- 'Koutetsujou no Kabaneri'
+- 'kabaneri'
+- 'Kabaneri of the Iron Fortress'
+- 'Желязната крепост на мъртвите'
+- 'Заклеймённые из «Стальной крепости»'
+- 'Кабанери от Желязната крепост'
+- '甲鉄城のカバネリ'
+- '甲鐵城的卡巴內里'
+- '甲铁城的卡巴内瑞'
+- '갑철성의 카바네리'
+https://www.youtube.com/watch?v=NB2sow7tbJ8:
+- 'Mawaru Penguindrum'
+- 'Penguindrum'
+- '輪るピングドラム'
+https://www.youtube.com/watch?v=IKyIXiTLJc4:
+- 'Plastic Memories'
+- 'Пластикові спогади'
+- 'プラスティック・メモリーズ'
+- 'プラスティック・メモリーズ'
+- '플라스틱 메모리즈'
+https://www.youtube.com/watch?v=zzJ8U8OtEsE:
+- 'Soul Eater'
+- 'Bohové smrti'
+- 'Pemakan Jiwa'
+- 'Pożeracz Dusz'
+- 'SE'
+- 'setv'
+- 'Sielų Rijikas'
+- 'Soul Eater - Lélekfalók'
+- 'Soul Eater - Secera Mortii'
+- 'Гълтач на Души'
+- 'Пожиратель душ'
+- 'Пожиратель Душ'
+- 'Събирачи на души'
+- 'אוכל הנשמות'
+- 'ソウルイーター'
+- 'ソウルイーター リピートショー'
+- '噬魂师'
+https://www.youtube.com/watch?v=-eYK3YP524A:
+- 'Soul Eater'
+- 'Bohové smrti'
+- 'Pemakan Jiwa'
+- 'Pożeracz Dusz'
+- 'SE'
+- 'setv'
+- 'Sielų Rijikas'
+- 'Soul Eater - Lélekfalók'
+- 'Soul Eater - Secera Mortii'
+- 'Гълтач на Души'
+- 'Пожиратель душ'
+- 'Пожиратель Душ'
+- 'Събирачи на души'
+- 'אוכל הנשמות'
+- 'ソウルイーター'
+- 'ソウルイーター リピートショー'
+- '噬魂师'
+https://www.youtube.com/watch?v=0hgwUqC5_mM:
+- 'Yagate Kimi ni Naru'
+- 'Bloom Into You'
+- 'Eventually'
+- 'Eventually, I Will Become You'
+- 'I Will Become You'
+- 'YagaKimi'
+- 'やがて君になる'
+https://www.youtube.com/watch?v=D1AHfipwpLk:
+- 'Yakitate!! Japan'
+- 'Amassando Ja-pão'
+- 'Freshly Baked!! Ja-pan!'
+- 'japan'
+- 'Vua bánh mì'
+- 'Y!!J'
+- 'Yakitate'
+- 'Yakitate Japan'
+- 'Yakitate!!'
+- 'Yakitate!! Ja-pan'
+- 'YJ'
+- 'Свежевыпеченный!! Япония!'
+- 'Японская свежая выпечка'
+- 'ישר מהתנור! יפן!'
+- 'แชมเปี้ยน เจปัง สูตรดังเขย่าโลก!!'
+- '日式麵包王'
+- '焼きたて!! ジャぱん'
+https://www.youtube.com/watch?v=2hd0ViolSPI:
+- 'Yakitate!! Japan'
+- 'Amassando Ja-pão'
+- 'Freshly Baked!! Ja-pan!'
+- 'japan'
+- 'Vua bánh mì'
+- 'Y!!J'
+- 'Yakitate'
+- 'Yakitate Japan'
+- 'Yakitate!!'
+- 'Yakitate!! Ja-pan'
+- 'YJ'
+- 'Свежевыпеченный!! Япония!'
+- 'Японская свежая выпечка'
+- 'ישר מהתנור! יפן!'
+- 'แชมเปี้ยน เจปัง สูตรดังเขย่าโลก!!'
+- '日式麵包王'
+- '焼きたて!! ジャぱん'
+https://www.youtube.com/watch?v=RsP74hesnac:
+- 'Yakitate!! Japan'
+- 'Amassando Ja-pão'
+- 'Freshly Baked!! Ja-pan!'
+- 'japan'
+- 'Vua bánh mì'
+- 'Y!!J'
+- 'Yakitate'
+- 'Yakitate Japan'
+- 'Yakitate!!'
+- 'Yakitate!! Ja-pan'
+- 'YJ'
+- 'Свежевыпеченный!! Япония!'
+- 'Японская свежая выпечка'
+- 'ישר מהתנור! יפן!'
+- 'แชมเปี้ยน เจปัง สูตรดังเขย่าโลก!!'
+- '日式麵包王'
+- '焼きたて!! ジャぱん'
+https://www.youtube.com/watch?v=qxJWUj-MMGs:
+- 'Hanasaku Iroha'
+- 'Hana-Saku Iroha'
+- 'Hanairo'
+- 'Hanasaku Iroha ~Blossoms for Tomorrow~'
+- 'Hanasaku Iroha: Blossoms for Tomorrow'
+- '花咲くいろは'
+https://www.youtube.com/watch?v=6MffR9xOLIM:
+- 'Hanasaku Iroha'
+- 'Hana-Saku Iroha'
+- 'Hanairo'
+- 'Hanasaku Iroha ~Blossoms for Tomorrow~'
+- 'Hanasaku Iroha: Blossoms for Tomorrow'
+- '花咲くいろは'
+https://www.youtube.com/watch?v=_W6CqnQODbw:
+- 'Igano Kabamaru'
+- 'Iga no Kabamaru'
+- 'Ninja Boy'
+- '伊賀野カバ丸'
+https://www.youtube.com/watch?v=uDhEtUl7U-A:
+- 'Jormungand'
+- 'ヨルムンガンド'
+https://www.youtube.com/watch?v=zRsiCn8tszM:
+- 'Tentai Senshi Sunred'
+- 'Astro Fighter Sunred'
+- 'Sunred'
+- '天体战士桑雷德'
+- '天体戦士サンレッド'
+https://www.youtube.com/watch?v=N7bnr2_njfQ:
+- 'Tentai Senshi Sunred'
+- 'Astro Fighter Sunred'
+- 'Sunred'
+- '天体战士桑雷德'
+- '天体戦士サンレッド'
+https://www.youtube.com/watch?v=9WdSzmL80eE:
+- 'Bishoujo Senshi Sailor Moon'
+- 'Pretty Soldier Sailor Moon'
+- 'Sailor Moon'
+- '美少女戦士セーラームーン'
+https://www.youtube.com/watch?v=5txHGxJRwtQ:
+- 'Bishoujo Senshi Sailor Moon'
+- 'Pretty Soldier Sailor Moon'
+- 'Sailor Moon'
+- '美少女戦士セーラームーン'
+https://www.youtube.com/watch?v=-30SCRuk5_o:
+- 'Bishoujo Senshi Sailor Moon: Crystal'
+- 'Sailor Moon Crystal'
+- '美少女戦士セーラームーンCrystal'
+https://www.youtube.com/watch?v=ce0ZzDDk3dY:
+- 'Bishoujo Senshi Sailor Moon'
+- 'Pretty Soldier Sailor Moon'
+- 'Sailor Moon'
+- '美少女戦士セーラームーン'
+https://www.youtube.com/watch?v=gjwxINQYwPg:
+- 'Isekai no Seikishi Monogatari'
+- 'ISM'
+- 'Tenchi Muyo! War on Geminar'
+- '異世界の聖機師物語'
+https://www.youtube.com/watch?v=lOhV_ZJNIxQ:
+- 'Touhai Densetsu Akagi: Yami ni Maiorita Tensai'
+- 'Akagi'
+- 'Mahjong Legend Akagi: The Genius Who Descended Into the Darkness'
+- 'The Legend of Mahjong: Akagi'
+- 'Акаги'
+- 'легенда маджонга'
+- 'アカギ'
+- '斗牌传说'
+- '闘牌伝説アカギ 闇に舞い降りた天才'
+- '투패전설 아카기'
+https://www.youtube.com/watch?v=oAXrRWLKzko:
+- 'Ergo Proxy'
+- 'EP'
+- 'ergo'
+- 'Ergo Proksi'
+- 'Ergoproxy'
+- 'proxy'
+- 'Ерго Прокси'
+- 'Ерго проксі'
+- 'Ерґо Проксі'
+- 'Эрго Прокси'
+- 'ارگو پروکسی'
+- 'پروکسی مابعد'
+- 'エルゴプラクシ'
+- 'エルゴプラクシー'
+- '死亡代理人'
+https://www.youtube.com/watch?v=2Y2VzSY1HIg:
+- 'Hokuto no Ken'
+- 'El Puño de la Estrella del Norte'
+- 'Fist of the North Star'
+- 'FOTNS'
+- 'HNK'
+- 'HnK'
+- 'Ken il Guerriero'
+- 'Ken le survivant'
+- 'Seikimatsu Kyuseishu Densetsu: Hokuto no Ken'
+- 'Юмрукът на северната звезда'
+- 'سيف النار'
+- 'قبضة النجم الشمالي'
+- 'ฤทธิ์หมัดเทพเจ้าดาวเหนือ'
+- '世紀末救世主伝説 北斗の拳'
+- '北斗の拳'
+- '北斗神拳'
+https://www.youtube.com/watch?v=OdGIcEin4M4:
+- 'Saiyuuki Reload'
+- 'Saiyuki - Reload'
+- 'Saiyuki 2'
+- 'Saiyuki R'
+- 'Saiyuki Reload'
+- 'Saiyuki2'
+- 'ไซยูกิ สี่แสบฝ่าแดนทมิฬ'
+- '最遊記RELOAD'
+- '최유기 리로드'
+https://www.youtube.com/watch?v=Z7teW_NNZ24:
+- 'Goku Sayonara Zetsubou Sensei'
+- 'Goodbye Mr. Despair OAD'
+- 'Goodbye Mr. Despair OVA'
+- 'GSZS'
+- 'Sayonara Zetsubou Sensei OAD'
+- '獄・さよなら絶望先生'
+https://www.youtube.com/watch?v=YObykpjbLRU:
+- 'Sayonara Zetsubou Sensei'
+- 'Goodbye Teacher Despair'
+- 'Sayonara'
+- 'Sayonara Zetsubo Sensei'
+- 'Sayonara, Zetsubou-Sensei'
+- 'SZS'
+- 'Zetsubou-Sensei'
+- 'さよなら絶望先生'
+https://www.youtube.com/watch?v=-k3UmUI_YB4:
+- 'Eikoku Koi Monogatari Emma'
+- 'Emma'
+- 'Emma - Eine viktorianische Liebe'
+- 'Emma - Una storia romantica'
+- 'emma 1'
+- 'emma1'
+- 'Emma: A Victorian Romance'
+- 'English Love Story Emma'
+- 'Victorian Romance Emma'
+- '英國戀物語エマ'
+https://www.youtube.com/watch?v=OsLY7DXWsF4:
+- 'Sword Art Online'
+- 'SAO'
+- 'SAO1'
+- 'Sword Art Online: Aincrad'
+- 'Sword Art Online: Fairy Dance'
+- 'Мастер меча онлайн'
+- 'فن السيف عبر الإنترنت'
+- 'فن السيف عبر الانترنت'
+- 'هنر شمشیر زنی آنلاین'
+- 'ソードアート・オンライン'
+- '刀剑神域'
+- '刀劍神域'
+- '소드 아트 온라인'
+https://www.youtube.com/watch?v=gAi4PwjTfRU:
+- 'Sword Art Online'
+- 'SAO'
+- 'SAO1'
+- 'Sword Art Online: Aincrad'
+- 'Sword Art Online: Fairy Dance'
+- 'Мастер меча онлайн'
+- 'فن السيف عبر الإنترنت'
+- 'فن السيف عبر الانترنت'
+- 'هنر شمشیر زنی آنلاین'
+- 'ソードアート・オンライン'
+- '刀剑神域'
+- '刀劍神域'
+- '소드 아트 온라인'
+https://www.youtube.com/watch?v=b7xOm8XrXNY:
+- 'Sword Art Online'
+- 'SAO'
+- 'SAO1'
+- 'Sword Art Online: Aincrad'
+- 'Sword Art Online: Fairy Dance'
+- 'Мастер меча онлайн'
+- 'فن السيف عبر الإنترنت'
+- 'فن السيف عبر الانترنت'
+- 'هنر شمشیر زنی آنلاین'
+- 'ソードアート・オンライン'
+- '刀剑神域'
+- '刀劍神域'
+- '소드 아트 온라인'
+https://www.youtube.com/watch?v=kBUkTavYOjY:
+- 'Sword Art Online: Alicization'
+- 'SAO Alicization'
+- 'SAO3'
+- 'Sword Art Online - Alicization'
+- 'Sword Art Online Alicization'
+- 'Sword Art Online III'
+- 'ソードアート・オンライン アリシゼーション'
+- '刀劍神域 Alicization'
+- '소드 아트 온라인: 앨리시제이션'
+https://www.youtube.com/watch?v=uEO_D0Cz2R8:
+- 'Sword Art Online: Alicization'
+- 'SAO Alicization'
+- 'SAO3'
+- 'Sword Art Online - Alicization'
+- 'Sword Art Online Alicization'
+- 'Sword Art Online III'
+- 'ソードアート・オンライン アリシゼーション'
+- '刀劍神域 Alicization'
+- '소드 아트 온라인: 앨리시제이션'
+https://www.youtube.com/watch?v=7aMOurgDB-o:
+- 'Tokyo Ghoul'
+- 'Токийски гул'
+- 'Токийский гуль'
+- 'Токийско чудовище'
+- 'آزارگر توکیو'
+- 'غول توکیو'
+- '东京喰种'
+- '東京喰種[トーキョーグール]'
+https://www.youtube.com/watch?v=62c7_zKoSV8:
+- 'Carnival Phantasm'
+- 'カーニバル・ファンタズム'
+- '幻想嘉年华'
+- '幻想嘉年華'
+https://www.youtube.com/watch?v=Q9esf5COzck:
+- 'Magic Kaito'
+- 'Detective Conan Special: Secret Birth of Kaito Kid'
+- 'Kaito Kid'
+- 'Kaitou Kid'
+- 'Kaitou Kid Tanjou no Himitsu'
+- 'Magic Kaitou'
+- 'Majikku Kaito'
+- 'まじっく快斗'
+https://www.youtube.com/watch?v=3LucBfR1w6Y:
+- 'Outlaw Star'
+- 'Future Hero Next Generation Outlaw Star'
+- 'Seihou Bukyou Outlaw Star'
+- '星方武侠アウトロースター'
+https://www.youtube.com/watch?v=DjUtmbZt8zc:
+- 'Guilty Crown'
+- 'GUILTY CROWN'
+- 'ギルティクラウン'
+https://www.youtube.com/watch?v=a-TzvgFZYI0:
+- 'Guilty Crown'
+- 'GUILTY CROWN'
+- 'ギルティクラウン'
+https://www.youtube.com/watch?v=e5_bqv17g9c:
+- 'Top o Nerae! Gunbuster'
+- 'Aim for the top!'
+- 'Gunbuster'
+- 'gunbuster 1'
+- 'Punta al Top! - Gunbuster'
+- 'Top o Nerae'
+- 'Top wo Nerae'
+- 'Top wo Nerae!'
+- 'top1'
+- 'Zirveyi Hedefle! Avcı Silah'
+- 'Дотянись до Неба'
+- 'กันบัสเตอร์'
+- 'トップをねらえ! GunBuster'
+https://www.youtube.com/watch?v=kMBaVZqUXYY:
+- 'Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e'
+- 'Classroom of the Elite'
+- 'Youjitsu'
+- 'Добро пожаловать в класс превосходства'
+- 'ようこそ実力至上主義の教室へ'
+- '어서오세요 실력지상주의의 교실에'
+https://www.youtube.com/watch?v=cB8_w7XdW_I:
+- 'Break Blade'
+- 'Broken Blade'
+- 'ブレイク ブレイド'
+https://www.youtube.com/watch?v=Hlf5yNAiU9A:
+- 'Gungrave'
+- 'ggr'
+- 'ggrave'
+- 'Mộ Súng'
+- 'Silah Mezarlığı'
+- 'Гангрейв'
+- 'Оръжие до гроб'
+- 'Убийца с того света'
+- 'Ґанґрейв'
+- 'ガングレイヴ'
+https://www.youtube.com/watch?v=xLCMrIf6uG8:
+- 'Hakuouki'
+- 'Hakuoki'
+- 'Hakuoki ~Demon of the Fleeting Blossom~'
+- 'Hakuoki,Hakuouki: Shinsengumi Kitan'
+- 'Hakuouki Shinsengumi Kitan'
+- 'Hakuouki: Shinsengumi Kitan'
+- '薄桜鬼'
+https://www.youtube.com/watch?v=T4vPdlTlzcE:
+- 'Hakuouki Reimeiroku'
+- 'Hakuoki 3'
+- 'Hakuoki ~Demon of the Fleeting Blossom~ Dawn of the Shinsengumi'
+- 'Hakuouki 3'
+- 'Hakuouki Shinsengumi Kitan Reimeiroku'
+- '薄桜鬼 黎明録'
+https://www.youtube.com/watch?v=HOvkBbV_pCk:
+- 'Tasogare Otome x Amnesia'
+- 'amnesia'
+- 'Dusk Maiden of Amnesia'
+- 'Niepamięć Panny Zmierzchu'
+- 'TOxA'
+- 'Сумеречная Дева и Амнезия'
+- 'Сутінкова дівчина х Амнезія'
+- '黄昏乙女xアムネジア'
+- '黄昏少女x失忆'
+https://www.youtube.com/watch?v=VlQSWmzcG58:
+- 'Charlotte'
+- 'Charlotte(シャーロット)'
+- 'Charlotte(シャーロット)'
+https://www.youtube.com/watch?v=W6ahWjlP3q4:
+- 'Getter Robo'
+- 'Getta Robo'
+- 'Getta: Το Σούπερ Ρομπότ'
+- 'Space Robot'
+- 'ゲッターロボ'
+https://www.youtube.com/watch?v=MoNmzoP3CF8:
+- 'Change!! Getter Robo: Sekai Saigo no Hi'
+- 'Change!! Getter Robo'
+- 'Change!! Getter Robo: The Final Days of the World'
+- 'Change!! True Getter Robo - The Final Days of the World'
+- 'Getter Robo Armageddon'
+- 'Getter Robo: Armageddon'
+- 'Shin (Change!!) Getter Robo - The Final Days of the World'
+- 'Shin Getter Robo: Sekai Saigo no Hi'
+- 'Shin Getter Robo: The Last Day'
+- 'True (Change!!) Getter Robo - The Final Days of the World'
+- '真(チェンジ!!)ゲッターロボ 世界最後の日'
+- '真(チェンジ!!)ゲッターロボ~世界最後の日'
+https://www.youtube.com/watch?v=1pYduET6PwI:
+- 'Change!! Getter Robo: Sekai Saigo no Hi'
+- 'Change!! Getter Robo'
+- 'Change!! Getter Robo: The Final Days of the World'
+- 'Change!! True Getter Robo - The Final Days of the World'
+- 'Getter Robo Armageddon'
+- 'Getter Robo: Armageddon'
+- 'Shin (Change!!) Getter Robo - The Final Days of the World'
+- 'Shin Getter Robo: Sekai Saigo no Hi'
+- 'Shin Getter Robo: The Last Day'
+- 'True (Change!!) Getter Robo - The Final Days of the World'
+- '真(チェンジ!!)ゲッターロボ 世界最後の日'
+- '真(チェンジ!!)ゲッターロボ~世界最後の日'
+https://www.youtube.com/watch?v=V-AiGlgHUk8:
+- 'Jungle wa Itsumo Hare Nochi Guu'
+- 'and then came Guu'
+- 'Guu'
+- 'guu tv'
+- 'Hare+Guu'
+- 'Haré+Guu'
+- 'Jungle wa Itsumo Hale nochi Guu'
+- 'The jungle was always peaceful'
+- 'В джунглях всё было хорошо'
+- 'Всичко в джунглата беше наред'
+- 'пока не пришла Гуу'
+- 'преди да дойде Гуу'
+- 'ジャングルはいつもハレのちグゥ'
+- '热带雨林的爆笑生活'
+- '정글은 언제나 맑은뒤 흐림'
+https://www.youtube.com/watch?v=HoQfJjaoGLk:
+- 'Doukyonin wa Hiza, Tokidoki, Atama no Ue.'
+- 'My Roommate is a Cat'
+- '同居人はひざ、時々、頭のうえ。'
+https://www.youtube.com/watch?v=eHaxcnHRJoc:
+- 'Ghost Hunt'
+- 'GH'
+- 'Hayalet Avı'
+- 'Vaiduoklių medžioklė'
+- 'Łowcy duchów'
+- 'Лов на духове'
+- 'صيد الأشباح'
+- 'ゴーストハント'
+- '奇幻貴公子'
+- '恶灵猎人'
+- '狩灵师'
+https://www.youtube.com/watch?v=n89IGp4fC2U:
+- 'Gundam Build Fighters'
+- 'gbf'
+- 'Gundam BF'
+- 'ガンダムビルドファイターズ'
+- '高达创战者'
+- '건담 빌드 파이터즈'
+https://www.youtube.com/watch?v=XuccKeDW8i4:
+- 'Paradise Kiss'
+- 'Cennet Öpücüğü'
+- 'Paradise kiss'
+- 'parakiss'
+- 'parakisu'
+- 'PKiss'
+- 'Парадайз Кисс'
+- 'паракіс'
+- 'Райський цілунок'
+- 'قبلة الجنة'
+- 'พาราไดซ์ คิส'
+- 'パラダイス・キス'
+- '天堂之吻'
+https://www.youtube.com/watch?v=Czj0m3vZhBY:
+- 'Days'
+- 'DAYS'
+- 'Ден след ден'
+- 'デイズ'
+https://www.youtube.com/watch?v=CXW9KqRVa7E:
+- 'Baka to Test to Shoukanjuu'
+- 'and Summoned Creatures'
+- 'Baka and Test: Summon the Beasts'
+- 'Baka to Test to Shokanju'
+- 'BakaTest'
+- 'Idioten'
+- 'Idiots'
+- 'Tests'
+- 'Tests und beschworene Viecher'
+- 'The Idiot'
+- 'the Test'
+- 'Аватары'
+- 'Глупаци'
+- 'Дурни'
+- 'тестове и странни същества'
+- 'Тесты'
+- 'احمق ها، امتحان و موجودات احضار کردنی'
+- 'الأحمق و الامتحان : استدعاء الوحوش'
+- 'バカとテストと召喚獣'
+- '召唤兽'
+- '测验'
+- '笨蛋'
+https://www.youtube.com/watch?v=EFNQhmDLjTk:
+- 'Bleach'
+- '`בליץ'
+- 'BLEACH'
+- 'bleach tv'
+- 'BTV'
+- 'Izbeljivač'
+- 'Белина'
+- 'Блиич'
+- 'Блийч'
+- 'Блич'
+- 'Бліч'
+- 'Отбеливатель'
+- 'بليتش'
+- 'بلیچ'
+- 'บลีช เทพมรณะ'
+- 'ブリーチ'
+- '블리치'
+https://www.youtube.com/watch?v=oeqvhwjYBws:
+- 'Bleach'
+- '`בליץ'
+- 'BLEACH'
+- 'bleach tv'
+- 'BTV'
+- 'Izbeljivač'
+- 'Белина'
+- 'Блиич'
+- 'Блийч'
+- 'Блич'
+- 'Бліч'
+- 'Отбеливатель'
+- 'بليتش'
+- 'بلیچ'
+- 'บลีช เทพมรณะ'
+- 'ブリーチ'
+- '블리치'
+https://www.youtube.com/watch?v=2edBgIH7y68:
+- 'Bleach'
+- '`בליץ'
+- 'BLEACH'
+- 'bleach tv'
+- 'BTV'
+- 'Izbeljivač'
+- 'Белина'
+- 'Блиич'
+- 'Блийч'
+- 'Блич'
+- 'Бліч'
+- 'Отбеливатель'
+- 'بليتش'
+- 'بلیچ'
+- 'บลีช เทพมรณะ'
+- 'ブリーチ'
+- '블리치'
+https://www.youtube.com/watch?v=375Axn5QB_s:
+- 'Bleach'
+- '`בליץ'
+- 'BLEACH'
+- 'bleach tv'
+- 'BTV'
+- 'Izbeljivač'
+- 'Белина'
+- 'Блиич'
+- 'Блийч'
+- 'Блич'
+- 'Бліч'
+- 'Отбеливатель'
+- 'بليتش'
+- 'بلیچ'
+- 'บลีช เทพมรณะ'
+- 'ブリーチ'
+- '블리치'
+https://www.youtube.com/watch?v=r15yXAZ32Fg:
+- 'Bleach'
+- '`בליץ'
+- 'BLEACH'
+- 'bleach tv'
+- 'BTV'
+- 'Izbeljivač'
+- 'Белина'
+- 'Блиич'
+- 'Блийч'
+- 'Блич'
+- 'Бліч'
+- 'Отбеливатель'
+- 'بليتش'
+- 'بلیچ'
+- 'บลีช เทพมรณะ'
+- 'ブリーチ'
+- '블리치'
+https://www.youtube.com/watch?v=3U8NnnYzV7A:
+- 'Bleach'
+- '`בליץ'
+- 'BLEACH'
+- 'bleach tv'
+- 'BTV'
+- 'Izbeljivač'
+- 'Белина'
+- 'Блиич'
+- 'Блийч'
+- 'Блич'
+- 'Бліч'
+- 'Отбеливатель'
+- 'بليتش'
+- 'بلیچ'
+- 'บลีช เทพมรณะ'
+- 'ブリーチ'
+- '블리치'
+https://www.youtube.com/watch?v=OvahxFH7IGg:
+- 'Bleach'
+- '`בליץ'
+- 'BLEACH'
+- 'bleach tv'
+- 'BTV'
+- 'Izbeljivač'
+- 'Белина'
+- 'Блиич'
+- 'Блийч'
+- 'Блич'
+- 'Бліч'
+- 'Отбеливатель'
+- 'بليتش'
+- 'بلیچ'
+- 'บลีช เทพมรณะ'
+- 'ブリーチ'
+- '블리치'
+https://www.youtube.com/watch?v=wKMybibgt6Q:
+- 'Bleach'
+- '`בליץ'
+- 'BLEACH'
+- 'bleach tv'
+- 'BTV'
+- 'Izbeljivač'
+- 'Белина'
+- 'Блиич'
+- 'Блийч'
+- 'Блич'
+- 'Бліч'
+- 'Отбеливатель'
+- 'بليتش'
+- 'بلیچ'
+- 'บลีช เทพมรณะ'
+- 'ブリーチ'
+- '블리치'
+https://www.youtube.com/watch?v=7O87OdsVOIE:
+- 'Bleach'
+- '`בליץ'
+- 'BLEACH'
+- 'bleach tv'
+- 'BTV'
+- 'Izbeljivač'
+- 'Белина'
+- 'Блиич'
+- 'Блийч'
+- 'Блич'
+- 'Бліч'
+- 'Отбеливатель'
+- 'بليتش'
+- 'بلیچ'
+- 'บลีช เทพมรณะ'
+- 'ブリーチ'
+- '블리치'
+https://www.youtube.com/watch?v=b9vIpu0kAbE:
+- 'Bleach'
+- '`בליץ'
+- 'BLEACH'
+- 'bleach tv'
+- 'BTV'
+- 'Izbeljivač'
+- 'Белина'
+- 'Блиич'
+- 'Блийч'
+- 'Блич'
+- 'Бліч'
+- 'Отбеливатель'
+- 'بليتش'
+- 'بلیچ'
+- 'บลีช เทพมรณะ'
+- 'ブリーチ'
+- '블리치'
+https://www.youtube.com/watch?v=VUgxCUd3Bsk:
+- 'Bleach'
+- '`בליץ'
+- 'BLEACH'
+- 'bleach tv'
+- 'BTV'
+- 'Izbeljivač'
+- 'Белина'
+- 'Блиич'
+- 'Блийч'
+- 'Блич'
+- 'Бліч'
+- 'Отбеливатель'
+- 'بليتش'
+- 'بلیچ'
+- 'บลีช เทพมรณะ'
+- 'ブリーチ'
+- '블리치'
+https://www.youtube.com/watch?v=rUuHxyYqUSU:
+- 'Bleach'
+- '`בליץ'
+- 'BLEACH'
+- 'bleach tv'
+- 'BTV'
+- 'Izbeljivač'
+- 'Белина'
+- 'Блиич'
+- 'Блийч'
+- 'Блич'
+- 'Бліч'
+- 'Отбеливатель'
+- 'بليتش'
+- 'بلیچ'
+- 'บลีช เทพมรณะ'
+- 'ブリーチ'
+- '블리치'
+https://www.youtube.com/watch?v=XXjgwpayNoM:
+- 'Bleach'
+- '`בליץ'
+- 'BLEACH'
+- 'bleach tv'
+- 'BTV'
+- 'Izbeljivač'
+- 'Белина'
+- 'Блиич'
+- 'Блийч'
+- 'Блич'
+- 'Бліч'
+- 'Отбеливатель'
+- 'بليتش'
+- 'بلیچ'
+- 'บลีช เทพมรณะ'
+- 'ブリーチ'
+- '블리치'
+https://www.youtube.com/watch?v=ifrTLAd6UQY:
+- 'Bleach'
+- '`בליץ'
+- 'BLEACH'
+- 'bleach tv'
+- 'BTV'
+- 'Izbeljivač'
+- 'Белина'
+- 'Блиич'
+- 'Блийч'
+- 'Блич'
+- 'Бліч'
+- 'Отбеливатель'
+- 'بليتش'
+- 'بلیچ'
+- 'บลีช เทพมรณะ'
+- 'ブリーチ'
+- '블리치'
+https://www.youtube.com/watch?v=E-ejE--Q3UE:
+- 'Bleach'
+- '`בליץ'
+- 'BLEACH'
+- 'bleach tv'
+- 'BTV'
+- 'Izbeljivač'
+- 'Белина'
+- 'Блиич'
+- 'Блийч'
+- 'Блич'
+- 'Бліч'
+- 'Отбеливатель'
+- 'بليتش'
+- 'بلیچ'
+- 'บลีช เทพมรณะ'
+- 'ブリーチ'
+- '블리치'
+https://www.youtube.com/watch?v=jOz5mHKWaQ8:
+- 'Gate: Jieitai Kanochi nite, Kaku Tatakaeri'
+- 'GATE'
+- 'Gate'
+- 'Gate : Au-delà de la porte'
+- 'GATE 自衛隊 彼の地にて, 斯く戦えり'
+- 'Gate: Thus the JSDF Fought There'
+- 'Gate: Thus the JSDF Fought There!'
+- 'GATE(ゲート)自衛隊 彼の地にて、斯く戦えり'
+- 'Врата'
+https://www.youtube.com/watch?v=pl1sTU2MANU:
+- 'Gate: Jieitai Kanochi nite, Kaku Tatakaeri'
+- 'GATE'
+- 'Gate'
+- 'Gate : Au-delà de la porte'
+- 'GATE 自衛隊 彼の地にて, 斯く戦えり'
+- 'Gate: Thus the JSDF Fought There'
+- 'Gate: Thus the JSDF Fought There!'
+- 'GATE(ゲート)自衛隊 彼の地にて、斯く戦えり'
+- 'Врата'
+https://www.youtube.com/watch?v=oB1iB0_tS80:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=Iw5u3QVdHjA:
+- 'Shiki'
+- 'Corpse Demon'
+- '屍鬼'
+https://www.youtube.com/watch?v=3VSdQO_Z5Cw:
+- 'Shiki'
+- 'Corpse Demon'
+- '屍鬼'
+https://www.youtube.com/watch?v=vMVdjGibgM4:
+- 'Digimon Adventure'
+- 'Digimon Adventure 01'
+- 'Digimon: Digital Monsters'
+- 'デジモンアドベンチャー'
+https://www.youtube.com/watch?v=C4mr0MLSYcE:
+- 'Digimon Adventure'
+- 'Digimon Adventure 01'
+- 'Digimon: Digital Monsters'
+- 'デジモンアドベンチャー'
+https://www.youtube.com/watch?v=HhtO0kIKKww:
+- 'Digimon Tamers'
+- 'Digimon 3'
+- 'digimon3'
+- 'Digimon: Digital Monsters 03'
+- 'Digimon: Îmblânzitorii'
+- 'Digimonszelídítők'
+- 'Digimontrenéři'
+- 'DT'
+- 'Les Digimon - Saison 3'
+- 'דיג`ימון 3'
+- 'أبطال الديجيتال الجزء الثالث'
+- 'デジモンテイマーズ'
+- '数码暴龙 驯兽师之王'
+- '디지몬 테이머즈'
+https://www.youtube.com/watch?v=ZBDYY2w_ArY:
+- 'Digimon Adventure'
+- 'Digimon'
+- 'Digimon 01'
+- 'digimon1'
+- 'Digimon: Digital Monsters'
+- 'Digimon: Digitala Monster'
+- 'Digimonai'
+- 'Digimoni'
+- 'Digimonok'
+- 'Les Digimon - Saison 1'
+- 'Os Digimon'
+- 'Приключения дигимонов'
+- 'דיג`ימון'
+- 'أبطال الديجيتال الجزء الأول'
+- 'ماجراهای دیجیمون'
+- 'مغامرات الديجيمون'
+- 'デジモンアドベンチャー'
+- '数码暴龙'
+- '디지몬 어드벤쳐'
+https://www.youtube.com/watch?v=1yFBgjvjHec:
+- 'Digimon Savers'
+- 'Digimon Data Squad'
+- 'digimon5'
+- 'Спасатели дигимонов'
+- 'デジモンセイバーズ'
+- '数码兽拯救者'
+https://www.youtube.com/watch?v=fIUI0tEL3Ng:
+- 'Digimon Xros Wars'
+- 'Digimon Cross Wars'
+- 'Digimon Fusion'
+- 'Digimon Fusion Battles'
+- 'digimon6'
+- 'digixw'
+- 'デジモンクロスウォーズ'
+https://www.youtube.com/watch?v=GuPMqo4qPcE:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=KbguIYcVSg8:
+- 'Golden Time'
+- 'ゴールデンタイム'
+https://www.youtube.com/watch?v=IsMTpSDAGxM:
+- 'Kidou Keisatsu Patlabor: Patlabor on Television'
+- 'Mobile Police Patlabor (1989)'
+- 'Patlabor'
+- 'patlabor tv'
+- 'Patlabor: Policía Especial'
+- 'TV פאטלייבור'
+- '機動警察パトレイバー PATLABOR ON TELEVISION'
+https://www.youtube.com/watch?v=FQf-NkWz7Yo:
+- 'Michiko to Hatchin'
+- 'Michiko & Hatchin'
+- 'Michiko e Hatchin'
+- 'Michiko to Hacchin'
+- 'ミチコとハッチン'
+https://www.youtube.com/watch?v=nhJ-EasC3rQ:
+- 'Saenai Heroine no Sodatekata'
+- 'How to Train the Ordinary Girl to be a Heroine'
+- 'saekano'
+- 'Saekano: How to Raise a Boring Girlfriend'
+- 'Saenai Kanojo no Sodatekata'
+- '不起眼女主角培育法'
+- '冴えない彼女の育てかた'
+- '冴えカノ'
+- '路人女主的养成方法'
+- '시원찮은 그녀를 위한 육성방법'
+https://www.youtube.com/watch?v=mIj-OvTf9GE:
+- 'Saenai Heroine no Sodatekata'
+- 'How to Train the Ordinary Girl to be a Heroine'
+- 'saekano'
+- 'Saekano: How to Raise a Boring Girlfriend'
+- 'Saenai Kanojo no Sodatekata'
+- '不起眼女主角培育法'
+- '冴えない彼女の育てかた'
+- '冴えカノ'
+- '路人女主的养成方法'
+- '시원찮은 그녀를 위한 육성방법'
+https://www.youtube.com/watch?v=NqxJ191ecPQ:
+- 'Kyoukai no Kanata'
+- 'Beyond The Boundary'
+- 'Beyond the Boundary'
+- 'Beyond the Boundary: Kyoukai no Kanata'
+- 'Megane-hen'
+- 'За гранню'
+- 'Отвъд хоризонта'
+- '境界の彼方'
+- '境界的彼方'
+- '경계의 저편'
+https://www.youtube.com/watch?v=O-UWCu7v-3I:
+- 'Prison School'
+- 'Kangoku Gakuen'
+- '監獄学園[プリズンスクール]'
+- '감옥학원'
+https://www.youtube.com/watch?v=MR7xA2JbNCQ:
+- 'Mazinger Z'
+- 'Mazinga Z'
+- 'TranZor Z'
+- 'マジンガーZ'
+https://www.youtube.com/watch?v=c3OZ5apjSwk:
+- 'Shin Mazinger Shougeki! Z Hen on Television'
+- 'Mazinger Edition Z - The Impact'
+- 'Mazinger Edition Z: The Impact!'
+- 'Mazinger Z: Edición Impacto!'
+- 'Shin Mazinger'
+- 'True Mazinger'
+- 'True Mazinger Impact! Z Chapter'
+- 'True Mazinger Impact! Z Chapter on television'
+- 'مازنجر الحقيقي'
+- '真マジンガー 衝撃! Z編 on television'
+- '真魔神Z'
+https://www.youtube.com/watch?v=UDjkXkMTg-c:
+- 'Great Mazinger'
+- 'Gran Mazinger'
+- 'Il grande Mazinga'
+- 'Il grande Mazinger'
+- 'مازنجر'
+- 'グレートマジンガー'
+https://www.youtube.com/watch?v=S5o0KaXDlzY:
+- 'Mazinkaiser SKL'
+- 'Mazinkaiser Skull'
+- 'Mazinkaizer SKL'
+- 'マジンカイザー SKL'
+https://www.youtube.com/watch?v=IoaYuQxRxKo:
+- 'Claymore'
+- 'クレイモア'
+https://www.youtube.com/watch?v=UuP42KOOkyQ:
+- 'Hanasakeru Seishounen'
+- 'Hanasakeru Seishonen'
+- '花咲ける青少年'
+https://www.youtube.com/watch?v=oYDKDrQaJ9Q:
+- 'Kyousougiga (2013)'
+- 'Capital Craze Comic (2013)'
+- 'Kyousogiga (2013)'
+- 'kyousougiga tv'
+- 'Mirror Capital'
+- 'קיוסוגיגה'
+- '京騒戯画 (2013)'
+https://www.youtube.com/watch?v=DMyF9DiMH1A:
+- 'Urusei Yatsura'
+- 'Lamu'
+- 'Lamu - Lum, La Chica Invasora'
+- 'Lamù la ragazza dello spazio'
+- 'Lum'
+- 'Lum the Invader Girl'
+- 'Lum TV'
+- 'Those Obnoxious Aliens'
+- 'Turma do Barulho'
+- 'Uru'
+- 'Urusei Yatsura TV'
+- 'UY'
+- 'Несносные пришельцы'
+- 'うる星やつら'
+https://www.youtube.com/watch?v=Sn_uVt0pGrI:
+- 'Urusei Yatsura'
+- 'Lamu'
+- 'Lamu - Lum, La Chica Invasora'
+- 'Lamù la ragazza dello spazio'
+- 'Lum'
+- 'Lum the Invader Girl'
+- 'Lum TV'
+- 'Those Obnoxious Aliens'
+- 'Turma do Barulho'
+- 'Uru'
+- 'Urusei Yatsura TV'
+- 'UY'
+- 'Несносные пришельцы'
+- 'うる星やつら'
+https://www.youtube.com/watch?v=02MGVX8A6Ec:
+- 'Urusei Yatsura'
+- 'Lamu'
+- 'Lamu - Lum, La Chica Invasora'
+- 'Lamù la ragazza dello spazio'
+- 'Lum'
+- 'Lum the Invader Girl'
+- 'Lum TV'
+- 'Those Obnoxious Aliens'
+- 'Turma do Barulho'
+- 'Uru'
+- 'Urusei Yatsura TV'
+- 'UY'
+- 'Несносные пришельцы'
+- 'うる星やつら'
+https://www.youtube.com/watch?v=UGCr2kgW-e4:
+- 'Bang Dream!'
+- 'Bang Dream'
+- 'BanG Dream'
+- 'BanG Dream!'
+https://www.youtube.com/watch?v=Agm-_culDz8:
+- 'Jinrui wa Suitai Shimashita'
+- 'El declive de la humanidad'
+- 'Humanity Has Declined'
+- 'Jintai'
+- 'Mankind Has Fallen'
+- 'Човечеството запада'
+- '人类衰退之后'
+- '人退'
+- '人類は衰退しました'
+- '人類衰退之後'
+https://www.youtube.com/watch?v=SY_TG1EvwxU:
+- 'Keroro'
+- 'Keroro Gunsou (2014)'
+- 'Keroro Gunsou TV 2'
+- '☆ケロロ☆'
+- 'ケロロ'
+https://www.youtube.com/watch?v=M9KeGflHaq4:
+- 'Keroro'
+- 'Keroro Gunsou (2014)'
+- 'Keroro Gunsou TV 2'
+- '☆ケロロ☆'
+- 'ケロロ'
+https://www.youtube.com/watch?v=Syd129Vla0Q:
+- 'Ranma 1/2 Nettou Hen'
+- 'Ranma'
+- 'Ranma 1/2 (1989)'
+- 'Ranma 1/2 (Continuação)'
+- 'Ranma 1/2 (suite)'
+- 'Ranma 1/2 (Teil 2)'
+- 'Ranma 1/2 Nettouhen'
+- 'Ranma Nibun No Ichi: Nettohen'
+- 'Ranma ½ (1989)'
+- 'Ранма 1/2 (1989-1992)'
+- 'רנמה 1/2'
+- 'رانما1/2'
+- 'らんま1/2 熱闘編'
+- '乱马1/2 热斗篇'
+- '亂馬1/2 熱鬥篇'
+https://www.youtube.com/watch?v=1L_uO6UPC0M:
+- 'Ranma 1/2 Nettou Hen'
+- 'Ranma'
+- 'Ranma 1/2 (1989)'
+- 'Ranma 1/2 (Continuação)'
+- 'Ranma 1/2 (suite)'
+- 'Ranma 1/2 (Teil 2)'
+- 'Ranma 1/2 Nettouhen'
+- 'Ranma Nibun No Ichi: Nettohen'
+- 'Ranma ½ (1989)'
+- 'Ранма 1/2 (1989-1992)'
+- 'רנמה 1/2'
+- 'رانما1/2'
+- 'らんま1/2 熱闘編'
+- '乱马1/2 热斗篇'
+- '亂馬1/2 熱鬥篇'
+https://www.youtube.com/watch?v=fEMyemsk7kA:
+- 'Ranma 1/2 Nettou Hen'
+- 'Ranma'
+- 'Ranma 1/2 (1989)'
+- 'Ranma 1/2 (Continuação)'
+- 'Ranma 1/2 (suite)'
+- 'Ranma 1/2 (Teil 2)'
+- 'Ranma 1/2 Nettouhen'
+- 'Ranma Nibun No Ichi: Nettohen'
+- 'Ranma ½ (1989)'
+- 'Ранма 1/2 (1989-1992)'
+- 'רנמה 1/2'
+- 'رانما1/2'
+- 'らんま1/2 熱闘編'
+- '乱马1/2 热斗篇'
+- '亂馬1/2 熱鬥篇'
+https://www.youtube.com/watch?v=td2pAEPLSBg:
+- 'Ranma 1/2 Nettou Hen'
+- 'Ranma'
+- 'Ranma 1/2 (1989)'
+- 'Ranma 1/2 (Continuação)'
+- 'Ranma 1/2 (suite)'
+- 'Ranma 1/2 (Teil 2)'
+- 'Ranma 1/2 Nettouhen'
+- 'Ranma Nibun No Ichi: Nettohen'
+- 'Ranma ½ (1989)'
+- 'Ранма 1/2 (1989-1992)'
+- 'רנמה 1/2'
+- 'رانما1/2'
+- 'らんま1/2 熱闘編'
+- '乱马1/2 热斗篇'
+- '亂馬1/2 熱鬥篇'
+https://www.youtube.com/watch?v=V_7VIItPi2M:
+- 'Ranma 1/2 Nettou Hen'
+- 'Ranma'
+- 'Ranma 1/2 (1989)'
+- 'Ranma 1/2 (Continuação)'
+- 'Ranma 1/2 (suite)'
+- 'Ranma 1/2 (Teil 2)'
+- 'Ranma 1/2 Nettouhen'
+- 'Ranma Nibun No Ichi: Nettohen'
+- 'Ranma ½ (1989)'
+- 'Ранма 1/2 (1989-1992)'
+- 'רנמה 1/2'
+- 'رانما1/2'
+- 'らんま1/2 熱闘編'
+- '乱马1/2 热斗篇'
+- '亂馬1/2 熱鬥篇'
+https://www.youtube.com/watch?v=Oeq3xzUtKsM:
+- 'Ranma 1/2 Nettou Hen'
+- 'Ranma'
+- 'Ranma 1/2 (1989)'
+- 'Ranma 1/2 (Continuação)'
+- 'Ranma 1/2 (suite)'
+- 'Ranma 1/2 (Teil 2)'
+- 'Ranma 1/2 Nettouhen'
+- 'Ranma Nibun No Ichi: Nettohen'
+- 'Ranma ½ (1989)'
+- 'Ранма 1/2 (1989-1992)'
+- 'רנמה 1/2'
+- 'رانما1/2'
+- 'らんま1/2 熱闘編'
+- '乱马1/2 热斗篇'
+- '亂馬1/2 熱鬥篇'
+https://www.youtube.com/watch?v=SkGiz4hQJEM:
+- 'Sidonia no Kishi'
+- 'Knights of Sidonia'
+- 'シドニアの騎士'
+https://www.youtube.com/watch?v=lImMw-cKw_4:
+- 'Tegami Bachi Reverse'
+- 'bee2'
+- 'Letter Bee 2'
+- 'Letter Bee REVERSE'
+- 'Letter Bee Reverse'
+- 'tb2'
+- 'tbr'
+- 'Tegami Bachi 2'
+- 'Tegami Bachi: Letter Bee Reverse'
+- 'テガミバチ REVERSE'
+https://www.youtube.com/watch?v=uqlk8P22XYc:
+- 'Tsurezure Children'
+- 'Tsure*Dure Children'
+- 'Tsuredure Children'
+- '徒然チルドレン'
+https://www.youtube.com/watch?v=UQUEZ4kGwMU:
+- 'Black Jack (2004)'
+- 'BJ 04'
+- 'bjtv'
+- 'Black Jack'
+- 'Black Jack TV'
+- 'Блек Джак (2004)'
+- 'แบล็คแจ็คหมอปีศาจ'
+- 'ブラックジャック (2004)'
+- '怪醫黑傑克'
+https://www.youtube.com/watch?v=xXriNZjvPyk:
+- 'Young Black Jack'
+- 'ヤング ブラック・ジャック'
+https://www.youtube.com/watch?v=m7dF3Blhg_o:
+- 'Black Jack'
+- 'Black Jack Final'
+- 'Black Jack OVA'
+- 'ブラック・ジャック'
+https://www.youtube.com/watch?v=RvZ_f9umldU:
+- 'Hana yori Dango'
+- 'BOF'
+- 'Boys Before Flowers'
+- 'Boys Over Flowers'
+- 'Hana Yori Dango'
+- 'HYD'
+- 'HYD TV'
+- 'شباب على الزهور'
+- '花より男子'
+https://www.youtube.com/watch?v=0xTEksnrmEw:
+- 'K: Return of Kings'
+- 'K 2nd Season'
+- 'K RETURN OF KINGS'
+- 'K-Project 2'
+- 'K-Project Sequel'
+- 'K: Return Of Kings'
+https://www.youtube.com/watch?v=DPWPd5d0sQk:
+- 'Shaman King'
+- 'シャーマンキング'
+https://www.youtube.com/watch?v=ufjAq4au2mo:
+- 'Shaman King'
+- 'シャーマンキング'
+https://www.youtube.com/watch?v=hIXKFbNB9U4:
+- 'Tantei Gakuen Q'
+- 'DAQ'
+- 'Detective Academy Q'
+- 'Detective School Q'
+- 'Escuela de detectives'
+- 'TGQ'
+- 'โรงเรียนนักสืบQ'
+- '探偵学園Q'
+https://www.youtube.com/watch?v=AFnF2E6nJDw:
+- 'Inuyashiki'
+- 'INUYASHIKI LAST HERO'
+- 'Inuyashiki: Last Hero'
+- 'いぬやしき'
+https://www.youtube.com/watch?v=cUlCbewOEHc:
+- 'Hayate no Gotoku!'
+- 'Hayate the Combat Butler'
+- 'ハヤテのごとく!'
+https://www.youtube.com/watch?v=03x0bU2w9HI:
+- 'Lucky Star'
+- 'Estrela da Sorte'
+- 'ls'
+- 'LSTV'
+- 'Lucky Star TV'
+- 'Lucky☆Star'
+- 'L☆S'
+- 'Ngôi sao may mắn'
+- 'Szczęśliwa gwiazda'
+- 'Şanslı Yıldız'
+- 'Зірка☆Щастя'
+- 'Късметлийска звезда'
+- 'Лакі☆Стар'
+- 'Счастливая Звезда'
+- 'نجم محظوظ'
+- 'らき☆すた'
+- '幸运☆星'
+- '幸运星'
+- '幸運☆星'
+- '러키☆스타'
+https://www.youtube.com/watch?v=0Y4taQosGFs:
+- 'Pandora Hearts'
+- 'PandoraHearts'
+- 'PH'
+- 'Сердца Пандоры'
+- 'قلوب باندورا'
+- 'パンドラハーツ'
+- '潘多拉之心'
+- '潘朵拉之心'
+https://www.youtube.com/watch?v=0H_RCGEcjhs:
+- 'Dungeon ni Deai o Motomeru no wa Machigatte Iru Darouka: Familia Myth'
+- 'danmachi'
+- 'DanMachi : Familia Myth'
+- 'DanMachi: ¿Está mal seducir chicas en un calabozo?'
+- 'DanMachi: ¿Qué tiene de malo intentar ligar en una mazmorra?'
+- 'Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka'
+- 'Is het Verkeerd om Meisjes Op te Pikken in Een Dungeon?'
+- 'Is It Wrong to Try to Pick Up Girls in a Dungeon?'
+- 'В подземелье я пойду'
+- 'Невже шукати дівчину в підземеллі - неправильно?'
+- 'там красавицу найду'
+- 'ダンジョンに出会いを求めるのは間違っているだろうか FAMILIA MYTH'
+- '在地下城寻求邂逅是否搞错了什么'
+- '던전에서 만남을 추구하면 안 되는 걸까?'
+https://www.youtube.com/watch?v=w_sfQy9AUfQ:
+- 'Genshiken'
+- 'Gendai Shikaku Bunka Kenkyuu Kai'
+- 'Genshiken - Club d`étude de la culture visuelle moderne'
+- 'Genshiken - Gesellschaft zum Studium moderner visueller Kultur'
+- 'Genshiken TV'
+- 'Genshiken: The Society for the Study of Modern Visual Culture'
+- 'Sociedad para el Estudio de la Cultura Visual Moderna'
+- 'Society for the Study of Modern Visual Culture'
+- 'The Society for the Study of Modern Visual Culture'
+- 'Гэнсикэн'
+- 'Ґеншікен'
+- 'مجتمع دراسة الثقافة المرئية الحديثة'
+- 'げんしけん'
+- 'ゲンシケン'
+- '现视研'
+- '現代視覚文化研究会'
+https://www.youtube.com/watch?v=-rIE7Qr4J0U:
+- 'Hai to Gensou no Grimgar'
+- 'Grimgar : Le monde de cendres et de fantaisie'
+- 'Grimgar of Fantasy and Ash'
+- 'Grimgar: Ashes and Illusions'
+- 'Гримгар'
+- 'свят на фантазии и пепел'
+- '灰と幻想のグリムガル'
+- '재와 환상의 그림갈'
+https://www.youtube.com/watch?v=I59V9pjEOLI:
+- 'Mirai Nikki'
+- 'Mirai Nikki (2011)'
+- 'The Future Diary'
+- '未来日記'
+https://www.youtube.com/watch?v=0_36iNzrEn0:
+- 'Mirai Nikki'
+- 'Mirai Nikki (2011)'
+- 'The Future Diary'
+- '未来日記'
+https://www.youtube.com/watch?v=2lx0S9LrOPc:
+- 'Mirai Nikki'
+- 'Mirai Nikki (2011)'
+- 'The Future Diary'
+- '未来日記'
+https://www.youtube.com/watch?v=J8hwDQJRU7E:
+- 'Soukou Kihei Votoms'
+- 'Armored Trooper Votoms'
+- 'Soko Kihei Votoms'
+- 'Votoms'
+- 'Votoms TV'
+- 'Zırhlı Piyade Votoms'
+- '装甲騎兵ボトムズ'
+https://www.youtube.com/watch?v=32dgEs0IDaM:
+- 'Ao Haru Ride'
+- 'aoha'
+- 'Aoharaido'
+- 'Blue Spring Ride'
+- 'Youth Ride'
+- 'Неудержимая юность'
+- 'Пътят на младостта'
+- 'アオハライド'
+https://www.youtube.com/watch?v=6vK92aJLaqE:
+- 'Arakawa Under the Bridge'
+- 'Arakava Po Tiltu'
+- 'Arakawa'
+- 'AUtB'
+- 'Под моста на Аракава'
+- '荒川アンダーザブリッジ'
+- '荒川爆笑团'
+- '荒川爆笑團'
+- '아라카와 언더 더 브리지'
+https://www.youtube.com/watch?v=PSGYL-ZD0_Q:
+- 'Arslan Senki'
+- 'The Heroic Legend of Arslan'
+- 'アルスラーン戦記'
+https://www.youtube.com/watch?v=Je2IrHp8bg8:
+- 'Rozen Maiden'
+- 'ローゼンメイデン'
+https://www.youtube.com/watch?v=B2JplQgMfis:
+- 'Rozen Maiden'
+- 'ローゼンメイデン'
+https://www.youtube.com/watch?v=LH7Hw18M56Q:
+- 'Rozen Maiden: Traumend'
+- 'rm2'
+- 'rmt'
+- 'Rozen Maiden - Träumend'
+- 'Rozen Maiden 2'
+- 'Rozen Maiden Traumend'
+- 'Rozen Maiden träumend'
+- 'Rozen Maiden Träumend'
+- 'Rozen Maiden: Dreaming'
+- 'Діви Розена: Сни'
+- 'ローゼンメイデン トロイメント'
+- '蔷薇少女2~梦见~'
+https://www.youtube.com/watch?v=dt6XXfcdVY0:
+- 'Space Cobra'
+- 'Space Adventure Cobra'
+- 'Super Agente Cobra'
+- 'スペースアドベンチャー コブラ'
+- 'スペースコブラ'
+https://www.youtube.com/watch?v=9-01piZuA6o:
+- 'Tetsuwan Birdy Decode'
+- 'Birdy the Mighty TV'
+- 'Birdy the Mighty: Decode'
+- 'Tetsuwan Birdy (2008)'
+- '鉄腕バーディー (2008)'
+https://www.youtube.com/watch?v=krja5ERoykg:
+- 'Tetsuwan Birdy Decode'
+- 'Birdy the Mighty TV'
+- 'Birdy the Mighty: Decode'
+- 'Tetsuwan Birdy (2008)'
+- '鉄腕バーディー (2008)'
+https://www.youtube.com/watch?v=80-W822k6Vw:
+- 'Ao no Exorcist'
+- 'AnE'
+- 'Ao no Futsumashi'
+- 'AoEx'
+- 'Blue Exorcist'
+- 'Синий экзорцист'
+- 'Синият Екзорсист'
+- 'المعوذ الأزرق'
+- 'اگزورسیست آبی'
+- 'جن گیر آبی'
+- 'جنگیر آبی'
+- '青のエクソシスト'
+- '青の祓魔師'
+- '青エク'
+- '青之驱魔师'
+https://www.youtube.com/watch?v=5ZPELMm-W68:
+- 'Ao no Exorcist'
+- 'AnE'
+- 'Ao no Futsumashi'
+- 'AoEx'
+- 'Blue Exorcist'
+- 'Синий экзорцист'
+- 'Синият Екзорсист'
+- 'المعوذ الأزرق'
+- 'اگزورسیست آبی'
+- 'جن گیر آبی'
+- 'جنگیر آبی'
+- '青のエクソシスト'
+- '青の祓魔師'
+- '青エク'
+- '青之驱魔师'
+https://www.youtube.com/watch?v=2hw9setFP4k:
+- 'Ao no Exorcist'
+- 'AnE'
+- 'Ao no Futsumashi'
+- 'AoEx'
+- 'Blue Exorcist'
+- 'Синий экзорцист'
+- 'Синият Екзорсист'
+- 'المعوذ الأزرق'
+- 'اگزورسیست آبی'
+- 'جن گیر آبی'
+- 'جنگیر آبی'
+- '青のエクソシスト'
+- '青の祓魔師'
+- '青エク'
+- '青之驱魔师'
+https://www.youtube.com/watch?v=FQK8Ve14A34:
+- 'Hourou Musuko'
+- 'Wandering Son'
+- 'Блудный сын'
+- '放浪息子'
+https://www.youtube.com/watch?v=GYorCbtf7P8:
+- 'Nisekoi'
+- 'Nisekoi: False Love'
+- 'ニセコイ'
+https://www.youtube.com/watch?v=ibCNze1BXpQ:
+- 'Nisekoi'
+- 'Nisekoi: False Love'
+- 'ニセコイ'
+https://www.youtube.com/watch?v=aAABi6Y3VQk:
+- 'Soredemo Sekai wa Utsukushii'
+- 'soreseka'
+- 'Still'
+- 'Still World Is Beautiful'
+- 'the World Is Beautiful'
+- 'The World Is Still Beautiful'
+- 'The World is Still Beautiful'
+- 'それでも世界は美しい Still world is Beautiful'
+- '即使如此世界依然美麗'
+https://www.youtube.com/watch?v=fVwTk7wk7ew:
+- 'To LOVE-Ru Darkness'
+- 'To LOVE Ru Darkness'
+- 'To LOVE-Ru Trouble Darkness'
+- 'To LOVEる -とらぶる- ダークネス'
+- 'To-Love-Ru Darkness'
+- 'ToLoveRu Darkness'
+https://www.youtube.com/watch?v=q5z57qYE2hw:
+- 'Motto To LOVE-Ru'
+- 'More ToLoveRu'
+- 'More Trouble'
+- 'Motto To LOVE Ru'
+- 'Motto To Love Ru'
+- 'Motto To Love-Ru'
+- 'Motto To-Love-Ru'
+- 'もっと To LOVEる -とらぶる-'
+https://www.youtube.com/watch?v=xxb51uh5bWk:
+- 'To LOVE-Ru Darkness'
+- 'To LOVE Ru Darkness'
+- 'To LOVE-Ru Trouble Darkness'
+- 'To LOVEる -とらぶる- ダークネス'
+- 'To-Love-Ru Darkness'
+- 'ToLoveRu Darkness'
+https://www.youtube.com/watch?v=Avr-Iu5vWsM:
+- 'Danganronpa: Kibou no Gakuen to Zetsubou no Koukousei - The Animation'
+- 'Dangan Ronpa the Animation'
+- 'Danganronpa'
+- 'Danganronpa: The Animation'
+- 'Murder School'
+- 'ダンガンロンパ 希望の学園と絶望の高校生 THE ANIMATION'
+- '단간론파'
+https://www.youtube.com/watch?v=wrCJgIHQN0I:
+- 'Danganronpa: Kibou no Gakuen to Zetsubou no Koukousei - The Animation'
+- 'Dangan Ronpa the Animation'
+- 'Danganronpa'
+- 'Danganronpa: The Animation'
+- 'Murder School'
+- 'ダンガンロンパ 希望の学園と絶望の高校生 THE ANIMATION'
+- '단간론파'
+https://www.youtube.com/watch?v=YGncI1V3S6M:
+- 'Ichigo Mashimaro'
+- 'Strawberry Marshmallow'
+- '苺ましまろ'
+https://www.youtube.com/watch?v=EZRo8Z1Ser8:
+- 'Panty & Stocking with Garterbelt'
+- 'pansuto'
+- 'Panty and Stocking with Garterbelt'
+- 'Panty&Stocking with Garterbelt'
+- 'psg'
+- 'Панти и Стокинг с Гартербелт'
+- 'Труселя и Колготы'
+- 'Труська'
+- 'Чулко и Пресвятой Подвяз'
+- 'パンティ&ストッキングwithガーターベルト'
+- '吊带袜天使'
+- '팬티 & 스타킹 with 가터벨트'
+https://www.youtube.com/watch?v=M8oyfP4XKeM:
+- 'Piano no Mori'
+- 'A Floresta do Piano'
+- 'A Floresta do Piano: O Mundo Perfeito de Kai'
+- 'Klaver metsas'
+- 'Piano Forest'
+- 'Piano no Mori: The Perfect World of Kai'
+- 'Pianul din Padure'
+- 'Piyanonun Ormanı'
+- 'The Perfect World of Kai'
+- 'The Piano Forest'
+- 'Рояль в лесу'
+- 'ピアノの森'
+- 'ピアノの森 The Perfect World of Kai'
+- '피아노의 숲'
+https://www.youtube.com/watch?v=tPf8m_CryzM:
+- 'Sarazanmai'
+- 'さらざんまい'
+https://www.youtube.com/watch?v=u3SzOzm8lmo:
+- 'Texhnolyze'
+- 'Technolyze'
+- 'TEXHNOLYZE'
+- 'TEXHNOLYZE テクノライズ'
+https://www.youtube.com/watch?v=enSSxecPXYY:
+- 'Koyomimonogatari'
+- '暦物語'
+https://www.youtube.com/watch?v=MxoJvOE7hcU:
+- 'Owari no Seraph'
+- 'Serafin Dni Ostatnich'
+- 'Seraph of the End'
+- 'Seraph of the End: Vampire Reign'
+- 'Последний Серафим'
+- '終わりのセラフ Seraph of the end'
+- '종말의 세라프'
+https://www.youtube.com/watch?v=ikZPzwfiBYA:
+- 'Romeo x Juliet'
+- 'Romeo X Juliet'
+- 'RomeoxJuliet'
+- 'ロミオ × ジュリエット'
+- 'ロミオ×ジュリエット'
+https://www.youtube.com/watch?v=jbhcChdCAUk:
+- 'Escaflowne'
+- 'Tenkuu no Escaflowne'
+- 'The Vision of Escaflowne'
+- '天空のエスカフローネ'
+https://www.youtube.com/watch?v=e0oitN2clAw:
+- 'Gabriel DropOut'
+- 'ガヴリールドロップアウト'
+https://www.youtube.com/watch?v=ljdPRlN9g_Y:
+- 'Gakuen Alice'
+- 'AC'
+- 'Alice Academy'
+- 'alice g'
+- 'Campus Alice'
+- 'L`académie Alice'
+- 'أكاديمية أليس'
+- '学园爱丽丝'
+- '学園アリス'
+- '愛麗絲學園'
+- '학원 앨리스'
+https://www.youtube.com/watch?v=KAO743dXVqM:
+- 'Blood: The Last Vampire'
+- 'Blood'
+- 'Blood - Az utolsó vámpír'
+- 'Blood - The Last Vampire'
+- 'Blood - 最后的吸血鬼'
+- 'BLOOD THE LAST VAMPIRE'
+- 'Blood, el último vampiro'
+- 'Blood, l`últim vampir'
+- 'Blood: O Último Vampiro'
+- 'Blood: Последния вампир'
+- 'BtLV'
+- 'Kan: Son Vampir'
+- 'Kraujas: Paskutinis vampyras'
+- 'Кровь'
+- 'Кровь: Последний вампир'
+- 'Кръв: Последният вампир'
+- 'บลัด เดอะลาสท์แวมไพร์'
+https://www.youtube.com/watch?v=FWDrc1nIKlA:
+- 'Blood: The Last Vampire'
+- 'Blood'
+- 'Blood - Az utolsó vámpír'
+- 'Blood - The Last Vampire'
+- 'Blood - 最后的吸血鬼'
+- 'BLOOD THE LAST VAMPIRE'
+- 'Blood, el último vampiro'
+- 'Blood, l`últim vampir'
+- 'Blood: O Último Vampiro'
+- 'Blood: Последния вампир'
+- 'BtLV'
+- 'Kan: Son Vampir'
+- 'Kraujas: Paskutinis vampyras'
+- 'Кровь'
+- 'Кровь: Последний вампир'
+- 'Кръв: Последният вампир'
+- 'บลัด เดอะลาสท์แวมไพร์'
+https://www.youtube.com/watch?v=KSI_lwmtcoo:
+- 'Blood: The Last Vampire'
+- 'Blood'
+- 'Blood - Az utolsó vámpír'
+- 'Blood - The Last Vampire'
+- 'Blood - 最后的吸血鬼'
+- 'BLOOD THE LAST VAMPIRE'
+- 'Blood, el último vampiro'
+- 'Blood, l`últim vampir'
+- 'Blood: O Último Vampiro'
+- 'Blood: Последния вампир'
+- 'BtLV'
+- 'Kan: Son Vampir'
+- 'Kraujas: Paskutinis vampyras'
+- 'Кровь'
+- 'Кровь: Последний вампир'
+- 'Кръв: Последният вампир'
+- 'บลัด เดอะลาสท์แวมไพร์'
+https://www.youtube.com/watch?v=JaxUqFJ3JT4:
+- 'Bounen no Xamdou'
+- 'BnX'
+- 'Xam`d: Kayıp Hatıralar'
+- 'Xam`d: Lost Memories'
+- 'xamd'
+- 'Ксам`д: Потерянные Воспоминания'
+- 'ذكريات زامد الضائعة'
+- '亡念のザムド'
+- '亡念的扎穆德'
+https://www.youtube.com/watch?v=n76Vc8Fs0PM:
+- 'Chrno Crusade'
+- 'cc'
+- 'Chrno Crusade: Mary Magdalene'
+- 'Chrono Crusade'
+- 'Крестовый поход Хроно'
+- 'Кръстоносният поход на Хроно'
+- 'クロノクルセイド'
+https://www.youtube.com/watch?v=Xrz0e9BGaJs:
+- 'Fushigi Yuugi'
+- 'Curious Play'
+- 'Fushigi Yugi'
+- 'Fushigi Yugi: The Mysterious Play'
+- 'Mysterious Play'
+- 'ふしぎ遊戯'
+https://www.youtube.com/watch?v=UE-CdJCLGmA:
+- 'Mujin Wakusei Survive'
+- 'MuWa'
+- 'Planet Survival'
+- 'Survivants'
+- 'Survive'
+- 'Survive! - Uninhabited Planet'
+- 'Uninhabited Planet Survival'
+- 'Uninhabited Planet SURVIVE'
+- 'Uninhabited Planet Survive'
+- 'ups'
+- 'Выжить на необитаемой планете'
+- 'כוכב ההישרדות'
+- 'مغامرات الكوكب المهجور'
+- '無人惑星サヴァイヴ'
+https://www.youtube.com/watch?v=es-aLJ3YPBg:
+- 'Mujin Wakusei Survive'
+- 'MuWa'
+- 'Planet Survival'
+- 'Survivants'
+- 'Survive'
+- 'Survive! - Uninhabited Planet'
+- 'Uninhabited Planet Survival'
+- 'Uninhabited Planet SURVIVE'
+- 'Uninhabited Planet Survive'
+- 'ups'
+- 'Выжить на необитаемой планете'
+- 'כוכב ההישרדות'
+- 'مغامرات الكوكب المهجور'
+- '無人惑星サヴァイヴ'
+https://www.youtube.com/watch?v=OKSrgdEG2Fo:
+- 'Sora no Otoshimono'
+- 'Heaven''s Lost Property'
+- 'Lost Property of the Sky'
+- 'Misplaced by Heaven'
+- 'そらのおとしもの'
+https://www.youtube.com/watch?v=wPcE4ZEg3vs:
+- 'Hinomaru Zumou'
+- 'Hinomaru Sumo'
+- 'Hinozumo'
+- '火ノ丸相撲'
+- '火之丸相撲'
+- '히노마루 스모'
+https://www.youtube.com/watch?v=p5uQ87OItqU:
+- 'Hinomaru Zumou'
+- 'Hinomaru Sumo'
+- 'Hinozumo'
+- '火ノ丸相撲'
+- '火之丸相撲'
+- '히노마루 스모'
+https://www.youtube.com/watch?v=LTOZhZSr6RY:
+- 'Kimagure Orange Road'
+- 'Capricciosa Orange Road'
+- 'Capricious Orange Road'
+- 'Johnny y sus amigos'
+- 'Kimagure Orange Road TV'
+- 'KOR'
+- 'kor tv'
+- 'Max & compagnie'
+- 'Max et compagnie'
+- 'Orange Road - Superfamiljen'
+- 'Portakal Yolu'
+- 'Superperhe'
+- 'È quasi magia Johnny'
+- 'Капризы Апельсиновой улицы [ТВ]'
+- 'きまぐれオレンジ☆ロード'
+- '橙路'
+- '변덕쟁이 오렌지☆로드'
+- '오렌지로드'
+https://www.youtube.com/watch?v=I_x_45Xwnkk:
+- 'Mahou Sensei Negima!'
+- 'Le maître magicien Negima !'
+- 'Magic Teacher Negima'
+- 'Magister Negi Magi'
+- 'Magister Negima'
+- 'Mahou Sensei Negima'
+- 'msn'
+- 'negi'
+- 'negima'
+- 'Negima!'
+- 'Волшебный учитель Нэгима!'
+- 'Магічний вчитель Неґіма!'
+- 'คุณครูจอมเวท เนกิมะ!'
+- '魔法先生 ネギま!'
+- '魔法老師'
+https://www.youtube.com/watch?v=z7sJHgyROrY:
+- 'Mahou Sensei Negima!'
+- 'Le maître magicien Negima !'
+- 'Magic Teacher Negima'
+- 'Magister Negi Magi'
+- 'Magister Negima'
+- 'Mahou Sensei Negima'
+- 'msn'
+- 'negi'
+- 'negima'
+- 'Negima!'
+- 'Волшебный учитель Нэгима!'
+- 'Магічний вчитель Неґіма!'
+- 'คุณครูจอมเวท เนกิมะ!'
+- '魔法先生 ネギま!'
+- '魔法老師'
+https://www.youtube.com/watch?v=KeC_u0Mn6xQ:
+- 'Mahou Sensei Negima!'
+- 'Le maître magicien Negima !'
+- 'Magic Teacher Negima'
+- 'Magister Negi Magi'
+- 'Magister Negima'
+- 'Mahou Sensei Negima'
+- 'msn'
+- 'negi'
+- 'negima'
+- 'Negima!'
+- 'Волшебный учитель Нэгима!'
+- 'Магічний вчитель Неґіма!'
+- 'คุณครูจอมเวท เนกิมะ!'
+- '魔法先生 ネギま!'
+- '魔法老師'
+https://www.youtube.com/watch?v=f8lyyT0dQ9Y:
+- 'R.O.D OVA'
+- 'R.O.D - READ OR DIE'
+- 'R.O.D - Read or Die'
+- 'R.O.D リード・オア・ダイ'
+- 'R.O.D.'
+- 'Read or Die'
+- 'Read or Die OVA'
+- 'ROD'
+- 'ROD OVA'
+https://www.youtube.com/watch?v=6ogz68X3HUE:
+- 'To LOVE-Ru Darkness'
+- 'To LOVE Ru Darkness'
+- 'To LOVE-Ru Trouble Darkness'
+- 'To LOVEる -とらぶる- ダークネス'
+- 'To-Love-Ru Darkness'
+- 'ToLoveRu Darkness'
+https://www.youtube.com/watch?v=05p646nlYS0:
+- 'Bokurano'
+- 'Bokurano: Ours'
+- 'ぼくらの'
+https://www.youtube.com/watch?v=_E2XXe3esgE:
+- 'Densetsu no Yuusha no Densetsu'
+- 'Densetsu no Yusha no Densetsu'
+- 'DenYuDen'
+- 'DenYuuDen'
+- 'LOLH'
+- 'The Legend of the Legendary Heroes'
+- '伝説の勇者の伝説'
+https://www.youtube.com/watch?v=j5npIyCcv8k:
+- 'Densetsu no Yuusha no Densetsu'
+- 'Densetsu no Yusha no Densetsu'
+- 'DenYuDen'
+- 'DenYuuDen'
+- 'LOLH'
+- 'The Legend of the Legendary Heroes'
+- '伝説の勇者の伝説'
+https://www.youtube.com/watch?v=iBfoYjb7Y7k:
+- 'Garo: Honoo no Kokuin'
+- 'garo'
+- 'Garo the Animation'
+- 'Garo: The Animation'
+- '牙狼 炎之刻印'
+- '牙狼[GARO]-炎の刻印-'
+https://www.youtube.com/watch?v=eeXU6ciFubk:
+- 'Garo: Honoo no Kokuin'
+- 'garo'
+- 'Garo the Animation'
+- 'Garo: The Animation'
+- '牙狼 炎之刻印'
+- '牙狼[GARO]-炎の刻印-'
+https://www.youtube.com/watch?v=q9B7cbdjt8I:
+- 'High School DxD'
+- 'Highschool DxD'
+- 'ハイスクールD×D'
+https://www.youtube.com/watch?v=-5feX8g1nM4:
+- 'High School DxD Born'
+- 'Highschool DxD BorN'
+- 'ハイスクールDxD BorN'
+https://www.youtube.com/watch?v=AkjL42f10eY:
+- 'High School DxD'
+- 'DxD'
+- 'Harem King'
+- 'HDD'
+- 'Демоны старшей школы'
+- 'Старша школа DxD'
+- 'ハイスクールDxD'
+- '惡魔高校'
+- '惡魔高校D×D'
+- '高校龍中龍'
+- '하이스쿨 DxD'
+https://www.youtube.com/watch?v=M2ssHyFbOtw:
+- 'High School DxD New'
+- 'High School DxD 2nd Season'
+- 'High School DxD Dai 2-ki'
+- 'High School DxD Second Season'
+- 'Highschool DxD 2'
+- 'ハイスクールD×D NEW'
+https://www.youtube.com/watch?v=OppMPRDxCuA:
+- 'High School DxD New'
+- 'High School DxD 2nd Season'
+- 'High School DxD Dai 2-ki'
+- 'High School DxD Second Season'
+- 'Highschool DxD 2'
+- 'ハイスクールD×D NEW'
+https://www.youtube.com/watch?v=-anabfAg06U:
+- 'Mousou Dairinin'
+- 'Mousou'
+- 'PAG'
+- 'Para Agent'
+- 'Paranoia Agent'
+- 'Paranojos Agentas'
+- 'Paranoya Etmeni'
+- 'Агент паранойи'
+- 'Агент Паранойя'
+- 'Щамът "Параноя"'
+- '妄想代理人'
+https://www.youtube.com/watch?v=07sg564pM9U:
+- 'Rakudai Kishi no Cavalry'
+- 'A Chivalry of the Failed Knight'
+- 'A Tale of Worst One'
+- 'A tale of worst one'
+- 'Chivalry of a Failed Knight'
+- 'Rakudai Kishi no Eiyuutan'
+- '落第騎士の英雄譚《キャバルリィ》'
+- '落第騎士の英雄譚(キャバルリィ)'
+https://www.youtube.com/watch?v=PAvoanZhSl8:
+- 'Utawarerumono'
+- 'Le chant des rêves'
+- 'o Którym Śpiewają Legendy'
+- 'Ten'
+- 'The One Being Sung'
+- 'The One of Whom Legends Are Sung'
+- 'utaware'
+- 'Utawareru Mono'
+- 'Utawarerumono - Heldenlied'
+- 'uwm'
+- 'Прославения'
+- 'Прославленный'
+- 'ריי רומונו מתחת למים'
+- 'うたわれるもの'
+- '传诵'
+- '传诵之物'
+- '传颂'
+- '传颂之物'
+- '칭송받는 자'
+https://www.youtube.com/watch?v=jtWUTVOrqGc:
+- 'Utawarerumono'
+- 'Le chant des rêves'
+- 'o Którym Śpiewają Legendy'
+- 'Ten'
+- 'The One Being Sung'
+- 'The One of Whom Legends Are Sung'
+- 'utaware'
+- 'Utawareru Mono'
+- 'Utawarerumono - Heldenlied'
+- 'uwm'
+- 'Прославения'
+- 'Прославленный'
+- 'ריי רומונו מתחת למים'
+- 'うたわれるもの'
+- '传诵'
+- '传诵之物'
+- '传颂'
+- '传颂之物'
+- '칭송받는 자'
+https://www.youtube.com/watch?v=kupW7eDG48s:
+- 'Another'
+- 'アナザー'
+https://www.youtube.com/watch?v=68lDew_mVz4:
+- 'Mahouka Koukou no Rettousei'
+- 'The Irregular at Magic High School'
+- '魔法科高校の劣等生'
+https://www.youtube.com/watch?v=b6pNl7qejNw:
+- 'Mahouka Koukou no Rettousei'
+- 'The Irregular at Magic High School'
+- '魔法科高校の劣等生'
+https://www.youtube.com/watch?v=Qml0mNDJvKs:
+- 'Orange'
+- 'orange'
+https://www.youtube.com/watch?v=0Vwwr3VGsYg:
+- 'Re:Zero kara Hajimeru Isekai Seikatsu'
+- 'Re Zero kara Hajimeru Isekai Seikatsu'
+- 'Re: Life in a Different World from Zero'
+- 'Re: 从零开始的异世界生活'
+- 'Re:Zero'
+- 'Re:Zero - Starting Life in Another World'
+- 'Re:ゼロから始める異世界生活'
+- 'rezero'
+- 'rizero'
+- 'リゼロ'
+- '从零开始的异世界'
+https://www.youtube.com/watch?v=O9VOud8y3tg:
+- 'Zombie Land Saga'
+- 'ZOMBIE LAND SAGA'
+- 'Zombieland Saga'
+- 'ゾンビランドサガ'
+https://www.youtube.com/watch?v=N4e6aQF9gMw:
+- 'Ga-Rei: Zero'
+- 'Ga-rei -Zero-'
+- 'Ga-Rei Zero'
+- 'Ga-Rei-Zero'
+- 'garei zero'
+- 'GRZ'
+- 'Га-Рей Зеро'
+- 'Екзорсисти: ЗЕРО'
+- 'Пожиратели Духов: Зеро'
+- '喰霊 -零-'
+- '食灵~零'
+https://www.youtube.com/watch?v=XG9XCndxT8E:
+- 'Hitoribocchi no Marumaru Seikatsu'
+- 'Bocchi Seikatsu'
+- 'Hitori Bocchi''s ○○ Lifestyle'
+- 'Hitoribocchi no Marumaruseikatsu'
+- 'Hitoribocchi no ○○ Seikatsu'
+- 'ひとりぼっちの○○生活'
+https://www.youtube.com/watch?v=A8GZReei1hY:
+- 'Majin Tantei Nougami Neuro'
+- 'Demon Detective Nougami Neuro'
+- 'Neuro: Supernatural Detective'
+- 'Private Evil-Eye Nougami Neuro'
+- '魔人探偵 脳噛ネウロ'
+https://www.youtube.com/watch?v=od5pOw6y2a0:
+- 'Sengoku Basara'
+- 'Sengoku Basara: Samurai Kings'
+- '戦国BASARA'
+https://www.youtube.com/watch?v=lrQN0tPjREk:
+- 'Sengoku Basara'
+- 'Sengoku Basara: Samurai Kings'
+- '戦国BASARA'
+https://www.youtube.com/watch?v=r0z-7WFWbKI:
+- 'Senjou no Valkyria'
+- 'Battlefield Valkyria: Gallian Chronicles'
+- 'Valkyria Chronicles'
+- '戦場のヴァルキュリア'
+https://www.youtube.com/watch?v=8yLeJHcyfww:
+- 'GetBackers'
+- 'Get Backers'
+- 'Getbackers'
+- 'GetBackers: Dakkan''ya'
+- 'ゲットバッカーズ 奪還屋'
+https://www.youtube.com/watch?v=_fIoGXCND4s:
+- 'GetBackers'
+- 'Get Backers'
+- 'Getbackers'
+- 'GetBackers: Dakkan''ya'
+- 'ゲットバッカーズ 奪還屋'
+https://www.youtube.com/watch?v=xht0MY1Tjnk:
+- 'Kekkaishi'
+- 'Barrier Master'
+- '結界師'
+https://www.youtube.com/watch?v=LYy9G7kAb68:
+- 'Noein: Mou Hitori no Kimi e'
+- 'Noein'
+- 'Noein 到另一个你的身边去'
+- 'Noein: Diğer `Sen`e Doğru'
+- 'Noein: To Your Other Self'
+- 'Noein: to your other self'
+- 'Noein: Toward Another You'
+- 'Noein: toward another you'
+- 'Ноеін'
+- 'Ноэйн'
+- 'ノエイン もうひとりの君へ'
+- '到另一个你的身边去'
+https://www.youtube.com/watch?v=g-HcGIino8g:
+- 'Tokyo Ravens'
+- 'Токийски гарвани'
+- 'Токийские вороны'
+- '东京暗鸦'
+- '東京レイヴンズ'
+- '東京闇鴉'
+- '도쿄 레이븐즈'
+https://www.youtube.com/watch?v=EanY3KxkvKY:
+- 'Fune wo Amu'
+- 'The Great Passage'
+- '舟を編む'
+https://www.youtube.com/watch?v=0i0z98M2y5U:
+- 'Goblin Slayer'
+- 'Goblin Katili (Goblin Slayer)'
+- 'Gobusure'
+- 'Убиец на гоблини'
+- 'Убийца гоблинов'
+- 'قاتل الغوبلن'
+- 'ゴブスレ'
+- 'ゴブリンスレイヤー'
+- '哥布林杀手'
+- '고블린 슬레이어'
+https://www.youtube.com/watch?v=FR2CxJHbiUo:
+- 'Inazuma Eleven'
+- 'Inazuma 11'
+- 'Los Super Once'
+- 'Super Onze'
+- 'أبطال الكرة'
+- 'イナズマイレブン'
+https://www.youtube.com/watch?v=zOSMSG1sIEo:
+- 'Inazuma Eleven'
+- 'Inazuma 11'
+- 'Los Super Once'
+- 'Super Onze'
+- 'أبطال الكرة'
+- 'イナズマイレブン'
+https://www.youtube.com/watch?v=GV1p8511PhI:
+- 'Inazuma Eleven'
+- 'Inazuma 11'
+- 'Los Super Once'
+- 'Super Onze'
+- 'أبطال الكرة'
+- 'イナズマイレブン'
+https://www.youtube.com/watch?v=FHSHKe9cK6Q:
+- 'Inazuma Eleven'
+- 'Inazuma 11'
+- 'Los Super Once'
+- 'Super Onze'
+- 'أبطال الكرة'
+- 'イナズマイレブン'
+https://www.youtube.com/watch?v=KmCgorjYxys:
+- 'Inazuma Eleven Go'
+- 'イナズマイレブン Go'
+https://www.youtube.com/watch?v=dqzj4xtH3AM:
+- 'Inazuma Eleven Go'
+- 'イナズマイレブン Go'
+https://www.youtube.com/watch?v=zPeNlsAHbbs:
+- 'Inazuma Eleven Go'
+- 'イナズマイレブン Go'
+https://www.youtube.com/watch?v=Yxg-AADx39w:
+- 'Kemono Friends'
+- 'けものフレンズ'
+https://www.youtube.com/watch?v=vPvNWbVSEb0:
+- 'Kore wa Zombie Desu ka?'
+- 'Bu Bir Zombi Mi?'
+- 'Is This a Zombie?'
+- 'Kore ha Zombie Desu ka?'
+- 'Kore wa Zombie desu ka'
+- 'Kore wa Zombie Desuka?'
+- 'Koreha Zombie Desuka?'
+- 'korezom'
+- 'korezombie'
+- 'This is a Zombie?'
+- 'То це зомбі?'
+- 'Уж не зомби ли это?'
+- 'این یه زامبیه؟'
+- 'کوره وا زامبی دس کا؟'
+- 'これはゾンビですか?'
+- 'これゾン'
+- '这是僵尸吗?'
+https://www.youtube.com/watch?v=l-Xie4eZJyg:
+- 'OverDrive'
+- 'OD'
+- 'Over Drive'
+- '铁马少年'
+https://www.youtube.com/watch?v=vkvpA08IJDU:
+- 'Toriko'
+- 'Toriko (2011)'
+- 'Toriko (TV)'
+- 'Toriko x One Piece Collabo Special'
+- 'トリコ'
+https://www.youtube.com/watch?v=4OqMBeMsu6Q:
+- 'Toriko'
+- 'Toriko (2011)'
+- 'Toriko (TV)'
+- 'Toriko x One Piece Collabo Special'
+- 'トリコ'
+https://www.youtube.com/watch?v=8dx4ewFve_k:
+- 'Zero no Tsukaima'
+- 'The Familiar of Zero'
+- 'Zero''s Familiar'
+- 'ゼロの使い魔'
+https://www.youtube.com/watch?v=Xxt1rJW8TXs:
+- 'Zero no Tsukaima'
+- 'The Familiar of Zero'
+- 'Zero''s Familiar'
+- 'ゼロの使い魔'
+https://www.youtube.com/watch?v=FKIT6G_lw7c:
+- '5-toubun no Hanayome'
+- '5-Toubun no Hanayome'
+- 'Go-Toubun no Hanayome'
+- 'Go-toubun no Hanayome'
+- 'Gotoubun no Hanayome'
+- 'The Five Wedded Brides'
+- 'The Quintessential Quintuplets'
+- '五等分の花嫁'
+https://www.youtube.com/watch?v=Hr4e3BPDZoo:
+- 'Hakumei to Mikochi'
+- 'Ashimoto no Arukikata'
+- 'Hakumei & Mikochi'
+- 'Hakumei & Mikochi: Tiny Little Life in the Woods'
+- 'Hakumei and Mikochi'
+- 'HakuMiko'
+- 'Kinou no Akane'
+- 'Kobito Hiyori'
+- 'Kobitobiyori'
+- 'Tiny Little Life in the Woods'
+- 'ハクメイとミコチ'
+https://www.youtube.com/watch?v=HSaqvhvnAgI:
+- 'Strike Witches'
+- 'Strike Witches TV'
+- 'ストライクウィッチーズ'
+https://www.youtube.com/watch?v=LnntMZGBjZY:
+- 'Uchuu Patrol Luluco'
+- 'Space Patrol Luluco'
+- '宇宙パトロールルル子'
+https://www.youtube.com/watch?v=UCRMvRtkIuE:
+- 'To Love-Ru: Trouble'
+- 'tlr'
+- 'To LOVE Ru - Trouble'
+- 'To Loveru'
+- 'To LOVEる -とらぶる-'
+- 'To-Love-Ru'
+- 'toloveru'
+- 'Trouble'
+- 'Любовный переполох'
+- 'Любовь и прочие неприятности'
+- 'とらぶる'
+- '出包王女'
+https://www.youtube.com/watch?v=RO2pKwjtA_w:
+- 'To Love-Ru: Trouble'
+- 'tlr'
+- 'To LOVE Ru - Trouble'
+- 'To Loveru'
+- 'To LOVEる -とらぶる-'
+- 'To-Love-Ru'
+- 'toloveru'
+- 'Trouble'
+- 'Любовный переполох'
+- 'Любовь и прочие неприятности'
+- 'とらぶる'
+- '出包王女'
+https://www.youtube.com/watch?v=6y8PmMlYpCU:
+- 'Release the Spyce'
+- 'RELEASE THE SPYCE'
diff --git a/audiotrivia/data/lists/csgo.yaml b/audiotrivia/data/lists/csgo.yaml
deleted file mode 100644
index d29b37c..0000000
--- a/audiotrivia/data/lists/csgo.yaml
+++ /dev/null
@@ -1,106 +0,0 @@
-AUTHOR: bobloy
-https://www.youtube.com/watch?v=nfjiy-NX5b0:
-- flashbang
-https://www.youtube.com/watch?v=mJCE7s4W4IE:
-- starting round
-- round start
-- start round
-https://www.youtube.com/watch?v=XfLGi4cPu0Y:
-- select team
-- team select
-https://www.youtube.com/watch?v=b6ScVgFs-DQ:
-- desert eagle
-- deagle
-https://www.youtube.com/watch?v=JnHm-rn199Y:
-- planted bomb
-- bomb planted
-- bomb plant
-- plant bomb
-https://www.youtube.com/watch?v=3wztV24tbVU:
-- defusing bomb
-- defuse bomb
-- bomb defuse
-- bomb defusing
-https://www.youtube.com/watch?v=mpY9poBVje4:
-- lobby
-https://www.youtube.com/watch?v=zMT4ovCN7gk:
-- usp-s
-- usp s
-- usps
-https://www.youtube.com/watch?v=oI5Ww7y2aUQ:
-- gut knife
-https://www.youtube.com/watch?v=Dqmyxnx-OaQ:
-- ak47
-- ak 47
-https://www.youtube.com/watch?v=Ny4hGdziZP4:
-- hitmarker
-- hit
-- hitmaker
-- marker
-https://www.youtube.com/watch?v=vYUynDKM1Yw:
-- awp
-https://www.youtube.com/watch?v=52etXKmbQRM:
-- butterfly knife
-https://www.youtube.com/watch?v=99o4eyq0SzY:
-- won round
-- round won
-- win round
-- round win
-https://www.youtube.com/watch?v=V5tv1ZzqI_U:
-- lost round
-- round lost
-- lose round
-- round loss
-https://www.youtube.com/watch?v=1hI25OPdim0:
-- flashbang toss
-- toss flashbang
-- throwing flashbang
-- throw flashbang
-- flashbang throwing
-- flashbang throw
-- tossing flashbang
-- flashbang tossing
-https://www.youtube.com/watch?v=oML0z2Aj_D4:
-- firegrenade toss
-- toss firegrenade
-- throwing firegrenade
-- throw firegrenade
-- firegrenade throwing
-- firegrenade throw
-- tossing firegrenade
-- firegrenade tossing
-- fire grenade toss
-- toss fire grenade
-- throwing fire grenade
-- throw fire grenade
-- fire grenade throwing
-- fire grenade throw
-- tossing fire grenade
-- fire grenade tossing
-https://www.youtube.com/watch?v=9otQ9OLfaQc:
-- grenade out
-https://www.youtube.com/watch?v=tFA-8Vc32Kg:
-- famas
-https://www.youtube.com/watch?v=MdI1u8oXKZw:
-- awp zoom
-- zoom awp
-- awp scope
-- scope awp
-https://www.youtube.com/watch?v=6NiZhX4h32Q:
-- c4
-https://www.youtube.com/watch?v=3N0NxsyWPiY:
-- planting c4
-- c4 planting
-- plant c4
-- c4 plant
-https://www.youtube.com/watch?v=XLaJIXZ5QUc:
-- awp
-https://www.youtube.com/watch?v=DmuK9Wml88E:
-- P90
-https://www.youtube.com/watch?v=t1Ky_TbDXHY:
-- smoke
-https://www.youtube.com/watch?v=sJvdTbejDRY:
-- kill bonus
-https://www.youtube.com/watch?v=DYWi8qdvWCk:
-- AK47
-- AK 47
diff --git a/audiotrivia/data/lists/games-plab.yaml b/audiotrivia/data/lists/games-plab.yaml
deleted file mode 100644
index c3a9078..0000000
--- a/audiotrivia/data/lists/games-plab.yaml
+++ /dev/null
@@ -1,5183 +0,0 @@
-AUTHOR: Plab
-https://www.youtube.com/watch?v=--bWm9hhoZo:
-- Transistor
-https://www.youtube.com/watch?v=-4nCbgayZNE:
-- Dark Cloud 2
-- Dark Cloud II
-https://www.youtube.com/watch?v=-64NlME4lJU:
-- Mega Man 7
-- Mega Man VII
-https://www.youtube.com/watch?v=-AesqnudNuw:
-- Mega Man 9
-- Mega Man IX
-https://www.youtube.com/watch?v=-BmGDtP2t7M:
-- Castlevania Curse of Darkness
-https://www.youtube.com/watch?v=-Gg6v-GMnsU:
-- 'FTL: Faster Than Light'
-https://www.youtube.com/watch?v=-GouzQ8y5Cc:
-- Minecraft
-https://www.youtube.com/watch?v=-IsFD_jw6lM:
-- Advance Wars DS
-https://www.youtube.com/watch?v=-J55bt2b3Z8:
-- Mario Kart 8
-- Mario Kart VIII
-https://www.youtube.com/watch?v=-KXPZ81aUPY:
-- 'Ratchet & Clank: Going Commando'
-- 'ratchet and clank: going commando'
-https://www.youtube.com/watch?v=-L45Lm02jIU:
-- Super Street Fighter II
-- Super Street Fighter 2
-https://www.youtube.com/watch?v=-LId8l6Rc6Y:
-- Xenosaga III
-- Xenosaga 3
-https://www.youtube.com/watch?v=-LLr-88UG1U:
-- The Last Story
-https://www.youtube.com/watch?v=-PQ9hQLWNCM:
-- Pokemon
-https://www.youtube.com/watch?v=-Q-S4wQOcr8:
-- 'Star Ocean 2: The Second Story'
-- 'Star Ocean II: The Second Story'
-https://www.youtube.com/watch?v=-Q2Srm60GLg:
-- Dustforce
-https://www.youtube.com/watch?v=-ROXEo0YD10:
-- Halo
-https://www.youtube.com/watch?v=-TG5VLGPdRc:
-- Wild Arms Alter Code F
-https://www.youtube.com/watch?v=-UkyW5eHKlg:
-- Final Fantasy VIII
-- Final Fantasy 8
-https://www.youtube.com/watch?v=-VtNcqxyNnA:
-- Dragon Quest II
-- Dragon Quest 2
-https://www.youtube.com/watch?v=-WQGbuqnVlc:
-- Guacamelee!
-https://www.youtube.com/watch?v=-XTYsUzDWEM:
-- 'The Legend of Zelda: Link''s Awakening'
-- 'link''s awakening'
-https://www.youtube.com/watch?v=-YfpDN84qls:
-- Bioshock Infinite
-https://www.youtube.com/watch?v=-_51UVCkOh4:
-- 'Donkey Kong Country: Tropical Freeze'
-https://www.youtube.com/watch?v=-czsPXU_Sn0:
-- StarFighter 3000
-- StarFighter MMM
-https://www.youtube.com/watch?v=-eHjgg4cnjo:
-- Tintin in Tibet
-https://www.youtube.com/watch?v=-ehGFSkPfko:
-- Contact
-https://www.youtube.com/watch?v=-finZK4D6NA:
-- 'Star Ocean 2: The Second Story'
-- 'Star Ocean II: The Second Story'
-https://www.youtube.com/watch?v=-ltGbYCYr-Q:
-- Enchanted Arms
-https://www.youtube.com/watch?v=-lz8ydvkFuo:
-- Super Metroid
-https://www.youtube.com/watch?v=-m3VGoy-4Qo:
-- Mega Man X6
-https://www.youtube.com/watch?v=-nOJ6c1umMU:
-- Mega Man 7
-- Mega Man VII
-https://www.youtube.com/watch?v=-oGZIqeeTt0:
-- NeoTokyo
-https://www.youtube.com/watch?v=-ohvCzPIBvM:
-- Dark Cloud
-https://www.youtube.com/watch?v=-uJOYd76nSQ:
-- Suikoden III
-- Suikoden 3
-https://www.youtube.com/watch?v=-u_udSjbXgs:
-- Radiata Stories
-https://www.youtube.com/watch?v=-xpUOrwVMHo:
-- Final Fantasy VI
-- Final Fantasy 6
-https://www.youtube.com/watch?v=00mLin2YU54:
-- Grandia II
-- Grandia 2
-https://www.youtube.com/watch?v=01n8imWdT6g:
-- Ristar
-https://www.youtube.com/watch?v=02VD6G-JD4w:
-- SimCity 4
-- SimCity IV
-https://www.youtube.com/watch?v=03L56CE7QWc:
-- Little Nightmares
-https://www.youtube.com/watch?v=04TLq1cKeTI:
-- Mother 3
-- Mother III
-https://www.youtube.com/watch?v=07EXFbZaXiM:
-- Airport Tycoon 3
-- Airport Tycoon III
-https://www.youtube.com/watch?v=096M0eZMk5Q:
-- Super Castlevania IV
-- Super Castlevania 4
-https://www.youtube.com/watch?v=0E-_TG7vGP0:
-- Battletoads & Double Dragon
-- battletoads
-- double dragon
-https://www.youtube.com/watch?v=0EhiDgp8Drg:
-- Mario Party
-https://www.youtube.com/watch?v=0F-hJjD3XAs:
-- Skies of Arcadia
-https://www.youtube.com/watch?v=0F0ONH92OoY:
-- Donkey Kong 64
-https://www.youtube.com/watch?v=0Fbgho32K4A:
-- 'FFCC: The Crystal Bearers'
-https://www.youtube.com/watch?v=0Fff6en_Crc:
-- 'Emperor: Battle for Dune'
-https://www.youtube.com/watch?v=0H5YoFv09uQ:
-- Waterworld
-https://www.youtube.com/watch?v=0IcVJVcjAxA:
-- 'Star Ocean 3: Till the End of Time'
-- 'Star Ocean III: Till the End of Time'
-https://www.youtube.com/watch?v=0KDjcSaMgfI:
-- 'Star Ocean 2: The Second Story'
-- 'Star Ocean II: The Second Story'
-https://www.youtube.com/watch?v=0Lo8Q5tL0WQ:
-- Chrono Trigger
-https://www.youtube.com/watch?v=0OMlZPg8tl4:
-- Robocop 3 (C64)
-- Robocop III
-- robocop 3
-https://www.youtube.com/watch?v=0RKF6gqCXiM:
-- Persona 3
-- Persona III
-https://www.youtube.com/watch?v=0U_7HnAvbR8:
-- Shadow Hearts III
-- Shadow Hearts 3
-https://www.youtube.com/watch?v=0Y0RwyI8j8k:
-- Jet Force Gemini
-https://www.youtube.com/watch?v=0Y1Y3buSm2I:
-- Mario Kart Wii
-https://www.youtube.com/watch?v=0YN7-nirAbk:
-- Ys II Chronicles
-- Ys 2 Chronicles
-https://www.youtube.com/watch?v=0_8CS1mrfFA:
-- Emil Chronicle Online
-https://www.youtube.com/watch?v=0_YB2lagalY:
-- Marble Madness
-https://www.youtube.com/watch?v=0_ph5htjyl0:
-- Dear Esther
-https://www.youtube.com/watch?v=0dEc-UyQf58:
-- Pokemon Trading Card Game
-https://www.youtube.com/watch?v=0dMkx7c-uNM:
-- VVVVVV
-https://www.youtube.com/watch?v=0mmvYvsN32Q:
-- Batman
-https://www.youtube.com/watch?v=0oBT5dOZPig:
-- Final Fantasy X-2
-- Final Fantasy 10-2
-- Final Fantasy X-II
-https://www.youtube.com/watch?v=0ptVf0dQ18M:
-- F-Zero GX
-https://www.youtube.com/watch?v=0rz-SlHMtkE:
-- Panzer Dragoon
-https://www.youtube.com/watch?v=0tWIVmHNDYk:
-- Wild Arms 4
-- Wild Arms IV
-https://www.youtube.com/watch?v=0w-9yZBE_nQ:
-- Blaster Master
-https://www.youtube.com/watch?v=0yKsce_NsWA:
-- Shadow Hearts III
-- Shadow Hearts 3
-https://www.youtube.com/watch?v=11CqmhtBfJI:
-- Wild Arms
-https://www.youtube.com/watch?v=13Uk8RB6kzQ:
-- The Smurfs
-https://www.youtube.com/watch?v=14-tduXVhNQ:
-- The Magical Quest starring Mickey Mouse
-https://www.youtube.com/watch?v=14gpqf8JP-Y:
-- Super Turrican
-https://www.youtube.com/watch?v=15PEwOkJ5DA:
-- Super Mario Galaxy 2
-- Super Mario Galaxy II
-https://www.youtube.com/watch?v=16e2Okdc-PQ:
-- Threads of Fate
-https://www.youtube.com/watch?v=16sK7JwZ9nI:
-- Sands of Destruction
-https://www.youtube.com/watch?v=18NQOEU2jvU:
-- Final Fantasy Tactics
-https://www.youtube.com/watch?v=1ALDFlUYdcQ:
-- Mega Man 10
-https://www.youtube.com/watch?v=1B0D2_zhYyM:
-- Return All Robots!
-https://www.youtube.com/watch?v=1BcHKsDr5CM:
-- Grandia
-https://www.youtube.com/watch?v=1CJ69ZxnVOs:
-- Jets 'N' Guns
-https://www.youtube.com/watch?v=1DAD230gipE:
-- 'Vampire The Masquerade: Bloodlines'
-https://www.youtube.com/watch?v=1DFIYMTnlzo:
-- 'Castlevania: Dawn of Sorrow'
-https://www.youtube.com/watch?v=1DwQk4-Smn0:
-- Crusader of Centy
-https://www.youtube.com/watch?v=1EJ2gbCFpGM:
-- Final Fantasy Adventure
-https://www.youtube.com/watch?v=1HOQJZiKbew:
-- Kirby's Adventure
-https://www.youtube.com/watch?v=1IMUSeMsxwI:
-- Touch My Katamari
-https://www.youtube.com/watch?v=1KCcXn5xBeY:
-- Inside
-https://www.youtube.com/watch?v=1KaAALej7BY:
-- Final Fantasy VI
-- Final Fantasy 6
-https://www.youtube.com/watch?v=1MRrLo4awBI:
-- Golden Sun
-https://www.youtube.com/watch?v=1MVAIf-leiQ:
-- Fez
-https://www.youtube.com/watch?v=1NmzdFvqzSU:
-- Ruin Arm
-https://www.youtube.com/watch?v=1OzPeu60ZvU:
-- Swiv
-https://www.youtube.com/watch?v=1QHyvhnEe2g:
-- Ice Hockey
-https://www.youtube.com/watch?v=1R1-hXIeiKI:
-- Punch-Out!!
-https://www.youtube.com/watch?v=1RBvXjg_QAc:
-- 'E.T.: Return to the Green Planet'
-https://www.youtube.com/watch?v=1THa11egbMI:
-- Shadow Hearts III
-- Shadow Hearts 3
-https://www.youtube.com/watch?v=1UZ1fKOlZC0:
-- Axiom Verge
-https://www.youtube.com/watch?v=1UzoyIwC3Lg:
-- Master Spy
-https://www.youtube.com/watch?v=1X5Y6Opw26s:
-- 'The Legend of Zelda: Skyward Sword'
-- 'skyward sword'
-https://www.youtube.com/watch?v=1YWdyLlEu5w:
-- Final Fantasy Adventure
-https://www.youtube.com/watch?v=1_8u5eDjEwY:
-- 'Digital: A Love Story'
-https://www.youtube.com/watch?v=1agK890YmvQ:
-- Sonic Colors
-https://www.youtube.com/watch?v=1gZaH16gqgk:
-- Sonic Colors
-https://www.youtube.com/watch?v=1hxkqsEz4dk:
-- Mega Man Battle Network 3
-- Mega Man Battle Network III
-https://www.youtube.com/watch?v=1iKxdUnF0Vg:
-- The Revenge of Shinobi
-https://www.youtube.com/watch?v=1kt-H7qUr58:
-- Deus Ex
-https://www.youtube.com/watch?v=1r5BYjZdAtI:
-- Rusty
-https://www.youtube.com/watch?v=1riMeMvabu0:
-- Grim Fandango
-https://www.youtube.com/watch?v=1s7lAVqC0Ps:
-- Tales of Graces
-https://www.youtube.com/watch?v=1saL4_XcwVA:
-- Dustforce
-https://www.youtube.com/watch?v=1uEHUSinwD8:
-- Secret of Mana
-https://www.youtube.com/watch?v=1wskjjST4F8:
-- Plok
-https://www.youtube.com/watch?v=1xzf_Ey5th8:
-- Breath of Fire V
-- Breath of Fire 5
-https://www.youtube.com/watch?v=1yBlUvZ-taY:
-- Tribes Ascend
-https://www.youtube.com/watch?v=1zU2agExFiE:
-- Final Fantasy VI
-- Final Fantasy 6
-https://www.youtube.com/watch?v=20Or4fIOgBk:
-- Seiken Densetsu 3
-- Seiken Densetsu III
-https://www.youtube.com/watch?v=248TO66gf8M:
-- Sonic Mania
-https://www.youtube.com/watch?v=29dJ6XlsMds:
-- Elvandia Story
-https://www.youtube.com/watch?v=29h1H6neu3k:
-- Dragon Quest VII
-- Dragon Quest 7
-https://www.youtube.com/watch?v=2AzKwVALPJU:
-- Xenosaga II
-- Xenosaga 2
-https://www.youtube.com/watch?v=2BNMm9irLTw:
-- 'Mario & Luigi: Superstar Saga'
-- 'mario and luigi: superstar saga'
-https://www.youtube.com/watch?v=2CEZdt5n5JQ:
-- Metal Gear Rising
-https://www.youtube.com/watch?v=2CyFFMCC67U:
-- Super Mario Land 2
-- Super Mario Land II
-https://www.youtube.com/watch?v=2Mf0f91AfQo:
-- Octopath Traveler
-https://www.youtube.com/watch?v=2MzcVSPUJw0:
-- Super Metroid
-https://www.youtube.com/watch?v=2NGWhKhMojQ:
-- Klonoa
-https://www.youtube.com/watch?v=2NfhrT3gQdY:
-- 'Lunar: The Silver Star'
-https://www.youtube.com/watch?v=2O4aNHy2Dcc:
-- X-Men vs Street Fighter
-https://www.youtube.com/watch?v=2TgWzuTOXN8:
-- Shadow of the Ninja
-https://www.youtube.com/watch?v=2WYI83Cx9Ko:
-- Earthbound
-https://www.youtube.com/watch?v=2ZX41kMN9V8:
-- 'Castlevania: Aria of Sorrow'
-https://www.youtube.com/watch?v=2bd4NId7GiA:
-- Catherine
-https://www.youtube.com/watch?v=2biS2NM9QeE:
-- Napple Tale
-https://www.youtube.com/watch?v=2c1e5ASpwjk:
-- Persona 4
-- Persona IV
-https://www.youtube.com/watch?v=2e9MvGGtz6c:
-- Secret of Mana (2018)
-- Secret of Mana
-https://www.youtube.com/watch?v=2gKlqJXIDVQ:
-- Emil Chronicle Online
-https://www.youtube.com/watch?v=2hfgF1RoqJo:
-- Gunstar Heroes
-https://www.youtube.com/watch?v=2jbJSftFr20:
-- Plok
-https://www.youtube.com/watch?v=2mLCr2sV3rs:
-- Mother
-https://www.youtube.com/watch?v=2mlPgPBDovw:
-- 'Castlevania: Bloodlines'
-https://www.youtube.com/watch?v=2oo0qQ79uWE:
-- Sonic 3D Blast (Saturn)
-- sonic 3d blast
-https://www.youtube.com/watch?v=2qDajCHTkWc:
-- 'Arc the Lad IV: Twilight of the Spirits'
-- 'Arc the Lad 4: Twilight of the Spirits'
-https://www.youtube.com/watch?v=2r1iesThvYg:
-- Chrono Trigger
-https://www.youtube.com/watch?v=2r35JpoRCOk:
-- NieR
-https://www.youtube.com/watch?v=2xP0dFTlxdo:
-- Vagrant Story
-https://www.youtube.com/watch?v=31NHdGB1ZSk:
-- Metroid Prime 3
-- Metroid Prime III
-https://www.youtube.com/watch?v=3283ANpvPPM:
-- Super Spy Hunter
-https://www.youtube.com/watch?v=37rVPijCrCA:
-- Earthbound
-https://www.youtube.com/watch?v=3Bl0nIoCB5Q:
-- Wii Sports
-https://www.youtube.com/watch?v=3Hf0L8oddrA:
-- Lagoon
-https://www.youtube.com/watch?v=3J9-q-cv_Io:
-- Wild Arms 5
-- Wild Arms V
-https://www.youtube.com/watch?v=3ODKKILZiYY:
-- Plok
-https://www.youtube.com/watch?v=3PAHwO_GsrQ:
-- Chrono Trigger
-https://www.youtube.com/watch?v=3TjzvAGDubE:
-- Super Mario 64
-https://www.youtube.com/watch?v=3WVqKTCx7Ug:
-- Wild Arms 3
-- Wild Arms III
-https://www.youtube.com/watch?v=3XM9eiSys98:
-- Hotline Miami
-https://www.youtube.com/watch?v=3Y8toBvkRpc:
-- Xenosaga II
-- Xenosaga 2
-https://www.youtube.com/watch?v=3bNlWGyxkCU:
-- Diablo III
-- Diablo 3
-https://www.youtube.com/watch?v=3cIi2PEagmg:
-- Super Mario Bros 3
-- Super Mario Bros III
-https://www.youtube.com/watch?v=3iygPesmC-U:
-- Shadow Hearts
-https://www.youtube.com/watch?v=3kmwqOIeego:
-- Touch My Katamari
-https://www.youtube.com/watch?v=3lehXRPWyes:
-- 'Castlevania: Symphony of the Night'
-https://www.youtube.com/watch?v=3lhiseKpDDY:
-- Heimdall 2
-- Heimdall II
-https://www.youtube.com/watch?v=3nLtMX4Y8XI:
-- Mr. Nutz
-https://www.youtube.com/watch?v=3nPLwrTvII0:
-- 'Castlevania: Symphony of the Night'
-https://www.youtube.com/watch?v=3q_o-86lmcg:
-- Crash Bandicoot
-https://www.youtube.com/watch?v=3tItkV0GeoY:
-- Diddy Kong Racing
-https://www.youtube.com/watch?v=3tpO54VR6Oo:
-- Pop'n Music 4
-- Pop'n Music IV
-https://www.youtube.com/watch?v=3vYAXZs8pFU:
-- Umineko no Naku Koro ni
-https://www.youtube.com/watch?v=44lJD2Xd5rc:
-- Super Mario World
-https://www.youtube.com/watch?v=44u87NnaV4Q:
-- 'Castlevania: Dracula X' 
-https://www.youtube.com/watch?v=44vPlW8_X3s:
-- DOOM
-https://www.youtube.com/watch?v=46WQk6Qvne8:
-- Blast Corps
-https://www.youtube.com/watch?v=473L99I88n8:
-- Suikoden II
-- Suikoden 2
-https://www.youtube.com/watch?v=476siHQiW0k:
-- 'JESUS: Kyoufu no Bio Monster'
-https://www.youtube.com/watch?v=49rleD-HNCk:
-- Tekken Tag Tournament 2
-- Tekken Tag Tournament II
-https://www.youtube.com/watch?v=4CEc0t0t46s:
-- Ittle Dew 2
-- Ittle Dew II
-https://www.youtube.com/watch?v=4DmNrnj6wUI:
-- Napple Tale
-https://www.youtube.com/watch?v=4EBNeFI0QW4:
-- 'OFF'
-https://www.youtube.com/watch?v=4GTm-jHQm90:
-- 'Pokemon XD: Gale of Darkness'
-https://www.youtube.com/watch?v=4HHlWg5iZDs:
-- Terraria
-https://www.youtube.com/watch?v=4HLSGn4_3WE:
-- Wild Arms 4
-- Wild Arms IV
-https://www.youtube.com/watch?v=4H_0h3n6pMk:
-- Silver Surfer
-https://www.youtube.com/watch?v=4J99hnghz4Y:
-- Beyond Good & Evil
-- beyond good and evil
-https://www.youtube.com/watch?v=4JJEaVI3JRs:
-- 'The Legend of Zelda: Oracle of Seasons & Ages'
-- 'oracle of seasons'
-- 'oracle of ages'
-https://www.youtube.com/watch?v=4JzDb3PZGEg:
-- Emil Chronicle Online
-https://www.youtube.com/watch?v=4Jzh0BThaaU:
-- Final Fantasy IV
-- Final Fantasy 4
-https://www.youtube.com/watch?v=4MnzJjEuOUs:
-- 'Atelier Iris 3: Grand Phantasm'
-- 'Atelier Iris III: Grand Phantasm'
-https://www.youtube.com/watch?v=4RPbxVl6z5I:
-- Ms. Pac-Man Maze Madness
-https://www.youtube.com/watch?v=4Rh6wmLE8FU:
-- Kingdom Hearts II
-- Kingdom Hearts 2
-https://www.youtube.com/watch?v=4Ze5BfLk0J8:
-- 'Star Ocean 2: The Second Story'
-- 'Star Ocean II: The Second Story'
-https://www.youtube.com/watch?v=4a767iv9VaI:
-- 'Spyro: Year of the Dragon'
-https://www.youtube.com/watch?v=4axwWk4dfe8:
-- Battletoads & Double Dragon
-- battletoads
-- double dragon
-https://www.youtube.com/watch?v=4d2Wwxbsk64:
-- Dragon Ball Z Butouden 3
-- Dragon Ball Z Butouden III
-https://www.youtube.com/watch?v=4f6siAA3C9M:
-- 'Shadow Hearts II: Covenant'
-- 'Shadow Hearts 2: Covenant'
-https://www.youtube.com/watch?v=4fMd_2XeXLA:
-- 'Castlevania: Dawn of Sorrow'
-https://www.youtube.com/watch?v=4h5FzzXKjLA:
-- 'Star Ocean 2: The Second Story'
-- 'Star Ocean II: The Second Story'
-https://www.youtube.com/watch?v=4hWT8nYhvN0:
-- Final Fantasy VII
-- Final Fantasy 7
-https://www.youtube.com/watch?v=4i-qGSwyu5M:
-- Breath of Fire II
-- Breath of Fire 2
-https://www.youtube.com/watch?v=4uJBIxKB01E:
-- Vay
-https://www.youtube.com/watch?v=4ugpeNkSyMc:
-- Thunder Spirits
-https://www.youtube.com/watch?v=5-0KCJvfJZE:
-- Children of Mana
-https://www.youtube.com/watch?v=52f2DQl8eGE:
-- Mega Man & Bass
-- mega man and bass
-https://www.youtube.com/watch?v=554IOtmsavA:
-- Dark Void
-https://www.youtube.com/watch?v=56oPoX8sCcY:
-- 'The Legend of Zelda: Twilight Princess'
-- 'twilight princess'
-https://www.youtube.com/watch?v=57aCSLmg9hA:
-- The Green Lantern
-https://www.youtube.com/watch?v=5B46aBeR4zo:
-- MapleStory
-https://www.youtube.com/watch?v=5CLpmBIb4MM:
-- Summoner
-https://www.youtube.com/watch?v=5Em0e5SdYs0:
-- 'Mario & Luigi: Partners in Time'
-- 'mario and luigi: partners in time'
-https://www.youtube.com/watch?v=5FDigjKtluM:
-- NieR
-https://www.youtube.com/watch?v=5IUXyzqrZsw:
-- Donkey Kong Country 2
-- Donkey Kong Country II
-https://www.youtube.com/watch?v=5OLxWTdtOkU:
-- Extreme-G
-https://www.youtube.com/watch?v=5OZIrAW7aSY:
-- Way of the Samurai
-https://www.youtube.com/watch?v=5WSE5sLUTnk:
-- Ristar
-https://www.youtube.com/watch?v=5ZMI6Gu2aac:
-- Suikoden III
-- Suikoden 3
-https://www.youtube.com/watch?v=5a5EDaSasRU:
-- Final Fantasy IX
-- Final Fantasy 9
-https://www.youtube.com/watch?v=5bTAdrq6leQ:
-- Castlevania
-https://www.youtube.com/watch?v=5gCAhdDAPHE:
-- Yoshi's Island
-https://www.youtube.com/watch?v=5hVRaTn_ogE:
-- BattleBlock Theater
-https://www.youtube.com/watch?v=5hc3R4Tso2k:
-- Shadow Hearts
-https://www.youtube.com/watch?v=5kmENsE8NHc:
-- Final Fantasy VIII
-- Final Fantasy 8
-https://www.youtube.com/watch?v=5lyXiD-OYXU:
-- Wild Arms
-https://www.youtube.com/watch?v=5maIQJ79hGM:
-- 'The Legend of Zelda: Skyward Sword'
-- 'skyward sword'
-https://www.youtube.com/watch?v=5nJSvKpqXzM:
-- Legend of Mana
-https://www.youtube.com/watch?v=5niLxq7_yN4:
-- Devil May Cry 3
-- Devil May Cry III
-https://www.youtube.com/watch?v=5oGK9YN0Ux8:
-- Shadow Hearts
-https://www.youtube.com/watch?v=5pQMJEzNwtM:
-- Street Racer
-https://www.youtube.com/watch?v=5trQZ9u9xNM:
-- Final Fantasy Tactics
-https://www.youtube.com/watch?v=5w_SgBImsGg:
-- 'The Legend of Zelda: Skyward Sword'
-- 'skyward sword'
-https://www.youtube.com/watch?v=62HoIMZ8xAE:
-- Alundra
-https://www.youtube.com/watch?v=62_S0Sl02TM:
-- Alundra 2
-- Alundra II
-https://www.youtube.com/watch?v=66-rV8v6TNo:
-- Cool World
-https://www.youtube.com/watch?v=67nrJieFVI0:
-- 'World of Warcraft: Wrath of the Lich King'
-https://www.youtube.com/watch?v=69142JeBFXM:
-- Baten Kaitos Origins
-https://www.youtube.com/watch?v=6AZLmFaSpR0:
-- 'Castlevania: Lords of Shadow'
-https://www.youtube.com/watch?v=6AuCTNAJz_M:
-- Rollercoaster Tycoon 3
-- Rollercoaster Tycoon III
-https://www.youtube.com/watch?v=6CMTXyExkeI:
-- Final Fantasy V
-- Final Fantasy 5
-https://www.youtube.com/watch?v=6FdjTwtvKCE:
-- Bit.Trip Flux
-https://www.youtube.com/watch?v=6GWxoOc3TFI:
-- Super Mario Land
-https://www.youtube.com/watch?v=6GX_qN7hEEM:
-- Faxanadu
-https://www.youtube.com/watch?v=6GhseRvdAgs:
-- Tekken 5
-- Tekken V
-https://www.youtube.com/watch?v=6IadffCqEQw:
-- The Legend of Zelda
-https://www.youtube.com/watch?v=6JdMvEBtFSE:
-- 'Parasite Eve: The 3rd Birthday'
-https://www.youtube.com/watch?v=6JuO7v84BiY:
-- Pop'n Music 16 PARTY
-- Pop'n Music XVI PARTY
-https://www.youtube.com/watch?v=6MQRL7xws7w:
-- Wild Arms
-https://www.youtube.com/watch?v=6R8jGeVw-9Y:
-- Wild Arms 4
-- Wild Arms IV
-https://www.youtube.com/watch?v=6TJWqX8i8-E:
-- 'Moon: Remix RPG Adventure'
-https://www.youtube.com/watch?v=6UWGh1A1fPw:
-- Dustforce
-https://www.youtube.com/watch?v=6VD_aVMOL1c:
-- Dark Cloud 2
-- Dark Cloud II
-https://www.youtube.com/watch?v=6XOEZIZMUl0:
-- 'SMT: Digital Devil Saga 2'
-- 'SMT: Digital Devil Saga II'
-https://www.youtube.com/watch?v=6ZiYK9U4TfE:
-- Dirt Trax FX
-https://www.youtube.com/watch?v=6_JLe4OxrbA:
-- Super Mario 64
-https://www.youtube.com/watch?v=6b77tr2Vu9U:
-- Pokemon
-https://www.youtube.com/watch?v=6fA_EQBPB94:
-- Super Metroid
-https://www.youtube.com/watch?v=6jp9d66QRz0:
-- Jazz Jackrabbit 2
-- Jazz Jackrabbit II
-https://www.youtube.com/watch?v=6kIE2xVJdTc:
-- Earthbound
-https://www.youtube.com/watch?v=6l3nVyGhbpE:
-- Extreme-G
-https://www.youtube.com/watch?v=6l8a_pzRcRI:
-- Blast Corps
-https://www.youtube.com/watch?v=6nJgdcnFtcQ:
-- Snake's Revenge
-https://www.youtube.com/watch?v=6paAqMXurdA:
-- Chrono Trigger
-https://www.youtube.com/watch?v=6s6Bc0QAyxU:
-- Ghosts 'n' Goblins
-https://www.youtube.com/watch?v=6uWBacK2RxI:
-- 'Mr. Nutz: Hoppin'' Mad'
-https://www.youtube.com/watch?v=6uo5ripzKwc:
-- Emil Chronicle Online
-https://www.youtube.com/watch?v=6xXHeaLmAcM:
-- Mario + Rabbids Kingdom Battle
-https://www.youtube.com/watch?v=70oTg2go0XU:
-- 3D Dot Game Heroes
-https://www.youtube.com/watch?v=718qcWPzvAY:
-- Super Paper Mario
-https://www.youtube.com/watch?v=72RLQGHxE08:
-- Zack & Wiki
-- zack and wiki
-https://www.youtube.com/watch?v=745hAPheACw:
-- Dark Cloud 2
-- Dark Cloud II
-https://www.youtube.com/watch?v=74cYr5ZLeko:
-- Mega Man 9
-- Mega Man IX
-https://www.youtube.com/watch?v=763w2hsKUpk:
-- 'Paper Mario: The Thousand Year Door'
-https://www.youtube.com/watch?v=77F1lLI5LZw:
-- Grandia
-https://www.youtube.com/watch?v=77Z3VDq_9_0:
-- Street Fighter II
-- Street Fighter 2
-https://www.youtube.com/watch?v=7DC2Qj2LKng:
-- Wild Arms
-https://www.youtube.com/watch?v=7DYL2blxWSA:
-- Gran Turismo
-https://www.youtube.com/watch?v=7Dwc0prm7z4:
-- Child of Eden
-https://www.youtube.com/watch?v=7F3KhzpImm4:
-- 'The Legend of Zelda: Twilight Princess'
-- 'twilight princess'
-https://www.youtube.com/watch?v=7FwtoHygavA:
-- Super Mario 3D Land
-https://www.youtube.com/watch?v=7HMGj_KUBzU:
-- Mega Man 6
-- Mega Man VI
-https://www.youtube.com/watch?v=7JIkz4g0dQc:
-- Mega Man 10
-https://www.youtube.com/watch?v=7JWi5dyzW2Q:
-- Dark Cloud 2
-- Dark Cloud II
-https://www.youtube.com/watch?v=7L3VJpMORxM:
-- Lost Odyssey
-https://www.youtube.com/watch?v=7MQFljss6Pc:
-- Red Dead Redemption
-https://www.youtube.com/watch?v=7MhWtz8Nv9Q:
-- The Last Remnant
-https://www.youtube.com/watch?v=7OHV_ByQIIw:
-- Plok
-https://www.youtube.com/watch?v=7RDRhAKsLHo:
-- Dragon Quest V
-- Dragon Quest 5
-https://www.youtube.com/watch?v=7X5-xwb6otQ:
-- Lady Stalker
-https://www.youtube.com/watch?v=7Y9ea3Ph7FI:
-- Unreal Tournament 2003 & 2004
-- unreal tournament 2003
-- unreal tournament 2004
-https://www.youtube.com/watch?v=7d8nmKL5hbU:
-- 'Castlevania: Portrait of Ruin'
-https://www.youtube.com/watch?v=7lHAHFl_3u0:
-- Shadow of the Colossus
-https://www.youtube.com/watch?v=7m2yOHjObCM:
-- Chrono Trigger
-https://www.youtube.com/watch?v=7rNgsqxnIuY:
-- Magic Johnson's Fast Break
-https://www.youtube.com/watch?v=7sb2q6JedKk:
-- Anodyne
-https://www.youtube.com/watch?v=7sc7R7jeOX0:
-- Sonic and the Black Knight
-https://www.youtube.com/watch?v=7u3tJbtAi_o:
-- Grounseed
-https://www.youtube.com/watch?v=7vpHPBE59HE:
-- Valkyria Chronicles
-https://www.youtube.com/watch?v=8-Q-UsqJ8iM:
-- Katamari Damacy
-https://www.youtube.com/watch?v=80YFKvaRou4:
-- Mass Effect
-https://www.youtube.com/watch?v=81-SoTxMmiI:
-- Deep Labyrinth
-https://www.youtube.com/watch?v=81dgZtXKMII:
-- 'Nintendo 3DS Guide: Louvre'
-https://www.youtube.com/watch?v=83p9uYd4peM:
-- Silent Hill 3
-- Silent Hill III
-https://www.youtube.com/watch?v=83xEzdYAmSg:
-- Oceanhorn
-https://www.youtube.com/watch?v=84NsPpkY4l0:
-- Live a Live
-https://www.youtube.com/watch?v=88VyZ4Lvd0c:
-- Wild Arms
-https://www.youtube.com/watch?v=8EaxiB6Yt5g:
-- Earthbound
-https://www.youtube.com/watch?v=8Fl6WlJ-Pms:
-- Parasite Eve
-https://www.youtube.com/watch?v=8IP_IsXL7b4:
-- Super Mario Kart
-https://www.youtube.com/watch?v=8IVlnImPqQA:
-- Unreal Tournament 2003 & 2004
-- unreal tournament 2003
-- unreal tournament 2004
-https://www.youtube.com/watch?v=8K35MD4ZNRU:
-- Kirby's Epic Yarn
-https://www.youtube.com/watch?v=8K8hCmRDbWc:
-- Blue Dragon
-https://www.youtube.com/watch?v=8KX9L6YkA78:
-- Xenosaga III
-- Xenosaga 3
-https://www.youtube.com/watch?v=8MRHV_Cf41E:
-- Shadow Hearts III
-- Shadow Hearts 3
-https://www.youtube.com/watch?v=8OFao351gwU:
-- Mega Man 3
-- Mega Man III
-https://www.youtube.com/watch?v=8RtLhXibDfA:
-- Yoshi's Island
-https://www.youtube.com/watch?v=8SJl4mELFMM:
-- 'Pokemon Mystery Dungeon: Explorers of Sky'
-https://www.youtube.com/watch?v=8ZjZXguqmKM:
-- The Smurfs
-https://www.youtube.com/watch?v=8_9Dc7USBhY:
-- Final Fantasy IV
-- Final Fantasy 4
-https://www.youtube.com/watch?v=8ajBHjJyVDE:
-- 'The Legend of Zelda: A Link Between Worlds'
-- 'a link between worlds'
-https://www.youtube.com/watch?v=8bEtK6g4g_Y:
-- 'Dragon Ball Z: Super Butoden'
-https://www.youtube.com/watch?v=8eZRNAtq_ps:
-- 'Target: Renegade'
-https://www.youtube.com/watch?v=8gGv1TdQaMI:
-- Tomb Raider II
-- Tomb Raider 2
-https://www.youtube.com/watch?v=8hLQart9bsQ:
-- Shadowrun Returns
-https://www.youtube.com/watch?v=8hzjxWVQnxo:
-- Soma
-https://www.youtube.com/watch?v=8iBCg85y0K8:
-- Mother 3
-- Mother III
-https://www.youtube.com/watch?v=8kBBJQ_ySpI:
-- Silent Hill 3
-- Silent Hill III
-https://www.youtube.com/watch?v=8lmjoPgEWb4:
-- Wangan Midnight Maximum Tune 3
-- Wangan Midnight Maximum Tune III
-https://www.youtube.com/watch?v=8mcUQ8Iv6QA:
-- MapleStory
-https://www.youtube.com/watch?v=8pJ4Q7L9rBs:
-- NieR
-https://www.youtube.com/watch?v=8qNwJeuk4gY:
-- Mega Man X
-https://www.youtube.com/watch?v=8qy4-VeSnYk:
-- Secret of Mana
-https://www.youtube.com/watch?v=8tffqG3zRLQ:
-- Donkey Kong Country 2
-- Donkey Kong Country II
-https://www.youtube.com/watch?v=8urO2NlhdiU:
-- Halo 3 ODST
-- Halo III ODST
-https://www.youtube.com/watch?v=8x1E_1TY8ig:
-- Double Dragon Neon
-https://www.youtube.com/watch?v=8xWWLSlQPeI:
-- 'The Legend of Zelda: Wind Waker'
-- 'wind waker'
-https://www.youtube.com/watch?v=8zY_4-MBuIc:
-- 'Phoenix Wright: Ace Attorney'
-https://www.youtube.com/watch?v=93Fqrbd-9gI:
-- Opoona
-https://www.youtube.com/watch?v=93jNP6y_Az8:
-- Yoshi's New Island
-https://www.youtube.com/watch?v=96ro-5alCGo:
-- One Piece Grand Battle 2
-- One Piece Grand Battle II
-https://www.youtube.com/watch?v=99RVgsDs1W0:
-- 'The Legend of Zelda: Twilight Princess'
-- 'twilight princess'
-https://www.youtube.com/watch?v=9BF1JT8rNKI:
-- Silent Hill 3
-- Silent Hill III
-https://www.youtube.com/watch?v=9BgCJL71YIY:
-- Wild Arms 2
-- Wild Arms II
-https://www.youtube.com/watch?v=9FZ-12a3dTI:
-- Deus Ex
-https://www.youtube.com/watch?v=9GvO7CWsWEg:
-- Baten Kaitos
-https://www.youtube.com/watch?v=9QVLuksB-d8:
-- 'Pop''n Music 12: Iroha'
-- 'Pop''n Music XII: Iroha'
-https://www.youtube.com/watch?v=9VE72cRcQKk:
-- Super Runabout
-https://www.youtube.com/watch?v=9VyMkkI39xc:
-- Okami
-https://www.youtube.com/watch?v=9WlrcP2zcys:
-- Final Fantasy VI
-- Final Fantasy 6
-https://www.youtube.com/watch?v=9YRGh-hQq5c:
-- Journey
-https://www.youtube.com/watch?v=9YY-v0pPRc8:
-- Environmental Station Alpha
-https://www.youtube.com/watch?v=9YoDuIZa8tE:
-- Lost Odyssey
-https://www.youtube.com/watch?v=9ZanHcT3wJI:
-- Contact
-https://www.youtube.com/watch?v=9_wYMNZYaA4:
-- Radiata Stories
-https://www.youtube.com/watch?v=9alsJe-gEts:
-- 'The Legend of Heroes: Trails in the Sky'
-https://www.youtube.com/watch?v=9cJe5v5lLKk:
-- Final Fantasy IV
-- Final Fantasy 4
-https://www.youtube.com/watch?v=9heorR5vEvA:
-- Streets of Rage
-https://www.youtube.com/watch?v=9kkQaWcpRvI:
-- Secret of Mana
-https://www.youtube.com/watch?v=9oVbqhGBKac:
-- Castle in the Darkness
-https://www.youtube.com/watch?v=9rldISzBkjE:
-- Undertale
-https://www.youtube.com/watch?v=9sVb_cb7Skg:
-- Diablo II
-- Diablo 2
-https://www.youtube.com/watch?v=9sYfDXfMO0o:
-- Parasite Eve
-https://www.youtube.com/watch?v=9saTXWj78tY:
-- Katamari Damacy
-https://www.youtube.com/watch?v=9th-yImn9aA:
-- Baten Kaitos
-https://www.youtube.com/watch?v=9u3xNXai8D8:
-- Civilization IV
-- Civilization 4
-https://www.youtube.com/watch?v=9v8qNLnTxHU:
-- Final Fantasy VII
-- Final Fantasy 7
-https://www.youtube.com/watch?v=9v_B9wv_qTw:
-- Tower of Heaven
-https://www.youtube.com/watch?v=9xy9Q-BLp48:
-- Legaia 2
-- Legaia II
-https://www.youtube.com/watch?v=A-AmRMWqcBk:
-- Stunt Race FX
-https://www.youtube.com/watch?v=A-dyJWsn_2Y:
-- Pokken Tournament
-https://www.youtube.com/watch?v=A1b4QO48AoA:
-- Hollow Knight
-https://www.youtube.com/watch?v=A2Mi7tkE5T0:
-- Secret of Mana
-https://www.youtube.com/watch?v=A3PE47hImMo:
-- Paladin's Quest II
-- Paladin's Quest 2
-https://www.youtube.com/watch?v=A4e_sQEMC8c:
-- Streets of Fury
-https://www.youtube.com/watch?v=A6Qolno2AQA:
-- Super Princess Peach
-https://www.youtube.com/watch?v=A9PXQSFWuRY:
-- Radiant Historia
-https://www.youtube.com/watch?v=ABYH2x7xaBo:
-- Faxanadu
-https://www.youtube.com/watch?v=AC58piv97eM:
-- 'The Binding of Isaac: Afterbirth'
-https://www.youtube.com/watch?v=AE0hhzASHwY:
-- Xenoblade Chronicles
-https://www.youtube.com/watch?v=AGWVzDhDHMc:
-- 'Shadow Hearts II: Covenant'
-- 'Shadow Hearts 2: Covenant'
-https://www.youtube.com/watch?v=AISrz88SJNI:
-- Digital Devil Saga
-https://www.youtube.com/watch?v=AJX08k_VZv8:
-- 'Ace Combat 4: Shattered Skies'
-- 'Ace Combat IV: Shattered Skies'
-https://www.youtube.com/watch?v=AKfLOMirwho:
-- Earthbound
-https://www.youtube.com/watch?v=AN-NbukIjKw:
-- Super Mario 64
-https://www.youtube.com/watch?v=APW3ZX8FvvE:
-- 'Phoenix Wright: Ace Attorney'
-https://www.youtube.com/watch?v=AQMonx8SlXc:
-- Enthusia Professional Racing
-https://www.youtube.com/watch?v=ARQfmb30M14:
-- Bejeweled 3
-- Bejeweled III
-https://www.youtube.com/watch?v=ARTuLmKjA7g:
-- King of Fighters 2002 Unlimited Match
-https://www.youtube.com/watch?v=ASl7qClvqTE:
-- 'Roommania #203'
-- 'Roommania #CCIII'
-https://www.youtube.com/watch?v=AU_tnstiX9s:
-- 'Ecco the Dolphin: Defender of the Future'
-https://www.youtube.com/watch?v=AVvhihA9gRc:
-- Berserk
-https://www.youtube.com/watch?v=AW7oKCS8HjM:
-- Hotline Miami
-https://www.youtube.com/watch?v=AWB3tT7e3D8:
-- 'The Legend of Zelda: Spirit Tracks'
-- 'spirit tracks'
-https://www.youtube.com/watch?v=AbRWDpruNu4:
-- Super Castlevania IV
-- Super Castlevania 4
-https://www.youtube.com/watch?v=AdI6nJ_sPKQ:
-- Super Stickman Golf 3
-- Super Stickman Golf III
-https://www.youtube.com/watch?v=Ag-O4VfJx6U:
-- Metal Gear Solid 2
-- Metal Gear Solid II
-https://www.youtube.com/watch?v=AkKMlbmq6mc:
-- Mass Effect 2
-- Mass Effect II
-https://www.youtube.com/watch?v=Al0XOLM9FPw:
-- Skullmonkeys
-https://www.youtube.com/watch?v=AmDE3fCW9gY:
-- Okamiden
-https://www.youtube.com/watch?v=AtXEw2NgXx8:
-- Final Fantasy XII
-- Final Fantasy 12
-https://www.youtube.com/watch?v=AuluLeMp1aA:
-- Majokko de Go Go
-https://www.youtube.com/watch?v=AvZjyCGUj-Q:
-- Final Fantasy Tactics A2
-https://www.youtube.com/watch?v=AvlfNZ685B8:
-- Chaos Legion
-https://www.youtube.com/watch?v=AxVhRs8QC1U:
-- Banjo-Kazooie
-https://www.youtube.com/watch?v=Az9XUAcErIQ:
-- Tomb Raider
-https://www.youtube.com/watch?v=AzlWTsBn8M8:
-- Tetris
-https://www.youtube.com/watch?v=B-L4jj9lRmE:
-- Suikoden III
-- Suikoden 3
-https://www.youtube.com/watch?v=B0nk276pUv8:
-- Shovel Knight
-https://www.youtube.com/watch?v=B1e6VdnjLuA:
-- Shadow of the Colossus
-https://www.youtube.com/watch?v=B2j3_kaReP4:
-- Wild Arms 4
-- Wild Arms IV
-https://www.youtube.com/watch?v=B4JvKl7nvL0:
-- Grand Theft Auto IV
-- Grand Theft Auto 4
-https://www.youtube.com/watch?v=B8MpofvFtqY:
-- 'Mario & Luigi: Superstar Saga'
-- 'mario and luigi: superstar saga'
-https://www.youtube.com/watch?v=BCjRd3LfRkE:
-- 'Castlevania: Symphony of the Night'
-https://www.youtube.com/watch?v=BDg0P_L57SU:
-- Lagoon
-https://www.youtube.com/watch?v=BKmv_mecn5g:
-- Super Mario Sunshine
-https://www.youtube.com/watch?v=BMpvrfwD7Hg:
-- Kirby's Epic Yarn
-https://www.youtube.com/watch?v=BQRKQ-CQ27U:
-- 3D Dot Game Heroes
-https://www.youtube.com/watch?v=BSVBfElvom8:
-- 'The Legend of Zelda: Ocarina of Time'
-- 'ocarina of time'
-https://www.youtube.com/watch?v=BVLMdQfxzo4:
-- Emil Chronicle Online
-https://www.youtube.com/watch?v=BZWiBxlBCbM:
-- Hollow Knight
-https://www.youtube.com/watch?v=B_QTkyu2Ssk:
-- Yoshi's Island
-https://www.youtube.com/watch?v=B_ed-ZF9yR0:
-- Ragnarok Online
-https://www.youtube.com/watch?v=Ba4J-4bUN0w:
-- Bomberman Hero
-https://www.youtube.com/watch?v=BdFLRkDRtP0:
-- Wild Arms 4
-- Wild Arms IV
-https://www.youtube.com/watch?v=BdlkxaSEgB0:
-- Galactic Pinball
-https://www.youtube.com/watch?v=BfR5AmZcZ9g:
-- Kirby Super Star
-https://www.youtube.com/watch?v=BfVmj3QGQDw:
-- The Neverhood
-https://www.youtube.com/watch?v=BhfevIZsXo0:
-- Outlast
-https://www.youtube.com/watch?v=BimaIgvOa-A:
-- Paper Mario
-https://www.youtube.com/watch?v=Bj5bng0KRPk:
-- 'The Legend of Zelda: Ocarina of Time'
-- 'ocarina of time'
-https://www.youtube.com/watch?v=Bk_NDMKfiVE:
-- Chrono Cross
-https://www.youtube.com/watch?v=BkmbbZZOgKg:
-- Cheetahmen II
-- Cheetahmen 2
-https://www.youtube.com/watch?v=Bkmn35Okxfw:
-- Final Fantasy VII
-- Final Fantasy 7
-https://www.youtube.com/watch?v=Bqvy5KIeQhI:
-- Legend of Grimrock II
-- Legend of Grimrock 2
-https://www.youtube.com/watch?v=BqxjLbpmUiU:
-- Krater
-https://www.youtube.com/watch?v=Bvw2H15HDlM:
-- 'Final Fantasy XI: Rise of the Zilart'
-- 'Final Fantasy 11: Rise of the Zilart'
-https://www.youtube.com/watch?v=BwpzdyCvqN0:
-- Final Fantasy Adventure
-https://www.youtube.com/watch?v=BxYfQBNFVSw:
-- Mega Man 7
-- Mega Man VII
-https://www.youtube.com/watch?v=C-QGg9FGzj4:
-- Grandia II
-- Grandia 2
-https://www.youtube.com/watch?v=C31ciPeuuXU:
-- 'Golden Sun: Dark Dawn'
-https://www.youtube.com/watch?v=C3xhG7wRnf0:
-- Super Paper Mario
-https://www.youtube.com/watch?v=C4cD-7dOohU:
-- Valdis Story
-https://www.youtube.com/watch?v=C7NTTBm7fS8:
-- Mighty Switch Force! 2
-- Mighty Switch Force! II
-https://www.youtube.com/watch?v=C7r8sJbeOJc:
-- NeoTokyo
-https://www.youtube.com/watch?v=C8aVq5yQPD8:
-- Lode Runner 3-D
-- Lode Runner 3-500
-- Lode Runner III-D
-https://www.youtube.com/watch?v=CADHl-iZ_Kw:
-- 'The Legend of Zelda: A Link to the Past'
-- 'a link to the past'
-https://www.youtube.com/watch?v=CBm1yaZOrB0:
-- Enthusia Professional Racing
-https://www.youtube.com/watch?v=CD9A7myidl4:
-- No More Heroes 2
-- No More Heroes II
-https://www.youtube.com/watch?v=CEPnbBgjWdk:
-- 'Brothers: A Tale of Two Sons'
-https://www.youtube.com/watch?v=CHQ56GSPi2I:
-- 'Arc the Lad IV: Twilight of the Spirits'
-- 'Arc the Lad 4: Twilight of the Spirits'
-https://www.youtube.com/watch?v=CHd4iWEFARM:
-- Klonoa
-https://www.youtube.com/watch?v=CHlEPgi4Fro:
-- 'Ace Combat Zero: The Belkan War'
-https://www.youtube.com/watch?v=CHydNVrPpAQ:
-- 'The Legend of Zelda: Skyward Sword'
-- 'skyward sword'
-https://www.youtube.com/watch?v=CLl8UR5vrMk:
-- Yakuza 0
-- 'Yakuza '
-https://www.youtube.com/watch?v=CNUgwyd2iIA:
-- Sonic the Hedgehog 3
-- Sonic the Hedgehog III
-https://www.youtube.com/watch?v=CP0TcAnHftc:
-- Attack of the Friday Monsters! A Tokyo Tale
-https://www.youtube.com/watch?v=CPKoMt4QKmw:
-- Super Mario Galaxy
-https://www.youtube.com/watch?v=CPbjTzqyr7o:
-- Last Bible III
-- Last Bible 3
-https://www.youtube.com/watch?v=CRmOTY1lhYs:
-- Mass Effect
-https://www.youtube.com/watch?v=CYjYCaqshjE:
-- No More Heroes 2
-- No More Heroes II
-https://www.youtube.com/watch?v=CYswIEEMIWw:
-- Sonic CD
-- Sonic 400
-https://www.youtube.com/watch?v=Ca4QJ_pDqpA:
-- 'Dragon Ball Z: The Legacy of Goku II'
-- 'Dragon Ball Z: The Legacy of Goku 2'
-https://www.youtube.com/watch?v=Car2R06WZcw:
-- 'The Legend of Zelda: Wind Waker'
-- 'wind waker'
-https://www.youtube.com/watch?v=CcKUWCm_yRs:
-- Cool Spot
-https://www.youtube.com/watch?v=CcovgBkMTmE:
-- Guild Wars 2
-- Guild Wars II
-https://www.youtube.com/watch?v=CfoiK5ADejI:
-- Final Fantasy VII
-- Final Fantasy 7
-https://www.youtube.com/watch?v=CgtvppDEyeU:
-- Shenmue
-https://www.youtube.com/watch?v=CkPqtTcBXTA:
-- Bully
-https://www.youtube.com/watch?v=CksHdwwG1yw:
-- Crystalis
-https://www.youtube.com/watch?v=Cm9HjyPkQbg:
-- Soul Edge
-https://www.youtube.com/watch?v=CmMswzZkMYY:
-- Super Metroid
-https://www.youtube.com/watch?v=Cnn9BW3OpJs:
-- 'Roommania #203'
-- 'Roommania #CCIII'
-https://www.youtube.com/watch?v=CoQrXSc_PPw:
-- Donkey Kong Country
-https://www.youtube.com/watch?v=Cp0UTM-IzjM:
-- 'Castlevania: Lament of Innocence'
-https://www.youtube.com/watch?v=CpThkLTJjUQ:
-- Turok 2 (Gameboy)
-- Turok II
-- turok 2
-https://www.youtube.com/watch?v=CqAXFK8U32U:
-- McKids
-https://www.youtube.com/watch?v=CrjvBd9q4A0:
-- Demon's Souls
-https://www.youtube.com/watch?v=Ct54E7GryFQ:
-- Persona 4
-- Persona IV
-https://www.youtube.com/watch?v=CuQJ-qh9s_s:
-- Tekken 2
-- Tekken II
-https://www.youtube.com/watch?v=CumPOZtsxkU:
-- Skies of Arcadia
-https://www.youtube.com/watch?v=Cw4IHZT7guM:
-- Final Fantasy XI
-- Final Fantasy 11
-https://www.youtube.com/watch?v=CwI39pDPlgc:
-- Shadow Madness
-https://www.youtube.com/watch?v=CzZab0uEd1w:
-- 'Tintin: Prisoners of the Sun'
-https://www.youtube.com/watch?v=D0uYrKpNE2o:
-- Valkyrie Profile
-https://www.youtube.com/watch?v=D2nWuGoRU0s:
-- 'Ecco the Dolphin: Defender of the Future'
-https://www.youtube.com/watch?v=D30VHuqhXm8:
-- 'Paper Mario: The Thousand Year Door'
-https://www.youtube.com/watch?v=D3zfoec6tiw:
-- NieR
-https://www.youtube.com/watch?v=DFKoFzNfQdA:
-- Secret of Mana
-https://www.youtube.com/watch?v=DIyhbwBfOwE:
-- Tekken 4
-- Tekken IV
-https://www.youtube.com/watch?v=DKbzLuiop80:
-- Shin Megami Tensei Nocturne
-https://www.youtube.com/watch?v=DLqos66n3Qo:
-- Mega Turrican
-https://www.youtube.com/watch?v=DPO2XhA5F3Q:
-- Mana Khemia
-https://www.youtube.com/watch?v=DS825tbc9Ts:
-- Phantasy Star Online
-https://www.youtube.com/watch?v=DSOvrM20tMA:
-- Wild Arms
-https://www.youtube.com/watch?v=DTqp7jUBoA8:
-- Mega Man 3
-- Mega Man III
-https://www.youtube.com/watch?v=DTzf-vahsdI:
-- 'The Legend of Zelda: Breath of the Wild'
-- 'breath of the wild'
-https://www.youtube.com/watch?v=DW-tMwk3t04:
-- Grounseed
-https://www.youtube.com/watch?v=DWXXhLbqYOI:
-- Mario Kart 64
-https://www.youtube.com/watch?v=DY0L5o9y-YA:
-- Paladin's Quest
-https://www.youtube.com/watch?v=DY_Tz7UAeAY:
-- Darksiders II
-- Darksiders 2
-https://www.youtube.com/watch?v=DZQ1P_oafJ0:
-- Eternal Champions
-https://www.youtube.com/watch?v=DZaltYb0hjU:
-- Western Lords
-https://www.youtube.com/watch?v=DbQdgOVOjSU:
-- Super Mario RPG
-https://www.youtube.com/watch?v=DeqecCzDWhQ:
-- Streets of Rage 2
-- Streets of Rage II
-https://www.youtube.com/watch?v=Dhd4jJw8VtE:
-- 'Phoenix Wright: Ace Attorney'
-https://www.youtube.com/watch?v=DjKfEQD892I:
-- To the Moon
-https://www.youtube.com/watch?v=DlbCke52EBQ:
-- 'The Legend of Zelda: Skyward Sword'
-- 'skyward sword'
-https://www.youtube.com/watch?v=DlcwDU0i6Mw:
-- Tribes 2
-- Tribes II
-https://www.youtube.com/watch?v=DmaFexLIh4s:
-- El Shaddai
-https://www.youtube.com/watch?v=DmpP-RMFNHo:
-- 'The Elder Scrolls III: Morrowind'
-- 'The Elder Scrolls 3: Morrowind'
-- Morrowind
-https://www.youtube.com/watch?v=DoQekfFkXvI:
-- Super Mario Land
-https://www.youtube.com/watch?v=Dr95nRD7vAo:
-- FTL
-https://www.youtube.com/watch?v=DxEl2p9GPnY:
-- The Lost Vikings
-https://www.youtube.com/watch?v=DzXQKut6Ih4:
-- 'Castlevania: Dracula X' 
-https://www.youtube.com/watch?v=E3PKlQUYNTw:
-- Okamiden
-https://www.youtube.com/watch?v=E3Po0o6zoJY:
-- 'TrackMania 2: Stadium'
-- 'TrackMania II: Stadium'
-https://www.youtube.com/watch?v=E5K6la0Fzuw:
-- Driver
-https://www.youtube.com/watch?v=E99qxCMb05g:
-- VVVVVV
-https://www.youtube.com/watch?v=ECP710r6JCM:
-- Super Smash Bros. Wii U / 3DS
-- super smash bros wii u
-- super smash bros 3ds
-- super smash bros. wii u
-- super smash bros. 3ds
-https://www.youtube.com/watch?v=EDmsNVWZIws:
-- Dragon Quest
-https://www.youtube.com/watch?v=EF7QwcRAwac:
-- Suikoden II
-- Suikoden 2
-https://www.youtube.com/watch?v=EF_lbrpdRQo:
-- Contact
-https://www.youtube.com/watch?v=EHAbZoBjQEw:
-- Secret of Evermore
-https://www.youtube.com/watch?v=EHRfd2EQ_Do:
-- Persona 4
-- Persona IV
-https://www.youtube.com/watch?v=EL_jBUYPi88:
-- Journey to Silius
-https://www.youtube.com/watch?v=ELqpqweytFc:
-- Metroid Prime
-https://www.youtube.com/watch?v=ELyz549E_f4:
-- Mother 3
-- Mother III
-https://www.youtube.com/watch?v=ENStkWiosK4:
-- Kid Icarus
-https://www.youtube.com/watch?v=EQjT6103nLg:
-- Senko no Ronde (Wartech)
-- Wartech
-- senko no ronde
-https://www.youtube.com/watch?v=ERUnY6EIsn8:
-- Snake Pass
-https://www.youtube.com/watch?v=ERohLbXvzVQ:
-- Z-Out
-https://www.youtube.com/watch?v=EVo5O3hKVvo:
-- Mega Turrican
-https://www.youtube.com/watch?v=EX5V_PWI3yM:
-- Kingdom Hearts II
-- Kingdom Hearts 2
-https://www.youtube.com/watch?v=EcUxGQkLj2c:
-- Final Fantasy III DS
-- Final Fantasy 3 DS
-https://www.youtube.com/watch?v=EdkkgkEu_NQ:
-- The Smurfs' Nightmare
-https://www.youtube.com/watch?v=EeGhYL_8wtg:
-- Phantasy Star Portable 2
-- Phantasy Star Portable II
-https://www.youtube.com/watch?v=EeXlQNJnjj0:
-- 'E.V.O: Search for Eden'
-https://www.youtube.com/watch?v=Ef3xB2OP8l8:
-- Diddy Kong Racing
-https://www.youtube.com/watch?v=Ef5pp7mt1lA:
-- 'Animal Crossing: Wild World'
-https://www.youtube.com/watch?v=Ekiz0YMNp7A:
-- 'Romancing SaGa: Minstrel Song'
-https://www.youtube.com/watch?v=ElSUKQOF3d4:
-- Elebits
-https://www.youtube.com/watch?v=EmD9WnLYR5I:
-- Super Mario Land 2
-- Super Mario Land II
-https://www.youtube.com/watch?v=EohQnQbQQWk:
-- Super Mario Kart
-https://www.youtube.com/watch?v=EpbcztAybh0:
-- Super Mario Maker
-https://www.youtube.com/watch?v=ErlBKXnOHiQ:
-- Dragon Quest IV
-- Dragon Quest 4
-https://www.youtube.com/watch?v=Ev1MRskhUmA:
-- Dragon Quest VI
-- Dragon Quest 6
-https://www.youtube.com/watch?v=EvRTjXbb8iw:
-- Unlimited Saga
-https://www.youtube.com/watch?v=F0cuCvhbF9k:
-- 'The Legend of Zelda: Breath of the Wild'
-- 'breath of the wild'
-https://www.youtube.com/watch?v=F2-bROS64aI:
-- Mega Man Soccer
-https://www.youtube.com/watch?v=F3hz58VDWs8:
-- Chrono Trigger
-https://www.youtube.com/watch?v=F41PKROUnhA:
-- F-Zero GX
-https://www.youtube.com/watch?v=F4QbiPftlEE:
-- Dustforce
-https://www.youtube.com/watch?v=F6sjYt6EJVw:
-- Journey to Silius
-https://www.youtube.com/watch?v=F7p1agUovzs:
-- 'Silent Hill: Shattered Memories'
-https://www.youtube.com/watch?v=F8U5nxhxYf0:
-- Breath of Fire III
-- Breath of Fire 3
-https://www.youtube.com/watch?v=FCB7Dhm8RuY:
-- Super Mario Galaxy 2
-- Super Mario Galaxy II
-https://www.youtube.com/watch?v=FDAMxLKY2EY:
-- Ogre Battle
-https://www.youtube.com/watch?v=FE59rlKJRPs:
-- Rogue Galaxy
-https://www.youtube.com/watch?v=FEpAD0RQ66w:
-- Shinobi III
-- Shinobi 3
-https://www.youtube.com/watch?v=FGtk_eaVnxQ:
-- Minecraft
-https://www.youtube.com/watch?v=FJ976LQSY-k:
-- Western Lords
-https://www.youtube.com/watch?v=FJJPaBA7264:
-- 'Castlevania: Aria of Sorrow'
-https://www.youtube.com/watch?v=FKqTtZXIid4:
-- Super Mario Galaxy
-https://www.youtube.com/watch?v=FKtnlUcGVvM:
-- Star Ocean 3
-- Star Ocean III
-https://www.youtube.com/watch?v=FPjueitq904:
-- "Einh\xC3\xA4nder"
-https://www.youtube.com/watch?v=FQioui9YeiI:
-- Ragnarok Online
-https://www.youtube.com/watch?v=FR-TFI71s6w:
-- Super Monkey Ball 2
-- Super Monkey Ball II
-https://www.youtube.com/watch?v=FSfRr0LriBE:
-- Hearthstone
-https://www.youtube.com/watch?v=FWSwAKVS-IA:
-- 'Disaster: Day of Crisis'
-https://www.youtube.com/watch?v=FYSt4qX85oA:
-- 'Star Ocean 3: Till the End of Time'
-- 'Star Ocean III: Till the End of Time'
-https://www.youtube.com/watch?v=Fa9-pSBa9Cg:
-- Gran Turismo 5
-- Gran Turismo V
-https://www.youtube.com/watch?v=Ff_r_6N8PII:
-- 'The Legend of Zelda: Twilight Princess'
-- twilight princess
-https://www.youtube.com/watch?v=FgQaK7TGjX4:
-- 'The Legend of Zelda: A Link to the Past'
-- a link to the past
-https://www.youtube.com/watch?v=FjFx5oO-riE:
-- 'Castlevania: Order of Ecclesia'
-https://www.youtube.com/watch?v=FkMm63VAHps:
-- Gunlord
-https://www.youtube.com/watch?v=FnogL42dEL4:
-- 'Command & Conquer: Red Alert'
-- 'command and conquer: red alert'
-https://www.youtube.com/watch?v=FqrNEjtl2FI:
-- Twinsen's Odyssey
-https://www.youtube.com/watch?v=FrhLXDBP-2Q:
-- DuckTales
-https://www.youtube.com/watch?v=Fs9FhHHQKwE:
-- Chrono Cross
-https://www.youtube.com/watch?v=Ft-qnOD77V4:
-- Doom
-https://www.youtube.com/watch?v=G0YMlSu1DeA:
-- Final Fantasy VII
-- Final Fantasy 7
-https://www.youtube.com/watch?v=G4g1SH2tEV0:
-- Aliens Incursion
-https://www.youtube.com/watch?v=GAVePrZeGTc:
-- SaGa Frontier
-https://www.youtube.com/watch?v=GBYsdw4Vwx8:
-- Silent Hill 2
-- Silent Hill II
-https://www.youtube.com/watch?v=GC99a8VRsIw:
-- Earthbound
-https://www.youtube.com/watch?v=GCiOjOMciOI:
-- LocoRoco
-https://www.youtube.com/watch?v=GEuRzRW86bI:
-- Musashi Samurai Legend
-https://www.youtube.com/watch?v=GIhf0yU94q4:
-- Mr. Nutz
-https://www.youtube.com/watch?v=GIuBC4GU6C8:
-- Final Fantasy VI
-- Final Fantasy 6
-https://www.youtube.com/watch?v=GKFwm2NSJdc:
-- 'Paper Mario: The Thousand Year Door'
-https://www.youtube.com/watch?v=GKKhBT0A1pE:
-- Wild Arms 3
-- Wild Arms III
-https://www.youtube.com/watch?v=GLPT6H4On4o:
-- Metroid Fusion
-https://www.youtube.com/watch?v=GM6lrZw9Fdg:
-- Super Mario Galaxy 2
-- Super Mario Galaxy II
-https://www.youtube.com/watch?v=GNqR9kGLAeA:
-- Croc 2
-- Croc II
-https://www.youtube.com/watch?v=GQND5Y7_pXc:
-- Sprint Vector
-https://www.youtube.com/watch?v=GRU4yR3FQww:
-- Final Fantasy XIII
-- Final Fantasy 13
-https://www.youtube.com/watch?v=GWaooxrlseo:
-- Mega Man X3
-https://www.youtube.com/watch?v=G_80PQ543rM:
-- DuckTales
-https://www.youtube.com/watch?v=GaOT77kUTD8:
-- Jack Bros.
-https://www.youtube.com/watch?v=GdOFuA2qpG4:
-- Mega Man Battle Network 3
-- Mega Man Battle Network III
-https://www.youtube.com/watch?v=GhFffRvPfig:
-- DuckTales
-https://www.youtube.com/watch?v=Gibt8OLA__M:
-- Pilotwings 64
-https://www.youtube.com/watch?v=GnwlAOp6tfI:
-- L.A. Noire
-- 50.A. Noire
-https://www.youtube.com/watch?v=Gt-QIiYkAOU:
-- Galactic Pinball
-https://www.youtube.com/watch?v=GtZNgj5OUCM:
-- 'Pokemon Mystery Dungeon: Explorers of Sky'
-https://www.youtube.com/watch?v=GyiSanVotOM:
-- Dark Souls II
-- Dark Souls 2
-https://www.youtube.com/watch?v=GyuReqv2Rnc:
-- ActRaiser
-https://www.youtube.com/watch?v=GzBsFGh6zoc:
-- Lufia
-https://www.youtube.com/watch?v=Gza34GxrZlk:
-- Secret of the Stars
-https://www.youtube.com/watch?v=H-CwNdgHcDw:
-- Lagoon
-https://www.youtube.com/watch?v=H1B52TSCl_A:
-- Super Mario 64
-https://www.youtube.com/watch?v=H2-rCJmEDIQ:
-- Fez
-https://www.youtube.com/watch?v=H3fQtYVwpx4:
-- Croc 2
-- Croc II
-https://www.youtube.com/watch?v=H4hryHF3kTw:
-- Xenosaga II
-- Xenosaga 2
-https://www.youtube.com/watch?v=HCHsMo4BOJ0:
-- Wild Arms 4
-- Wild Arms IV
-https://www.youtube.com/watch?v=HCi2-HtFh78:
-- 'Star Ocean 2: The Second Story'
-- 'Star Ocean II: The Second Story'
-https://www.youtube.com/watch?v=HFKtYCcMWT4:
-- Mega Man 2
-- Mega Man II
-https://www.youtube.com/watch?v=HGMjMDE-gAY:
-- Terranigma
-https://www.youtube.com/watch?v=HHun7iYtbFU:
-- Mega Man 6
-- Mega Man VI
-https://www.youtube.com/watch?v=HIKOSJh9_5k:
-- Treasure Hunter G
-https://www.youtube.com/watch?v=HImC0q17Pk0:
-- 'FTL: Faster Than Light'
-https://www.youtube.com/watch?v=HLl-oMBhiPc:
-- 'Sailor Moon RPG: Another Story'
-https://www.youtube.com/watch?v=HNPqugUrdEM:
-- 'Castlevania: Lament of Innocence'
-https://www.youtube.com/watch?v=HO0rvkOPQww:
-- Guardian's Crusade
-https://www.youtube.com/watch?v=HRAnMmwuLx4:
-- Radiant Historia
-https://www.youtube.com/watch?v=HSWAPWjg5AM:
-- Mother 3
-- Mother III
-https://www.youtube.com/watch?v=HTo_H7376Rs:
-- Dark Souls II
-- Dark Souls 2
-https://www.youtube.com/watch?v=HUpDqe4s4do:
-- 'Lunar: The Silver Star'
-https://www.youtube.com/watch?v=HUzLO2GpPv4:
-- Castlevania 64
-https://www.youtube.com/watch?v=HW5WcFpYDc4:
-- 'Mega Man Battle Network 5: Double Team'
-- 'Mega Man Battle Network V: Double Team'
-https://www.youtube.com/watch?v=HXxA7QJTycA:
-- Mario Kart Wii
-https://www.youtube.com/watch?v=HZ9O1Gh58vI:
-- Final Fantasy IX
-- Final Fantasy 9
-https://www.youtube.com/watch?v=H_rMLATTMws:
-- Illusion of Gaia
-https://www.youtube.com/watch?v=HaRmFcPG7o8:
-- 'Shadow Hearts II: Covenant'
-- 'Shadow Hearts 2: Covenant'
-https://www.youtube.com/watch?v=Hbw3ZVY7qGc:
-- Scott Pilgrim vs the World
-https://www.youtube.com/watch?v=He7jFaamHHk:
-- 'Castlevania: Symphony of the Night'
-https://www.youtube.com/watch?v=HeirTA9Y9i0:
-- Maken X
-https://www.youtube.com/watch?v=HijQBbE0WiQ:
-- Heroes of Might and Magic III
-- Heroes of Might and Magic 3
-https://www.youtube.com/watch?v=HmOUI30QqiE:
-- Streets of Rage 2
-- Streets of Rage II
-https://www.youtube.com/watch?v=HneWfB9jsHk:
-- Suikoden III
-- Suikoden 3
-https://www.youtube.com/watch?v=Ho2TE9ZfkgI:
-- Battletoads (Arcade)
-- battletoads
-https://www.youtube.com/watch?v=HpecW3jSJvQ:
-- Xenoblade Chronicles
-https://www.youtube.com/watch?v=Hro03nOyUuI:
-- Ecco the Dolphin (Sega CD)
-- Ecco the Dolphin
-https://www.youtube.com/watch?v=HtJPpVCuYGQ:
-- 'Chuck Rock II: Son of Chuck'
-- 'Chuck Rock 2: Son of Chuck'
-https://www.youtube.com/watch?v=HvnAkAQK82E:
-- Tales of Symphonia
-https://www.youtube.com/watch?v=HvyPtN7_jNk:
-- F-Zero GX
-https://www.youtube.com/watch?v=HwBOvdH38l0:
-- Super Mario Galaxy 2
-- Super Mario Galaxy II
-https://www.youtube.com/watch?v=HyWy1vzcqGE:
-- Boom Blox
-https://www.youtube.com/watch?v=I-_yzFMnclM:
-- 'Lufia: The Legend Returns'
-https://www.youtube.com/watch?v=I0FNN-t4pRU:
-- Earthbound
-https://www.youtube.com/watch?v=I0rfWwuyHFg:
-- Time Trax
-https://www.youtube.com/watch?v=I1USJ16xqw4:
-- Disney's Aladdin
-https://www.youtube.com/watch?v=I2LzT-9KtNA:
-- The Oregon Trail
-https://www.youtube.com/watch?v=I4b8wCqmQfE:
-- Phantasy Star Online Episode III
-- Phantasy Star Online Episode 3
-https://www.youtube.com/watch?v=I4gMnPkOQe8:
-- Earthbound
-https://www.youtube.com/watch?v=I5GznpBjHE4:
-- Soul Blazer
-https://www.youtube.com/watch?v=I8ij2RGGBtc:
-- Mario Sports Mix
-https://www.youtube.com/watch?v=I8zZaUvkIFY:
-- Final Fantasy VII
-- Final Fantasy 7
-https://www.youtube.com/watch?v=ICOotKB_MUc:
-- Top Gear
-https://www.youtube.com/watch?v=ICdhgaXXor4:
-- Mass Effect 3
-- Mass Effect III
-https://www.youtube.com/watch?v=IDUGJ22OWLE:
-- Front Mission 1st
-https://www.youtube.com/watch?v=IE3FTu_ppko:
-- Final Fantasy VII
-- Final Fantasy 7
-https://www.youtube.com/watch?v=IEMaS33Wcd8:
-- Shovel Knight
-https://www.youtube.com/watch?v=IEf1ALD_TCA:
-- Bully
-https://www.youtube.com/watch?v=IQDiMzoTMH4:
-- 'World of Warcraft: Wrath of the Lich King'
-https://www.youtube.com/watch?v=IS-bZp4WW4w:
-- Crusader of Centy
-https://www.youtube.com/watch?v=ITQVlvGsSDA:
-- Donkey Kong Country 2
-- Donkey Kong Country II
-https://www.youtube.com/watch?v=ITijTBoqJpc:
-- 'Final Fantasy Fables: Chocobo''s Dungeon'
-https://www.youtube.com/watch?v=IUAZtA-hHsw:
-- SaGa Frontier II
-- SaGa Frontier 2
-https://www.youtube.com/watch?v=IVCQ-kau7gs:
-- Shatterhand
-https://www.youtube.com/watch?v=IWoCTYqBOIE:
-- Final Fantasy X
-- Final Fantasy 10
-https://www.youtube.com/watch?v=IXU7Jhi6jZ8:
-- Wild Arms 5
-- Wild Arms V
-https://www.youtube.com/watch?v=IY7hfsfPh84:
-- Radiata Stories
-https://www.youtube.com/watch?v=IYGLnkSrA50:
-- Super Paper Mario
-https://www.youtube.com/watch?v=Ia1BEcALLX0:
-- Radiata Stories
-https://www.youtube.com/watch?v=IbBmFShDBzs:
-- Secret of Mana
-https://www.youtube.com/watch?v=Ie1zB5PHwEw:
-- Contra
-https://www.youtube.com/watch?v=IgPtGSdLliQ:
-- Chrono Trigger
-https://www.youtube.com/watch?v=IjZaRBbmVUc:
-- Bastion
-https://www.youtube.com/watch?v=ImdjNeH310w:
-- Ragnarok Online II
-- Ragnarok Online 2
-https://www.youtube.com/watch?v=IrLs8cW3sIc:
-- 'The Legend of Zelda: Wind Waker'
-- wind waker
-https://www.youtube.com/watch?v=Ir_3DdPZeSg:
-- 'Far Cry 3: Blood Dragon'
-- 'Far Cry III: Blood Dragon'
-https://www.youtube.com/watch?v=Is_yOYLMlHY:
-- "We \xE2\u2122\xA5 Katamari"
-https://www.youtube.com/watch?v=Iss6CCi3zNk:
-- Earthbound
-https://www.youtube.com/watch?v=Iu4MCoIyV94:
-- Motorhead
-https://www.youtube.com/watch?v=IwIt4zlHSWM:
-- Donkey Kong Country 3
-- Donkey Kong Country III
-https://www.youtube.com/watch?v=IyAs15CjGXU:
-- Super Mario Galaxy 2
-- Super Mario Galaxy II
-https://www.youtube.com/watch?v=J-zD9QjtRNo:
-- 'Paper Mario: The Thousand Year Door'
-https://www.youtube.com/watch?v=J1x1Ao6CxyA:
-- Double Dragon II
-- Double Dragon 2
-https://www.youtube.com/watch?v=J323aFuwx64:
-- Super Mario Bros 3
-- Super Mario Bros III
-https://www.youtube.com/watch?v=J4EE4hRA9eU:
-- Lost Odyssey
-https://www.youtube.com/watch?v=J67nkzoJ_2M:
-- Donkey Kong Country 2
-- Donkey Kong Country II
-https://www.youtube.com/watch?v=J6Beh5YUWdI:
-- Wario World
-https://www.youtube.com/watch?v=JA_VeKxyfiU:
-- Golden Sun
-https://www.youtube.com/watch?v=JCqSHvyY_2I:
-- Secret of Evermore
-https://www.youtube.com/watch?v=JE1hhd0E-_I:
-- Lufia II
-- Lufia 2
-https://www.youtube.com/watch?v=JF7ucc5IH_Y:
-- Mass Effect
-https://www.youtube.com/watch?v=JFadABMZnYM:
-- Ragnarok Online
-https://www.youtube.com/watch?v=JGQ_Z0W43D4:
-- Secret of Evermore
-https://www.youtube.com/watch?v=JHrGsxoZumY:
-- Soukaigi
-https://www.youtube.com/watch?v=JKVUavdztAg:
-- Shovel Knight
-https://www.youtube.com/watch?v=JOFsATsPiH0:
-- Deus Ex
-https://www.youtube.com/watch?v=JRKOBmaENoE:
-- Spanky's Quest
-https://www.youtube.com/watch?v=JS8vCLXX5Pg:
-- Panzer Dragoon Saga
-https://www.youtube.com/watch?v=JV8qMsWKTvk:
-- Legaia 2
-- Legaia II
-https://www.youtube.com/watch?v=JWMtsksJtYw:
-- Kingdom Hearts
-https://www.youtube.com/watch?v=JXtWCWeM6uI:
-- Animal Crossing
-https://www.youtube.com/watch?v=J_cTMwAZil0:
-- Wild Arms 4
-- Wild Arms IV
-https://www.youtube.com/watch?v=Jb83GX7k_08:
-- Shadow of the Colossus
-https://www.youtube.com/watch?v=Je3YoGKPC_o:
-- Grandia II
-- Grandia 2
-https://www.youtube.com/watch?v=Jg5M1meS6wI:
-- Metal Gear Solid
-https://www.youtube.com/watch?v=JgGPRcUgGNk:
-- Ace Combat 6
-- Ace Combat VI
-https://www.youtube.com/watch?v=Jgm24MNQigg:
-- Parasite Eve II
-- Parasite Eve 2
-https://www.youtube.com/watch?v=JhDblgtqx5o:
-- Arumana no Kiseki
-https://www.youtube.com/watch?v=Jig-PUAk-l0:
-- Final Fantasy Adventure
-https://www.youtube.com/watch?v=JkEt-a3ro1U:
-- Final Fantasy Adventure
-https://www.youtube.com/watch?v=JlGnZvt5OBE:
-- Ittle Dew
-https://www.youtube.com/watch?v=Jokz0rBmE7M:
-- ZombiU
-https://www.youtube.com/watch?v=Jq949CcPxnM:
-- Super Valis IV
-- Super Valis 4
-https://www.youtube.com/watch?v=JrlGy3ozlDA:
-- Deep Fear
-https://www.youtube.com/watch?v=JsjTpjxb9XU:
-- Seiken Densetsu 3
-- Seiken Densetsu III
-https://www.youtube.com/watch?v=JvGhaOX-aOo:
-- Mega Man & Bass
-- mega man and bass
-https://www.youtube.com/watch?v=JvMsfqT9KB8:
-- Hotline Miami
-https://www.youtube.com/watch?v=JwSV7nP5wcs:
-- Skies of Arcadia
-https://www.youtube.com/watch?v=JxhYFSN_xQY:
-- Musashi Samurai Legend
-https://www.youtube.com/watch?v=Jz2sxbuN3gM:
-- 'Moon: Remix RPG Adventure'
-https://www.youtube.com/watch?v=JzPKClyQ1rQ:
-- Persona 3 Portable
-- Persona III Portable
-https://www.youtube.com/watch?v=K2fx7bngK80:
-- Thumper
-https://www.youtube.com/watch?v=K5AOu1d79WA:
-- 'Ecco the Dolphin: Defender of the Future'
-https://www.youtube.com/watch?v=KAHuWEfue8U:
-- Wild Arms 3
-- Wild Arms III
-https://www.youtube.com/watch?v=KB0Yxdtig90:
-- 'Hitman 2: Silent Assassin'
-- 'Hitman II: Silent Assassin'
-https://www.youtube.com/watch?v=KDVUlqp8aFM:
-- Earthworm Jim
-https://www.youtube.com/watch?v=KI6ZwWinXNM:
-- 'Digimon Story: Cyber Sleuth'
-https://www.youtube.com/watch?v=KTHBvQKkibA:
-- The 7th Saga
-https://www.youtube.com/watch?v=KULCV3TgyQk:
-- Breath of Fire
-https://www.youtube.com/watch?v=KWH19AGkFT0:
-- Dark Cloud
-https://www.youtube.com/watch?v=KWIbZ_4k3lE:
-- Final Fantasy III
-- Final Fantasy 3
-https://www.youtube.com/watch?v=KWRoyFQ1Sj4:
-- Persona 5
-- Persona V
-https://www.youtube.com/watch?v=KX57tzysYQc:
-- Metal Gear 2
-- Metal Gear II
-https://www.youtube.com/watch?v=KYfK61zxads:
-- Angry Video Game Nerd Adventures
-https://www.youtube.com/watch?v=KZA1PegcwIg:
-- Goldeneye
-https://www.youtube.com/watch?v=KZyPC4VPWCY:
-- Final Fantasy VIII
-- Final Fantasy 8
-https://www.youtube.com/watch?v=K_jigRSuN-g:
-- MediEvil
-https://www.youtube.com/watch?v=Kc7UynA9WVk:
-- Final Fantasy VIII
-- Final Fantasy 8
-https://www.youtube.com/watch?v=KgCLAXQow3w:
-- Ghouls 'n' Ghosts
-https://www.youtube.com/watch?v=KiGfjOLF_j0:
-- Earthbound
-https://www.youtube.com/watch?v=Kk0QDbYvtAQ:
-- Arcana
-https://www.youtube.com/watch?v=Km-cCxquP-s:
-- Yoshi's Island
-https://www.youtube.com/watch?v=KnTyM5OmRAM:
-- 'Mario & Luigi: Partners in Time'
-- 'mario and luigi: partners in time'
-https://www.youtube.com/watch?v=KnoUxId8yUQ:
-- Jak & Daxter
-- jak and daxter
-https://www.youtube.com/watch?v=KoPF_wOrQ6A:
-- 'Tales from Space: Mutant Blobs Attack'
-https://www.youtube.com/watch?v=Kr5mloai1B0:
-- 'Shadow Hearts II: Covenant'
-- 'Shadow Hearts 2: Covenant'
-https://www.youtube.com/watch?v=KrvdivSD98k:
-- Sonic the Hedgehog 3
-- Sonic the Hedgehog III
-https://www.youtube.com/watch?v=Ks9ZCaUNKx4:
-- Quake II
-- Quake 2
-https://www.youtube.com/watch?v=L5t48bbzRDs:
-- Xenosaga II
-- Xenosaga 2
-https://www.youtube.com/watch?v=L8TEsGhBOfI:
-- The Binding of Isaac
-https://www.youtube.com/watch?v=L9Uft-9CV4g:
-- Final Fantasy IX
-- Final Fantasy 9
-https://www.youtube.com/watch?v=L9e6Pye7p5A:
-- Mystical Ninja Starring Goemon
-https://www.youtube.com/watch?v=LAHKscXvt3Q:
-- Space Harrier
-https://www.youtube.com/watch?v=LD4OAYQx1-I:
-- Metal Gear Solid 4
-- Metal Gear Solid IV
-https://www.youtube.com/watch?v=LDvKwSVuUGA:
-- Donkey Kong Country
-https://www.youtube.com/watch?v=LGLW3qgiiB8:
-- "We \xE2\u2122\xA5 Katamari"
-https://www.youtube.com/watch?v=LPO5yrMSMEw:
-- Ridge Racers
-https://www.youtube.com/watch?v=LQ0uDk5i_s0:
-- Xenoblade Chronicles
-https://www.youtube.com/watch?v=LQxlUTTrKWE:
-- 'Assassin''s Creed III: The Tyranny of King Washington'
-- 'Assassin''s Creed 3: The Tyranny of King Washington'
-https://www.youtube.com/watch?v=LSFho-sCOp0:
-- Grandia
-https://www.youtube.com/watch?v=LScvuN6-ZWo:
-- Battletoads & Double Dragon
-- battletoads
-- double dragon
-https://www.youtube.com/watch?v=LSfbb3WHClE:
-- No More Heroes
-https://www.youtube.com/watch?v=LTWbJDROe7A:
-- Xenoblade Chronicles X
-- Xenoblade Chronicles 10
-https://www.youtube.com/watch?v=LUjxPj3al5U:
-- Blue Dragon
-https://www.youtube.com/watch?v=LXuXWMV2hW4:
-- Metroid AM2R
-https://www.youtube.com/watch?v=LYiwMd5y78E:
-- 'Shadow Hearts II: Covenant'
-- 'Shadow Hearts 2: Covenant'
-https://www.youtube.com/watch?v=LcFX7lFjfqA:
-- Shin Megami Tensei IV
-- Shin Megami Tensei 4
-https://www.youtube.com/watch?v=LdIlCX2iOa0:
-- Antichamber
-https://www.youtube.com/watch?v=Lj8ouSLvqzU:
-- Megalomachia 2
-- Megalomachia II
-https://www.youtube.com/watch?v=LkRfePyfoj4:
-- Senko no Ronde (Wartech)
-- wartech
-- senko no ronde
-https://www.youtube.com/watch?v=LlokRNcURKM:
-- The Smurfs' Nightmare
-https://www.youtube.com/watch?v=LpO2ar64UGE:
-- Mega Man 9
-- Mega Man IX
-https://www.youtube.com/watch?v=LpxUHj-a_UI:
-- Michael Jackson's Moonwalker
-https://www.youtube.com/watch?v=Luko2A5gNpk:
-- Metroid Prime
-https://www.youtube.com/watch?v=Lx906iVIZSE:
-- 'Diablo III: Reaper of Souls'
-- 'Diablo 3: Reaper of Souls'
-https://www.youtube.com/watch?v=M16kCIMiNyc:
-- 'Lisa: The Painful RPG'
-https://www.youtube.com/watch?v=M3FytW43iOI:
-- Fez
-https://www.youtube.com/watch?v=M3Wux3163kI:
-- 'Castlevania: Dracula X' 
-https://www.youtube.com/watch?v=M4FN0sBxFoE:
-- Arc the Lad
-https://www.youtube.com/watch?v=M4XYQ8YfVdo:
-- Rollercoaster Tycoon 3
-- Rollercoaster Tycoon III
-https://www.youtube.com/watch?v=MCITsL-vfW8:
-- Miitopia
-https://www.youtube.com/watch?v=MH00uDOwD28:
-- Portal 2
-- Portal II
-https://www.youtube.com/watch?v=MK41-UzpQLk:
-- Star Fox 64
-https://www.youtube.com/watch?v=ML-kTPHnwKI:
-- Metroid
-https://www.youtube.com/watch?v=MLFX_CIsvS8:
-- Final Fantasy Adventure
-https://www.youtube.com/watch?v=MPvQoxXUQok:
-- Final Fantasy Tactics
-https://www.youtube.com/watch?v=MTThoxoAVoI:
-- NieR
-https://www.youtube.com/watch?v=MYNeu0cZ3NE:
-- Silent Hill
-https://www.youtube.com/watch?v=M_B1DJu8FlQ:
-- Super Mario Odyssey
-https://www.youtube.com/watch?v=MaiHaXRYtNQ:
-- Tales of Vesperia
-https://www.youtube.com/watch?v=MbkMki62A4o:
-- Gran Turismo 5
-- Gran Turismo V
-https://www.youtube.com/watch?v=Mea-D-VFzck:
-- 'Castlevania: Dawn of Sorrow'
-https://www.youtube.com/watch?v=MffE4TpsHto:
-- Assassin's Creed II
-- Assassin's Creed 2
-https://www.youtube.com/watch?v=MfsFZsPiw3M:
-- Grandia
-https://www.youtube.com/watch?v=Mg236zrHA40:
-- Dragon Quest VIII
-- Dragon Quest 8
-https://www.youtube.com/watch?v=MhjEEbyuJME:
-- Xenogears
-https://www.youtube.com/watch?v=MjeghICMVDY:
-- Ape Escape 3
-- Ape Escape III
-https://www.youtube.com/watch?v=MkKh-oP7DBQ:
-- Waterworld
-https://www.youtube.com/watch?v=MlRGotA3Yzs:
-- Mega Man 4
-- Mega Man IV
-https://www.youtube.com/watch?v=MlhPnFjCfwc:
-- Blue Stinger
-https://www.youtube.com/watch?v=Mn3HPClpZ6Q:
-- 'Vampire The Masquerade: Bloodlines'
-https://www.youtube.com/watch?v=Mobwl45u2J8:
-- Emil Chronicle Online
-https://www.youtube.com/watch?v=MowlJduEbgY:
-- Ori and the Blind Forest
-https://www.youtube.com/watch?v=MqK5MvPwPsE:
-- Hotline Miami
-https://www.youtube.com/watch?v=MthR2dXqWHI:
-- Super Mario RPG
-https://www.youtube.com/watch?v=MvJUxw8rbPA:
-- 'The Elder Scrolls III: Morrowind'
-- 'The Elder Scrolls 3: Morrowind'
-- Morrowind
-https://www.youtube.com/watch?v=MxShFnOgCnk:
-- Soma Bringer
-https://www.youtube.com/watch?v=MxyCk1mToY4:
-- Koudelka
-https://www.youtube.com/watch?v=N-BiX7QXE8k:
-- Shin  Megami Tensei Nocturne
-https://www.youtube.com/watch?v=N-T8KwCCNh8:
-- Advance Wars DS
-https://www.youtube.com/watch?v=N1EyCv65yOI:
-- 'Qbeh-1: The Atlas Cube'
-- 'Qbeh-I: The Atlas Cube'
-https://www.youtube.com/watch?v=N1lp6YLpT_o:
-- Tribes 2
-- Tribes II
-https://www.youtube.com/watch?v=N2_yNExicyI:
-- 'Castlevania: Curse of Darkness'
-https://www.youtube.com/watch?v=N46rEikk4bw:
-- Ecco the Dolphin (Sega CD)
-- Ecco the Dolphin
-https://www.youtube.com/watch?v=N4V4OxH1d9Q:
-- Final Fantasy IX
-- Final Fantasy 9
-https://www.youtube.com/watch?v=N6hzEQyU6QM:
-- Grounseed
-https://www.youtube.com/watch?v=N74vegXRMNk:
-- Bayonetta
-https://www.youtube.com/watch?v=NAyXKITCss8:
-- Forza Motorsport 4
-- Forza Motorsport IV
-https://www.youtube.com/watch?v=NFsvEFkZHoE:
-- Kingdom Hearts
-https://www.youtube.com/watch?v=NGJp1-tPT54:
-- OutRun2
-https://www.youtube.com/watch?v=NL0AZ-oAraw:
-- Terranigma
-https://www.youtube.com/watch?v=NOomtJrX_MA:
-- Western Lords
-https://www.youtube.com/watch?v=NP3EK1Kr1sQ:
-- Dr. Mario
-https://www.youtube.com/watch?v=NRNHbaF_bvY:
-- Kingdom Hearts
-https://www.youtube.com/watch?v=NT-c2ZeOpsg:
-- Sonic Unleashed
-https://www.youtube.com/watch?v=NTfVsOnX0lY:
-- Rayman
-https://www.youtube.com/watch?v=NUloEiKpAZU:
-- Goldeneye
-https://www.youtube.com/watch?v=NVRgpAmkmPg:
-- Resident Evil 4
-- Resident Evil IV
-https://www.youtube.com/watch?v=NXr5V6umW6U:
-- Opoona
-https://www.youtube.com/watch?v=NZVZC4x9AzA:
-- Final Fantasy IV
-- Final Fantasy 4
-https://www.youtube.com/watch?v=NcjcKZnJqAA:
-- 'The Legend of Zelda: Minish Cap'
-- minish cap
-https://www.youtube.com/watch?v=Nd2O6mbhCLU:
-- Mega Man 5
-- Mega Man V
-https://www.youtube.com/watch?v=NgKT8GTKhYU:
-- 'Final Fantasy XI: Wings of the Goddess'
-- 'Final Fantasy 11: Wings of the Goddess'
-https://www.youtube.com/watch?v=Nhj0Rct8v48:
-- The Wonderful 101
-- The Wonderful CI
-https://www.youtube.com/watch?v=NjG2ZjPqzzE:
-- Journey to Silius
-https://www.youtube.com/watch?v=NjmUCbNk65o:
-- Donkey Kong Country 3
-- Donkey Kong Country III
-https://www.youtube.com/watch?v=NkonFpRLGTU:
-- Transistor
-https://www.youtube.com/watch?v=NlsRts7Sims:
-- 'Shadow Hearts II: Covenant'
-- 'Shadow Hearts 2: Covenant'
-https://www.youtube.com/watch?v=Nn5K-NNmgTM:
-- Chrono Trigger
-https://www.youtube.com/watch?v=NnZlRu28fcU:
-- Etrian Odyssey
-https://www.youtube.com/watch?v=NnvD6RDF-SI:
-- Chibi-Robo
-https://www.youtube.com/watch?v=NnvZ6Dqv7Ws:
-- Final Fantasy VI
-- Final Fantasy 6
-https://www.youtube.com/watch?v=Nr2McZBfSmc:
-- Uninvited
-https://www.youtube.com/watch?v=NtRlpjt5ItA:
-- Lone Survivor
-https://www.youtube.com/watch?v=NtXv9yFZI_Y:
-- Earthbound
-https://www.youtube.com/watch?v=Nu91ToSI4MU:
-- Breath of Death VII
-- Breath of Death 7
-https://www.youtube.com/watch?v=NuSPcCqiCZo:
-- Pilotwings 64
-https://www.youtube.com/watch?v=Nw5cfSRvFSA:
-- Super Meat Boy
-https://www.youtube.com/watch?v=Nw7bbb1mNHo:
-- NeoTokyo
-https://www.youtube.com/watch?v=NxWGa33zC8w:
-- Alien Breed
-https://www.youtube.com/watch?v=O-v3Df_q5QQ:
-- Star Fox Adventures
-https://www.youtube.com/watch?v=O0fQlDmSSvY:
-- Opoona
-https://www.youtube.com/watch?v=O0kjybFXyxM:
-- Final Fantasy X-2
-- Final Fantasy 10-2
-- Final Fantasy X-II
-https://www.youtube.com/watch?v=O0rVK4H0-Eo:
-- Legaia 2
-- Legaia II
-https://www.youtube.com/watch?v=O1Ysg-0v7aQ:
-- Tekken 2
-- Tekken II
-https://www.youtube.com/watch?v=O5a4jwv-jPo:
-- Teenage Mutant Ninja Turtles
-https://www.youtube.com/watch?v=O8jJJXgNLo4:
-- Diablo I & II
-- Diablo 1 & 2
-- diablo 1
-- diablo 2
-- diablo I
-- diablo II
-https://www.youtube.com/watch?v=OB9t0q4kkEE:
-- Katamari Damacy
-https://www.youtube.com/watch?v=OCFWEWW9tAo:
-- SimCity
-https://www.youtube.com/watch?v=OD49e9J3qbw:
-- 'Resident Evil: Revelations'
-https://www.youtube.com/watch?v=ODjYdlmwf1E:
-- 'The Binding of Isaac: Rebirth'
-https://www.youtube.com/watch?v=OIsI5kUyLcI:
-- Super Mario Maker
-https://www.youtube.com/watch?v=OJjsUitjhmU:
-- 'Chuck Rock II: Son of Chuck'
-- 'Chuck Rock 2: Son of Chuck'
-https://www.youtube.com/watch?v=OMsJdryIOQU:
-- Xenoblade Chronicles
-https://www.youtube.com/watch?v=OUmeK282f-E:
-- 'Silent Hill 4: The Room'
-- 'Silent Hill IV: The Room'
-https://www.youtube.com/watch?v=OViAthHme2o:
-- The Binding of Isaac
-https://www.youtube.com/watch?v=OWQ4bzYMbNQ:
-- Devil May Cry 3
-- Devil May Cry III
-https://www.youtube.com/watch?v=OXHIuTm-w2o:
-- Super Mario RPG
-https://www.youtube.com/watch?v=OXWqqshHuYs:
-- La-Mulana
-https://www.youtube.com/watch?v=OXqxg3FpuDA:
-- Ollie King
-https://www.youtube.com/watch?v=OYr-B_KWM50:
-- Mega Man 3
-- Mega Man III
-https://www.youtube.com/watch?v=OZLXcCe7GgA:
-- Ninja Gaiden
-https://www.youtube.com/watch?v=Oam7ttk5RzA:
-- Final Fantasy IX
-- Final Fantasy 9
-https://www.youtube.com/watch?v=OegoI_0vduQ:
-- Mystical Ninja Starring Goemon
-https://www.youtube.com/watch?v=OjRNSYsddz0:
-- Yo-Kai Watch
-https://www.youtube.com/watch?v=Ol9Ine1TkEk:
-- Dark Souls
-https://www.youtube.com/watch?v=OmMWlRu6pbM:
-- 'Call of Duty: Black Ops II'
-- 'Call of Duty: Black Ops 2'
-- black ops 2
-https://www.youtube.com/watch?v=On1N8hL95Xw:
-- Final Fantasy VI
-- Final Fantasy 6
-https://www.youtube.com/watch?v=Op2h7kmJw10:
-- 'Castlevania: Dracula X' 
-https://www.youtube.com/watch?v=OpvLr9vyOhQ:
-- Undertale
-https://www.youtube.com/watch?v=OqXhJ_eZaPI:
-- Breath of Fire III
-- Breath of Fire 3
-https://www.youtube.com/watch?v=Os2q1_PkgzY:
-- Super Adventure Island
-https://www.youtube.com/watch?v=Ou0WU5p5XkI:
-- 'Atelier Iris 3: Grand Phantasm'
-- 'Atelier Iris III: Grand Phantasm'
-https://www.youtube.com/watch?v=Ovn18xiJIKY:
-- Dragon Quest VI
-- Dragon Quest 6
-https://www.youtube.com/watch?v=OzbSP7ycMPM:
-- Yoshi's Island
-https://www.youtube.com/watch?v=P01-ckCZtCo:
-- Wild Arms 5
-- Wild Arms V
-https://www.youtube.com/watch?v=P1IBUrLte2w:
-- Earthbound 64
-https://www.youtube.com/watch?v=P2smOsHacjk:
-- The Magical Land of Wozz
-https://www.youtube.com/watch?v=P3FU2NOzUEU:
-- Paladin's Quest
-https://www.youtube.com/watch?v=P3oYGDwIKbc:
-- The Binding of Isaac
-https://www.youtube.com/watch?v=P3vzN5sizXk:
-- Seiken Densetsu 3
-- Seiken Densetsu III
-https://www.youtube.com/watch?v=P7K7jzxf6iw:
-- Legend of Legaia
-https://www.youtube.com/watch?v=P8oefrmJrWk:
-- Metroid Prime
-https://www.youtube.com/watch?v=P9OdKnQQchQ:
-- 'The Elder Scrolls IV: Oblivion'
-- 'The Elder Scrolls 4: Oblivion'
-- Oblivion
-https://www.youtube.com/watch?v=PAU7aZ_Pz4c:
-- Heimdall 2
-- Heimdall II
-https://www.youtube.com/watch?v=PAuFr7PZtGg:
-- Tales of Legendia
-https://www.youtube.com/watch?v=PFQCO_q6kW8:
-- Donkey Kong 64
-https://www.youtube.com/watch?v=PGowEQXyi3Y:
-- Donkey Kong Country 2
-- Donkey Kong Country II
-https://www.youtube.com/watch?v=PKno6qPQEJg:
-- Blaster Master
-https://www.youtube.com/watch?v=PMKc5Ffynzw:
-- 'Kid Icarus: Uprising'
-https://www.youtube.com/watch?v=POAGsegLMnA:
-- Super Mario Land
-https://www.youtube.com/watch?v=PQjOIZTv8I4:
-- Super Street Fighter II Turbo
-- Super Street Fighter 2 Turbo
-https://www.youtube.com/watch?v=PRCBxcvNApQ:
-- Glover
-https://www.youtube.com/watch?v=PRLWoJBwJFY:
-- World of Warcraft
-https://www.youtube.com/watch?v=PUZ8r9MJczQ:
-- 'Castlevania: Portrait of Ruin'
-https://www.youtube.com/watch?v=PXqJEm-vm-w:
-- Tales of Vesperia
-https://www.youtube.com/watch?v=PZBltehhkog:
-- 'MediEvil: Resurrection'
-https://www.youtube.com/watch?v=PZnF6rVTgQE:
-- Dragon Quest VII
-- Dragon Quest 7
-https://www.youtube.com/watch?v=PZwTdBbDmB8:
-- Mother
-https://www.youtube.com/watch?v=Pc3GfVHluvE:
-- Baten Kaitos
-https://www.youtube.com/watch?v=PfY_O8NPhkg:
-- 'Bravely Default: Flying Fairy'
-https://www.youtube.com/watch?v=PhW7tlUisEU:
-- Grandia II
-- Grandia 2
-https://www.youtube.com/watch?v=Pjdvqy1UGlI:
-- Final Fantasy VIII
-- Final Fantasy 8
-https://www.youtube.com/watch?v=PjlkqeMdZzU:
-- Paladin's Quest II
-- Paladin's Quest 2
-https://www.youtube.com/watch?v=PkKXW2-3wvg:
-- Final Fantasy VI
-- Final Fantasy 6
-https://www.youtube.com/watch?v=Pmn-r3zx-E0:
-- Katamari Damacy
-https://www.youtube.com/watch?v=Poh9VDGhLNA:
-- Final Fantasy VII
-- Final Fantasy 7
-https://www.youtube.com/watch?v=PqvQvt3ePyg:
-- Live a Live
-https://www.youtube.com/watch?v=PwEzeoxbHMQ:
-- Donkey Kong Country 3
-- Donkey Kong Country III
-https://www.youtube.com/watch?v=PwlvY_SeUQU:
-- Starcraft
-https://www.youtube.com/watch?v=PyubBPi9Oi0:
-- Pokemon
-https://www.youtube.com/watch?v=PzkbuitZEjE:
-- Ragnarok Online
-https://www.youtube.com/watch?v=Q1TnrjE909c:
-- 'Lunar: Dragon Song'
-https://www.youtube.com/watch?v=Q27un903ps0:
-- F-Zero GX
-https://www.youtube.com/watch?v=Q3Vci9ri4yM:
-- Cyborg 009
-https://www.youtube.com/watch?v=Q7a0piUG3jM:
-- Dragon Ball Z Butouden 2
-- Dragon Ball Z Butouden II
-https://www.youtube.com/watch?v=QD30b0MwpQw:
-- Shatter
-https://www.youtube.com/watch?v=QGgK5kQkLUE:
-- Kingdom Hearts
-https://www.youtube.com/watch?v=QHStTXLP7II:
-- Breath of Fire IV
-- Breath of Fire 4
-https://www.youtube.com/watch?v=QLsVsiWgTMo:
-- 'Mario Kart: Double Dash!!'
-https://www.youtube.com/watch?v=QN1wbetaaTk:
-- Kirby & The Rainbow Curse
-- kirby and the rainbow curse
-https://www.youtube.com/watch?v=QNd4WYmj9WI:
-- 'World of Warcraft: Wrath of the Lich King'
-https://www.youtube.com/watch?v=QOKl7-it2HY:
-- Silent Hill
-https://www.youtube.com/watch?v=QR5xn8fA76Y:
-- Terranigma
-https://www.youtube.com/watch?v=QTwpZhWtQus:
-- 'The Elder Scrolls IV: Oblivion'
-- 'The Elder Scrolls 4: Oblivion'
-- Oblivion
-https://www.youtube.com/watch?v=QXd1P54rIzQ:
-- Secret of Evermore
-https://www.youtube.com/watch?v=QYnrEDKTB-k:
-- The Guardian Legend
-https://www.youtube.com/watch?v=QZiTBVot5xE:
-- Legaia 2
-- Legaia II
-https://www.youtube.com/watch?v=QaE0HHN4c30:
-- Halo
-https://www.youtube.com/watch?v=QdLD2Wop_3k:
-- Super Paper Mario
-https://www.youtube.com/watch?v=QiX-xWrkNZs:
-- Machinarium
-https://www.youtube.com/watch?v=QkgA1qgTsdQ:
-- Contact
-https://www.youtube.com/watch?v=Ql-Ud6w54wc:
-- Final Fantasy VIII
-- Final Fantasy 8
-https://www.youtube.com/watch?v=Qnz_S0QgaLA:
-- Deus Ex
-https://www.youtube.com/watch?v=QqN7bKgYWI0:
-- Suikoden
-https://www.youtube.com/watch?v=QtW1BBAufvM:
-- Super Mario Galaxy 2
-- Super Mario Galaxy II
-https://www.youtube.com/watch?v=QuSSx8dmAXQ:
-- Gran Turismo 4
-- Gran Turismo IV
-https://www.youtube.com/watch?v=Qv_8KiUsRTE:
-- Golden Sun
-https://www.youtube.com/watch?v=R1DRTdnR0qU:
-- Chrono Trigger
-https://www.youtube.com/watch?v=R2yEBE2ueuQ:
-- Breath of Fire
-https://www.youtube.com/watch?v=R3gmQcMK_zg:
-- Ragnarok Online
-https://www.youtube.com/watch?v=R5BZKMlqbPI:
-- Castlevania Curse of Darkness
-https://www.youtube.com/watch?v=R6BoWeWh2Fg:
-- 'Cladun: This is an RPG'
-https://www.youtube.com/watch?v=R6tANRv2YxA:
-- FantaVision (North America)
-- FantaVision
-https://www.youtube.com/watch?v=R6us0FiZoTU:
-- Final Fantasy Mystic Quest
-https://www.youtube.com/watch?v=R9rnsbf914c:
-- Lethal League
-https://www.youtube.com/watch?v=RAevlv9Y1ao:
-- Tales of Symphonia
-https://www.youtube.com/watch?v=RBKbYPqJNOw:
-- Wii Shop Channel
-https://www.youtube.com/watch?v=RBslMKpPu1M:
-- 'Donkey Kong Country: Tropical Freeze'
-https://www.youtube.com/watch?v=RBxWlVGd9zE:
-- Wild Arms 2
-- Wild Arms II
-https://www.youtube.com/watch?v=RHiQZ7tXSlw:
-- Radiant Silvergun
-https://www.youtube.com/watch?v=RKm11Z6Btbg:
-- Daytona USA
-https://www.youtube.com/watch?v=RNkUpb36KhQ:
-- Titan Souls
-https://www.youtube.com/watch?v=ROKcr2OTgws:
-- Chrono Cross
-https://www.youtube.com/watch?v=RO_FVqiEtDY:
-- Super Paper Mario
-https://www.youtube.com/watch?v=RP5DzEkA0l8:
-- Machinarium
-https://www.youtube.com/watch?v=RSlUnXWm9hM:
-- NeoTokyo
-https://www.youtube.com/watch?v=RSm22cu707w:
-- Donkey Kong Country 2
-- Donkey Kong Country II
-https://www.youtube.com/watch?v=RVBoUZgRG68:
-- Super Paper Mario
-https://www.youtube.com/watch?v=RXZ2gTXDwEc:
-- Donkey Kong Country 3
-- Donkey Kong Country III
-https://www.youtube.com/watch?v=Rj9bp-bp-TA:
-- Grow Home
-https://www.youtube.com/watch?v=RkDusZ10M4c:
-- Mother 3
-- Mother III
-https://www.youtube.com/watch?v=Roj5F9QZEpU:
-- 'Momodora: Reverie Under the Moonlight'
-https://www.youtube.com/watch?v=RpQlfTGfEsw:
-- Sonic CD
-- Sonic 400
-https://www.youtube.com/watch?v=RqqbUR7YxUw:
-- Pushmo
-https://www.youtube.com/watch?v=Rs2y4Nqku2o:
-- Chrono Cross
-https://www.youtube.com/watch?v=Ru7_ew8X6i4:
-- 'Paper Mario: The Thousand Year Door'
-https://www.youtube.com/watch?v=Rv7-G28CPFI:
-- Castlevania Curse of Darkness
-https://www.youtube.com/watch?v=RxcQY1OUzzY:
-- Xenoblade Chronicles
-https://www.youtube.com/watch?v=RyQAZcBim88:
-- Ape Escape 3
-- Ape Escape III
-https://www.youtube.com/watch?v=RypdLW4G1Ng:
-- Hot Rod
-https://www.youtube.com/watch?v=S-vNB8mR1B4:
-- Sword of Mana
-https://www.youtube.com/watch?v=S0TmwLeUuBw:
-- God Hand
-https://www.youtube.com/watch?v=S3k1zdbBhRQ:
-- Donkey Kong Land
-https://www.youtube.com/watch?v=S87W-Rnag1E:
-- 'The Legend of Zelda: Twilight Princess'
-- twilight princess
-https://www.youtube.com/watch?v=SA7NfjCWbZU:
-- Treasure Hunter G
-https://www.youtube.com/watch?v=SAWxsyvWcqs:
-- Super Mario Galaxy 2
-- Super Mario Galaxy II
-https://www.youtube.com/watch?v=SCdUSkq_imI:
-- Super Mario 64
-https://www.youtube.com/watch?v=SDUUpUB1eu8:
-- Super Princess Peach
-https://www.youtube.com/watch?v=SE4FuK4MHJs:
-- Final Fantasy VIII
-- Final Fantasy 8
-https://www.youtube.com/watch?v=SFCn8IpgiLY:
-- Solstice
-https://www.youtube.com/watch?v=SKtO8AZLp2I:
-- Wild Arms 5
-- Wild Arms V
-https://www.youtube.com/watch?v=SNYFdankntY:
-- Mario Kart 64
-https://www.youtube.com/watch?v=SOAsm2UqIIM:
-- Cuphead
-https://www.youtube.com/watch?v=SPBIT_SSzmI:
-- Mario Party
-https://www.youtube.com/watch?v=SXQsmY_Px8Q:
-- Guardian of Paradise
-https://www.youtube.com/watch?v=SYp2ic7v4FU:
-- Rise of the Triad (2013)
-- Rise of the Triad
-https://www.youtube.com/watch?v=SawlCRnYYC8:
-- Eek! The Cat
-https://www.youtube.com/watch?v=Se-9zpPonwM:
-- Shatter
-https://www.youtube.com/watch?v=SeYZ8Bjo7tw:
-- Final Fantasy VIII
-- Final Fantasy 8
-https://www.youtube.com/watch?v=Sht8cKbdf_g:
-- Donkey Kong Country
-https://www.youtube.com/watch?v=Sime7JZrTl0:
-- Castlevania
-https://www.youtube.com/watch?v=SjEwSzmSNVo:
-- Shenmue II
-- Shenmue 2
-https://www.youtube.com/watch?v=Sp7xqhunH88:
-- Waterworld
-https://www.youtube.com/watch?v=SqWu2wRA-Rk:
-- Battle Squadron
-https://www.youtube.com/watch?v=SrINCHeDeGI:
-- Luigi's Mansion
-https://www.youtube.com/watch?v=SsFYXts6EeE:
-- Ar Tonelico
-https://www.youtube.com/watch?v=Su5Z-NHGXLc:
-- 'Lunar: Eternal Blue'
-https://www.youtube.com/watch?v=SuI_RSHfLIk:
-- Guardian's Crusade
-https://www.youtube.com/watch?v=SvCIrLZ8hkI:
-- The Walking Dead
-https://www.youtube.com/watch?v=Sw9BfnRv8Ik:
-- 'Dreamfall: The Longest Journey'
-https://www.youtube.com/watch?v=SwVfsXvFbno:
-- 'The Legend of Zelda: Ocarina of Time'
-- ocarina of time
-https://www.youtube.com/watch?v=SzksdwLmxmY:
-- Bomberman Quest
-https://www.youtube.com/watch?v=T18nAaO_rGs:
-- Dragon Quest Monsters
-https://www.youtube.com/watch?v=T1edn6OPNRo:
-- 'Ys: The Oath in Felghana'
-https://www.youtube.com/watch?v=T24J3gTL4vY:
-- Polymer
-https://www.youtube.com/watch?v=T586T6QFjqE:
-- 'Castlevania: Dawn of Sorrow'
-https://www.youtube.com/watch?v=T9kK9McaCoE:
-- Mushihimesama Futari
-https://www.youtube.com/watch?v=TBx-8jqiGfA:
-- Super Mario Bros
-https://www.youtube.com/watch?v=TEPaoDnS6AM:
-- Street Fighter III 3rd Strike
-- Street Fighter 3 3rd Strike
-https://www.youtube.com/watch?v=TFxtovEXNmc:
-- Bahamut Lagoon
-https://www.youtube.com/watch?v=TIzYqi_QFY8:
-- Legend of Dragoon
-https://www.youtube.com/watch?v=TJH9E2x87EY:
-- Super Castlevania IV
-- Super Castlevania 4
-https://www.youtube.com/watch?v=TM3BIOvEJSw:
-- Eternal Sonata
-https://www.youtube.com/watch?v=TMhh7ApHESo:
-- Super Win the Game
-https://www.youtube.com/watch?v=TO1kcFmNtTc:
-- Lost Odyssey
-https://www.youtube.com/watch?v=TPW9GRiGTek:
-- Yoshi's Woolly World
-https://www.youtube.com/watch?v=TRdrbKasYz8:
-- Xenosaga
-https://www.youtube.com/watch?v=TS8q1pjWviA:
-- Star Fox
-https://www.youtube.com/watch?v=TSlDUPl7DoA:
-- 'Star Ocean 3: Till the End of Time'
-- 'Star Ocean III: Till the End of Time'
-https://www.youtube.com/watch?v=TTt_-gE9iPU:
-- Bravely Default
-https://www.youtube.com/watch?v=TUZU34Sss8o:
-- Pokemon
-https://www.youtube.com/watch?v=TVKAMsRwIUk:
-- Nintendo World Cup
-https://www.youtube.com/watch?v=TXEz-i-oORk:
-- Wild Arms 5
-- Wild Arms V
-https://www.youtube.com/watch?v=TXO9vzXnAeg:
-- Dragon Quest
-https://www.youtube.com/watch?v=TYjKjjgQPk8:
-- Donkey Kong Country
-https://www.youtube.com/watch?v=T_HfcZMUR4k:
-- Doom
-https://www.youtube.com/watch?v=TaRAKfltBfo:
-- Etrian Odyssey IV
-- Etrian Odyssey 4
-https://www.youtube.com/watch?v=Tc6G2CdSVfs:
-- 'Hitman: Blood Money'
-https://www.youtube.com/watch?v=TcKSIuOSs4U:
-- The Legendary Starfy
-https://www.youtube.com/watch?v=TdiRoUoSM-E:
-- Soma Bringer
-https://www.youtube.com/watch?v=TdxJKAvFEIU:
-- Lost Odyssey
-https://www.youtube.com/watch?v=TidW2D0Mnpo:
-- Blast Corps
-https://www.youtube.com/watch?v=TioQJoZ8Cco:
-- Xenosaga III
-- Xenosaga 3
-https://www.youtube.com/watch?v=Tj04oRO-0Ws:
-- Super Castlevania IV
-- Super Castlevania 4
-https://www.youtube.com/watch?v=TkEH0e07jg8:
-- Secret of Evermore
-https://www.youtube.com/watch?v=TlDaPnHXl_o:
-- 'The Seventh Seal: Dark Lord'
-https://www.youtube.com/watch?v=TlLIOD2rJMs:
-- Chrono Trigger
-https://www.youtube.com/watch?v=TmkijsJ8-Kg:
-- 'NieR: Automata'
-https://www.youtube.com/watch?v=Tms-MKKS714:
-- Dark Souls
-https://www.youtube.com/watch?v=Tq8TV1PqZvw:
-- Final Fantasy VI
-- Final Fantasy 6
-https://www.youtube.com/watch?v=TrO0wRbqPUo:
-- Donkey Kong Country
-https://www.youtube.com/watch?v=TssxHy4hbko:
-- Mother 3
-- Mother III
-https://www.youtube.com/watch?v=TtACPCoJ-4I:
-- Mega Man 9
-- Mega Man IX
-https://www.youtube.com/watch?v=Tug0cYK0XW0:
-- Shenmue
-https://www.youtube.com/watch?v=U2MqAWgqYJY:
-- Mystical Ninja Starring Goemon
-https://www.youtube.com/watch?v=U2XioVnZUlo:
-- Nintendo Land
-https://www.youtube.com/watch?v=U3FkappfRsQ:
-- Katamari Damacy
-https://www.youtube.com/watch?v=U4aEm6UufgY:
-- 'NyxQuest: Kindred Spirits'
-https://www.youtube.com/watch?v=U9z3oWS0Qo0:
-- 'Castlevania: Bloodlines'
-https://www.youtube.com/watch?v=UBCtM24yyYY:
-- Little Inferno
-https://www.youtube.com/watch?v=UC6_FirddSI:
-- 'The Legend of Zelda: Ocarina of Time'
-- ocarina of time
-https://www.youtube.com/watch?v=UHAEjRndMwg:
-- Machinarium
-https://www.youtube.com/watch?v=UOOmKmahDX4:
-- Super Mario Kart
-https://www.youtube.com/watch?v=UOdV3Ci46jY:
-- Run Saber
-https://www.youtube.com/watch?v=UPdZlmyedcI:
-- Castlevania 64
-https://www.youtube.com/watch?v=UQFiG9We23I:
-- Streets of Rage 2
-- Streets of Rage II
-https://www.youtube.com/watch?v=UWOTB6x_WAs:
-- Magical Tetris Challenge
-https://www.youtube.com/watch?v=UZ9Z0YwFkyk:
-- Donkey Kong Country
-https://www.youtube.com/watch?v=U_Ox-uIbalo:
-- Bionic Commando
-https://www.youtube.com/watch?v=U_l3eYfpUQ0:
-- 'Resident Evil: Revelations'
-https://www.youtube.com/watch?v=Ubu3U44i5Ic:
-- Super Mario 64
-https://www.youtube.com/watch?v=UdKzw6lwSuw:
-- Super Mario Galaxy
-https://www.youtube.com/watch?v=UmTX3cPnxXg:
-- Super Mario 3D World
-https://www.youtube.com/watch?v=UmgTFGAPkXc:
-- Secret of Mana
-https://www.youtube.com/watch?v=Un0n0m8b3uE:
-- 'Ys: The Oath in Felghana'
-https://www.youtube.com/watch?v=UnyOHbOV-h0:
-- Dragon Ball Z Butouden 2
-- Dragon Ball Z Butouden II
-https://www.youtube.com/watch?v=UoBLfXPlyPA:
-- Shatter
-https://www.youtube.com/watch?v=UoDDUr6poOs:
-- World of Warcraft
-https://www.youtube.com/watch?v=UoEyt7S10Mo:
-- Legend of Dragoon
-https://www.youtube.com/watch?v=UqQQ8LlMd3s:
-- Final Fantasy
-https://www.youtube.com/watch?v=Urqrn3sZbHQ:
-- Emil Chronicle Online
-https://www.youtube.com/watch?v=Uu4KCLd5kdg:
-- 'Diablo III: Reaper of Souls'
-- 'Diablo 3: Reaper of Souls'
-https://www.youtube.com/watch?v=UxiG3triMd8:
-- Hearthstone
-https://www.youtube.com/watch?v=V07qVpXUhc0:
-- Suikoden II
-- Suikoden 2
-https://www.youtube.com/watch?v=V1YsfDO8lgY:
-- Pokemon
-https://www.youtube.com/watch?v=V2UKwNO9flk:
-- 'Fire Emblem: Radiant Dawn'
-https://www.youtube.com/watch?v=V2kV7vfl1SE:
-- Super Mario Galaxy
-https://www.youtube.com/watch?v=V39OyFbkevY:
-- Etrian Odyssey IV
-- Etrian Odyssey 4
-https://www.youtube.com/watch?v=V4JjpIUYPg4:
-- Street Fighter IV
-- Street Fighter 4
-https://www.youtube.com/watch?v=V4tmMcpWm_I:
-- Super Street Fighter IV
-- Super Street Fighter 4
-https://www.youtube.com/watch?v=VClUpC8BwJU:
-- 'Silent Hill: Downpour'
-https://www.youtube.com/watch?v=VHCxLYOFHqU:
-- Chrono Trigger
-https://www.youtube.com/watch?v=VMMxNt_-s8E:
-- River City Ransom
-https://www.youtube.com/watch?v=VMt6f3DvTaU:
-- Mighty Switch Force
-https://www.youtube.com/watch?v=VVc6pY7njCA:
-- 'Kid Icarus: Uprising'
-https://www.youtube.com/watch?v=VVlFM_PDBmY:
-- Metal Gear Solid
-https://www.youtube.com/watch?v=VZIA6ZoLBEA:
-- Donkey Kong Country Returns
-https://www.youtube.com/watch?v=VdYkebbduH8:
-- Mario Kart 64
-https://www.youtube.com/watch?v=VfvadCcVXCo:
-- Crystal Beans from Dungeon Explorer
-https://www.youtube.com/watch?v=VgMHWxN2U_w:
-- Pokemon Trading Card Game
-https://www.youtube.com/watch?v=Vgxs785sqjw:
-- Persona 3 FES
-- Persona III FES
-https://www.youtube.com/watch?v=Vin5IrgdWnM:
-- Donkey Kong 64
-https://www.youtube.com/watch?v=VixvyNbhZ6E:
-- 'Lufia: The Legend Returns'
-https://www.youtube.com/watch?v=Vjf--bJDDGQ:
-- Super Mario 3D World
-https://www.youtube.com/watch?v=VktyN1crFLQ:
-- Devilish
-https://www.youtube.com/watch?v=Vl9Nz-X4M68:
-- Double Dragon Neon
-https://www.youtube.com/watch?v=VmOy8IvUcAE:
-- F-Zero GX
-https://www.youtube.com/watch?v=VmemS-mqlOQ:
-- Nostalgia
-https://www.youtube.com/watch?v=VpOYrLJKFUk:
-- The Walking Dead
-https://www.youtube.com/watch?v=VpyUtWCMrb4:
-- Castlevania III
-- Castlevania 3
-https://www.youtube.com/watch?v=VsvQy72iZZ8:
-- 'Kid Icarus: Uprising'
-https://www.youtube.com/watch?v=Vt2-826EsT8:
-- Cosmic Star Heroine
-https://www.youtube.com/watch?v=VuT5ukjMVFw:
-- Grandia III
-- Grandia 3
-https://www.youtube.com/watch?v=VvMkmsgHWMo:
-- Wild Arms 4
-- Wild Arms IV
-https://www.youtube.com/watch?v=VxJf8k4YzBY:
-- The Mummy Demastered
-https://www.youtube.com/watch?v=VxgLPrbSg-U:
-- Romancing Saga 3
-- Romancing Saga III
-https://www.youtube.com/watch?v=VzHPc-HJlfM:
-- Tales of Symphonia
-https://www.youtube.com/watch?v=VzJ2MLvIGmM:
-- 'E.V.O.: Search for Eden'
-- 'E.5.O.: Search for Eden'
-https://www.youtube.com/watch?v=W0fvt7_n9CU:
-- 'Castlevania: Lords of Shadow'
-https://www.youtube.com/watch?v=W4259ddJDtw:
-- 'The Legend of Zelda: Ocarina of Time'
-- ocarina of time
-https://www.youtube.com/watch?v=W6GNcYfHe1E:
-- Illusion of Gaia
-https://www.youtube.com/watch?v=W6O1WLDxRrY:
-- Krater
-https://www.youtube.com/watch?v=W7RPY-oiDAQ:
-- Final Fantasy VI
-- Final Fantasy 6
-https://www.youtube.com/watch?v=W8-GDfP2xNM:
-- Suikoden III
-- Suikoden 3
-https://www.youtube.com/watch?v=W8Y2EuSrz-k:
-- Sonic the Hedgehog 3
-- Sonic the Hedgehog III
-https://www.youtube.com/watch?v=WBawD9gcECk:
-- 'Castlevania: Portrait of Ruin'
-https://www.youtube.com/watch?v=WCGk_7V5IGk:
-- Super Street Fighter II
-- Super Street Fighter 2
-https://www.youtube.com/watch?v=WEoHCLNJPy0:
-- Radical Dreamers
-https://www.youtube.com/watch?v=WLorUNfzJy8:
-- Breath of Death VII
-- Breath of Death 7
-https://www.youtube.com/watch?v=WNORnKsigdQ:
-- Radiant Historia
-https://www.youtube.com/watch?v=WP9081WAmiY:
-- 'The Legend of Zelda: Wind Waker'
-- wind waker
-https://www.youtube.com/watch?v=WR_AncWskUk:
-- Metal Saga
-https://www.youtube.com/watch?v=WV56iJ9KFlw:
-- Mass Effect
-https://www.youtube.com/watch?v=WY2kHNPn-x8:
-- Tearaway
-https://www.youtube.com/watch?v=WYRFMUNIUVw:
-- Chrono Trigger
-https://www.youtube.com/watch?v=WZ1TQWlSOxo:
-- OutRun 2
-- OutRun II
-https://www.youtube.com/watch?v=W_t9udYAsBE:
-- Super Mario Bros 3
-- Super Mario Bros III
-https://www.youtube.com/watch?v=WaThErXvfD8:
-- Super Mario RPG
-https://www.youtube.com/watch?v=WcM38YKdk44:
-- Killer7
-https://www.youtube.com/watch?v=WdZPEL9zoMA:
-- Celeste
-https://www.youtube.com/watch?v=WeVAeMWeFNo:
-- 'Sakura Taisen: Atsuki Chishio Ni'
-https://www.youtube.com/watch?v=WgK4UTP0gfU:
-- Breath of Fire II
-- Breath of Fire 2
-https://www.youtube.com/watch?v=Wj17uoJLIV8:
-- Prince of Persia
-https://www.youtube.com/watch?v=Wqv5wxKDSIo:
-- Scott Pilgrim vs the World
-https://www.youtube.com/watch?v=WwXBfLnChSE:
-- Radiant Historia
-https://www.youtube.com/watch?v=WwuhhymZzgY:
-- The Last Story
-https://www.youtube.com/watch?v=X1-oxRS8-m4:
-- Skies of Arcadia
-https://www.youtube.com/watch?v=X3rxfNjBGqQ:
-- Earthbound
-https://www.youtube.com/watch?v=X68AlSKY0d8:
-- Shatter
-https://www.youtube.com/watch?v=X80YQj6UHG8:
-- Xenogears
-https://www.youtube.com/watch?v=X8CGqt3N4GA:
-- 'The Legend of Zelda: Majora''s Mask'
-- 'majora''s mask'
-https://www.youtube.com/watch?v=XCfYHd-9Szw:
-- Mass Effect
-https://www.youtube.com/watch?v=XG7HmRvDb5Y:
-- Yoshi's Woolly World
-https://www.youtube.com/watch?v=XH1J5XxZklI:
-- Snowboard Kids
-https://www.youtube.com/watch?v=XIzflqDtA1M:
-- Lone Survivor
-https://www.youtube.com/watch?v=XJllrwZzWwc:
-- Namco x Capcom
-https://www.youtube.com/watch?v=XKI0-dPmwSo:
-- Shining Force II
-- Shining Force 2
-https://www.youtube.com/watch?v=XKeXXWBYTkE:
-- Wild Arms 5
-- Wild Arms V
-https://www.youtube.com/watch?v=XLJxqz83ujw:
-- Glover
-https://www.youtube.com/watch?v=XMc9xjrnySg:
-- Golden Sun
-https://www.youtube.com/watch?v=XSSNGYomwAU:
-- Suikoden
-https://www.youtube.com/watch?v=XSkuBJx8q-Q:
-- Doki Doki Literature Club!
-https://www.youtube.com/watch?v=XW3Buw2tUgI:
-- Extreme-G
-https://www.youtube.com/watch?v=XWd4539-gdk:
-- Tales of Phantasia
-https://www.youtube.com/watch?v=XZEuJnSFz9U:
-- Bubble Bobble
-https://www.youtube.com/watch?v=X_PszodM17s:
-- ICO
-https://www.youtube.com/watch?v=Xa7uyLoh8t4:
-- Silent Hill 3
-- Silent Hill III
-https://www.youtube.com/watch?v=Xb8k4cp_mvQ:
-- Sonic the Hedgehog 2
-- Sonic the Hedgehog II
-https://www.youtube.com/watch?v=XelC_ns-vro:
-- Breath of Fire II
-- Breath of Fire 2
-https://www.youtube.com/watch?v=XhlM0eFM8F4:
-- Banjo-Tooie
-https://www.youtube.com/watch?v=Xkr40w4TfZQ:
-- 'The Legend of Zelda: Skyward Sword'
-- 'skyward sword'
-https://www.youtube.com/watch?v=Xm7lW0uvFpc:
-- DuckTales
-https://www.youtube.com/watch?v=XmAMeRNX_D4:
-- Ragnarok Online
-https://www.youtube.com/watch?v=XmmV5c2fS30:
-- Final Fantasy Mystic Quest
-https://www.youtube.com/watch?v=XnHysmcf31o:
-- Mother
-https://www.youtube.com/watch?v=Xnmuncx1F0Q:
-- Demon's Crest
-https://www.youtube.com/watch?v=Xo1gsf_pmzM:
-- Super Mario 3D World
-https://www.youtube.com/watch?v=Xpwy4RtRA1M:
-- The Witcher
-https://www.youtube.com/watch?v=XqPsT01sZVU:
-- Kingdom of Paradise
-https://www.youtube.com/watch?v=Xv_VYdKzO3A:
-- 'Tintin: Prisoners of the Sun'
-https://www.youtube.com/watch?v=Xw58jPitU-Q:
-- Ys Origin
-https://www.youtube.com/watch?v=XxMf4BdVq_g:
-- Deus Ex
-https://www.youtube.com/watch?v=Xy9eA5PJ9cU:
-- Pokemon
-https://www.youtube.com/watch?v=XztQyuJ4HoQ:
-- Legend of Legaia
-https://www.youtube.com/watch?v=Y0oO0bOyIAU:
-- Hotline Miami
-https://www.youtube.com/watch?v=Y1i3z56CiU4:
-- Pokemon X / Y
-- pokemon x
-- pokemon y
-https://www.youtube.com/watch?v=Y5HHYuQi7cQ:
-- Castlevania Curse of Darkness
-https://www.youtube.com/watch?v=Y5cXKVt3wOE:
-- Souten no Celenaria
-https://www.youtube.com/watch?v=Y7McPnKoP8g:
-- Illusion of Gaia
-https://www.youtube.com/watch?v=Y8Z8C0kziMw:
-- Sonic the Hedgehog
-https://www.youtube.com/watch?v=Y9a5VahqzOE:
-- Kirby's Dream Land
-https://www.youtube.com/watch?v=YA3VczBNCh8:
-- Lost Odyssey
-https://www.youtube.com/watch?v=YADDsshr-NM:
-- Super Castlevania IV
-- Super Castlevania 4
-https://www.youtube.com/watch?v=YCwOCGt97Y0:
-- Kaiser Knuckle
-https://www.youtube.com/watch?v=YD19UMTxu4I:
-- Time Trax
-https://www.youtube.com/watch?v=YEoAPCEZyA0:
-- Breath of Fire III
-- Breath of Fire 3
-https://www.youtube.com/watch?v=YFDcu-hy4ak:
-- Donkey Kong Country 3
-- Donkey Kong Country III
-https://www.youtube.com/watch?v=YFz1vqikCaE:
-- 'TMNT IV: Turtles in Time'
-- 'TMNT 4: Turtles in Time'
-https://www.youtube.com/watch?v=YJcuMHvodN4:
-- Super Bonk
-https://www.youtube.com/watch?v=YKe8k8P2FNw:
-- Baten Kaitos
-https://www.youtube.com/watch?v=YL5Q4GybKWc:
-- Balloon Fight
-https://www.youtube.com/watch?v=YQasQAYgbb4:
-- Terranigma
-https://www.youtube.com/watch?v=YYBmrB3bYo4:
-- Christmas NiGHTS
-https://www.youtube.com/watch?v=YYGKW8vyYXU:
-- Shatterhand
-https://www.youtube.com/watch?v=YYxvaixwybA:
-- Shatter
-https://www.youtube.com/watch?v=YZGrI4NI9Nw:
-- Guacamelee!
-https://www.youtube.com/watch?v=Y_GJywu5Wr0:
-- Final Fantasy Tactics A2
-https://www.youtube.com/watch?v=Y_RoEPwYLug:
-- Mega Man ZX
-https://www.youtube.com/watch?v=YdcgKnwaE-A:
-- Final Fantasy VII
-- Final Fantasy 7
-https://www.youtube.com/watch?v=YfFxcLGBCdI:
-- Final Fantasy IV
-- Final Fantasy 4
-https://www.youtube.com/watch?v=Yh0LHDiWJNk:
-- 'The Legend of Zelda: Ocarina of Time'
-- ocarina of time
-https://www.youtube.com/watch?v=Yh4e_rdWD-k:
-- Seiken Densetsu 3
-- Seiken Densetsu III
-https://www.youtube.com/watch?v=YhOUDccL1i8:
-- Rudra No Hihou
-https://www.youtube.com/watch?v=YlLX3U6QfyQ:
-- 'Albert Odyssey: Legend of Eldean'
-https://www.youtube.com/watch?v=YmF88zf5qhM:
-- Halo 4
-- Halo IV
-https://www.youtube.com/watch?v=YmaHBaNxWt0:
-- Tekken 7
-- Tekken VII
-https://www.youtube.com/watch?v=Yn9EmSHIaLw:
-- Stardew Valley
-https://www.youtube.com/watch?v=YnQ9nrcp_CE:
-- Skyblazer
-https://www.youtube.com/watch?v=YqPjWx9XiWk:
-- Captain America and the Avengers
-https://www.youtube.com/watch?v=Ys_xfruRWSc:
-- Pokemon Snap
-https://www.youtube.com/watch?v=Yx-m8z-cbzo:
-- Cave Story
-https://www.youtube.com/watch?v=YzELBO_3HzE:
-- Plok
-https://www.youtube.com/watch?v=Z-LAcjwV74M:
-- Soul Calibur II
-- Soul Calibur 2
-https://www.youtube.com/watch?v=Z167OL2CQJw:
-- Lost Eden
-https://www.youtube.com/watch?v=Z41vcQERnQQ:
-- Dragon Quest III
-- Dragon Quest 3
-https://www.youtube.com/watch?v=Z49Lxg65UOM:
-- Tsugunai
-https://www.youtube.com/watch?v=Z4QunenBEXI:
-- 'The Legend of Zelda: Link''s Awakening'
-- 'link''s awakening'
-https://www.youtube.com/watch?v=Z74e6bFr5EY:
-- Chrono Trigger
-https://www.youtube.com/watch?v=Z8Jf5aFCbEE:
-- Secret of Evermore
-https://www.youtube.com/watch?v=Z9UnlYHogTE:
-- The Violinist of Hameln
-https://www.youtube.com/watch?v=ZAyRic3ZW0Y:
-- Comix Zone
-https://www.youtube.com/watch?v=ZCd2Y1HlAnA:
-- 'Atelier Iris: Eternal Mana'
-https://www.youtube.com/watch?v=ZEUEQ4wlvi4:
-- Dragon Quest III
-- Dragon Quest 3
-https://www.youtube.com/watch?v=ZJGF0_ycDpU:
-- Pokemon GO
-https://www.youtube.com/watch?v=ZJjaiYyES4w:
-- 'Tales of Symphonia: Dawn of the New World'
-https://www.youtube.com/watch?v=ZQGc9rG5qKo:
-- Metroid Prime
-https://www.youtube.com/watch?v=ZW-eiSBpG8E:
-- Legend of Mana
-https://www.youtube.com/watch?v=ZabqQ7MSsIg:
-- Wrecking Crew
-https://www.youtube.com/watch?v=ZbIfD6r518s:
-- Secret of Mana
-https://www.youtube.com/watch?v=ZbPfNA8vxQY:
-- Dustforce
-https://www.youtube.com/watch?v=ZbpEhw42bvQ:
-- Mega Man 6
-- Mega Man VI
-https://www.youtube.com/watch?v=Zee9VKBU_Vk:
-- Fallout 3
-- Fallout III
-https://www.youtube.com/watch?v=ZfZQWz0VVxI:
-- Platoon
-https://www.youtube.com/watch?v=ZgvsIvHJTds:
-- Donkey Kong Country 2
-- Donkey Kong Country II
-https://www.youtube.com/watch?v=Zj3P44pqM_Q:
-- Final Fantasy XI
-- Final Fantasy 11
-https://www.youtube.com/watch?v=Zn8GP0TifCc:
-- Lufia II
-- Lufia 2
-https://www.youtube.com/watch?v=ZrDAjeoPR7A:
-- Child of Eden
-https://www.youtube.com/watch?v=ZriKAVSIQa0:
-- 'The Legend of Zelda: A Link Between Worlds'
-- a link between worlds
-https://www.youtube.com/watch?v=ZuM618JZgww:
-- Metroid Prime Hunters
-https://www.youtube.com/watch?v=ZulAUy2_mZ4:
-- Gears of War 4
-- Gears of War IV
-https://www.youtube.com/watch?v=ZyAIAKItmoM:
-- Hotline Miami 2
-- Hotline Miami II
-https://www.youtube.com/watch?v=Zys-MeBfBto:
-- Tales of Symphonia
-https://www.youtube.com/watch?v=_1CWWL9UBUk:
-- Final Fantasy V
-- Final Fantasy 5
-https://www.youtube.com/watch?v=_1rwSdxY7_g:
-- Breath of Fire III
-- Breath of Fire 3
-https://www.youtube.com/watch?v=_24ZkPUOIeo:
-- Pilotwings 64
-https://www.youtube.com/watch?v=_2FYWCCZrNs:
-- Chrono Cross
-https://www.youtube.com/watch?v=_3Am7OPTsSk:
-- Earthbound
-https://www.youtube.com/watch?v=_9LUtb1MOSU:
-- Secret of Mana
-https://www.youtube.com/watch?v=_BdvaCCUsYo:
-- Tales of Destiny
-https://www.youtube.com/watch?v=_CB18Elh4Rc:
-- Chrono Cross
-https://www.youtube.com/watch?v=_C_fXeDZHKw:
-- Secret of Evermore
-https://www.youtube.com/watch?v=_CeQp-NVkSw:
-- Grounseed
-https://www.youtube.com/watch?v=_EYg1z-ZmUs:
-- Breath of Death VII
-- Breath of Death 7
-https://www.youtube.com/watch?v=_Gnu2AttTPI:
-- Pokemon Black / White
-- pokemon black
-- pokemon white
-https://www.youtube.com/watch?v=_H42_mzLMz0:
-- Dragon Quest IV
-- Dragon Quest 4
-https://www.youtube.com/watch?v=_Ju6JostT7c:
-- Castlevania
-https://www.youtube.com/watch?v=_L6scVxzIiI:
-- 'The Legend of Zelda: Link''s Awakening'
-- 'link''s awakening'
-https://www.youtube.com/watch?v=_Ms2ME7ufis:
-- 'Superbrothers: Sword & Sworcery EP'
-- 'superbrothers: sword and sworcery ep'
-https://www.youtube.com/watch?v=_OM5A6JwHig:
-- Machinarium
-https://www.youtube.com/watch?v=_OguBY5x-Qo:
-- Shenmue
-https://www.youtube.com/watch?v=_RHmWJyCsAM:
-- Dragon Quest II
-- Dragon Quest 2
-https://www.youtube.com/watch?v=_U3JUtO8a9U:
-- Mario + Rabbids Kingdom Battle
-https://www.youtube.com/watch?v=_Wcte_8oFyM:
-- Plants vs Zombies
-https://www.youtube.com/watch?v=_WjOqJ4LbkQ:
-- Mega Man 10
-https://www.youtube.com/watch?v=_XJw072Co_A:
-- Diddy Kong Racing
-https://www.youtube.com/watch?v=_YxsxsaP2T4:
-- 'The Elder Scrolls V: Skyrim'
-- 'The Elder Scrolls 5: Skyrim'
-- Skyrim
-https://www.youtube.com/watch?v=_bOxB__fyJI:
-- World Reborn
-https://www.youtube.com/watch?v=_blDkW4rCwc:
-- Hyrule Warriors
-https://www.youtube.com/watch?v=_cglnkygG_0:
-- Xenoblade Chronicles
-https://www.youtube.com/watch?v=_dXaKTGvaEk:
-- 'Fatal Frame II: Crimson Butterfly'
-- 'Fatal Frame 2: Crimson Butterfly'
-https://www.youtube.com/watch?v=_dsKphN-mEI:
-- Sonic Unleashed
-https://www.youtube.com/watch?v=_eDz4_fCerk:
-- Jurassic Park
-https://www.youtube.com/watch?v=_gmeGnmyn34:
-- 3D Dot Game Heroes
-https://www.youtube.com/watch?v=_hRi2AwnEyw:
-- Dragon Quest V
-- Dragon Quest 5
-https://www.youtube.com/watch?v=_i9LIgKpgkc:
-- Persona 3
-- Persona III
-https://www.youtube.com/watch?v=_j8AXugAZCQ:
-- Earthbound
-https://www.youtube.com/watch?v=_jWbBWpfBWw:
-- Advance Wars
-https://www.youtube.com/watch?v=_joPG7N0lRk:
-- Lufia II
-- Lufia 2
-https://www.youtube.com/watch?v=_qbSmANSx6s:
-- 'The Legend of Zelda: Ocarina of Time'
-- ocarina of time
-https://www.youtube.com/watch?v=_thDGKkVgIE:
-- 'Spyro: A Hero''s Tail'
-https://www.youtube.com/watch?v=_ttw1JCEiZE:
-- NieR
-https://www.youtube.com/watch?v=_wHwJoxw4i4:
-- Metroid
-https://www.youtube.com/watch?v=_wbGNLXgYgE:
-- Grand Theft Auto V
-- Grand Theft Auto 5
-https://www.youtube.com/watch?v=a0oq7Yw8tkc:
-- 'The Binding of Isaac: Rebirth'
-https://www.youtube.com/watch?v=a14tqUAswZU:
-- Daytona USA
-https://www.youtube.com/watch?v=a43NXcUkHkI:
-- Final Fantasy
-https://www.youtube.com/watch?v=a4t1ty8U9qw:
-- Earthbound
-https://www.youtube.com/watch?v=a5JdLRzK_uQ:
-- Wild Arms 3
-- Wild Arms III
-https://www.youtube.com/watch?v=a5WtWa8lL7Y:
-- Tetris
-https://www.youtube.com/watch?v=a8hAxP__AKw:
-- Lethal Weapon
-https://www.youtube.com/watch?v=a9MLBjUvgFE:
-- Minecraft (Update Aquatic)
-- Minecraft
-https://www.youtube.com/watch?v=aBmqRgtqOgw:
-- 'The Legend of Zelda: Minish Cap'
-- minish cap
-https://www.youtube.com/watch?v=aDJ3bdD4TPM:
-- Terranigma
-https://www.youtube.com/watch?v=aDbohXp2oEs:
-- Baten Kaitos Origins
-https://www.youtube.com/watch?v=aKgSFxA0ZhY:
-- Touch My Katamari
-https://www.youtube.com/watch?v=aKqYLGaG_E4:
-- Earthbound
-https://www.youtube.com/watch?v=aObuQqkoa-g:
-- Dragon Quest VI
-- Dragon Quest 6
-https://www.youtube.com/watch?v=aOjeeAVojAE:
-- Metroid AM2R
-https://www.youtube.com/watch?v=aOxqL6hSt8c:
-- Suikoden II
-- Suikoden 2
-https://www.youtube.com/watch?v=aPrcJy-5hoA:
-- 'Westerado: Double Barreled'
-https://www.youtube.com/watch?v=aRloSB3iXG0:
-- Metal Warriors
-https://www.youtube.com/watch?v=aTofARLXiBk:
-- Jazz Jackrabbit 3
-- Jazz Jackrabbit III
-https://www.youtube.com/watch?v=aU0WdpQRzd4:
-- Grandia II
-- Grandia 2
-https://www.youtube.com/watch?v=aWh7crjCWlM:
-- Conker's Bad Fur Day
-https://www.youtube.com/watch?v=aXJ0om-_1Ew:
-- Crystal Beans from Dungeon Explorer
-https://www.youtube.com/watch?v=aYUMd2GvwsU:
-- A Bug's Life
-https://www.youtube.com/watch?v=aZ37adgwDIw:
-- Shenmue
-https://www.youtube.com/watch?v=a_WurTZJrpE:
-- Earthbound
-https://www.youtube.com/watch?v=a_qDMzn6BOA:
-- Shin Megami Tensei IV
-- Shin Megami Tensei 4
-https://www.youtube.com/watch?v=aatRnG3Tkmg:
-- Mother 3
-- Mother III
-https://www.youtube.com/watch?v=abv-zluKyQQ:
-- Final Fantasy Tactics Advance
-https://www.youtube.com/watch?v=acAAz1MR_ZA:
-- 'Disgaea: Hour of Darkness'
-https://www.youtube.com/watch?v=acLncvJ9wHI:
-- Trauma Team
-https://www.youtube.com/watch?v=acVjEoRvpv8:
-- Dark Cloud
-https://www.youtube.com/watch?v=aci_luVBju4:
-- 'The Legend of Zelda: Skyward Sword'
-- skyward sword
-https://www.youtube.com/watch?v=ae_lrtPgor0:
-- Super Mario World
-https://www.youtube.com/watch?v=afsUV7q6Hqc:
-- Mega Man ZX
-https://www.youtube.com/watch?v=ag5q7vmDOls:
-- Lagoon
-https://www.youtube.com/watch?v=aj9mW0Hvp0g:
-- 'Ufouria: The Saga'
-https://www.youtube.com/watch?v=am5TVpGwHdE:
-- Digital Devil Saga
-https://www.youtube.com/watch?v=ammnaFhcafI:
-- Mario Party 4
-- Mario Party IV
-https://www.youtube.com/watch?v=an3P8otlD2A:
-- Skies of Arcadia
-https://www.youtube.com/watch?v=aqLjvjhHgDI:
-- Minecraft
-https://www.youtube.com/watch?v=aqWw9gLgFRA:
-- Portal
-https://www.youtube.com/watch?v=aumWblPK58M:
-- SaGa Frontier
-https://www.youtube.com/watch?v=avyGawaBrtQ:
-- 'Dragon Ball Z: Budokai'
-https://www.youtube.com/watch?v=b-oxtWJ00WA:
-- Pikmin 3
-- Pikmin III
-https://www.youtube.com/watch?v=b-rgxR_zIC4:
-- Mega Man 4
-- Mega Man IV
-https://www.youtube.com/watch?v=b0kqwEbkSag:
-- Deathsmiles IIX
-https://www.youtube.com/watch?v=b1YKRCKnge8:
-- Chrono Trigger
-https://www.youtube.com/watch?v=b3Ayzzo8eZo:
-- 'Lunar: Dragon Song'
-https://www.youtube.com/watch?v=b3l5v-QQF40:
-- 'TMNT IV: Turtles in Time'
-- 'TMNT 4: Turtles in Time'
-https://www.youtube.com/watch?v=b6QzJaltmUM:
-- What Remains of Edith Finch
-https://www.youtube.com/watch?v=b9OZwTLtrl4:
-- Legend of Mana
-https://www.youtube.com/watch?v=bA4PAkrAVpQ:
-- Mega Man 9
-- Mega Man IX
-https://www.youtube.com/watch?v=bAkK3HqzoY0:
-- 'Fire Emblem: Radiant Dawn'
-https://www.youtube.com/watch?v=bCNdNTdJYvE:
-- Final Fantasy X
-- Final Fantasy 10
-https://www.youtube.com/watch?v=bDH8AIok0IM:
-- TimeSplitters 2
-- TimeSplitters II
-https://www.youtube.com/watch?v=bFk3mS6VVsE:
-- Threads of Fate
-https://www.youtube.com/watch?v=bItjdi5wxFQ:
-- Watch Dogs
-https://www.youtube.com/watch?v=bKj3JXmYDfY:
-- The Swapper
-https://www.youtube.com/watch?v=bNzYIEY-CcM:
-- Chrono Trigger
-https://www.youtube.com/watch?v=bO2wTaoCguc:
-- Super Dodge Ball
-https://www.youtube.com/watch?v=bOg8XuvcyTY:
-- Final Fantasy Legend II
-- Final Fantasy Legend 2
-https://www.youtube.com/watch?v=bQ1D8oR128E:
-- 'Castlevania: Portrait of Ruin'
-https://www.youtube.com/watch?v=bR4AB3xNT0c:
-- Donkey Kong Country Returns
-https://www.youtube.com/watch?v=bRAT5LgAl5E:
-- The Dark Spire
-https://www.youtube.com/watch?v=bW3KNnZ2ZiA:
-- Chrono Trigger
-https://www.youtube.com/watch?v=bWp4F1p2I64:
-- 'Deus Ex: Human Revolution'
-https://www.youtube.com/watch?v=bXfaBUCDX1I:
-- 'Mario & Luigi: Dream Team'
-- 'mario and luigi: dream team'
-https://www.youtube.com/watch?v=bZBoTinEpao:
-- Jade Cocoon
-https://www.youtube.com/watch?v=bcHL3tGy7ws:
-- World of Warcraft
-https://www.youtube.com/watch?v=bckgyhCo7Lw:
-- Tales of Legendia
-https://www.youtube.com/watch?v=bdNrjSswl78:
-- Kingdom Hearts II
-- Kingdom Hearts 2
-https://www.youtube.com/watch?v=berZX7mPxbE:
-- Kingdom Hearts
-https://www.youtube.com/watch?v=bffwco66Vnc:
-- 'Little Nemo: The Dream Master'
-https://www.youtube.com/watch?v=bhW8jNscYqA:
-- Seiken Densetsu 3
-- Seiken Densetsu III
-https://www.youtube.com/watch?v=bmsw4ND8HNA:
-- Pokemon Diamond / Pearl / Platinum
-- pokemon diamond
-- pokemon pearl
-- pokemon platinum
-https://www.youtube.com/watch?v=bp4-fXuTwb8:
-- Final Fantasy IV
-- Final Fantasy 4
-https://www.youtube.com/watch?v=brYzVFvM98I:
-- Super Castlevania IV
-- Super Castlevania 4
-https://www.youtube.com/watch?v=bss8vzkIB74:
-- 'Vampire The Masquerade: Bloodlines'
-https://www.youtube.com/watch?v=bu-kSDUXUts:
-- Silent Hill 2
-- Silent Hill II
-https://www.youtube.com/watch?v=bvbOS8Mp8aQ:
-- Street Fighter V
-- Street Fighter 5
-https://www.youtube.com/watch?v=bviyWo7xpu0:
-- Wild Arms 5
-- Wild Arms V
-https://www.youtube.com/watch?v=c2Y1ANec-5M:
-- Ys Chronicles
-https://www.youtube.com/watch?v=c47-Y-y_dqI:
-- Blue Dragon
-https://www.youtube.com/watch?v=c62hLhyF2D4:
-- Jelly Defense
-https://www.youtube.com/watch?v=c7mYaBoSIQU:
-- Contact
-https://www.youtube.com/watch?v=c8sDG4L-qrY:
-- Skullgirls
-https://www.youtube.com/watch?v=cETUoqcjICE:
-- Vay
-https://www.youtube.com/watch?v=cHfgcOHSTs0:
-- Ogre Battle 64
-https://www.youtube.com/watch?v=cKBgNT-8rrM:
-- Grounseed
-https://www.youtube.com/watch?v=cKQZVFIuyko:
-- Streets of Rage 2
-- Streets of Rage II
-https://www.youtube.com/watch?v=cMxOAeESteU:
-- 'Paper Mario: The Thousand Year Door'
-https://www.youtube.com/watch?v=cO1UTkT6lf8:
-- Baten Kaitos Origins
-https://www.youtube.com/watch?v=cQhqxEIAZbE:
-- Resident Evil Outbreak
-https://www.youtube.com/watch?v=cRyIPt01AVM:
-- Banjo-Kazooie
-https://www.youtube.com/watch?v=cU1Z5UwBlQo:
-- 'Shadow Hearts II: Covenant'
-- 'Shadow Hearts 2: Covenant'
-https://www.youtube.com/watch?v=cWTZEXmWcOs:
-- Night in the Woods
-https://www.youtube.com/watch?v=cWt6j5ZJCHU:
-- R-Type Delta
-https://www.youtube.com/watch?v=cYV7Ph-qvvI:
-- 'Romancing Saga: Minstrel Song'
-https://www.youtube.com/watch?v=cYlKsL8r074:
-- NieR
-https://www.youtube.com/watch?v=cZVRDjJUPIQ:
-- Kirby & The Rainbow Curse
-- kirby and the rainbow curse
-https://www.youtube.com/watch?v=c_ex2h9t2yk:
-- Klonoa
-https://www.youtube.com/watch?v=calW24ddgOM:
-- 'Castlevania: Order of Ecclesia'
-https://www.youtube.com/watch?v=cbiEH5DMx78:
-- Wild Arms
-https://www.youtube.com/watch?v=ccHauz5l5Kc:
-- Torchlight
-https://www.youtube.com/watch?v=ccMkXEV0YmY:
-- Tekken 2
-- Tekken II
-https://www.youtube.com/watch?v=ciM3PBf1DRs:
-- Sonic the Hedgehog
-https://www.youtube.com/watch?v=cjrh4YcvptY:
-- Jurassic Park 2
-- Jurassic Park II
-https://www.youtube.com/watch?v=ckVmgiTobAw:
-- Okami
-https://www.youtube.com/watch?v=cl6iryREksM:
-- 'The Legend of Zelda: Skyward Sword'
-- skyward sword
-https://www.youtube.com/watch?v=clyy2eKqdC0:
-- Mother 3
-- Mother III
-https://www.youtube.com/watch?v=cmyK3FdTu_Q:
-- 'Castlevania: Symphony of the Night'
-https://www.youtube.com/watch?v=cnjADMWesKk:
-- Silent Hill 2
-- Silent Hill II
-https://www.youtube.com/watch?v=coyl_h4_tjc:
-- Mega Man 2
-- Mega Man II
-https://www.youtube.com/watch?v=cpcx0UQt4Y8:
-- Shadow of the Beast
-https://www.youtube.com/watch?v=cqSEDRNwkt8:
-- 'SMT: Digital Devil Saga 2'
-- 'SMT: Digital Devil Saga II'
-https://www.youtube.com/watch?v=cqkYQt8dnxU:
-- Shadow Hearts III
-- Shadow Hearts 3
-https://www.youtube.com/watch?v=cs3hwrowdaQ:
-- Final Fantasy VII
-- Final Fantasy 7
-https://www.youtube.com/watch?v=cvae_OsnWZ0:
-- Super Mario RPG
-https://www.youtube.com/watch?v=cvpGCTUGi8o:
-- Pokemon Diamond / Pearl / Platinum
-- pokemon diamond
-- pokemon pearl
-- pokemon platinum
-https://www.youtube.com/watch?v=cwmHupo9oSQ:
-- Street Fighter 2010
-- Street Fighter MMX
-https://www.youtube.com/watch?v=cxAE48Dul7Y:
-- Top Gear 3000
-- Top Gear MMM
-https://www.youtube.com/watch?v=cxAbbHCpucs:
-- Unreal Tournament
-https://www.youtube.com/watch?v=cyShVri-4kQ:
-- NieR
-https://www.youtube.com/watch?v=d0akzKhBl2k:
-- Pop'n Music 7
-- Pop'n Music VII
-https://www.youtube.com/watch?v=d12Pt-zjLsI:
-- Fire Emblem Fates
-https://www.youtube.com/watch?v=d1UyVXN13SI:
-- 'The Legend of Zelda: A Link to the Past'
-- a link to the past
-https://www.youtube.com/watch?v=d2dB0PuWotU:
-- Sonic Adventure 2
-- Sonic Adventure II
-https://www.youtube.com/watch?v=d3mJsXFGhDg:
-- Altered Beast
-https://www.youtube.com/watch?v=d5OK1GkI_CU:
-- Chrono Cross
-https://www.youtube.com/watch?v=d8xtkry1wK8:
-- Lost Odyssey
-https://www.youtube.com/watch?v=dBsdllfE4Ek:
-- Undertale
-https://www.youtube.com/watch?v=dEVI5_OxUyY:
-- Goldeneye
-https://www.youtube.com/watch?v=dG4ZCzodq4g:
-- Tekken 6
-- Tekken VI
-https://www.youtube.com/watch?v=dGF7xsF0DmQ:
-- Shatterhand (JP)
-- shatterhand
-https://www.youtube.com/watch?v=dGzGSapPGL8:
-- Jets 'N' Guns
-https://www.youtube.com/watch?v=dJzTqmQ_erE:
-- Chrono Trigger
-https://www.youtube.com/watch?v=dMSjvBILQRU:
-- Fable
-https://www.youtube.com/watch?v=dMYW4wBDQLU:
-- 'Ys VI: The Ark of Napishtim'
-- 'Ys 6: The Ark of Napishtim'
-https://www.youtube.com/watch?v=dO4awKzd8rc:
-- One Step Beyond
-https://www.youtube.com/watch?v=dOHur-Yc3nE:
-- Shatter
-https://www.youtube.com/watch?v=dQRiJz_nEP8:
-- Castlevania II
-- Castlevania 2
-https://www.youtube.com/watch?v=dRHpQFbEthY:
-- Shovel Knight
-https://www.youtube.com/watch?v=dSwUFI18s7s:
-- Valkyria Chronicles 3
-- Valkyria Chronicles III
-https://www.youtube.com/watch?v=dTjNEOT-e-M:
-https://www.youtube.com/watch?v=dUcTukA0q4Y:
-- Super Mario World
-- 'FTL: Faster Than Light'
-https://www.youtube.com/watch?v=dWiHtzP-bc4:
-- 'Kirby 64: The Crystal Shards'
-https://www.youtube.com/watch?v=dWrm-lwiKj0:
-- Nora to Toki no Koubou
-https://www.youtube.com/watch?v=dZAOgvdXhuk:
-- 'Star Wars: Shadows of the Empire'
-https://www.youtube.com/watch?v=dcEXzNbn20k:
-- Dead Space
-https://www.youtube.com/watch?v=dd2dbckq54Q:
-- Black/Matrix
-https://www.youtube.com/watch?v=deKo_UHZa14:
-- Return All Robots!
-https://www.youtube.com/watch?v=dfykPUgPns8:
-- Parasite Eve
-https://www.youtube.com/watch?v=dgD5lgqNzP8:
-- Dark Souls
-https://www.youtube.com/watch?v=dhGMZwQr0Iw:
-- Mario Kart 8
-- Mario Kart VIII
-https://www.youtube.com/watch?v=dhzrumwtwFY:
-- Final Fantasy Tactics
-https://www.youtube.com/watch?v=dim1KXcN34U:
-- ActRaiser
-https://www.youtube.com/watch?v=dj0Ib2lJ7JA:
-- Final Fantasy XII
-- Final Fantasy 12
-https://www.youtube.com/watch?v=dj8Qe3GUrdc:
-- 'Divinity II: Ego Draconis'
-- 'Divinity 2: Ego Draconis'
-https://www.youtube.com/watch?v=dlZyjOv5G80:
-- Shenmue
-https://www.youtube.com/watch?v=dobKarKesA0:
-- Elemental Master
-https://www.youtube.com/watch?v=dqww-xq7b9k:
-- SaGa Frontier II
-- SaGa Frontier 2
-https://www.youtube.com/watch?v=drFZ1-6r7W8:
-- Shenmue II
-- Shenmue 2
-https://www.youtube.com/watch?v=dszJhqoPRf8:
-- Super Mario Kart
-https://www.youtube.com/watch?v=dtITnB_uRzc:
-- Xenosaga II
-- Xenosaga 2
-https://www.youtube.com/watch?v=dyFj_MfRg3I:
-- Dragon Quest
-https://www.youtube.com/watch?v=dylldXUC20U:
-- 'The Legend of Zelda: Wind Waker'
-- wind waker
-https://www.youtube.com/watch?v=e-r3yVxzwe0:
-- Chrono Cross
-https://www.youtube.com/watch?v=e1HWSPwGlpA:
-- Doom 3
-- Doom III
-https://www.youtube.com/watch?v=e6cvikWAAEo:
-- Super Smash Bros. Brawl
-https://www.youtube.com/watch?v=e7YW5tmlsLo:
-- Cannon Fodder
-https://www.youtube.com/watch?v=e9uvCvvlMn4:
-- Wave Race 64
-https://www.youtube.com/watch?v=e9xHOWHjYKc:
-- Beyond Good & Evil
-- beyond good and evil
-https://www.youtube.com/watch?v=eCS1Tzbcbro:
-- Demon's Crest
-https://www.youtube.com/watch?v=eDOCPzvn87s:
-- Super Mario World
-https://www.youtube.com/watch?v=eDjJq3DsNTc:
-- Ar nosurge
-https://www.youtube.com/watch?v=eEZLBWjQsGk:
-- Parasite Eve
-https://www.youtube.com/watch?v=eF03eqpRxHE:
-- Soul Edge
-https://www.youtube.com/watch?v=eFN9fNhjRPg:
-- 'NieR: Automata'
-https://www.youtube.com/watch?v=eFR7iBDJYpI:
-- Ratchet & Clank
-- ratchet and clank
-https://www.youtube.com/watch?v=eKiz8PrTvSs:
-- Metroid
-https://www.youtube.com/watch?v=eLLdU3Td1w0:
-- Star Fox 64
-https://www.youtube.com/watch?v=eNXj--eakKg:
-- Chrono Trigger
-https://www.youtube.com/watch?v=eNXv3L_ebrk:
-- 'Moon: Remix RPG Adventure'
-https://www.youtube.com/watch?v=eOx1HJJ-Y8M:
-- Xenosaga II
-- Xenosaga 2
-https://www.youtube.com/watch?v=eRuhYeSR19Y:
-- Uncharted Waters
-https://www.youtube.com/watch?v=eRzo1UGPn9s:
-- 'TMNT IV: Turtles in Time'
-- 'TMNT 4: Turtles in Time'
-https://www.youtube.com/watch?v=eWsYdciDkqY:
-- Jade Cocoon
-https://www.youtube.com/watch?v=ehNS3sKQseY:
-- Wipeout Pulse
-https://www.youtube.com/watch?v=ehxzly2ogW4:
-- Xenoblade Chronicles X
-- Xenoblade Chronicles 10
-https://www.youtube.com/watch?v=ej4PiY8AESE:
-- 'Lunar: Eternal Blue'
-https://www.youtube.com/watch?v=eje3VwPYdBM:
-- Pop'n Music 7
-- Pop'n Music VII
-https://www.youtube.com/watch?v=elvSWFGFOQs:
-- Ridge Racer Type 4
-- Ridge Racer Type IV
-https://www.youtube.com/watch?v=emGEYMPc9sY:
-- Final Fantasy IX
-- Final Fantasy 9
-https://www.youtube.com/watch?v=eoPtQd6adrA:
-- Talesweaver
-https://www.youtube.com/watch?v=euk6wHmRBNY:
-- Infinite Undiscovery
-https://www.youtube.com/watch?v=ev9G_jTIA-k:
-- Robotrek
-https://www.youtube.com/watch?v=evHQZjhE9CM:
-- The Bouncer
-https://www.youtube.com/watch?v=evVH7gshLs8:
-- Turok 2 (Gameboy)
-- Turok II
-- turok 2
-https://www.youtube.com/watch?v=eyhLabJvb2M:
-- 'Paper Mario: The Thousand Year Door'
-https://www.youtube.com/watch?v=eyiABstbKJE:
-- Kirby's Return to Dreamland
-https://www.youtube.com/watch?v=f0UzNWcwC30:
-- Tales of Graces
-https://www.youtube.com/watch?v=f0bj_Aqhbb8:
-- Guild Wars 2
-- Guild Wars II
-https://www.youtube.com/watch?v=f0muXjuV6cc:
-- Super Mario World
-https://www.youtube.com/watch?v=f1EFHMwKdkY:
-- Shadow Hearts III
-- Shadow Hearts 3
-https://www.youtube.com/watch?v=f1QLfSOUiHU:
-- 'The Legend of Zelda: Ocarina of Time'
-- ocarina of time
-https://www.youtube.com/watch?v=f2XcqUwycvA:
-- 'Kingdom Hearts: Birth By Sleep'
-https://www.youtube.com/watch?v=f2q9axKQFHc:
-- Tekken Tag Tournament 2
-- Tekken Tag Tournament II
-https://www.youtube.com/watch?v=f3z73Xp9fCk:
-- Outlaws
-https://www.youtube.com/watch?v=f6QCNRRA1x0:
-- Legend of Mana
-https://www.youtube.com/watch?v=fEfuvS-V9PI:
-- Mii Channel
-https://www.youtube.com/watch?v=fH-lLbHbG-A:
-- 'TMNT IV: Turtles in Time'
-- 'TMNT 4: Turtles in Time'
-https://www.youtube.com/watch?v=fH66CHAUcoA:
-- Chrono Trigger
-https://www.youtube.com/watch?v=fJZoDK-N6ug:
-- Castlevania 64
-https://www.youtube.com/watch?v=fJkpSSJUxC4:
-- Castlevania Curse of Darkness
-https://www.youtube.com/watch?v=fNBMeTJb9SM:
-- Dead Rising 3
-- Dead Rising III
-https://www.youtube.com/watch?v=fRy6Ly5A5EA:
-- Legend of Dragoon
-https://www.youtube.com/watch?v=fTj73xQg2TY:
-- Child of Light
-https://www.youtube.com/watch?v=fTvPg89TIMI:
-- Tales of Legendia
-https://www.youtube.com/watch?v=fWqvxC_8yDk:
-- 'Ecco: The Tides of Time (Sega CD)'
-- 'Ecco: The Tides of Time'
-https://www.youtube.com/watch?v=fWx4q8GqZeo:
-- Digital Devil Saga
-https://www.youtube.com/watch?v=fXxbFMtx0Bo:
-- Halo 3 ODST
-- Halo III ODST
-https://www.youtube.com/watch?v=fYvGx-PEAtg:
-- Tales of Symphonia
-https://www.youtube.com/watch?v=f_UurCb4AD4:
-- Dewy's Adventure
-https://www.youtube.com/watch?v=fbc17iYI7PA:
-- Warcraft II
-- Warcraft 2
-https://www.youtube.com/watch?v=fcJLdQZ4F8o:
-- Ar Tonelico
-https://www.youtube.com/watch?v=fc_3fMMaWK8:
-- Secret of Mana
-https://www.youtube.com/watch?v=fd6QnwqipcE:
-- Mutant Mudds
-https://www.youtube.com/watch?v=feZJtZnevAM:
-- Pandora's Tower
-https://www.youtube.com/watch?v=fexAY_t4N8U:
-- Conker's Bad Fur Day
-https://www.youtube.com/watch?v=fg1PDaOnU2Q:
-- 'Castlevania: Portrait of Ruin'
-https://www.youtube.com/watch?v=fiPxE3P2Qho:
-- Wild Arms 4
-- Wild Arms IV
-https://www.youtube.com/watch?v=fjNJqcuFD-A:
-- Katamari Damacy
-https://www.youtube.com/watch?v=fpVag5b7zHo:
-- Pokemon Omega Ruby / Alpha Sapphire
-- pokemon omega ruby
-- pokemon alpha sapphire
-https://www.youtube.com/watch?v=ft5DP1h8jsg:
-- Wild Arms 2
-- Wild Arms II
-https://www.youtube.com/watch?v=g2S2Lxzow3Q:
-- Mega Man 5
-- Mega Man V
-https://www.youtube.com/watch?v=g4Bnot1yBJA:
-- 'The Elder Scrolls III: Morrowind'
-- 'The Elder Scrolls 3: Morrowind'
-- Morrowind
-https://www.youtube.com/watch?v=g6vc_zFeHFk:
-- Streets of Rage
-https://www.youtube.com/watch?v=gAy6qk8rl5I:
-- Wild Arms
-https://www.youtube.com/watch?v=gDL6uizljVk:
-- 'Batman: Return of the Joker'
-https://www.youtube.com/watch?v=gF4pOYxzplw:
-- Xenogears
-https://www.youtube.com/watch?v=gIlGulCdwB4:
-- Pilotwings Resort
-https://www.youtube.com/watch?v=gLfz9w6jmJM:
-- Machinarium
-https://www.youtube.com/watch?v=gLu7Bh0lTPs:
-- Donkey Kong Country
-https://www.youtube.com/watch?v=gQUe8l_Y28Y:
-- Lineage II
-- Lineage 2
-https://www.youtube.com/watch?v=gQiYZlxJk3w:
-- Lufia II
-- Lufia 2
-https://www.youtube.com/watch?v=gQndM8KdTD0:
-- 'Kirby 64: The Crystal Shards'
-https://www.youtube.com/watch?v=gRZFl-vt4w0:
-- Ratchet & Clank
-- ratchet and clank
-https://www.youtube.com/watch?v=gSLIlAVZ6Eo:
-- Tales of Vesperia
-https://www.youtube.com/watch?v=gTahA9hCxAg:
-- Undertale
-https://www.youtube.com/watch?v=gVGhVofDPb4:
-- Mother 3
-- Mother III
-https://www.youtube.com/watch?v=gW0DiDKWgWc:
-- Earthbound
-https://www.youtube.com/watch?v=gWZ2cqFr0Vo:
-- Chrono Cross
-https://www.youtube.com/watch?v=gY9jq9-1LTk:
-- Treasure Hunter G
-https://www.youtube.com/watch?v=g_Hsyo7lmQU:
-- Pictionary
-https://www.youtube.com/watch?v=gcm3ak-SLqM:
-- 'Shadow Hearts II: Covenant'
-- 'Shadow Hearts 2: Covenant'
-https://www.youtube.com/watch?v=gf3NerhyM_k:
-- Tales of Berseria
-https://www.youtube.com/watch?v=ggTedyRHx20:
-- 'Qbeh-1: The Atlas Cube'
-- 'Qbeh-I: The Atlas Cube'
-https://www.youtube.com/watch?v=ghe_tgQvWKQ:
-- Resident Evil REmake
-https://www.youtube.com/watch?v=ght6F5_jHQ0:
-- Mega Man 4
-- Mega Man IV
-https://www.youtube.com/watch?v=glFK5I0G2GE:
-- Sheep Raider
-https://www.youtube.com/watch?v=glcGXw3gS6Q:
-- Silent Hill 3
-- Silent Hill III
-https://www.youtube.com/watch?v=gmfBMy-h6Js:
-- NieR
-https://www.youtube.com/watch?v=go7JlCI5n5o:
-- Counter Strike
-https://www.youtube.com/watch?v=gokt9KTpf18:
-- Mario Kart 7
-- Mario Kart VII
-https://www.youtube.com/watch?v=grQkblTqSMs:
-- Earthbound
-https://www.youtube.com/watch?v=grmP-wEjYKw:
-- Okami
-https://www.youtube.com/watch?v=guff_k4b6cI:
-- Wild Arms
-https://www.youtube.com/watch?v=gwesq9ElVM4:
-- 'The Legend of Zelda: A Link Between Worlds'
-- a link between worlds
-https://www.youtube.com/watch?v=gxF__3CNrsU:
-- Final Fantasy VI
-- Final Fantasy 6
-https://www.youtube.com/watch?v=gzl9oJstIgg:
-- 'The Legend of Zelda: Ocarina of Time'
-- ocarina of time
-https://www.youtube.com/watch?v=h0LDHLeL-mE:
-- Sonic Forces
-https://www.youtube.com/watch?v=h0ed9Kei7dw:
-- Biker Mice from Mars
-https://www.youtube.com/watch?v=h2AhfGXAPtk:
-- Deathsmiles
-https://www.youtube.com/watch?v=h4VF0mL35as:
-- Super Castlevania IV
-- Super Castlevania 4
-https://www.youtube.com/watch?v=h5iAyksrXgc:
-- Yoshi's Story
-https://www.youtube.com/watch?v=h8Z73i0Z5kk:
-- Final Fantasy Mystic Quest
-https://www.youtube.com/watch?v=h8wD8Dmxr94:
-- 'Dragon Ball Z: The Legacy of Goku II'
-- 'Dragon Ball Z: The Legacy of Goku 2'
-https://www.youtube.com/watch?v=hB3mYnW-v4w:
-- 'Superbrothers: Sword & Sworcery EP'
-- 'superbrothers: sword and sworcery ep'
-https://www.youtube.com/watch?v=hBg-pnQpic4:
-- Pokemon Ruby / Sapphire / Emerald
-- pokemon ruby
-- pokemon sapphire
-- pokemon emerald
-https://www.youtube.com/watch?v=hELte7HgL2Y:
-- Chrono Trigger
-https://www.youtube.com/watch?v=hFgqnQLyqqE:
-- Sonic Lost World
-https://www.youtube.com/watch?v=hL7-cD9LDp0:
-- Glover
-https://www.youtube.com/watch?v=hLKBPvLNzng:
-- 'The Legend of Zelda: A Link to the Past'
-- a link to the past
-https://www.youtube.com/watch?v=hMd5T_RlE_o:
-- Super Mario World
-https://www.youtube.com/watch?v=hMoejZAOOUM:
-- Ys II Chronicles
-- Ys 2 Chronicles
-https://www.youtube.com/watch?v=hNCGAN-eyuc:
-- Undertale
-https://www.youtube.com/watch?v=hNOTJ-v8xnk:
-- Final Fantasy IX
-- Final Fantasy 9
-https://www.youtube.com/watch?v=hT8FhGDS5qE:
-- Lufia II
-- Lufia 2
-https://www.youtube.com/watch?v=hUpjPQWKDpM:
-- Breath of Fire V
-- Breath of Fire 5
-https://www.youtube.com/watch?v=hV3Ktwm356M:
-- Killer Instinct
-https://www.youtube.com/watch?v=hYHMbcC08xA:
-- Mega Man 9
-- Mega Man IX
-https://www.youtube.com/watch?v=h_suLF-Qy5U:
-- Katamari Damacy
-https://www.youtube.com/watch?v=hb6Ny-4Pb7o:
-- Mana Khemia
-https://www.youtube.com/watch?v=he2oLG1Trtg:
-- 'Kirby: Triple Deluxe'
-https://www.youtube.com/watch?v=heD3Rzhrnaw:
-- Mega Man 2
-- Mega Man II
-https://www.youtube.com/watch?v=he_ECgg9YyU:
-- Mega Man
-https://www.youtube.com/watch?v=hlCHzEa9MRg:
-- Skies of Arcadia
-https://www.youtube.com/watch?v=hlQ-DG9Jy3Y:
-- Pop'n Music 2
-- Pop'n Music II
-https://www.youtube.com/watch?v=hoOeroni32A:
-- Mutant Mudds
-https://www.youtube.com/watch?v=hqKfTvkVo1o:
-- Monster Hunter Tri
-https://www.youtube.com/watch?v=hrxseupEweU:
-- Unreal Tournament 2003 & 2004
-- unreal tournament 2003
-- unreal tournament 2004
-https://www.youtube.com/watch?v=hsPiGiZ2ks4:
-- SimCity 4
-- SimCity IV
-https://www.youtube.com/watch?v=hv2BL0v2tb4:
-- Phantasy Star Online
-https://www.youtube.com/watch?v=hxZTBl7Q5fs:
-- 'The Legend of Zelda: Link''s Awakening'
-- 'link''s awakening'
-https://www.youtube.com/watch?v=hyjJl59f_I0:
-- Star Fox Adventures
-https://www.youtube.com/watch?v=i-hcCtD_aB0:
-- Soma Bringer
-https://www.youtube.com/watch?v=i-v-bJhK5yc:
-- Undertale
-https://www.youtube.com/watch?v=i1GFclxeDIU:
-- Shadow Hearts
-https://www.youtube.com/watch?v=i1ZVtT5zdcI:
-- Secret of Mana
-https://www.youtube.com/watch?v=i2E9c0j0n4A:
-- Rad Racer II
-- Rad Racer 2
-https://www.youtube.com/watch?v=i49PlEN5k9I:
-- Soul Sacrifice
-https://www.youtube.com/watch?v=i8DTcUWfmws:
-- Guilty Gear Isuka
-https://www.youtube.com/watch?v=iA6xXR3pwIY:
-- Baten Kaitos
-https://www.youtube.com/watch?v=iDIbO2QefKo:
-- Final Fantasy V
-- Final Fantasy 5
-https://www.youtube.com/watch?v=iDVMfUFs_jo:
-- LOST CHILD
-https://www.youtube.com/watch?v=iFa5bIrsWb0:
-- 'The Legend of Zelda: Link''s Awakening'
-https://www.youtube.com/watch?v=iJS-PjSQMtw:
-- 'Castlevania: Symphony of the Night'
-https://www.youtube.com/watch?v=iK-g9PXhXzM:
-- Radiant Historia
-https://www.youtube.com/watch?v=iMeBQBv2ACs:
-- Etrian Mystery Dungeon
-https://www.youtube.com/watch?v=iN3Jp55Db_A:
-- Maniac Mansion
-https://www.youtube.com/watch?v=iS98ggIHkRw:
-- Extreme-G
-https://www.youtube.com/watch?v=iSP-_hNQyYs:
-- Chrono Trigger
-https://www.youtube.com/watch?v=iTUBlKA5IfY:
-- Pokemon Art Academy
-https://www.youtube.com/watch?v=iV5Ae4lOWmk:
-- Super Paper Mario
-https://www.youtube.com/watch?v=iXDF9eHsmD4:
-- F-Zero
-https://www.youtube.com/watch?v=iZv19yJrZyo:
-- 'FTL: Advanced Edition'
-https://www.youtube.com/watch?v=idw1zFkySA0:
-- Boot Hill Heroes
-https://www.youtube.com/watch?v=ietzDT5lOpQ:
-- Braid
-https://www.youtube.com/watch?v=ifqmN14qJp8:
-- Minecraft
-https://www.youtube.com/watch?v=ifvxBt7tmA8:
-- Yoshi's Island
-https://www.youtube.com/watch?v=iga0Ed0BWGo:
-- Diablo III
-- Diablo 3
-https://www.youtube.com/watch?v=ihi7tI8Kaxc:
-- The Last Remnant
-https://www.youtube.com/watch?v=ijUwAWUS8ug:
-- Diablo II
-- Diablo 2
-https://www.youtube.com/watch?v=ilOYzbGwX7M:
-- Deja Vu
-https://www.youtube.com/watch?v=imK2k2YK36E:
-- Giftpia
-https://www.youtube.com/watch?v=in7TUvirruo:
-- Sonic Unleashed
-https://www.youtube.com/watch?v=injXmLzRcBI:
-- Blue Dragon
-https://www.youtube.com/watch?v=iohvqM6CGEU:
-- Mario Kart 64
-https://www.youtube.com/watch?v=irGCdR0rTM4:
-- 'Shadow Hearts II: Covenant'
-- 'Shadow Hearts 2: Covenant'
-https://www.youtube.com/watch?v=irQxobE5PU8:
-- Frozen Synapse
-https://www.youtube.com/watch?v=ivfEScAwMrE:
-- 'Paper Mario: Sticker Star'
-https://www.youtube.com/watch?v=iwemkM-vBmc:
-- Super Mario Sunshine
-https://www.youtube.com/watch?v=ixE9HlQv7v8:
-- Castle Crashers
-https://www.youtube.com/watch?v=j16ZcZf9Xz8:
-- Pokemon Silver / Gold / Crystal
-- pokemon silver
-- pokemon gold
-- pokemon crystal
-https://www.youtube.com/watch?v=j2zAq26hqd8:
-- 'Metroid Prime 2: Echoes'
-- 'Metroid Prime II: Echoes'
-https://www.youtube.com/watch?v=j4Zh9IFn_2U:
-- Etrian Odyssey Untold
-https://www.youtube.com/watch?v=j6i73HYUNPk:
-- Gauntlet III
-- Gauntlet 3
-https://www.youtube.com/watch?v=jANl59bNb60:
-- Breath of Fire III
-- Breath of Fire 3
-https://www.youtube.com/watch?v=jAQGCM-IyOE:
-- Xenosaga
-https://www.youtube.com/watch?v=jChHVPyd4-Y:
-- 'The Legend of Zelda: Ocarina of Time'
-- ocarina of time
-https://www.youtube.com/watch?v=jEmyzsFaiZ8:
-- Tomb Raider
-https://www.youtube.com/watch?v=jI2ltHB50KU:
-- Opoona
-https://www.youtube.com/watch?v=jJVTRXZXEIA:
-- 'Dust: An Elysian Tail'
-https://www.youtube.com/watch?v=jL57YsG1JJE:
-- Metroid
-https://www.youtube.com/watch?v=jLrqs_dvAGU:
-- Yoshi's Woolly World
-https://www.youtube.com/watch?v=jNoiUfwuuP8:
-- 'Kirby 64: The Crystal Shards'
-https://www.youtube.com/watch?v=jObg1aw9kzE:
-- 'Divinity 2: Ego Draconis'
-- 'Divinity II: Ego Draconis'
-https://www.youtube.com/watch?v=jP2CHO9yrl8:
-- Final Fantasy X
-- Final Fantasy 10
-https://www.youtube.com/watch?v=jRqXWj7TL5A:
-- Goldeneye
-https://www.youtube.com/watch?v=jTZEuazir4s:
-- Environmental Station Alpha
-https://www.youtube.com/watch?v=jWtiuVTe5kQ:
-- Equinox
-https://www.youtube.com/watch?v=jXGaW3dKaHs:
-- Mega Man 2
-- Mega Man II
-https://www.youtube.com/watch?v=jYFYsfEyi0c:
-- Ragnarok Online
-https://www.youtube.com/watch?v=j_8sYSOkwAg:
-- Professor Layton and the Curious Village
-https://www.youtube.com/watch?v=j_EH4xCh1_U:
-- Metroid Prime
-https://www.youtube.com/watch?v=jaG1I-7dYvY:
-- Earthbound
-https://www.youtube.com/watch?v=jfEZs-Ada78:
-- Jack Bros.
-https://www.youtube.com/watch?v=jgtKSnmM5oE:
-- Tetris
-https://www.youtube.com/watch?v=jhHfROLw4fA:
-- 'Donkey Kong Country: Tropical Freeze'
-https://www.youtube.com/watch?v=jhsNQ6r2fHE:
-- 3D Dot Game Heroes
-https://www.youtube.com/watch?v=jkWYvENgxwA:
-- Journey to Silius
-https://www.youtube.com/watch?v=jlFYSIyAGmA:
-- Donkey Kong Country 2
-- Donkey Kong Country II
-https://www.youtube.com/watch?v=jlcjrgSVkkc:
-- Mario Kart 8
-- Mario Kart VIII
-https://www.youtube.com/watch?v=jpghr0u8LCU:
-- Final Fantasy X
-- Final Fantasy 10
-https://www.youtube.com/watch?v=jv5_zzFZMtk:
-- Shadow of the Colossus
-https://www.youtube.com/watch?v=k09qvMpZYYo:
-- Secret of Mana
-https://www.youtube.com/watch?v=k0f4cCJqUbg:
-- Katamari Forever
-https://www.youtube.com/watch?v=k3m-_uCo-b8:
-- Mega Man
-https://www.youtube.com/watch?v=k4L8cq2vrlk:
-- Chrono Trigger
-https://www.youtube.com/watch?v=k4N3Go4wZCg:
-- 'Uncharted: Drake''s Fortune'
-https://www.youtube.com/watch?v=kA69u0-U-Vk:
-- MapleStory
-https://www.youtube.com/watch?v=kDssUvBiHFk:
-- Yoshi's Island
-https://www.youtube.com/watch?v=kEA-4iS0sco:
-- Skies of Arcadia
-https://www.youtube.com/watch?v=kJRiZaexNno:
-- Unlimited Saga
-https://www.youtube.com/watch?v=kN-jdHNOq8w:
-- Super Mario 64
-https://www.youtube.com/watch?v=kNDB4L0D2wg:
-- 'Everquest: Planes of Power'
-https://www.youtube.com/watch?v=kNPz77g5Xyk:
-- Super Castlevania IV
-- Super Castlevania 4
-https://www.youtube.com/watch?v=kNgI7N5k5Zo:
-- 'Atelier Iris 2: The Azoth of Destiny'
-- 'Atelier Iris II: The Azoth of Destiny'
-https://www.youtube.com/watch?v=kW63YiVf5I0:
-- Splatoon
-https://www.youtube.com/watch?v=kWRFPdhAFls:
-- 'Fire Emblem 4: Seisen no Keifu'
-- 'Fire Emblem IV: Seisen no Keifu'
-https://www.youtube.com/watch?v=khPWld3iA8g:
-- Max Payne 2
-- Max Payne II
-https://www.youtube.com/watch?v=ki_ralGwQN4:
-- Legend of Mana
-https://www.youtube.com/watch?v=kmkzuPrQHQM:
-- Yoshi's Island DS
-https://www.youtube.com/watch?v=koHO9vN6t4I:
-- Giftpia
-https://www.youtube.com/watch?v=krmNfjbfJUQ:
-- Midnight Resistance
-https://www.youtube.com/watch?v=ks0xlnvjwMo:
-- Final Fantasy VIII
-- Final Fantasy 8
-https://www.youtube.com/watch?v=ks74Hlce8yw:
-- Super Mario 3D World
-https://www.youtube.com/watch?v=ksq6wWbVsPY:
-- Tekken 2
-- Tekken II
-https://www.youtube.com/watch?v=ktnL6toFPCo:
-- PaRappa the Rapper
-https://www.youtube.com/watch?v=ku0pS3ko5CU:
-- 'The Legend of Zelda: Minish Cap'
-- minish cap
-https://www.youtube.com/watch?v=kx580yOvKxs:
-- Final Fantasy VI
-- Final Fantasy 6
-https://www.youtube.com/watch?v=kyaC_jSV_fw:
-- Nostalgia
-https://www.youtube.com/watch?v=kzId-AbowC4:
-- Xenosaga III
-- Xenosaga 3
-https://www.youtube.com/watch?v=kzUYJAaiEvA:
-- ICO
-https://www.youtube.com/watch?v=l1O9XZupPJY:
-- Tomb Raider III
-- Tomb Raider 3
-https://www.youtube.com/watch?v=l1UCISJoDTU:
-- Xenoblade Chronicles 2
-- Xenoblade Chronicles II
-https://www.youtube.com/watch?v=l5VK4kR1YTw:
-- Banjo-Kazooie
-https://www.youtube.com/watch?v=l5WLVNhczjE:
-- 'Phoenix Wright: Justice for All'
-https://www.youtube.com/watch?v=lBEvtA4Uuwk:
-- Wild Arms
-https://www.youtube.com/watch?v=lFOBRmPK-Qs:
-- Pokemon
-https://www.youtube.com/watch?v=lJc9ajk9bXs:
-- Sonic the Hedgehog 2
-- Sonic the Hedgehog II
-https://www.youtube.com/watch?v=lLP6Y-1_P1g:
-- Asterix & Obelix
-- asterix and obelix
-https://www.youtube.com/watch?v=lLniW316mUk:
-- Suikoden III
-- Suikoden 3
-https://www.youtube.com/watch?v=lOaWT7Y7ZNo:
-- Mirror's Edge
-https://www.youtube.com/watch?v=lPFndohdCuI:
-- Super Mario RPG
-https://www.youtube.com/watch?v=lXBFPdRiZMs:
-- 'Dragon Ball Z: Super Butoden'
-https://www.youtube.com/watch?v=lZUgl5vm6tk:
-- Trip World
-https://www.youtube.com/watch?v=lb88VsHVDbw:
-- 'The Legend of Zelda: Ocarina of Time'
-- ocarina of time
-https://www.youtube.com/watch?v=lcOky3CKCa0:
-- Yoshi's Woolly World
-https://www.youtube.com/watch?v=lfudDzITiw8:
-- Opoona
-https://www.youtube.com/watch?v=lhVk4Q47cgQ:
-- Shadow of the Colossus
-https://www.youtube.com/watch?v=lmhxytynQOE:
-- Romancing Saga 3
-- Romancing Saga III
-https://www.youtube.com/watch?v=loh0SQ_SF2s:
-- Xenogears
-https://www.youtube.com/watch?v=lwUtHErD2Yo:
-- Furi
-https://www.youtube.com/watch?v=lyduqdKbGSw:
-- Create
-https://www.youtube.com/watch?v=lzhkFmiTB_8:
-- Grandia II
-- Grandia 2
-https://www.youtube.com/watch?v=m-VXBxd2pmo:
-- Asterix
-https://www.youtube.com/watch?v=m09KrtCgiCA:
-- Final Fantasy Origins
-- final fantasy origins
-https://www.youtube.com/watch?v=m2Vlxyd9Wjw:
-- Dragon Quest V
-- Dragon Quest 5
-https://www.youtube.com/watch?v=m2q8wtFHbyY:
-- 'La Pucelle: Tactics'
-https://www.youtube.com/watch?v=m4NfokfW3jw:
-- 'Dragon Ball Z: The Legacy of Goku II'
-- 'Dragon Ball Z: The Legacy of Goku 2'
-https://www.youtube.com/watch?v=m4uR39jNeGE:
-- Wild Arms 3
-- Wild Arms III
-https://www.youtube.com/watch?v=m57kb5d3wZ4:
-- Chrono Cross
-https://www.youtube.com/watch?v=m6HgGxxjyrU:
-- Tales of Symphonia
-https://www.youtube.com/watch?v=m9kEp_sNLJo:
-- Illusion of Gaia
-https://www.youtube.com/watch?v=mA2rTmfT1T8:
-- Valdis Story
-https://www.youtube.com/watch?v=mASkgOcUdOQ:
-- Final Fantasy V
-- Final Fantasy 5
-https://www.youtube.com/watch?v=mDw3F-Gt4bQ:
-- Knuckles Chaotix
-https://www.youtube.com/watch?v=mG1D80dMhKo:
-- Asterix
-https://www.youtube.com/watch?v=mG9BcQEApoI:
-- 'Castlevania: Dawn of Sorrow'
-https://www.youtube.com/watch?v=mHUE5GkAUXo:
-- Wild Arms 4
-- Wild Arms IV
-https://www.youtube.com/watch?v=mJCRoXkJohc:
-- Bomberman 64
-https://www.youtube.com/watch?v=mNDaE4dD8dE:
-- Monster Rancher 4
-- Monster Rancher IV
-https://www.youtube.com/watch?v=mPhy1ylhj7E:
-- Earthbound
-https://www.youtube.com/watch?v=mRGdr6iahg8:
-- 'Kirby 64: The Crystal Shards'
-https://www.youtube.com/watch?v=mSXFiU0mqik:
-- Chrono Cross
-https://www.youtube.com/watch?v=mTnXMcxBwcE:
-- 'The Legend of Zelda: Ocarina of Time'
-- ocarina of time
-https://www.youtube.com/watch?v=mWJeicPtar0:
-- NieR
-https://www.youtube.com/watch?v=mX78VEVMSVo:
-- Arcana
-https://www.youtube.com/watch?v=m_kAJLsSGz8:
-- 'Shantae: Risky''s Revenge'
-https://www.youtube.com/watch?v=mbPpGeTPbjM:
-- Eternal Darkness
-https://www.youtube.com/watch?v=mfOHgEeuEHE:
-- Umineko no Naku Koro ni
-https://www.youtube.com/watch?v=mh9iibxyg14:
-- Super Mario RPG
-https://www.youtube.com/watch?v=minJMBk4V9g:
-- 'Star Trek: Deep Space Nine'
-https://www.youtube.com/watch?v=mkTkAkcj6mQ:
-- 'The Elder Scrolls IV: Oblivion'
-- 'The Elder Scrolls 4: Oblivion'
-- Oblivion
-https://www.youtube.com/watch?v=mm-nVnt8L0g:
-- Earthbound
-https://www.youtube.com/watch?v=mnPqUs4DZkI:
-- 'Turok: Dinosaur Hunter'
-https://www.youtube.com/watch?v=mngXThXnpwY:
-- Legendary Wings
-https://www.youtube.com/watch?v=moDNdAfZkww:
-- Minecraft
-https://www.youtube.com/watch?v=mpt-RXhdZzQ:
-- Mega Man X
-https://www.youtube.com/watch?v=mr1anFEQV9s:
-- Alundra
-https://www.youtube.com/watch?v=msEbmIgnaSI:
-- Breath of Fire IV
-- Breath of Fire 4
-https://www.youtube.com/watch?v=mvcctOvLAh4:
-- Donkey Kong Country
-https://www.youtube.com/watch?v=mwWcWgKjN5Y:
-- F.E.A.R.
-https://www.youtube.com/watch?v=mwdGO2vfAho:
-- 'Castlevania: Portrait of Ruin'
-https://www.youtube.com/watch?v=myZzE9AYI90:
-- Silent Hill 2
-- Silent Hill II
-https://www.youtube.com/watch?v=myjd1MnZx5Y:
-- Dragon Quest IX
-- Dragon Quest 9
-https://www.youtube.com/watch?v=mzFGgwKMOKw:
-- Super Mario Land 2
-- Super Mario Land II
-https://www.youtube.com/watch?v=n10VyIRJj58:
-- Xenosaga III
-- Xenosaga 3
-https://www.youtube.com/watch?v=n2CyG6S363M:
-- Final Fantasy VII
-- Final Fantasy 7
-https://www.youtube.com/watch?v=n4Pun5BDH0g:
-- Okamiden
-https://www.youtube.com/watch?v=n5L0ZpcDsZw:
-- Lufia II
-- Lufia 2
-https://www.youtube.com/watch?v=n5eb_qUg5rY:
-- Jazz Jackrabbit 2
-- Jazz Jackrabbit II
-https://www.youtube.com/watch?v=n6f-bb8DZ_k:
-- Street Fighter II
-- Street Fighter 2
-https://www.youtube.com/watch?v=n9QNuhs__8s:
-- 'Magna Carta: Tears of Blood'
-https://www.youtube.com/watch?v=nBWjVglSVGk:
-- The Flintstones
-https://www.youtube.com/watch?v=nEBoB571s9w:
-- Asterix & Obelix
-- asterix and obelix
-https://www.youtube.com/watch?v=nFsoCfGij0Y:
-- 'Batman: Return of the Joker'
-https://www.youtube.com/watch?v=nH7ma8TPnE8:
-- The Legend of Zelda
-https://www.youtube.com/watch?v=nJN-xeA7ZJo:
-- Treasure Master
-https://www.youtube.com/watch?v=nJgwF3gw9Xg:
-- 'Zelda II: The Adventure of Link'
-- 'Zelda 2: The Adventure of Link'
-https://www.youtube.com/watch?v=nK-IjRF-hs4:
-- 'Spyro: A Hero''s Tail'
-https://www.youtube.com/watch?v=nL3YMZ-Br0o:
-- Child of Light
-https://www.youtube.com/watch?v=nL5Y2NmHn38:
-- Fallout 4
-- Fallout IV
-https://www.youtube.com/watch?v=nO3lPvYVxzs:
-- Super Mario Galaxy
-https://www.youtube.com/watch?v=nOeGX-O_QRU:
-- Top Gear
-https://www.youtube.com/watch?v=nQC4AYA14UU:
-- Battery Jam
-https://www.youtube.com/watch?v=nRw54IXvpE8:
-- Gitaroo Man
-https://www.youtube.com/watch?v=nUScyv5DcIo:
-- Super Stickman Golf 2
-- Super Stickman Golf II
-https://www.youtube.com/watch?v=nUbwvWQOOvU:
-- Metal Gear Solid 3
-- Metal Gear Solid III
-https://www.youtube.com/watch?v=nUiZp8hb42I:
-- Intelligent Qube
-https://www.youtube.com/watch?v=nY8JLHPaN4c:
-- 'Ape Escape: Million Monkeys'
-https://www.youtube.com/watch?v=naIUUMurT5U:
-- Lara Croft GO
-https://www.youtube.com/watch?v=nea0ze3wh6k:
-- Toy Story 2
-- Toy Story II
-https://www.youtube.com/watch?v=nesYhwViPkc:
-- 'The Legend of Zelda: Tri Force Heroes'
-- tri force heroes
-https://www.youtube.com/watch?v=ng442hwhhAw:
-- Super Mario Bros 3
-- Super Mario Bros III
-https://www.youtube.com/watch?v=nj2d8U-CO9E:
-- Wild Arms 2
-- Wild Arms II
-https://www.youtube.com/watch?v=njoqMF6xebE:
-- 'Chip ''n Dale: Rescue Rangers'
-https://www.youtube.com/watch?v=nl57xFzDIM0:
-- Darksiders II
-- Darksiders 2
-https://www.youtube.com/watch?v=novAJAlNKHk:
-- Wild Arms 4
-- Wild Arms IV
-https://www.youtube.com/watch?v=nrNPfvs4Amc:
-- Super Turrican 2
-- Super Turrican II
-https://www.youtube.com/watch?v=nuUYTK61228:
-- Hyper Light Drifter
-https://www.youtube.com/watch?v=nuXnaXgt2MM:
-- Super Mario 64
-https://www.youtube.com/watch?v=nvv6JrhcQSo:
-- 'The Legend of Zelda: Spirit Tracks'
-- spirit tracks
-https://www.youtube.com/watch?v=ny2ludAFStY:
-- Sonic Triple Trouble
-https://www.youtube.com/watch?v=o0t8vHJtaKk:
-- Rayman
-https://www.youtube.com/watch?v=o5tflPmrT5c:
-- I am Setsuna
-- 1 am Setsuna
-https://www.youtube.com/watch?v=o8cQl5pL6R8:
-- Street Fighter IV
-- Street Fighter 4
-https://www.youtube.com/watch?v=oEEm45iRylE:
-- Super Princess Peach
-https://www.youtube.com/watch?v=oFbVhFlqt3k:
-- Xenogears
-https://www.youtube.com/watch?v=oHjt7i5nt8w:
-- Final Fantasy VI
-- Final Fantasy 6
-https://www.youtube.com/watch?v=oIPYptk_eJE:
-- 'Starcraft II: Wings of Liberty'
-- 'Starcraft 2: Wings of Liberty'
-https://www.youtube.com/watch?v=oJFAAWYju6c:
-- Ys Origin
-https://www.youtube.com/watch?v=oNjnN_p5Clo:
-- Bomberman 64
-https://www.youtube.com/watch?v=oPjI-qh3QWQ:
-- Opoona
-https://www.youtube.com/watch?v=oQVscNAg1cQ:
-- The Adventures of Bayou Billy
-https://www.youtube.com/watch?v=oYOdCD4mWsk:
-- Donkey Kong Country 2
-- Donkey Kong Country II
-https://www.youtube.com/watch?v=o_vtaSXF0WU:
-- 'Arc the Lad IV: Twilight of the Spirits'
-- 'Arc the Lad 4: Twilight of the Spirits'
-https://www.youtube.com/watch?v=obPhMUJ8G9k:
-- Mother 3
-- Mother III
-https://www.youtube.com/watch?v=ocVRCl9Kcus:
-- Shatter
-https://www.youtube.com/watch?v=odyd0b_WZ9E:
-- Dr. Mario
-https://www.youtube.com/watch?v=oeBGiKhMy-Q:
-- Chrono Cross
-https://www.youtube.com/watch?v=oksAhZuJ55I:
-- Etrian Odyssey II
-- Etrian Odyssey 2
-https://www.youtube.com/watch?v=ol2zCdVl3pQ:
-- Final Fantasy Mystic Quest
-https://www.youtube.com/watch?v=ooohjN5k5QE:
-- Cthulhu Saves the World
-https://www.youtube.com/watch?v=oseD00muRc8:
-- 'Phoenix Wright: Trials and Tribulations'
-https://www.youtube.com/watch?v=ouV9XFnqgio:
-- Final Fantasy Tactics
-https://www.youtube.com/watch?v=oubq22rV9sE:
-- Top Gear Rally
-https://www.youtube.com/watch?v=p-GeFCcmGzk:
-- World of Warcraft
-https://www.youtube.com/watch?v=p-dor7Fj3GM:
-- 'The Legend of Zelda: Majora''s Mask'
-- 'majora''s mask'
-https://www.youtube.com/watch?v=p2vEakoOIdU:
-- Final Fantasy Mystic Quest
-https://www.youtube.com/watch?v=p48dpXQixgk:
-- Beyond Good & Evil
-- beyond good and evil
-https://www.youtube.com/watch?v=p5ObFGkl_-4:
-- 'The Legend of Zelda: A Link to the Past'
-- a link to the past
-https://www.youtube.com/watch?v=p6LMIrRG16c:
-- Asterix & Obelix
-- asterix and obelix
-https://www.youtube.com/watch?v=p6alE3r44-E:
-- Final Fantasy IX
-- Final Fantasy 9
-https://www.youtube.com/watch?v=p9Nt449SP24:
-- Guardian's Crusade
-https://www.youtube.com/watch?v=pAlhuLOMFbU:
-- World of Goo
-https://www.youtube.com/watch?v=pDW_nN8EkjM:
-- Wild Guns
-https://www.youtube.com/watch?v=pDznNHFE5rA:
-- Final Fantasy Tactics Advance
-https://www.youtube.com/watch?v=pETxZAqgYgQ:
-- 'Zelda II: The Adventure of Link'
-- 'Zelda 2: The Adventure of Link'
-https://www.youtube.com/watch?v=pI4lS0lxV18:
-- Terraria
-https://www.youtube.com/watch?v=pIC5D1F9EQQ:
-- 'Zelda II: The Adventure of Link'
-- 'Zelda 2: The Adventure of Link'
-https://www.youtube.com/watch?v=pOK5gWEnEPY:
-- Resident Evil REmake
-https://www.youtube.com/watch?v=pQVuAGSKofs:
-- Super Castlevania IV
-- Super Castlevania 4
-https://www.youtube.com/watch?v=pTp4d38cPtc:
-- Super Metroid
-https://www.youtube.com/watch?v=pWVxGmFaNFs:
-- Ragnarok Online II
-- Ragnarok Online 2
-https://www.youtube.com/watch?v=pYSlMtpYKgw:
-- Final Fantasy XII
-- Final Fantasy 12
-https://www.youtube.com/watch?v=pZBBZ77gob4:
-- Xenoblade Chronicles
-https://www.youtube.com/watch?v=pb3EJpfIYGc:
-- Persona 5
-- Persona V
-https://www.youtube.com/watch?v=pbmKt4bb5cs:
-- Brave Fencer Musashi
-https://www.youtube.com/watch?v=pfe5a22BHGk:
-- Skies of Arcadia
-https://www.youtube.com/watch?v=pgacxbSdObw:
-- Breath of Fire IV
-- Breath of Fire 4
-https://www.youtube.com/watch?v=pieNm70nCIQ:
-- Baten Kaitos
-https://www.youtube.com/watch?v=pmKP4hR2Td0:
-- Mario Paint
-https://www.youtube.com/watch?v=pmQu1KRUw7U:
-- New Super Mario Bros Wii
-https://www.youtube.com/watch?v=pnS50Lmz6Y8:
-- 'Beyond: Two Souls'
-https://www.youtube.com/watch?v=pqCxONuUK3s:
-- 'Persona Q: Shadow of the Labyrinth'
-https://www.youtube.com/watch?v=pq_nXXuZTtA:
-- Phantasy Star Online
-https://www.youtube.com/watch?v=prRDZPbuDcI:
-- Guilty Gear XX Reload (Korean Version)
-- Guilty Gear 20 Reload
-- guilty gear xx reload
-https://www.youtube.com/watch?v=prc_7w9i_0Q:
-- Super Mario RPG
-https://www.youtube.com/watch?v=ptr9JCSxeug:
-- Popful Mail
-https://www.youtube.com/watch?v=pucNWokmRr0:
-- Tales of Eternia
-https://www.youtube.com/watch?v=pwIy1Oto4Qc:
-- Dark Cloud
-https://www.youtube.com/watch?v=pxAH2U75BoM:
-- Guild Wars 2
-- Guild Wars II
-https://www.youtube.com/watch?v=pxcx_BACNQE:
-- Double Dragon
-https://www.youtube.com/watch?v=pyO56W8cysw:
-- Machinarium
-https://www.youtube.com/watch?v=q-Fc23Ksh7I:
-- Final Fantasy V
-- Final Fantasy 5
-https://www.youtube.com/watch?v=q-NUnKMEXnM:
-- Evoland II
-- Evoland 2
-https://www.youtube.com/watch?v=q5vG69CXgRs:
-- Pokemon Ruby / Sapphire / Emerald
-- pokemon ruby
-- pokemon sapphire
-- pokemon emerald
-https://www.youtube.com/watch?v=q6btinyHMAg:
-- Okamiden
-https://www.youtube.com/watch?v=q87OASJOKOg:
-- 'Castlevania: Aria of Sorrow'
-https://www.youtube.com/watch?v=q8ZKmxmWqhY:
-- Massive Assault
-https://www.youtube.com/watch?v=qBC7aIoDSHU:
-- 'Minecraft: Story Mode'
-https://www.youtube.com/watch?v=qBh4tvmT6N4:
-- Max Payne 3
-- Max Payne III
-https://www.youtube.com/watch?v=qEozZuqRbgQ:
-- Snowboard Kids 2
-- Snowboard Kids II
-https://www.youtube.com/watch?v=qH8MFPIvFpU:
-- Xenogears
-https://www.youtube.com/watch?v=qJMfgv5YFog:
-- Katamari Damacy
-https://www.youtube.com/watch?v=qMkvXCaxXOg:
-- Senko no Ronde DUO
-https://www.youtube.com/watch?v=qN32pn9abhI:
-- Secret of Mana
-https://www.youtube.com/watch?v=qNIAYDOCfGU:
-- Guacamelee!
-https://www.youtube.com/watch?v=qP_40IXc-UA:
-- Mutant Mudds
-https://www.youtube.com/watch?v=qPgoOxGb6vk:
-- For the Frog the Bell Tolls
-https://www.youtube.com/watch?v=qR8x99ylgqc:
-- Axiom Verge
-https://www.youtube.com/watch?v=q_ClDJNpFV8:
-- Silent Hill 3
-- Silent Hill III
-https://www.youtube.com/watch?v=qcf1CdKVATo:
-- Jurassic Park
-https://www.youtube.com/watch?v=qgJ0yQNX2cI:
-- A Boy And His Blob
-https://www.youtube.com/watch?v=qhYbg4fsPiE:
-- Pokemon Quest
-https://www.youtube.com/watch?v=qjNHwF3R-kg:
-- Starbound
-https://www.youtube.com/watch?v=qmeaNH7mWAY:
-- 'Animal Crossing: New Leaf'
-https://www.youtube.com/watch?v=qmvx5zT88ww:
-- Sonic the Hedgehog
-https://www.youtube.com/watch?v=qnJDEN-JOzY:
-- Ragnarok Online II
-- Ragnarok Online 2
-https://www.youtube.com/watch?v=qnvYRm_8Oy8:
-- Shenmue
-https://www.youtube.com/watch?v=qqa_pXXSMDg:
-- Panzer Dragoon Saga
-https://www.youtube.com/watch?v=qrmzQOAASXo:
-- Kirby's Return to Dreamland
-https://www.youtube.com/watch?v=qs3lqJnkMX8:
-- Kirby's Epic Yarn
-https://www.youtube.com/watch?v=qsDU8LC5PLI:
-- 'Tactics Ogre: Let Us Cling Together'
-https://www.youtube.com/watch?v=qtrFSnyvEX0:
-- Demon's Crest
-https://www.youtube.com/watch?v=qyrLcNCBnPQ:
-- Sonic Unleashed
-https://www.youtube.com/watch?v=qzhWuriX9Ws:
-- Xenogears
-https://www.youtube.com/watch?v=r-zRrHICsw0:
-- LED Storm
-https://www.youtube.com/watch?v=r5A1MkzCX-s:
-- Castlevania
-https://www.youtube.com/watch?v=r5n9re80hcQ:
-- Dragon Quest VII 3DS
-- Dragon Quest 7 3DS
-https://www.youtube.com/watch?v=r6F92CUYjbI:
-- Titan Souls
-https://www.youtube.com/watch?v=r6dC9N4WgSY:
-- Lisa the Joyful
-https://www.youtube.com/watch?v=r7owYv6_tuw:
-- Tobal No. 1
-- Tobal No. I
-https://www.youtube.com/watch?v=rACVXsRX6IU:
-- Yoshi's Island DS
-https://www.youtube.com/watch?v=rADeZTd9qBc:
-- 'Ace Combat 5: The Unsung War'
-- 'Ace Combat V: The Unsung War'
-https://www.youtube.com/watch?v=rAJS58eviIk:
-- Ragnarok Online II
-- Ragnarok Online 2
-https://www.youtube.com/watch?v=rEE6yp873B4:
-- Contact
-https://www.youtube.com/watch?v=rFIzW_ET_6Q:
-- Shadow Hearts III
-- Shadow Hearts 3
-https://www.youtube.com/watch?v=rKGlXub23pw:
-- 'Ys VIII: Lacrimosa of Dana'
-- 'Ys 8: Lacrimosa of Dana'
-https://www.youtube.com/watch?v=rLM_wOEsOUk:
-- F-Zero
-https://www.youtube.com/watch?v=rLXgXfncaIA:
-- Anodyne
-https://www.youtube.com/watch?v=rLuP2pUwK8M:
-- Pop'n Music GB
-https://www.youtube.com/watch?v=rMxIyQqeGZ8:
-- Soma Bringer
-https://www.youtube.com/watch?v=rSBh2ZUKuq4:
-- 'Castlevania: Lament of Innocence'
-https://www.youtube.com/watch?v=rVmt7axswLo:
-- Castlevania Curse of Darkness
-https://www.youtube.com/watch?v=rXNrtuz0vl4:
-- Mega Man ZX
-https://www.youtube.com/watch?v=rXlxR7sH3iU:
-- Katamari Damacy
-https://www.youtube.com/watch?v=rY3n4qQZTWY:
-- Dragon Quest III
-- Dragon Quest 3
-https://www.youtube.com/watch?v=rZ2sNdqELMY:
-- Pikmin
-https://www.youtube.com/watch?v=rZn6QE_iVzA:
-- Tekken 5
-- Tekken V
-https://www.youtube.com/watch?v=rb9yuLqoryU:
-- Spelunky
-https://www.youtube.com/watch?v=rcnkZCiwKPs:
-- Trine
-https://www.youtube.com/watch?v=rd3QIW5ds4Q:
-- Spanky's Quest
-https://www.youtube.com/watch?v=reOJi31i9JM:
-- Chrono Trigger
-https://www.youtube.com/watch?v=rg_6OKlgjGE:
-- Shin Megami Tensei IV
-- Shin Megami Tensei 4
-https://www.youtube.com/watch?v=rhCzbGrG7DU:
-- Super Mario Galaxy
-https://www.youtube.com/watch?v=rhaQM_Vpiko:
-- Outlaws
-https://www.youtube.com/watch?v=rhbGqHurV5I:
-- Castlevania II
-- Castlevania 2
-https://www.youtube.com/watch?v=rltCi97DQ7Y:
-- Xenosaga II
-- Xenosaga 2
-https://www.youtube.com/watch?v=ro4ceM17QzY:
-- Sonic Lost World
-https://www.youtube.com/watch?v=roRsBf_kQps:
-- Xenoblade Chronicles
-https://www.youtube.com/watch?v=rt0hrHroPz8:
-- 'Phoenix Wright: Ace Attorney'
-https://www.youtube.com/watch?v=ru4pkshvp7o:
-- Rayman Origins
-https://www.youtube.com/watch?v=rzLD0vbOoco:
-- 'Dracula X: Rondo of Blood'
-https://www.youtube.com/watch?v=rz_aiHo3aJg:
-- ActRaiser
-https://www.youtube.com/watch?v=s-6L1lM_x7k:
-- Final Fantasy XI
-- Final Fantasy 11
-https://www.youtube.com/watch?v=s-kTMBeDy40:
-- Grandia
-https://www.youtube.com/watch?v=s0mCsa2q2a4:
-- Donkey Kong Country 3
-- Donkey Kong Country III
-https://www.youtube.com/watch?v=s25IVZL0cuE:
-- 'Castlevania: Portrait of Ruin'
-https://www.youtube.com/watch?v=s3ja0vTezhs:
-- Mother 3
-- Mother III
-https://www.youtube.com/watch?v=s4pG2_UOel4:
-- Castlevania III
-- Castlevania 3
-https://www.youtube.com/watch?v=s6D8clnSE_I:
-- Pokemon
-https://www.youtube.com/watch?v=s7mVzuPSvSY:
-- Gravity Rush
-https://www.youtube.com/watch?v=sA_8Y30Lk2Q:
-- 'Ys VI: The Ark of Napishtim'
-- 'Ys 6: The Ark of Napishtim'
-https://www.youtube.com/watch?v=sBkqcoD53eI:
-- Breath of Fire II
-- Breath of Fire 2
-https://www.youtube.com/watch?v=sC4xMC4sISU:
-- Bioshock
-https://www.youtube.com/watch?v=sHQslJ2FaaM:
-- Krater
-https://www.youtube.com/watch?v=sHduBNdadTA:
-- 'Atelier Iris 2: The Azoth of Destiny'
-- 'Atelier Iris II: The Azoth of Destiny'
-https://www.youtube.com/watch?v=sIXnwB5AyvM:
-- Alundra
-https://www.youtube.com/watch?v=sMcx87rq0oA:
-- Seiken Densetsu 3
-- Seiken Densetsu III
-https://www.youtube.com/watch?v=sN8gtvYdqY4:
-- Opoona
-https://www.youtube.com/watch?v=sOgo6fXbJI4:
-- Final Fantasy Mystic Quest
-https://www.youtube.com/watch?v=sQ4aADxHssY:
-- Romance of the Three Kingdoms V
-- Romance of the Three Kingdoms 5
-https://www.youtube.com/watch?v=sRLoAqxsScI:
-- 'Tintin: Prisoners of the Sun'
-https://www.youtube.com/watch?v=sSkcY8zPWIY:
-- 'The Legend of Zelda: Skyward Sword'
-- skyward sword
-https://www.youtube.com/watch?v=sUc3p5sojmw:
-- 'Zelda II: The Adventure of Link'
-- 'Zelda 2: The Adventure of Link'
-https://www.youtube.com/watch?v=sVnly-OASsI:
-- Lost Odyssey
-https://www.youtube.com/watch?v=sYVOk6kU3TY:
-- 'South Park: The Stick of Truth'
-https://www.youtube.com/watch?v=sZU8xWDH68w:
-- The World Ends With You
-https://www.youtube.com/watch?v=s_Z71tcVVVg:
-- Super Mario Sunshine
-https://www.youtube.com/watch?v=seJszC75yCg:
-- Final Fantasy VII
-- Final Fantasy 7
-https://www.youtube.com/watch?v=seaPEjQkn74:
-- Emil Chronicle Online
-https://www.youtube.com/watch?v=shx_nhWmZ-I:
-- 'Adventure Time: Hey Ice King! Why''d You Steal Our Garbage?!'
-https://www.youtube.com/watch?v=sl22D3F1954:
-- Marvel vs Capcom 3
-- Marvel vs Capcom III
-https://www.youtube.com/watch?v=snsS40I9-Ts:
-- Shovel Knight
-https://www.youtube.com/watch?v=sqIb-ZhY85Q:
-- Mega Man 5
-- Mega Man V
-https://www.youtube.com/watch?v=su8bqSqIGs0:
-- Chrono Trigger
-https://www.youtube.com/watch?v=sx6L5b-ACVk:
-- 'The Legend of Zelda: A Link to the Past'
-- a link to the past
-https://www.youtube.com/watch?v=sxcTW6DlNqA:
-- Super Adventure Island
-https://www.youtube.com/watch?v=szxxAefjpXw:
-- 'Mario & Luigi: Bowser''s Inside Story'
-- 'mario and luigi: bower''s inside story'
-https://www.youtube.com/watch?v=t6-MOj2mkgE:
-- '999: Nine Hours, Nine Persons, Nine Doors'
-https://www.youtube.com/watch?v=t6YVE2kp8gs:
-- Earthbound
-https://www.youtube.com/watch?v=t97-JQtcpRA:
-- Nostalgia
-https://www.youtube.com/watch?v=t9uUD60LS38:
-- 'SMT: Digital Devil Saga 2'
-- 'SMT: Digital Devil Saga II'
-https://www.youtube.com/watch?v=tBr9OyNHRjA:
-- 'Sang-Froid: Tales of Werewolves'
-https://www.youtube.com/watch?v=tDuCLC_sZZY:
-- 'Divinity: Original Sin'
-https://www.youtube.com/watch?v=tEXf3XFGFrY:
-- Sonic Unleashed
-https://www.youtube.com/watch?v=tFsVKUoGJZs:
-- Deus Ex
-https://www.youtube.com/watch?v=tIiNJgLECK0:
-- Super Mario RPG
-https://www.youtube.com/watch?v=tKMWMS7O50g:
-- Pokemon Mystery Dungeon
-https://www.youtube.com/watch?v=tKmmcOH2xao:
-- VVVVVV
-https://www.youtube.com/watch?v=tL3zvui1chQ:
-- 'The Legend of Zelda: Majora''s Mask'
-- 'majora''s mask'
-https://www.youtube.com/watch?v=tNvY96zReis:
-- Metal Gear Solid
-https://www.youtube.com/watch?v=tQYCO5rHSQ8:
-- Donkey Kong Land
-https://www.youtube.com/watch?v=tU3ZA2tFxDU:
-- Fatal Frame
-https://www.youtube.com/watch?v=tVnjViENsds:
-- Super Robot Wars 4
-- Super Robot Wars IV
-https://www.youtube.com/watch?v=tWopcEQUkhg:
-- Super Smash Bros. Wii U
-https://www.youtube.com/watch?v=tXnCJLLZIvc:
-- 'Paper Mario: The Thousand Year Door'
-https://www.youtube.com/watch?v=tbVLmRfeIQg:
-- Alundra
-https://www.youtube.com/watch?v=tdsnX2Z0a3g:
-- Blast Corps
-https://www.youtube.com/watch?v=tgxFLMM9TLw:
-- Lost Odyssey
-https://www.youtube.com/watch?v=tiL0mhmOOnU:
-- Sleepwalker
-https://www.youtube.com/watch?v=tiwsAs6WVyQ:
-- Castlevania II
-- Castlevania 2
-https://www.youtube.com/watch?v=tj3ks8GfBQU:
-- Guilty Gear XX Reload (Korean Version)
-- Guilty Gear 20 Reload
-- guilty gear xx reload
-https://www.youtube.com/watch?v=tk61GaJLsOQ:
-- Mother 3
-- Mother III
-https://www.youtube.com/watch?v=tkj57nM0OqQ:
-- Sonic the Hedgehog 2
-- Sonic the Hedgehog II
-https://www.youtube.com/watch?v=tlY88rlNnEE:
-- Xenogears
-https://www.youtube.com/watch?v=tnAXbjXucPc:
-- Battletoads & Double Dragon
-- battletoads
-- double dragon
-https://www.youtube.com/watch?v=tqyigq3uWzo:
-- Perfect Dark
-https://www.youtube.com/watch?v=tvGn7jf7t8c:
-- Shinobi
-https://www.youtube.com/watch?v=tvjGxtbJpMk:
-- Parasite Eve
-https://www.youtube.com/watch?v=ty4CBnWeEKE:
-- Mario Kart 64
-https://www.youtube.com/watch?v=tzi9trLh9PE:
-- Blue Dragon
-https://www.youtube.com/watch?v=u3S8CGo_klk:
-- Radical Dreamers
-https://www.youtube.com/watch?v=u4cv8dOFQsc:
-- Silent Hill 3
-- Silent Hill III
-https://www.youtube.com/watch?v=u5v8qTkf-yk:
-- Super Smash Bros. Brawl
-https://www.youtube.com/watch?v=u6Fa28hef7I:
-- Last Bible III
-- Last Bible 3
-https://www.youtube.com/watch?v=uDwLy1_6nDw:
-- F-Zero
-https://www.youtube.com/watch?v=uDzUf4I751w:
-- Mega Man Battle Network
-https://www.youtube.com/watch?v=uKK631j464M:
-- 'Castlevania: Symphony of the Night'
-https://www.youtube.com/watch?v=uKWkvGnNffU:
-- Dustforce
-https://www.youtube.com/watch?v=uM3dR2VbMck:
-- Super Stickman Golf 2
-- Super Stickman Golf II
-https://www.youtube.com/watch?v=uPU4gCjrDqg:
-- StarTropics
-https://www.youtube.com/watch?v=uSOspFMHVls:
-- Super Mario Bros 2
-- Super Mario Bros II
-https://www.youtube.com/watch?v=uTRjJj4UeCg:
-- Shovel Knight
-https://www.youtube.com/watch?v=uUA40z9kT6w:
-- Tomb Raider Legend
-https://www.youtube.com/watch?v=uURUC6yEMZc:
-- Yooka-Laylee
-https://www.youtube.com/watch?v=uV_g76ThygI:
-- Xenosaga III
-- Xenosaga 3
-https://www.youtube.com/watch?v=uX-Dk8gBgg8:
-- Valdis Story
-https://www.youtube.com/watch?v=uYX350EdM-8:
-- Secret of Mana
-https://www.youtube.com/watch?v=uYcqP1TWYOE:
-- Soul Blade
-https://www.youtube.com/watch?v=ucXYUeyQ6iM:
-- Pop'n Music 2
-- Pop'n Music II
-https://www.youtube.com/watch?v=udEC_I8my9Y:
-- Final Fantasy X
-- Final Fantasy 10
-https://www.youtube.com/watch?v=udNOf4W52hg:
-- Dragon Quest III
-- Dragon Quest 3
-https://www.youtube.com/watch?v=udO3kaNWEsI:
-- Xenoblade Chronicles
-https://www.youtube.com/watch?v=uixqfTElRuI:
-- 'The Legend of Zelda: Wind Waker'
-- 'wind waker'
-https://www.youtube.com/watch?v=uj2mhutaEGA:
-- Ghouls 'n' Ghosts
-https://www.youtube.com/watch?v=ujverEHBzt8:
-- F-Zero GX
-https://www.youtube.com/watch?v=umh0xNPh-pY:
-- Okami
-https://www.youtube.com/watch?v=un-CZxdgudA:
-- Vortex
-https://www.youtube.com/watch?v=ung2q_BVXWY:
-- Nora to Toki no Koubou
-https://www.youtube.com/watch?v=uvRU3gsmXx4:
-- 'Qbeh-1: The Atlas Cube'
-- 'Qbeh-I: The Atlas Cube'
-https://www.youtube.com/watch?v=uwB0T1rExMc:
-- Drakkhen
-https://www.youtube.com/watch?v=uxETfaBcSYo:
-- Grandia II
-- Grandia 2
-https://www.youtube.com/watch?v=uy2OQ0waaPo:
-- Secret of Evermore
-https://www.youtube.com/watch?v=v-h3QCB_Pig:
-- Ninja Gaiden II
-- Ninja Gaiden 2
-https://www.youtube.com/watch?v=v02ZFogqSS8:
-- Pokemon Diamond / Pearl / Platinum
-- pokemon diamond
-- pokemon pearl
-- pokemon platinum
-https://www.youtube.com/watch?v=v0toUGs93No:
-- 'Command & Conquer: Tiberian Sun'
-- 'command and conquer: tiberian sun'
-https://www.youtube.com/watch?v=v4fgFmfuzqc:
-- Final Fantasy X
-- Final Fantasy 10
-https://www.youtube.com/watch?v=vCqkxI9eu44:
-- Astal
-https://www.youtube.com/watch?v=vEx9gtmDoRI:
-- 'Star Ocean 2: The Second Story'
-- 'Star Ocean II: The Second Story'
-https://www.youtube.com/watch?v=vLRhuxHiYio:
-- Hotline Miami 2
-- Hotline Miami II
-https://www.youtube.com/watch?v=vLkDLzEcJlU:
-- 'Final Fantasy VII: CC'
-- 'Final Fantasy 7: 200'
-https://www.youtube.com/watch?v=vMNf5-Y25pQ:
-- Final Fantasy V
-- Final Fantasy 5
-https://www.youtube.com/watch?v=vN9zJNpH3Mc:
-- Terranigma
-https://www.youtube.com/watch?v=vRRrOKsfxPg:
-- 'The Legend of Zelda: A Link to the Past'
-- a link to the past
-https://www.youtube.com/watch?v=vY8in7gADDY:
-- Tetrisphere
-https://www.youtube.com/watch?v=vZOCpswBNiw:
-- Lufia
-https://www.youtube.com/watch?v=v_9EdBLmHcE:
-- Equinox
-https://www.youtube.com/watch?v=vaJvNNWO_OQ:
-- Mega Man 2
-- Mega Man II
-https://www.youtube.com/watch?v=vbzmtIEujzk:
-- Deadly Premonition
-https://www.youtube.com/watch?v=vfRr0Y0QnHo:
-- Super Mario 64
-https://www.youtube.com/watch?v=vfqMK4BuN64:
-- Beyond Good & Evil
-- beyond good and evil
-https://www.youtube.com/watch?v=vgD6IngCtyU:
-- 'Romancing Saga: Minstrel Song'
-https://www.youtube.com/watch?v=vl6Cuvw4iyk:
-- Mighty Switch Force!
-https://www.youtube.com/watch?v=vmUwR3aa6dc:
-- F-Zero
-https://www.youtube.com/watch?v=vp6NjZ0cGiI:
-- Deep Labyrinth
-https://www.youtube.com/watch?v=vrWC1PosXSI:
-- Legend of Dragoon
-https://www.youtube.com/watch?v=vsLJDafIEHc:
-- Legend of Grimrock
-https://www.youtube.com/watch?v=vsYHDEiBSrg:
-- 'The Legend of Zelda: Twilight Princess'
-- twilight princess
-https://www.youtube.com/watch?v=vtTk81cIJlg:
-- Magnetis
-https://www.youtube.com/watch?v=vz59icOE03E:
-- Boot Hill Heroes
-https://www.youtube.com/watch?v=w1tmFpEPagk:
-- Suikoden
-https://www.youtube.com/watch?v=w2HT5XkGaws:
-- 'Gremlins 2: The New Batch'
-- 'Gremlins II: The New Batch'
-https://www.youtube.com/watch?v=w4J4ZQP7Nq0:
-- Legend of Mana
-https://www.youtube.com/watch?v=w4b-3x2wqpw:
-- Breath of Death VII
-- Breath of Death 7
-https://www.youtube.com/watch?v=w6exvhdhIE8:
-- Suikoden II
-- Suikoden 2
-https://www.youtube.com/watch?v=w7dO2edfy00:
-- Wild Arms
-https://www.youtube.com/watch?v=wBAXLY1hq7s:
-- Ys Chronicles
-https://www.youtube.com/watch?v=wBUVdh4mVDc:
-- Lufia
-https://www.youtube.com/watch?v=wE8p0WBW4zo:
-- Guilty Gear XX Reload (Korean Version)
-- Guilty Gear 20 Reload
-- guilty gear xx reload
-https://www.youtube.com/watch?v=wEkfscyZEfE:
-- Sonic Rush
-https://www.youtube.com/watch?v=wFJYhWhioPI:
-- Shin Megami Tensei Nocturne
-https://www.youtube.com/watch?v=wFM8K7GLFKk:
-- Goldeneye
-https://www.youtube.com/watch?v=wHgmFPLNdW8:
-- Pop'n Music 8
-- Pop'n Music VIII
-https://www.youtube.com/watch?v=wKNz1SsO_cM:
-- Life is Strange
-https://www.youtube.com/watch?v=wKgoegkociY:
-- Opoona
-https://www.youtube.com/watch?v=wNfUOcOv1no:
-- Final Fantasy X
-- Final Fantasy 10
-https://www.youtube.com/watch?v=wPCmweLoa8Q:
-- Wangan Midnight Maximum Tune 3
-- Wangan Midnight Maximum Tune III
-https://www.youtube.com/watch?v=wPZgCJwBSgI:
-- Perfect Dark
-https://www.youtube.com/watch?v=wXSFR4tDIUs:
-- F-Zero
-https://www.youtube.com/watch?v=wXXgqWHDp18:
-- Tales of Zestiria
-https://www.youtube.com/watch?v=wXZ-2p4rC5s:
-- 'Metroid II: Return of Samus'
-- 'Metroid 2: Return of Samus'
-https://www.youtube.com/watch?v=w_6ZSQ2_7Q4:
-- Final Fantasy X
-- Final Fantasy 10
-https://www.youtube.com/watch?v=w_N7__8-9r0:
-- Donkey Kong Land
-https://www.youtube.com/watch?v=w_TOt-XQnPg:
-- Pokemon Ruby / Sapphire / Emerald
-- pokemon ruby
-- pokemon sapphire
-- pokemon emerald
-https://www.youtube.com/watch?v=waesdKG4rhM:
-- Dragon Quest VII 3DS
-- Dragon Quest 7 3DS
-https://www.youtube.com/watch?v=wdWZYggy75A:
-- Mother 4
-- Mother IV
-https://www.youtube.com/watch?v=wgAtWoPfBgQ:
-- Metroid Prime
-https://www.youtube.com/watch?v=wkrgYK2U5hE:
-- 'Super Monkey Ball: Step & Roll'
-- 'super monkey ball: step and roll'
-https://www.youtube.com/watch?v=wqb9Cesq3oM:
-- Super Mario RPG
-https://www.youtube.com/watch?v=wuFKdtvNOp0:
-- Granado Espada
-https://www.youtube.com/watch?v=wv6HHTa4jjI:
-- Miitopia
-https://www.youtube.com/watch?v=ww6KySR4MQ0:
-- Street Fighter II
-- Street Fighter 2
-https://www.youtube.com/watch?v=wxzrrUWOU8M:
-- Space Station Silicon Valley
-https://www.youtube.com/watch?v=wyYpZvfAUso:
-- Soul Calibur
-https://www.youtube.com/watch?v=x0wxJHbcDYE:
-- Prop Cycle
-https://www.youtube.com/watch?v=x4i7xG2IOOE:
-- 'Silent Hill: Origins'
-https://www.youtube.com/watch?v=x4mrK-42Z18:
-- Sonic Generations
-https://www.youtube.com/watch?v=x6VlzkDSU6k:
-- Parasite Eve
-https://www.youtube.com/watch?v=x9S3GnJ3_WQ:
-- Wild Arms
-https://www.youtube.com/watch?v=xFUvAJTiSH4:
-- Suikoden II
-- Suikoden 2
-https://www.youtube.com/watch?v=xJHVfLI5pLY:
-- 'Animal Crossing: Wild World'
-https://www.youtube.com/watch?v=xKxhEqH7UU0:
-- ICO
-https://www.youtube.com/watch?v=xP3PDznPrw4:
-- Dragon Quest IX
-- Dragon Quest 9
-https://www.youtube.com/watch?v=xTRmnisEJ7Y:
-- Super Mario Galaxy
-https://www.youtube.com/watch?v=xTxZchmHmBw:
-- Asterix
-https://www.youtube.com/watch?v=xWQOYiYHZ2w:
-- Antichamber
-https://www.youtube.com/watch?v=xWVBra_NpZo:
-- Bravely Default
-https://www.youtube.com/watch?v=xY86oDk6Ces:
-- Super Street Fighter II
-- Super Street Fighter 2
-https://www.youtube.com/watch?v=xZHoULMU6fE:
-- Firewatch
-https://www.youtube.com/watch?v=xaKXWFIz5E0:
-- Dragon Ball Z Butouden 2
-- Dragon Ball Z Butouden II
-https://www.youtube.com/watch?v=xajMfQuVnp4:
-- 'OFF'
-https://www.youtube.com/watch?v=xdQDETzViic:
-- The 7th Saga
-https://www.youtube.com/watch?v=xfzWn5b6MHM:
-- 'Silent Hill: Origins'
-https://www.youtube.com/watch?v=xgn1eHG_lr8:
-- Total Distortion
-https://www.youtube.com/watch?v=xhVwxYU23RU:
-- Bejeweled 3
-- Bejeweled III
-https://www.youtube.com/watch?v=xhgVOEt-wOo:
-- Final Fantasy VIII
-- Final Fantasy 8
-https://www.youtube.com/watch?v=xhzySCD19Ss:
-- 'The Legend of Zelda: Twilight Princess'
-- twilight princess
-https://www.youtube.com/watch?v=xieau-Uia18:
-- Sonic the Hedgehog (2006)
-- Sonic the Hedgehog 2006
-- sonic the hedgehog 06
-https://www.youtube.com/watch?v=xj0AV3Y-gFU:
-- 'The Legend of Zelda: Wind Waker'
-- wind waker
-https://www.youtube.com/watch?v=xkSD3pCyfP4:
-- Gauntlet
-https://www.youtube.com/watch?v=xl30LV6ruvA:
-- Fantasy Life
-https://www.youtube.com/watch?v=xorfsUKMGm8:
-- 'Shadow Hearts II: Covenant'
-- 'Shadow Hearts 2: Covenant'
-https://www.youtube.com/watch?v=xpu0N_oRDrM:
-- Final Fantasy X
-- Final Fantasy 10
-https://www.youtube.com/watch?v=xrLiaewZZ2E:
-- 'The Legend of Zelda: Twilight Princess'
-- twilight princess
-https://www.youtube.com/watch?v=xsC6UGAJmIw:
-- Waterworld
-https://www.youtube.com/watch?v=xtsyXDTAWoo:
-- Tetris Attack
-https://www.youtube.com/watch?v=xuCzPu3tHzg:
-- Seiken Densetsu 3
-- Seiken Densetsu III
-https://www.youtube.com/watch?v=xvvXFCYVmkw:
-- Mario Kart 64
-https://www.youtube.com/watch?v=xx9uLg6pYc0:
-- 'Spider-Man & X-Men: Arcade''s Revenge'
-- 'Spider-Man and X-Men: Arcade''s Revenge'
-https://www.youtube.com/watch?v=xze4yNQAmUU:
-- Mega Man 10
-https://www.youtube.com/watch?v=xzfhOQampfs:
-- Suikoden II
-- Suikoden 2
-https://www.youtube.com/watch?v=xzmv8C2I5ek:
-- 'Lightning Returns: Final Fantasy XIII'
-- 'Lightning Returns: Final Fantasy 13'
-https://www.youtube.com/watch?v=y0PixBaf8_Y:
-- Waterworld
-https://www.youtube.com/watch?v=y2MP97fwOa8:
-- Pokemon Ruby / Sapphire / Emerald
-- pokemon ruby
-- pokemon sapphire
-- pokemon emerald
-https://www.youtube.com/watch?v=y4DAIZM2sTc:
-- Breath of Fire III
-- Breath of Fire 3
-https://www.youtube.com/watch?v=y6UhV3E2H6w:
-- Xenoblade Chronicles
-https://www.youtube.com/watch?v=y81PyRX4ENA:
-- Zone of the Enders 2
-- Zone of the Enders II
-https://www.youtube.com/watch?v=y9SFrBt1xtw:
-- 'Mario Kart: Double Dash!!'
-https://www.youtube.com/watch?v=yCLW8IXbFYM:
-- Suikoden V
-- Suikoden 5
-https://www.youtube.com/watch?v=yDMN8XKs1z0:
-- Sonic 3D Blast (Saturn)
-- sonic 3d blast
-https://www.youtube.com/watch?v=yERMMu-OgEo:
-- Final Fantasy IV
-- Final Fantasy 4
-https://www.youtube.com/watch?v=yF_f-Y-MD2o:
-- Final Fantasy IX
-- Final Fantasy 9
-https://www.youtube.com/watch?v=yJrRo8Dqpkw:
-- 'Mario Kart: Double Dash !!'
-- 'mario kart double dash'
-https://www.youtube.com/watch?v=yTe_L2AYaI4:
-- Legend of Dragoon
-https://www.youtube.com/watch?v=yV7eGX8y2dM:
-- Hotline Miami 2
-- Hotline Miami II
-https://www.youtube.com/watch?v=yVcn0cFJY_c:
-- Xenosaga II
-- Xenosaga 2
-https://www.youtube.com/watch?v=yYPNScB1alA:
-- Speed Freaks
-https://www.youtube.com/watch?v=yZ5gFAjZsS4:
-- Wolverine
-https://www.youtube.com/watch?v=y_4Ei9OljBA:
-- 'The Legend of Zelda: Minish Cap'
-- minish cap
-https://www.youtube.com/watch?v=ye960O2B3Ao:
-- Star Fox
-https://www.youtube.com/watch?v=ygqp3eNXbI4:
-- Pop'n Music 18
-- Pop'n Music XVIII
-https://www.youtube.com/watch?v=yh8dWsIVCD8:
-- Battletoads
-https://www.youtube.com/watch?v=yirRajMEud4:
-- Jet Set Radio
-https://www.youtube.com/watch?v=yr7fU3D0Qw4:
-- Final Fantasy VII
-- Final Fantasy 7
-https://www.youtube.com/watch?v=ysLhWVbE12Y:
-- Panzer Dragoon
-https://www.youtube.com/watch?v=ysoz5EnW6r4:
-- Tekken 7
-- Tekken VII
-https://www.youtube.com/watch?v=ytp_EVRf8_I:
-- Super Mario RPG
-https://www.youtube.com/watch?v=yz1yrVcpWjA:
-- Persona 3
-- Persona III
-https://www.youtube.com/watch?v=yzgSscW7klw:
-- Steamworld Dig 2
-- Steamworld Dig II
-https://www.youtube.com/watch?v=z-QISdXXN_E:
-- Wild Arms Alter Code F
-https://www.youtube.com/watch?v=z1oW4USdB68:
-- 'The Legend of Zelda: Minish Cap'
-- minish cap
-https://www.youtube.com/watch?v=z513Tty2hag:
-- Fez
-https://www.youtube.com/watch?v=z5ndH9xEVlo:
-- Streets of Rage
-https://www.youtube.com/watch?v=z5oERC4cD8g:
-- Skies of Arcadia
-https://www.youtube.com/watch?v=zB-n8fx-Dig:
-- Kirby's Return to Dreamland
-https://www.youtube.com/watch?v=zCP7hfY8LPo:
-- Ape Escape
-https://www.youtube.com/watch?v=zFfgwmWuimk:
-- 'DmC: Devil May Cry'
-- devil may cry
-https://www.youtube.com/watch?v=zHej43S_OMI:
-- Radiata Stories
-https://www.youtube.com/watch?v=zLXJ6l4Gxsg:
-- Kingdom Hearts
-https://www.youtube.com/watch?v=zO9y6EH6jVw:
-- 'Metroid Prime 2: Echoes'
-- 'Metroid Prime II: Echoes'
-https://www.youtube.com/watch?v=zS8QlZkN_kM:
-- Guardian's Crusade
-https://www.youtube.com/watch?v=zTHAKsaD_8U:
-- Super Mario Bros
-https://www.youtube.com/watch?v=zTKEnlYhL0M:
-- 'Gremlins 2: The New Batch'
-- 'Gremlins II: The New Batch'
-https://www.youtube.com/watch?v=zTOZesa-uG4:
-- 'Turok: Dinosaur Hunter'
-https://www.youtube.com/watch?v=zYMU-v7GGW4:
-- Kingdom Hearts
-https://www.youtube.com/watch?v=za05W9gtegc:
-- Metroid Prime
-https://www.youtube.com/watch?v=zawNmXL36zM:
-- SpaceChem
-https://www.youtube.com/watch?v=ziyH7x0P5tU:
-- Final Fantasy
-https://www.youtube.com/watch?v=zojcLdL7UTw:
-- Shining Hearts
-https://www.youtube.com/watch?v=zpVIM8de2xw:
-- Mega Man 3
-- Mega Man III
-https://www.youtube.com/watch?v=zpleUx1Llgs:
-- Super Smash Bros Wii U / 3DS
-- super smash bros wii u
-- super smas bros 3ds
-https://www.youtube.com/watch?v=zqFtW92WUaI:
-- Super Mario World
-https://www.youtube.com/watch?v=zqgfOTBPv3E:
-- Metroid Prime 3
-- Metroid Prime III
-https://www.youtube.com/watch?v=zsuBQNO7tps:
-- Dark Souls
-https://www.youtube.com/watch?v=ztLD9IqnRqY:
-- Metroid Prime 3
-- Metroid Prime III
-https://www.youtube.com/watch?v=ztiSivmoE0c:
-- Breath of Fire
-https://www.youtube.com/watch?v=zxZROhq4Lz0:
-- Pop'n Music 8
-- Pop'n Music VIII
diff --git a/audiotrivia/data/lists/games.yaml b/audiotrivia/data/lists/games.yaml
index 4a823d8..c3a9078 100644
--- a/audiotrivia/data/lists/games.yaml
+++ b/audiotrivia/data/lists/games.yaml
@@ -1,304 +1,5183 @@
-AUTHOR: bobloy
-https://www.youtube.com/watch?v=FrceWR4XnVU:
-- shovel knight
-https://www.youtube.com/watch?v=Fn0khIn2wfc:
-- super mario world
-https://www.youtube.com/watch?v=qkYSuWSPkHI:
-- the legend of zelda
-- legend of zelda
-- zelda
-https://www.youtube.com/watch?v=0hvlwLwxweI:
-- dragon quest ix
-- dragon quest 9
-https://www.youtube.com/watch?v=GxrKe9z4CCo:
-- chrono trigger
-https://www.youtube.com/watch?v=pz3BQFXjEOI:
-- super smash bros melee
-- super smash bros. melee
-- super smash brothers melee
-https://www.youtube.com/watch?v=l_ioujmtqjg:
-- super mario bros
-- super mario brothers
-- super mario bros.
-https://www.youtube.com/watch?v=zTztR_y9iHc:
-- banjo-kazooie
-- banjo kazooie
-https://www.youtube.com/watch?v=6gWyfQFdMJA:
-- metroid samus returns
-https://www.youtube.com/watch?v=0jXTBAGv9ZQ:
-- halo
-https://www.youtube.com/watch?v=Rhaq4JP_t6o:
-- the elder scrolls iii morrowind
-- morrowind
-- elder scrolls iii
-- elder scrolls 3
-https://www.youtube.com/watch?v=ZksNhHyEhE0:
-- sonic generations
-https://www.youtube.com/watch?v=lndBgOrTWxo:
-- donkey kong country 2
-- donkey kong country two
-https://www.youtube.com/watch?v=uTEMsmLoEA4:
-- mario kart 8
-- mario kart eight
-https://www.youtube.com/watch?v=WA2WjP6sgrc:
-- donkey kong country tropical freeze
-- tropical freeze
-https://www.youtube.com/watch?v=9wMjq58Fjvo:
-- castle crashers
-https://www.youtube.com/watch?v=sr2nK06zZkg:
-- shadow of the colossus
+AUTHOR: Plab
+https://www.youtube.com/watch?v=--bWm9hhoZo:
+- Transistor
+https://www.youtube.com/watch?v=-4nCbgayZNE:
+- Dark Cloud 2
+- Dark Cloud II
+https://www.youtube.com/watch?v=-64NlME4lJU:
+- Mega Man 7
+- Mega Man VII
+https://www.youtube.com/watch?v=-AesqnudNuw:
+- Mega Man 9
+- Mega Man IX
+https://www.youtube.com/watch?v=-BmGDtP2t7M:
+- Castlevania Curse of Darkness
+https://www.youtube.com/watch?v=-Gg6v-GMnsU:
+- 'FTL: Faster Than Light'
+https://www.youtube.com/watch?v=-GouzQ8y5Cc:
+- Minecraft
+https://www.youtube.com/watch?v=-IsFD_jw6lM:
+- Advance Wars DS
+https://www.youtube.com/watch?v=-J55bt2b3Z8:
+- Mario Kart 8
+- Mario Kart VIII
+https://www.youtube.com/watch?v=-KXPZ81aUPY:
+- 'Ratchet & Clank: Going Commando'
+- 'ratchet and clank: going commando'
+https://www.youtube.com/watch?v=-L45Lm02jIU:
+- Super Street Fighter II
+- Super Street Fighter 2
+https://www.youtube.com/watch?v=-LId8l6Rc6Y:
+- Xenosaga III
+- Xenosaga 3
+https://www.youtube.com/watch?v=-LLr-88UG1U:
+- The Last Story
+https://www.youtube.com/watch?v=-PQ9hQLWNCM:
+- Pokemon
+https://www.youtube.com/watch?v=-Q-S4wQOcr8:
+- 'Star Ocean 2: The Second Story'
+- 'Star Ocean II: The Second Story'
+https://www.youtube.com/watch?v=-Q2Srm60GLg:
+- Dustforce
+https://www.youtube.com/watch?v=-ROXEo0YD10:
+- Halo
+https://www.youtube.com/watch?v=-TG5VLGPdRc:
+- Wild Arms Alter Code F
+https://www.youtube.com/watch?v=-UkyW5eHKlg:
+- Final Fantasy VIII
+- Final Fantasy 8
+https://www.youtube.com/watch?v=-VtNcqxyNnA:
+- Dragon Quest II
+- Dragon Quest 2
+https://www.youtube.com/watch?v=-WQGbuqnVlc:
+- Guacamelee!
+https://www.youtube.com/watch?v=-XTYsUzDWEM:
+- 'The Legend of Zelda: Link''s Awakening'
+- 'link''s awakening'
+https://www.youtube.com/watch?v=-YfpDN84qls:
+- Bioshock Infinite
+https://www.youtube.com/watch?v=-_51UVCkOh4:
+- 'Donkey Kong Country: Tropical Freeze'
+https://www.youtube.com/watch?v=-czsPXU_Sn0:
+- StarFighter 3000
+- StarFighter MMM
+https://www.youtube.com/watch?v=-eHjgg4cnjo:
+- Tintin in Tibet
+https://www.youtube.com/watch?v=-ehGFSkPfko:
+- Contact
+https://www.youtube.com/watch?v=-finZK4D6NA:
+- 'Star Ocean 2: The Second Story'
+- 'Star Ocean II: The Second Story'
+https://www.youtube.com/watch?v=-ltGbYCYr-Q:
+- Enchanted Arms
+https://www.youtube.com/watch?v=-lz8ydvkFuo:
+- Super Metroid
+https://www.youtube.com/watch?v=-m3VGoy-4Qo:
+- Mega Man X6
+https://www.youtube.com/watch?v=-nOJ6c1umMU:
+- Mega Man 7
+- Mega Man VII
+https://www.youtube.com/watch?v=-oGZIqeeTt0:
+- NeoTokyo
+https://www.youtube.com/watch?v=-ohvCzPIBvM:
+- Dark Cloud
+https://www.youtube.com/watch?v=-uJOYd76nSQ:
+- Suikoden III
+- Suikoden 3
+https://www.youtube.com/watch?v=-u_udSjbXgs:
+- Radiata Stories
+https://www.youtube.com/watch?v=-xpUOrwVMHo:
+- Final Fantasy VI
+- Final Fantasy 6
+https://www.youtube.com/watch?v=00mLin2YU54:
+- Grandia II
+- Grandia 2
+https://www.youtube.com/watch?v=01n8imWdT6g:
+- Ristar
+https://www.youtube.com/watch?v=02VD6G-JD4w:
+- SimCity 4
+- SimCity IV
+https://www.youtube.com/watch?v=03L56CE7QWc:
+- Little Nightmares
+https://www.youtube.com/watch?v=04TLq1cKeTI:
+- Mother 3
+- Mother III
+https://www.youtube.com/watch?v=07EXFbZaXiM:
+- Airport Tycoon 3
+- Airport Tycoon III
+https://www.youtube.com/watch?v=096M0eZMk5Q:
+- Super Castlevania IV
+- Super Castlevania 4
+https://www.youtube.com/watch?v=0E-_TG7vGP0:
+- Battletoads & Double Dragon
+- battletoads
+- double dragon
+https://www.youtube.com/watch?v=0EhiDgp8Drg:
+- Mario Party
+https://www.youtube.com/watch?v=0F-hJjD3XAs:
+- Skies of Arcadia
+https://www.youtube.com/watch?v=0F0ONH92OoY:
+- Donkey Kong 64
+https://www.youtube.com/watch?v=0Fbgho32K4A:
+- 'FFCC: The Crystal Bearers'
+https://www.youtube.com/watch?v=0Fff6en_Crc:
+- 'Emperor: Battle for Dune'
+https://www.youtube.com/watch?v=0H5YoFv09uQ:
+- Waterworld
+https://www.youtube.com/watch?v=0IcVJVcjAxA:
+- 'Star Ocean 3: Till the End of Time'
+- 'Star Ocean III: Till the End of Time'
+https://www.youtube.com/watch?v=0KDjcSaMgfI:
+- 'Star Ocean 2: The Second Story'
+- 'Star Ocean II: The Second Story'
+https://www.youtube.com/watch?v=0Lo8Q5tL0WQ:
+- Chrono Trigger
+https://www.youtube.com/watch?v=0OMlZPg8tl4:
+- Robocop 3 (C64)
+- Robocop III
+- robocop 3
+https://www.youtube.com/watch?v=0RKF6gqCXiM:
+- Persona 3
+- Persona III
+https://www.youtube.com/watch?v=0U_7HnAvbR8:
+- Shadow Hearts III
+- Shadow Hearts 3
+https://www.youtube.com/watch?v=0Y0RwyI8j8k:
+- Jet Force Gemini
+https://www.youtube.com/watch?v=0Y1Y3buSm2I:
+- Mario Kart Wii
+https://www.youtube.com/watch?v=0YN7-nirAbk:
+- Ys II Chronicles
+- Ys 2 Chronicles
+https://www.youtube.com/watch?v=0_8CS1mrfFA:
+- Emil Chronicle Online
+https://www.youtube.com/watch?v=0_YB2lagalY:
+- Marble Madness
+https://www.youtube.com/watch?v=0_ph5htjyl0:
+- Dear Esther
+https://www.youtube.com/watch?v=0dEc-UyQf58:
+- Pokemon Trading Card Game
+https://www.youtube.com/watch?v=0dMkx7c-uNM:
+- VVVVVV
+https://www.youtube.com/watch?v=0mmvYvsN32Q:
+- Batman
+https://www.youtube.com/watch?v=0oBT5dOZPig:
+- Final Fantasy X-2
+- Final Fantasy 10-2
+- Final Fantasy X-II
+https://www.youtube.com/watch?v=0ptVf0dQ18M:
+- F-Zero GX
+https://www.youtube.com/watch?v=0rz-SlHMtkE:
+- Panzer Dragoon
+https://www.youtube.com/watch?v=0tWIVmHNDYk:
+- Wild Arms 4
+- Wild Arms IV
+https://www.youtube.com/watch?v=0w-9yZBE_nQ:
+- Blaster Master
+https://www.youtube.com/watch?v=0yKsce_NsWA:
+- Shadow Hearts III
+- Shadow Hearts 3
+https://www.youtube.com/watch?v=11CqmhtBfJI:
+- Wild Arms
+https://www.youtube.com/watch?v=13Uk8RB6kzQ:
+- The Smurfs
+https://www.youtube.com/watch?v=14-tduXVhNQ:
+- The Magical Quest starring Mickey Mouse
+https://www.youtube.com/watch?v=14gpqf8JP-Y:
+- Super Turrican
+https://www.youtube.com/watch?v=15PEwOkJ5DA:
+- Super Mario Galaxy 2
+- Super Mario Galaxy II
+https://www.youtube.com/watch?v=16e2Okdc-PQ:
+- Threads of Fate
+https://www.youtube.com/watch?v=16sK7JwZ9nI:
+- Sands of Destruction
+https://www.youtube.com/watch?v=18NQOEU2jvU:
+- Final Fantasy Tactics
+https://www.youtube.com/watch?v=1ALDFlUYdcQ:
+- Mega Man 10
+https://www.youtube.com/watch?v=1B0D2_zhYyM:
+- Return All Robots!
+https://www.youtube.com/watch?v=1BcHKsDr5CM:
+- Grandia
+https://www.youtube.com/watch?v=1CJ69ZxnVOs:
+- Jets 'N' Guns
+https://www.youtube.com/watch?v=1DAD230gipE:
+- 'Vampire The Masquerade: Bloodlines'
+https://www.youtube.com/watch?v=1DFIYMTnlzo:
+- 'Castlevania: Dawn of Sorrow'
+https://www.youtube.com/watch?v=1DwQk4-Smn0:
+- Crusader of Centy
+https://www.youtube.com/watch?v=1EJ2gbCFpGM:
+- Final Fantasy Adventure
+https://www.youtube.com/watch?v=1HOQJZiKbew:
+- Kirby's Adventure
+https://www.youtube.com/watch?v=1IMUSeMsxwI:
+- Touch My Katamari
+https://www.youtube.com/watch?v=1KCcXn5xBeY:
+- Inside
+https://www.youtube.com/watch?v=1KaAALej7BY:
+- Final Fantasy VI
+- Final Fantasy 6
+https://www.youtube.com/watch?v=1MRrLo4awBI:
+- Golden Sun
+https://www.youtube.com/watch?v=1MVAIf-leiQ:
+- Fez
+https://www.youtube.com/watch?v=1NmzdFvqzSU:
+- Ruin Arm
+https://www.youtube.com/watch?v=1OzPeu60ZvU:
+- Swiv
+https://www.youtube.com/watch?v=1QHyvhnEe2g:
+- Ice Hockey
+https://www.youtube.com/watch?v=1R1-hXIeiKI:
+- Punch-Out!!
+https://www.youtube.com/watch?v=1RBvXjg_QAc:
+- 'E.T.: Return to the Green Planet'
+https://www.youtube.com/watch?v=1THa11egbMI:
+- Shadow Hearts III
+- Shadow Hearts 3
+https://www.youtube.com/watch?v=1UZ1fKOlZC0:
+- Axiom Verge
+https://www.youtube.com/watch?v=1UzoyIwC3Lg:
+- Master Spy
+https://www.youtube.com/watch?v=1X5Y6Opw26s:
+- 'The Legend of Zelda: Skyward Sword'
+- 'skyward sword'
+https://www.youtube.com/watch?v=1YWdyLlEu5w:
+- Final Fantasy Adventure
+https://www.youtube.com/watch?v=1_8u5eDjEwY:
+- 'Digital: A Love Story'
+https://www.youtube.com/watch?v=1agK890YmvQ:
+- Sonic Colors
+https://www.youtube.com/watch?v=1gZaH16gqgk:
+- Sonic Colors
+https://www.youtube.com/watch?v=1hxkqsEz4dk:
+- Mega Man Battle Network 3
+- Mega Man Battle Network III
+https://www.youtube.com/watch?v=1iKxdUnF0Vg:
+- The Revenge of Shinobi
+https://www.youtube.com/watch?v=1kt-H7qUr58:
+- Deus Ex
+https://www.youtube.com/watch?v=1r5BYjZdAtI:
+- Rusty
+https://www.youtube.com/watch?v=1riMeMvabu0:
+- Grim Fandango
+https://www.youtube.com/watch?v=1s7lAVqC0Ps:
+- Tales of Graces
+https://www.youtube.com/watch?v=1saL4_XcwVA:
+- Dustforce
+https://www.youtube.com/watch?v=1uEHUSinwD8:
+- Secret of Mana
+https://www.youtube.com/watch?v=1wskjjST4F8:
+- Plok
+https://www.youtube.com/watch?v=1xzf_Ey5th8:
+- Breath of Fire V
+- Breath of Fire 5
+https://www.youtube.com/watch?v=1yBlUvZ-taY:
+- Tribes Ascend
+https://www.youtube.com/watch?v=1zU2agExFiE:
+- Final Fantasy VI
+- Final Fantasy 6
+https://www.youtube.com/watch?v=20Or4fIOgBk:
+- Seiken Densetsu 3
+- Seiken Densetsu III
+https://www.youtube.com/watch?v=248TO66gf8M:
+- Sonic Mania
+https://www.youtube.com/watch?v=29dJ6XlsMds:
+- Elvandia Story
+https://www.youtube.com/watch?v=29h1H6neu3k:
+- Dragon Quest VII
+- Dragon Quest 7
+https://www.youtube.com/watch?v=2AzKwVALPJU:
+- Xenosaga II
+- Xenosaga 2
+https://www.youtube.com/watch?v=2BNMm9irLTw:
+- 'Mario & Luigi: Superstar Saga'
+- 'mario and luigi: superstar saga'
+https://www.youtube.com/watch?v=2CEZdt5n5JQ:
+- Metal Gear Rising
+https://www.youtube.com/watch?v=2CyFFMCC67U:
+- Super Mario Land 2
+- Super Mario Land II
+https://www.youtube.com/watch?v=2Mf0f91AfQo:
+- Octopath Traveler
+https://www.youtube.com/watch?v=2MzcVSPUJw0:
+- Super Metroid
+https://www.youtube.com/watch?v=2NGWhKhMojQ:
+- Klonoa
+https://www.youtube.com/watch?v=2NfhrT3gQdY:
+- 'Lunar: The Silver Star'
+https://www.youtube.com/watch?v=2O4aNHy2Dcc:
+- X-Men vs Street Fighter
+https://www.youtube.com/watch?v=2TgWzuTOXN8:
+- Shadow of the Ninja
+https://www.youtube.com/watch?v=2WYI83Cx9Ko:
+- Earthbound
+https://www.youtube.com/watch?v=2ZX41kMN9V8:
+- 'Castlevania: Aria of Sorrow'
+https://www.youtube.com/watch?v=2bd4NId7GiA:
+- Catherine
+https://www.youtube.com/watch?v=2biS2NM9QeE:
+- Napple Tale
+https://www.youtube.com/watch?v=2c1e5ASpwjk:
+- Persona 4
+- Persona IV
+https://www.youtube.com/watch?v=2e9MvGGtz6c:
+- Secret of Mana (2018)
+- Secret of Mana
+https://www.youtube.com/watch?v=2gKlqJXIDVQ:
+- Emil Chronicle Online
+https://www.youtube.com/watch?v=2hfgF1RoqJo:
+- Gunstar Heroes
+https://www.youtube.com/watch?v=2jbJSftFr20:
+- Plok
+https://www.youtube.com/watch?v=2mLCr2sV3rs:
+- Mother
+https://www.youtube.com/watch?v=2mlPgPBDovw:
+- 'Castlevania: Bloodlines'
+https://www.youtube.com/watch?v=2oo0qQ79uWE:
+- Sonic 3D Blast (Saturn)
+- sonic 3d blast
+https://www.youtube.com/watch?v=2qDajCHTkWc:
+- 'Arc the Lad IV: Twilight of the Spirits'
+- 'Arc the Lad 4: Twilight of the Spirits'
+https://www.youtube.com/watch?v=2r1iesThvYg:
+- Chrono Trigger
+https://www.youtube.com/watch?v=2r35JpoRCOk:
+- NieR
+https://www.youtube.com/watch?v=2xP0dFTlxdo:
+- Vagrant Story
+https://www.youtube.com/watch?v=31NHdGB1ZSk:
+- Metroid Prime 3
+- Metroid Prime III
+https://www.youtube.com/watch?v=3283ANpvPPM:
+- Super Spy Hunter
+https://www.youtube.com/watch?v=37rVPijCrCA:
+- Earthbound
+https://www.youtube.com/watch?v=3Bl0nIoCB5Q:
+- Wii Sports
+https://www.youtube.com/watch?v=3Hf0L8oddrA:
+- Lagoon
+https://www.youtube.com/watch?v=3J9-q-cv_Io:
+- Wild Arms 5
+- Wild Arms V
+https://www.youtube.com/watch?v=3ODKKILZiYY:
+- Plok
+https://www.youtube.com/watch?v=3PAHwO_GsrQ:
+- Chrono Trigger
+https://www.youtube.com/watch?v=3TjzvAGDubE:
+- Super Mario 64
+https://www.youtube.com/watch?v=3WVqKTCx7Ug:
+- Wild Arms 3
+- Wild Arms III
+https://www.youtube.com/watch?v=3XM9eiSys98:
+- Hotline Miami
+https://www.youtube.com/watch?v=3Y8toBvkRpc:
+- Xenosaga II
+- Xenosaga 2
+https://www.youtube.com/watch?v=3bNlWGyxkCU:
+- Diablo III
+- Diablo 3
+https://www.youtube.com/watch?v=3cIi2PEagmg:
+- Super Mario Bros 3
+- Super Mario Bros III
+https://www.youtube.com/watch?v=3iygPesmC-U:
+- Shadow Hearts
+https://www.youtube.com/watch?v=3kmwqOIeego:
+- Touch My Katamari
+https://www.youtube.com/watch?v=3lehXRPWyes:
+- 'Castlevania: Symphony of the Night'
+https://www.youtube.com/watch?v=3lhiseKpDDY:
+- Heimdall 2
+- Heimdall II
+https://www.youtube.com/watch?v=3nLtMX4Y8XI:
+- Mr. Nutz
+https://www.youtube.com/watch?v=3nPLwrTvII0:
+- 'Castlevania: Symphony of the Night'
+https://www.youtube.com/watch?v=3q_o-86lmcg:
+- Crash Bandicoot
+https://www.youtube.com/watch?v=3tItkV0GeoY:
+- Diddy Kong Racing
+https://www.youtube.com/watch?v=3tpO54VR6Oo:
+- Pop'n Music 4
+- Pop'n Music IV
+https://www.youtube.com/watch?v=3vYAXZs8pFU:
+- Umineko no Naku Koro ni
+https://www.youtube.com/watch?v=44lJD2Xd5rc:
+- Super Mario World
+https://www.youtube.com/watch?v=44u87NnaV4Q:
+- 'Castlevania: Dracula X' 
+https://www.youtube.com/watch?v=44vPlW8_X3s:
+- DOOM
+https://www.youtube.com/watch?v=46WQk6Qvne8:
+- Blast Corps
+https://www.youtube.com/watch?v=473L99I88n8:
+- Suikoden II
+- Suikoden 2
+https://www.youtube.com/watch?v=476siHQiW0k:
+- 'JESUS: Kyoufu no Bio Monster'
+https://www.youtube.com/watch?v=49rleD-HNCk:
+- Tekken Tag Tournament 2
+- Tekken Tag Tournament II
+https://www.youtube.com/watch?v=4CEc0t0t46s:
+- Ittle Dew 2
+- Ittle Dew II
+https://www.youtube.com/watch?v=4DmNrnj6wUI:
+- Napple Tale
+https://www.youtube.com/watch?v=4EBNeFI0QW4:
+- 'OFF'
+https://www.youtube.com/watch?v=4GTm-jHQm90:
+- 'Pokemon XD: Gale of Darkness'
+https://www.youtube.com/watch?v=4HHlWg5iZDs:
+- Terraria
+https://www.youtube.com/watch?v=4HLSGn4_3WE:
+- Wild Arms 4
+- Wild Arms IV
+https://www.youtube.com/watch?v=4H_0h3n6pMk:
+- Silver Surfer
+https://www.youtube.com/watch?v=4J99hnghz4Y:
+- Beyond Good & Evil
+- beyond good and evil
+https://www.youtube.com/watch?v=4JJEaVI3JRs:
+- 'The Legend of Zelda: Oracle of Seasons & Ages'
+- 'oracle of seasons'
+- 'oracle of ages'
+https://www.youtube.com/watch?v=4JzDb3PZGEg:
+- Emil Chronicle Online
+https://www.youtube.com/watch?v=4Jzh0BThaaU:
+- Final Fantasy IV
+- Final Fantasy 4
+https://www.youtube.com/watch?v=4MnzJjEuOUs:
+- 'Atelier Iris 3: Grand Phantasm'
+- 'Atelier Iris III: Grand Phantasm'
+https://www.youtube.com/watch?v=4RPbxVl6z5I:
+- Ms. Pac-Man Maze Madness
+https://www.youtube.com/watch?v=4Rh6wmLE8FU:
+- Kingdom Hearts II
+- Kingdom Hearts 2
+https://www.youtube.com/watch?v=4Ze5BfLk0J8:
+- 'Star Ocean 2: The Second Story'
+- 'Star Ocean II: The Second Story'
+https://www.youtube.com/watch?v=4a767iv9VaI:
+- 'Spyro: Year of the Dragon'
+https://www.youtube.com/watch?v=4axwWk4dfe8:
+- Battletoads & Double Dragon
+- battletoads
+- double dragon
+https://www.youtube.com/watch?v=4d2Wwxbsk64:
+- Dragon Ball Z Butouden 3
+- Dragon Ball Z Butouden III
+https://www.youtube.com/watch?v=4f6siAA3C9M:
+- 'Shadow Hearts II: Covenant'
+- 'Shadow Hearts 2: Covenant'
+https://www.youtube.com/watch?v=4fMd_2XeXLA:
+- 'Castlevania: Dawn of Sorrow'
+https://www.youtube.com/watch?v=4h5FzzXKjLA:
+- 'Star Ocean 2: The Second Story'
+- 'Star Ocean II: The Second Story'
+https://www.youtube.com/watch?v=4hWT8nYhvN0:
+- Final Fantasy VII
+- Final Fantasy 7
+https://www.youtube.com/watch?v=4i-qGSwyu5M:
+- Breath of Fire II
+- Breath of Fire 2
+https://www.youtube.com/watch?v=4uJBIxKB01E:
+- Vay
+https://www.youtube.com/watch?v=4ugpeNkSyMc:
+- Thunder Spirits
+https://www.youtube.com/watch?v=5-0KCJvfJZE:
+- Children of Mana
+https://www.youtube.com/watch?v=52f2DQl8eGE:
+- Mega Man & Bass
+- mega man and bass
+https://www.youtube.com/watch?v=554IOtmsavA:
+- Dark Void
+https://www.youtube.com/watch?v=56oPoX8sCcY:
+- 'The Legend of Zelda: Twilight Princess'
+- 'twilight princess'
+https://www.youtube.com/watch?v=57aCSLmg9hA:
+- The Green Lantern
+https://www.youtube.com/watch?v=5B46aBeR4zo:
+- MapleStory
+https://www.youtube.com/watch?v=5CLpmBIb4MM:
+- Summoner
+https://www.youtube.com/watch?v=5Em0e5SdYs0:
+- 'Mario & Luigi: Partners in Time'
+- 'mario and luigi: partners in time'
+https://www.youtube.com/watch?v=5FDigjKtluM:
+- NieR
+https://www.youtube.com/watch?v=5IUXyzqrZsw:
+- Donkey Kong Country 2
+- Donkey Kong Country II
+https://www.youtube.com/watch?v=5OLxWTdtOkU:
+- Extreme-G
+https://www.youtube.com/watch?v=5OZIrAW7aSY:
+- Way of the Samurai
+https://www.youtube.com/watch?v=5WSE5sLUTnk:
+- Ristar
+https://www.youtube.com/watch?v=5ZMI6Gu2aac:
+- Suikoden III
+- Suikoden 3
+https://www.youtube.com/watch?v=5a5EDaSasRU:
+- Final Fantasy IX
+- Final Fantasy 9
+https://www.youtube.com/watch?v=5bTAdrq6leQ:
+- Castlevania
+https://www.youtube.com/watch?v=5gCAhdDAPHE:
+- Yoshi's Island
+https://www.youtube.com/watch?v=5hVRaTn_ogE:
+- BattleBlock Theater
+https://www.youtube.com/watch?v=5hc3R4Tso2k:
+- Shadow Hearts
+https://www.youtube.com/watch?v=5kmENsE8NHc:
+- Final Fantasy VIII
+- Final Fantasy 8
+https://www.youtube.com/watch?v=5lyXiD-OYXU:
+- Wild Arms
+https://www.youtube.com/watch?v=5maIQJ79hGM:
+- 'The Legend of Zelda: Skyward Sword'
+- 'skyward sword'
+https://www.youtube.com/watch?v=5nJSvKpqXzM:
+- Legend of Mana
+https://www.youtube.com/watch?v=5niLxq7_yN4:
+- Devil May Cry 3
+- Devil May Cry III
+https://www.youtube.com/watch?v=5oGK9YN0Ux8:
+- Shadow Hearts
+https://www.youtube.com/watch?v=5pQMJEzNwtM:
+- Street Racer
+https://www.youtube.com/watch?v=5trQZ9u9xNM:
+- Final Fantasy Tactics
+https://www.youtube.com/watch?v=5w_SgBImsGg:
+- 'The Legend of Zelda: Skyward Sword'
+- 'skyward sword'
+https://www.youtube.com/watch?v=62HoIMZ8xAE:
+- Alundra
+https://www.youtube.com/watch?v=62_S0Sl02TM:
+- Alundra 2
+- Alundra II
+https://www.youtube.com/watch?v=66-rV8v6TNo:
+- Cool World
+https://www.youtube.com/watch?v=67nrJieFVI0:
+- 'World of Warcraft: Wrath of the Lich King'
+https://www.youtube.com/watch?v=69142JeBFXM:
+- Baten Kaitos Origins
+https://www.youtube.com/watch?v=6AZLmFaSpR0:
+- 'Castlevania: Lords of Shadow'
+https://www.youtube.com/watch?v=6AuCTNAJz_M:
+- Rollercoaster Tycoon 3
+- Rollercoaster Tycoon III
 https://www.youtube.com/watch?v=6CMTXyExkeI:
-- final fantasy v
-- final fantasy 5
-https://www.youtube.com/watch?v=nRbROTdOgj0:
-- legend of zelda skyward sword
-- skyward sword
-https://www.youtube.com/watch?v=LFcH84oNU6s:
-- skies of arcadia
-https://www.youtube.com/watch?v=VEIWhy-urqM:
-- super mario galaxy
-https://www.youtube.com/watch?v=IT12DW2Fm9M:
-- final fantasy iv
-- final fantasy 4
-https://www.youtube.com/watch?v=UZbqrZJ9VA4:
-- mother3
-- mother 3
-https://www.youtube.com/watch?v=o_ayLF9vdls:
-- dragon age origins
-https://www.youtube.com/watch?v=eVVXNDv8rY0:
-- the elder scrolls v skyrim
-- elder scrolls v
-- elder scrolls 5
-- the elder scrolls 5 skyrim
-- skyrim
-https://www.youtube.com/watch?v=kzvZE4BY0hY:
-- fallout 4
-https://www.youtube.com/watch?v=VTsD2FjmLsw:
-- mass effect 2
-https://www.youtube.com/watch?v=800be1ZmGd0:
-- world of warcraft
-https://www.youtube.com/watch?v=SXKrsJZWqK0:
-- batman arkham city
-- arkham city
-https://www.youtube.com/watch?v=BLEBtvOhGnM:
-- god of war iii
-- god of war 3
-https://www.youtube.com/watch?v=rxgTlQLm4Xg:
-- gears of war 3
-https://www.youtube.com/watch?v=QiPon8lr48U:
-- metal gear solid 2
-https://www.youtube.com/watch?v=qDnaIfiH37w:
+- Final Fantasy V
+- Final Fantasy 5
+https://www.youtube.com/watch?v=6FdjTwtvKCE:
+- Bit.Trip Flux
+https://www.youtube.com/watch?v=6GWxoOc3TFI:
+- Super Mario Land
+https://www.youtube.com/watch?v=6GX_qN7hEEM:
+- Faxanadu
+https://www.youtube.com/watch?v=6GhseRvdAgs:
+- Tekken 5
+- Tekken V
+https://www.youtube.com/watch?v=6IadffCqEQw:
+- The Legend of Zelda
+https://www.youtube.com/watch?v=6JdMvEBtFSE:
+- 'Parasite Eve: The 3rd Birthday'
+https://www.youtube.com/watch?v=6JuO7v84BiY:
+- Pop'n Music 16 PARTY
+- Pop'n Music XVI PARTY
+https://www.youtube.com/watch?v=6MQRL7xws7w:
+- Wild Arms
+https://www.youtube.com/watch?v=6R8jGeVw-9Y:
+- Wild Arms 4
+- Wild Arms IV
+https://www.youtube.com/watch?v=6TJWqX8i8-E:
+- 'Moon: Remix RPG Adventure'
+https://www.youtube.com/watch?v=6UWGh1A1fPw:
+- Dustforce
+https://www.youtube.com/watch?v=6VD_aVMOL1c:
+- Dark Cloud 2
+- Dark Cloud II
+https://www.youtube.com/watch?v=6XOEZIZMUl0:
+- 'SMT: Digital Devil Saga 2'
+- 'SMT: Digital Devil Saga II'
+https://www.youtube.com/watch?v=6ZiYK9U4TfE:
+- Dirt Trax FX
+https://www.youtube.com/watch?v=6_JLe4OxrbA:
+- Super Mario 64
+https://www.youtube.com/watch?v=6b77tr2Vu9U:
+- Pokemon
+https://www.youtube.com/watch?v=6fA_EQBPB94:
+- Super Metroid
+https://www.youtube.com/watch?v=6jp9d66QRz0:
+- Jazz Jackrabbit 2
+- Jazz Jackrabbit II
+https://www.youtube.com/watch?v=6kIE2xVJdTc:
+- Earthbound
+https://www.youtube.com/watch?v=6l3nVyGhbpE:
+- Extreme-G
+https://www.youtube.com/watch?v=6l8a_pzRcRI:
+- Blast Corps
+https://www.youtube.com/watch?v=6nJgdcnFtcQ:
+- Snake's Revenge
+https://www.youtube.com/watch?v=6paAqMXurdA:
+- Chrono Trigger
+https://www.youtube.com/watch?v=6s6Bc0QAyxU:
+- Ghosts 'n' Goblins
+https://www.youtube.com/watch?v=6uWBacK2RxI:
+- 'Mr. Nutz: Hoppin'' Mad'
+https://www.youtube.com/watch?v=6uo5ripzKwc:
+- Emil Chronicle Online
+https://www.youtube.com/watch?v=6xXHeaLmAcM:
+- Mario + Rabbids Kingdom Battle
+https://www.youtube.com/watch?v=70oTg2go0XU:
+- 3D Dot Game Heroes
+https://www.youtube.com/watch?v=718qcWPzvAY:
+- Super Paper Mario
+https://www.youtube.com/watch?v=72RLQGHxE08:
+- Zack & Wiki
+- zack and wiki
+https://www.youtube.com/watch?v=745hAPheACw:
+- Dark Cloud 2
+- Dark Cloud II
+https://www.youtube.com/watch?v=74cYr5ZLeko:
+- Mega Man 9
+- Mega Man IX
+https://www.youtube.com/watch?v=763w2hsKUpk:
+- 'Paper Mario: The Thousand Year Door'
+https://www.youtube.com/watch?v=77F1lLI5LZw:
+- Grandia
+https://www.youtube.com/watch?v=77Z3VDq_9_0:
+- Street Fighter II
+- Street Fighter 2
+https://www.youtube.com/watch?v=7DC2Qj2LKng:
+- Wild Arms
+https://www.youtube.com/watch?v=7DYL2blxWSA:
+- Gran Turismo
+https://www.youtube.com/watch?v=7Dwc0prm7z4:
+- Child of Eden
+https://www.youtube.com/watch?v=7F3KhzpImm4:
+- 'The Legend of Zelda: Twilight Princess'
+- 'twilight princess'
+https://www.youtube.com/watch?v=7FwtoHygavA:
+- Super Mario 3D Land
+https://www.youtube.com/watch?v=7HMGj_KUBzU:
+- Mega Man 6
+- Mega Man VI
+https://www.youtube.com/watch?v=7JIkz4g0dQc:
+- Mega Man 10
+https://www.youtube.com/watch?v=7JWi5dyzW2Q:
+- Dark Cloud 2
+- Dark Cloud II
+https://www.youtube.com/watch?v=7L3VJpMORxM:
+- Lost Odyssey
+https://www.youtube.com/watch?v=7MQFljss6Pc:
+- Red Dead Redemption
+https://www.youtube.com/watch?v=7MhWtz8Nv9Q:
+- The Last Remnant
+https://www.youtube.com/watch?v=7OHV_ByQIIw:
+- Plok
+https://www.youtube.com/watch?v=7RDRhAKsLHo:
+- Dragon Quest V
+- Dragon Quest 5
+https://www.youtube.com/watch?v=7X5-xwb6otQ:
+- Lady Stalker
+https://www.youtube.com/watch?v=7Y9ea3Ph7FI:
+- Unreal Tournament 2003 & 2004
+- unreal tournament 2003
+- unreal tournament 2004
+https://www.youtube.com/watch?v=7d8nmKL5hbU:
+- 'Castlevania: Portrait of Ruin'
+https://www.youtube.com/watch?v=7lHAHFl_3u0:
+- Shadow of the Colossus
+https://www.youtube.com/watch?v=7m2yOHjObCM:
+- Chrono Trigger
+https://www.youtube.com/watch?v=7rNgsqxnIuY:
+- Magic Johnson's Fast Break
+https://www.youtube.com/watch?v=7sb2q6JedKk:
+- Anodyne
+https://www.youtube.com/watch?v=7sc7R7jeOX0:
+- Sonic and the Black Knight
+https://www.youtube.com/watch?v=7u3tJbtAi_o:
+- Grounseed
+https://www.youtube.com/watch?v=7vpHPBE59HE:
+- Valkyria Chronicles
+https://www.youtube.com/watch?v=8-Q-UsqJ8iM:
+- Katamari Damacy
+https://www.youtube.com/watch?v=80YFKvaRou4:
+- Mass Effect
+https://www.youtube.com/watch?v=81-SoTxMmiI:
+- Deep Labyrinth
+https://www.youtube.com/watch?v=81dgZtXKMII:
+- 'Nintendo 3DS Guide: Louvre'
+https://www.youtube.com/watch?v=83p9uYd4peM:
+- Silent Hill 3
+- Silent Hill III
+https://www.youtube.com/watch?v=83xEzdYAmSg:
+- Oceanhorn
+https://www.youtube.com/watch?v=84NsPpkY4l0:
+- Live a Live
+https://www.youtube.com/watch?v=88VyZ4Lvd0c:
+- Wild Arms
+https://www.youtube.com/watch?v=8EaxiB6Yt5g:
+- Earthbound
+https://www.youtube.com/watch?v=8Fl6WlJ-Pms:
+- Parasite Eve
+https://www.youtube.com/watch?v=8IP_IsXL7b4:
+- Super Mario Kart
+https://www.youtube.com/watch?v=8IVlnImPqQA:
+- Unreal Tournament 2003 & 2004
+- unreal tournament 2003
+- unreal tournament 2004
+https://www.youtube.com/watch?v=8K35MD4ZNRU:
+- Kirby's Epic Yarn
+https://www.youtube.com/watch?v=8K8hCmRDbWc:
+- Blue Dragon
+https://www.youtube.com/watch?v=8KX9L6YkA78:
+- Xenosaga III
+- Xenosaga 3
+https://www.youtube.com/watch?v=8MRHV_Cf41E:
+- Shadow Hearts III
+- Shadow Hearts 3
+https://www.youtube.com/watch?v=8OFao351gwU:
+- Mega Man 3
+- Mega Man III
+https://www.youtube.com/watch?v=8RtLhXibDfA:
+- Yoshi's Island
+https://www.youtube.com/watch?v=8SJl4mELFMM:
+- 'Pokemon Mystery Dungeon: Explorers of Sky'
+https://www.youtube.com/watch?v=8ZjZXguqmKM:
+- The Smurfs
+https://www.youtube.com/watch?v=8_9Dc7USBhY:
+- Final Fantasy IV
+- Final Fantasy 4
+https://www.youtube.com/watch?v=8ajBHjJyVDE:
+- 'The Legend of Zelda: A Link Between Worlds'
+- 'a link between worlds'
+https://www.youtube.com/watch?v=8bEtK6g4g_Y:
+- 'Dragon Ball Z: Super Butoden'
+https://www.youtube.com/watch?v=8eZRNAtq_ps:
+- 'Target: Renegade'
+https://www.youtube.com/watch?v=8gGv1TdQaMI:
+- Tomb Raider II
+- Tomb Raider 2
+https://www.youtube.com/watch?v=8hLQart9bsQ:
+- Shadowrun Returns
+https://www.youtube.com/watch?v=8hzjxWVQnxo:
+- Soma
+https://www.youtube.com/watch?v=8iBCg85y0K8:
+- Mother 3
+- Mother III
+https://www.youtube.com/watch?v=8kBBJQ_ySpI:
+- Silent Hill 3
+- Silent Hill III
+https://www.youtube.com/watch?v=8lmjoPgEWb4:
+- Wangan Midnight Maximum Tune 3
+- Wangan Midnight Maximum Tune III
+https://www.youtube.com/watch?v=8mcUQ8Iv6QA:
+- MapleStory
+https://www.youtube.com/watch?v=8pJ4Q7L9rBs:
+- NieR
+https://www.youtube.com/watch?v=8qNwJeuk4gY:
+- Mega Man X
+https://www.youtube.com/watch?v=8qy4-VeSnYk:
+- Secret of Mana
+https://www.youtube.com/watch?v=8tffqG3zRLQ:
+- Donkey Kong Country 2
+- Donkey Kong Country II
+https://www.youtube.com/watch?v=8urO2NlhdiU:
+- Halo 3 ODST
+- Halo III ODST
+https://www.youtube.com/watch?v=8x1E_1TY8ig:
+- Double Dragon Neon
+https://www.youtube.com/watch?v=8xWWLSlQPeI:
+- 'The Legend of Zelda: Wind Waker'
+- 'wind waker'
+https://www.youtube.com/watch?v=8zY_4-MBuIc:
+- 'Phoenix Wright: Ace Attorney'
+https://www.youtube.com/watch?v=93Fqrbd-9gI:
+- Opoona
+https://www.youtube.com/watch?v=93jNP6y_Az8:
+- Yoshi's New Island
+https://www.youtube.com/watch?v=96ro-5alCGo:
+- One Piece Grand Battle 2
+- One Piece Grand Battle II
+https://www.youtube.com/watch?v=99RVgsDs1W0:
+- 'The Legend of Zelda: Twilight Princess'
+- 'twilight princess'
+https://www.youtube.com/watch?v=9BF1JT8rNKI:
+- Silent Hill 3
+- Silent Hill III
+https://www.youtube.com/watch?v=9BgCJL71YIY:
+- Wild Arms 2
+- Wild Arms II
+https://www.youtube.com/watch?v=9FZ-12a3dTI:
+- Deus Ex
+https://www.youtube.com/watch?v=9GvO7CWsWEg:
+- Baten Kaitos
+https://www.youtube.com/watch?v=9QVLuksB-d8:
+- 'Pop''n Music 12: Iroha'
+- 'Pop''n Music XII: Iroha'
+https://www.youtube.com/watch?v=9VE72cRcQKk:
+- Super Runabout
+https://www.youtube.com/watch?v=9VyMkkI39xc:
+- Okami
+https://www.youtube.com/watch?v=9WlrcP2zcys:
+- Final Fantasy VI
+- Final Fantasy 6
+https://www.youtube.com/watch?v=9YRGh-hQq5c:
+- Journey
+https://www.youtube.com/watch?v=9YY-v0pPRc8:
+- Environmental Station Alpha
+https://www.youtube.com/watch?v=9YoDuIZa8tE:
+- Lost Odyssey
+https://www.youtube.com/watch?v=9ZanHcT3wJI:
+- Contact
+https://www.youtube.com/watch?v=9_wYMNZYaA4:
+- Radiata Stories
+https://www.youtube.com/watch?v=9alsJe-gEts:
+- 'The Legend of Heroes: Trails in the Sky'
+https://www.youtube.com/watch?v=9cJe5v5lLKk:
+- Final Fantasy IV
+- Final Fantasy 4
+https://www.youtube.com/watch?v=9heorR5vEvA:
+- Streets of Rage
+https://www.youtube.com/watch?v=9kkQaWcpRvI:
+- Secret of Mana
+https://www.youtube.com/watch?v=9oVbqhGBKac:
+- Castle in the Darkness
+https://www.youtube.com/watch?v=9rldISzBkjE:
+- Undertale
+https://www.youtube.com/watch?v=9sVb_cb7Skg:
+- Diablo II
+- Diablo 2
+https://www.youtube.com/watch?v=9sYfDXfMO0o:
+- Parasite Eve
+https://www.youtube.com/watch?v=9saTXWj78tY:
+- Katamari Damacy
+https://www.youtube.com/watch?v=9th-yImn9aA:
+- Baten Kaitos
+https://www.youtube.com/watch?v=9u3xNXai8D8:
+- Civilization IV
+- Civilization 4
+https://www.youtube.com/watch?v=9v8qNLnTxHU:
+- Final Fantasy VII
+- Final Fantasy 7
+https://www.youtube.com/watch?v=9v_B9wv_qTw:
+- Tower of Heaven
+https://www.youtube.com/watch?v=9xy9Q-BLp48:
+- Legaia 2
+- Legaia II
+https://www.youtube.com/watch?v=A-AmRMWqcBk:
+- Stunt Race FX
+https://www.youtube.com/watch?v=A-dyJWsn_2Y:
+- Pokken Tournament
+https://www.youtube.com/watch?v=A1b4QO48AoA:
+- Hollow Knight
+https://www.youtube.com/watch?v=A2Mi7tkE5T0:
+- Secret of Mana
+https://www.youtube.com/watch?v=A3PE47hImMo:
+- Paladin's Quest II
+- Paladin's Quest 2
+https://www.youtube.com/watch?v=A4e_sQEMC8c:
+- Streets of Fury
+https://www.youtube.com/watch?v=A6Qolno2AQA:
+- Super Princess Peach
+https://www.youtube.com/watch?v=A9PXQSFWuRY:
+- Radiant Historia
+https://www.youtube.com/watch?v=ABYH2x7xaBo:
+- Faxanadu
+https://www.youtube.com/watch?v=AC58piv97eM:
+- 'The Binding of Isaac: Afterbirth'
+https://www.youtube.com/watch?v=AE0hhzASHwY:
+- Xenoblade Chronicles
+https://www.youtube.com/watch?v=AGWVzDhDHMc:
+- 'Shadow Hearts II: Covenant'
+- 'Shadow Hearts 2: Covenant'
+https://www.youtube.com/watch?v=AISrz88SJNI:
+- Digital Devil Saga
+https://www.youtube.com/watch?v=AJX08k_VZv8:
+- 'Ace Combat 4: Shattered Skies'
+- 'Ace Combat IV: Shattered Skies'
+https://www.youtube.com/watch?v=AKfLOMirwho:
+- Earthbound
+https://www.youtube.com/watch?v=AN-NbukIjKw:
+- Super Mario 64
+https://www.youtube.com/watch?v=APW3ZX8FvvE:
+- 'Phoenix Wright: Ace Attorney'
+https://www.youtube.com/watch?v=AQMonx8SlXc:
+- Enthusia Professional Racing
+https://www.youtube.com/watch?v=ARQfmb30M14:
+- Bejeweled 3
+- Bejeweled III
+https://www.youtube.com/watch?v=ARTuLmKjA7g:
+- King of Fighters 2002 Unlimited Match
+https://www.youtube.com/watch?v=ASl7qClvqTE:
+- 'Roommania #203'
+- 'Roommania #CCIII'
+https://www.youtube.com/watch?v=AU_tnstiX9s:
+- 'Ecco the Dolphin: Defender of the Future'
+https://www.youtube.com/watch?v=AVvhihA9gRc:
+- Berserk
+https://www.youtube.com/watch?v=AW7oKCS8HjM:
+- Hotline Miami
+https://www.youtube.com/watch?v=AWB3tT7e3D8:
+- 'The Legend of Zelda: Spirit Tracks'
+- 'spirit tracks'
+https://www.youtube.com/watch?v=AbRWDpruNu4:
+- Super Castlevania IV
+- Super Castlevania 4
+https://www.youtube.com/watch?v=AdI6nJ_sPKQ:
+- Super Stickman Golf 3
+- Super Stickman Golf III
+https://www.youtube.com/watch?v=Ag-O4VfJx6U:
+- Metal Gear Solid 2
+- Metal Gear Solid II
+https://www.youtube.com/watch?v=AkKMlbmq6mc:
+- Mass Effect 2
+- Mass Effect II
+https://www.youtube.com/watch?v=Al0XOLM9FPw:
+- Skullmonkeys
+https://www.youtube.com/watch?v=AmDE3fCW9gY:
+- Okamiden
+https://www.youtube.com/watch?v=AtXEw2NgXx8:
+- Final Fantasy XII
+- Final Fantasy 12
+https://www.youtube.com/watch?v=AuluLeMp1aA:
+- Majokko de Go Go
+https://www.youtube.com/watch?v=AvZjyCGUj-Q:
+- Final Fantasy Tactics A2
+https://www.youtube.com/watch?v=AvlfNZ685B8:
+- Chaos Legion
+https://www.youtube.com/watch?v=AxVhRs8QC1U:
+- Banjo-Kazooie
+https://www.youtube.com/watch?v=Az9XUAcErIQ:
+- Tomb Raider
+https://www.youtube.com/watch?v=AzlWTsBn8M8:
+- Tetris
+https://www.youtube.com/watch?v=B-L4jj9lRmE:
+- Suikoden III
+- Suikoden 3
+https://www.youtube.com/watch?v=B0nk276pUv8:
+- Shovel Knight
+https://www.youtube.com/watch?v=B1e6VdnjLuA:
+- Shadow of the Colossus
+https://www.youtube.com/watch?v=B2j3_kaReP4:
+- Wild Arms 4
+- Wild Arms IV
+https://www.youtube.com/watch?v=B4JvKl7nvL0:
+- Grand Theft Auto IV
+- Grand Theft Auto 4
+https://www.youtube.com/watch?v=B8MpofvFtqY:
+- 'Mario & Luigi: Superstar Saga'
+- 'mario and luigi: superstar saga'
+https://www.youtube.com/watch?v=BCjRd3LfRkE:
+- 'Castlevania: Symphony of the Night'
+https://www.youtube.com/watch?v=BDg0P_L57SU:
+- Lagoon
+https://www.youtube.com/watch?v=BKmv_mecn5g:
+- Super Mario Sunshine
+https://www.youtube.com/watch?v=BMpvrfwD7Hg:
+- Kirby's Epic Yarn
+https://www.youtube.com/watch?v=BQRKQ-CQ27U:
+- 3D Dot Game Heroes
+https://www.youtube.com/watch?v=BSVBfElvom8:
+- 'The Legend of Zelda: Ocarina of Time'
+- 'ocarina of time'
+https://www.youtube.com/watch?v=BVLMdQfxzo4:
+- Emil Chronicle Online
+https://www.youtube.com/watch?v=BZWiBxlBCbM:
+- Hollow Knight
+https://www.youtube.com/watch?v=B_QTkyu2Ssk:
+- Yoshi's Island
+https://www.youtube.com/watch?v=B_ed-ZF9yR0:
+- Ragnarok Online
+https://www.youtube.com/watch?v=Ba4J-4bUN0w:
+- Bomberman Hero
+https://www.youtube.com/watch?v=BdFLRkDRtP0:
+- Wild Arms 4
+- Wild Arms IV
+https://www.youtube.com/watch?v=BdlkxaSEgB0:
+- Galactic Pinball
+https://www.youtube.com/watch?v=BfR5AmZcZ9g:
+- Kirby Super Star
+https://www.youtube.com/watch?v=BfVmj3QGQDw:
+- The Neverhood
+https://www.youtube.com/watch?v=BhfevIZsXo0:
+- Outlast
+https://www.youtube.com/watch?v=BimaIgvOa-A:
+- Paper Mario
+https://www.youtube.com/watch?v=Bj5bng0KRPk:
+- 'The Legend of Zelda: Ocarina of Time'
+- 'ocarina of time'
+https://www.youtube.com/watch?v=Bk_NDMKfiVE:
+- Chrono Cross
+https://www.youtube.com/watch?v=BkmbbZZOgKg:
+- Cheetahmen II
+- Cheetahmen 2
+https://www.youtube.com/watch?v=Bkmn35Okxfw:
+- Final Fantasy VII
+- Final Fantasy 7
+https://www.youtube.com/watch?v=Bqvy5KIeQhI:
+- Legend of Grimrock II
+- Legend of Grimrock 2
+https://www.youtube.com/watch?v=BqxjLbpmUiU:
+- Krater
+https://www.youtube.com/watch?v=Bvw2H15HDlM:
+- 'Final Fantasy XI: Rise of the Zilart'
+- 'Final Fantasy 11: Rise of the Zilart'
+https://www.youtube.com/watch?v=BwpzdyCvqN0:
+- Final Fantasy Adventure
+https://www.youtube.com/watch?v=BxYfQBNFVSw:
+- Mega Man 7
+- Mega Man VII
+https://www.youtube.com/watch?v=C-QGg9FGzj4:
+- Grandia II
+- Grandia 2
+https://www.youtube.com/watch?v=C31ciPeuuXU:
+- 'Golden Sun: Dark Dawn'
+https://www.youtube.com/watch?v=C3xhG7wRnf0:
+- Super Paper Mario
+https://www.youtube.com/watch?v=C4cD-7dOohU:
+- Valdis Story
+https://www.youtube.com/watch?v=C7NTTBm7fS8:
+- Mighty Switch Force! 2
+- Mighty Switch Force! II
+https://www.youtube.com/watch?v=C7r8sJbeOJc:
+- NeoTokyo
+https://www.youtube.com/watch?v=C8aVq5yQPD8:
+- Lode Runner 3-D
+- Lode Runner 3-500
+- Lode Runner III-D
+https://www.youtube.com/watch?v=CADHl-iZ_Kw:
+- 'The Legend of Zelda: A Link to the Past'
+- 'a link to the past'
+https://www.youtube.com/watch?v=CBm1yaZOrB0:
+- Enthusia Professional Racing
+https://www.youtube.com/watch?v=CD9A7myidl4:
+- No More Heroes 2
+- No More Heroes II
+https://www.youtube.com/watch?v=CEPnbBgjWdk:
+- 'Brothers: A Tale of Two Sons'
+https://www.youtube.com/watch?v=CHQ56GSPi2I:
+- 'Arc the Lad IV: Twilight of the Spirits'
+- 'Arc the Lad 4: Twilight of the Spirits'
+https://www.youtube.com/watch?v=CHd4iWEFARM:
+- Klonoa
+https://www.youtube.com/watch?v=CHlEPgi4Fro:
+- 'Ace Combat Zero: The Belkan War'
+https://www.youtube.com/watch?v=CHydNVrPpAQ:
+- 'The Legend of Zelda: Skyward Sword'
+- 'skyward sword'
+https://www.youtube.com/watch?v=CLl8UR5vrMk:
+- Yakuza 0
+- 'Yakuza '
+https://www.youtube.com/watch?v=CNUgwyd2iIA:
+- Sonic the Hedgehog 3
+- Sonic the Hedgehog III
+https://www.youtube.com/watch?v=CP0TcAnHftc:
+- Attack of the Friday Monsters! A Tokyo Tale
+https://www.youtube.com/watch?v=CPKoMt4QKmw:
+- Super Mario Galaxy
+https://www.youtube.com/watch?v=CPbjTzqyr7o:
+- Last Bible III
+- Last Bible 3
+https://www.youtube.com/watch?v=CRmOTY1lhYs:
+- Mass Effect
+https://www.youtube.com/watch?v=CYjYCaqshjE:
+- No More Heroes 2
+- No More Heroes II
+https://www.youtube.com/watch?v=CYswIEEMIWw:
+- Sonic CD
+- Sonic 400
+https://www.youtube.com/watch?v=Ca4QJ_pDqpA:
+- 'Dragon Ball Z: The Legacy of Goku II'
+- 'Dragon Ball Z: The Legacy of Goku 2'
+https://www.youtube.com/watch?v=Car2R06WZcw:
+- 'The Legend of Zelda: Wind Waker'
+- 'wind waker'
+https://www.youtube.com/watch?v=CcKUWCm_yRs:
+- Cool Spot
+https://www.youtube.com/watch?v=CcovgBkMTmE:
+- Guild Wars 2
+- Guild Wars II
+https://www.youtube.com/watch?v=CfoiK5ADejI:
+- Final Fantasy VII
+- Final Fantasy 7
+https://www.youtube.com/watch?v=CgtvppDEyeU:
+- Shenmue
+https://www.youtube.com/watch?v=CkPqtTcBXTA:
+- Bully
+https://www.youtube.com/watch?v=CksHdwwG1yw:
+- Crystalis
+https://www.youtube.com/watch?v=Cm9HjyPkQbg:
+- Soul Edge
+https://www.youtube.com/watch?v=CmMswzZkMYY:
+- Super Metroid
+https://www.youtube.com/watch?v=Cnn9BW3OpJs:
+- 'Roommania #203'
+- 'Roommania #CCIII'
+https://www.youtube.com/watch?v=CoQrXSc_PPw:
+- Donkey Kong Country
+https://www.youtube.com/watch?v=Cp0UTM-IzjM:
+- 'Castlevania: Lament of Innocence'
+https://www.youtube.com/watch?v=CpThkLTJjUQ:
+- Turok 2 (Gameboy)
+- Turok II
+- turok 2
+https://www.youtube.com/watch?v=CqAXFK8U32U:
+- McKids
+https://www.youtube.com/watch?v=CrjvBd9q4A0:
+- Demon's Souls
+https://www.youtube.com/watch?v=Ct54E7GryFQ:
+- Persona 4
+- Persona IV
+https://www.youtube.com/watch?v=CuQJ-qh9s_s:
+- Tekken 2
+- Tekken II
+https://www.youtube.com/watch?v=CumPOZtsxkU:
+- Skies of Arcadia
+https://www.youtube.com/watch?v=Cw4IHZT7guM:
+- Final Fantasy XI
+- Final Fantasy 11
+https://www.youtube.com/watch?v=CwI39pDPlgc:
+- Shadow Madness
+https://www.youtube.com/watch?v=CzZab0uEd1w:
+- 'Tintin: Prisoners of the Sun'
+https://www.youtube.com/watch?v=D0uYrKpNE2o:
+- Valkyrie Profile
+https://www.youtube.com/watch?v=D2nWuGoRU0s:
+- 'Ecco the Dolphin: Defender of the Future'
+https://www.youtube.com/watch?v=D30VHuqhXm8:
+- 'Paper Mario: The Thousand Year Door'
+https://www.youtube.com/watch?v=D3zfoec6tiw:
+- NieR
+https://www.youtube.com/watch?v=DFKoFzNfQdA:
+- Secret of Mana
+https://www.youtube.com/watch?v=DIyhbwBfOwE:
+- Tekken 4
+- Tekken IV
+https://www.youtube.com/watch?v=DKbzLuiop80:
+- Shin Megami Tensei Nocturne
+https://www.youtube.com/watch?v=DLqos66n3Qo:
+- Mega Turrican
+https://www.youtube.com/watch?v=DPO2XhA5F3Q:
+- Mana Khemia
+https://www.youtube.com/watch?v=DS825tbc9Ts:
+- Phantasy Star Online
+https://www.youtube.com/watch?v=DSOvrM20tMA:
+- Wild Arms
+https://www.youtube.com/watch?v=DTqp7jUBoA8:
+- Mega Man 3
+- Mega Man III
+https://www.youtube.com/watch?v=DTzf-vahsdI:
+- 'The Legend of Zelda: Breath of the Wild'
+- 'breath of the wild'
+https://www.youtube.com/watch?v=DW-tMwk3t04:
+- Grounseed
+https://www.youtube.com/watch?v=DWXXhLbqYOI:
+- Mario Kart 64
+https://www.youtube.com/watch?v=DY0L5o9y-YA:
+- Paladin's Quest
+https://www.youtube.com/watch?v=DY_Tz7UAeAY:
+- Darksiders II
+- Darksiders 2
+https://www.youtube.com/watch?v=DZQ1P_oafJ0:
+- Eternal Champions
+https://www.youtube.com/watch?v=DZaltYb0hjU:
+- Western Lords
+https://www.youtube.com/watch?v=DbQdgOVOjSU:
+- Super Mario RPG
+https://www.youtube.com/watch?v=DeqecCzDWhQ:
+- Streets of Rage 2
+- Streets of Rage II
+https://www.youtube.com/watch?v=Dhd4jJw8VtE:
+- 'Phoenix Wright: Ace Attorney'
+https://www.youtube.com/watch?v=DjKfEQD892I:
+- To the Moon
+https://www.youtube.com/watch?v=DlbCke52EBQ:
+- 'The Legend of Zelda: Skyward Sword'
+- 'skyward sword'
+https://www.youtube.com/watch?v=DlcwDU0i6Mw:
+- Tribes 2
+- Tribes II
+https://www.youtube.com/watch?v=DmaFexLIh4s:
+- El Shaddai
+https://www.youtube.com/watch?v=DmpP-RMFNHo:
+- 'The Elder Scrolls III: Morrowind'
+- 'The Elder Scrolls 3: Morrowind'
+- Morrowind
+https://www.youtube.com/watch?v=DoQekfFkXvI:
+- Super Mario Land
+https://www.youtube.com/watch?v=Dr95nRD7vAo:
+- FTL
+https://www.youtube.com/watch?v=DxEl2p9GPnY:
+- The Lost Vikings
+https://www.youtube.com/watch?v=DzXQKut6Ih4:
+- 'Castlevania: Dracula X' 
+https://www.youtube.com/watch?v=E3PKlQUYNTw:
+- Okamiden
+https://www.youtube.com/watch?v=E3Po0o6zoJY:
+- 'TrackMania 2: Stadium'
+- 'TrackMania II: Stadium'
+https://www.youtube.com/watch?v=E5K6la0Fzuw:
+- Driver
+https://www.youtube.com/watch?v=E99qxCMb05g:
+- VVVVVV
+https://www.youtube.com/watch?v=ECP710r6JCM:
+- Super Smash Bros. Wii U / 3DS
 - super smash bros wii u
+- super smash bros 3ds
 - super smash bros. wii u
-- super smash brothers wii u
-- super smash bros wiiu
-- super smash bros. wiiu
-- super smash brothers wiiu
-https://www.youtube.com/watch?v=_Uzlm2MaCWw:
-- mega man maverick hunter x
-- megaman maverick hunter x
-- maverick hunter x
-https://www.youtube.com/watch?v=-8wo0KBQ3oI:
-- doom
-https://www.youtube.com/watch?v=TN36CetQw6I:
-- super smash bros brawl
-- super smash bros. brawl
-- super smash brothers brawl
-https://www.youtube.com/watch?v=01IEjvD5lss:
-- guilty gear
-https://www.youtube.com/watch?v=VXX4Ft1I0Dw:
-- dynasty warriors 6
-https://www.youtube.com/watch?v=liRMh4LzQQU:
-- doom 2016
-- doom
-https://www.youtube.com/watch?v=ouw3jLAUXWE:
-- devil may cry 3
-https://www.youtube.com/watch?v=B_MW65XxS7s:
-- final fantasy vii
-- final fantasy 7
-https://www.youtube.com/watch?v=viM0-3PXef0:
-- the witcher 3
-- witcher 3
-https://www.youtube.com/watch?v=WQYN2P3E06s:
-- civilization vi
-- civilization 6
-https://www.youtube.com/watch?v=qOMQxVtbkik:
-- guild wars 2
-- guild wars two
-https://www.youtube.com/watch?v=WwHrQdC02FY:
-- final fantasy vi
-- final fantasy 6
-https://www.youtube.com/watch?v=2_wkJ377LzU:
-- journey
-https://www.youtube.com/watch?v=IJiHDmyhE1A:
-- civilization iv
-- civilization 4
-https://www.youtube.com/watch?v=kN_LvY97Rco:
-- ori and the blind forest
-https://www.youtube.com/watch?v=TO7UI0WIqVw:
-- super smash bros brawl
-- super smash bros. brawl
-- super smash brothers brawl
-https://www.youtube.com/watch?v=s9XljBWGrRQ:
-- kingdom hearts
-https://www.youtube.com/watch?v=xkolWbZdGbM:
-- shenmue
-https://www.youtube.com/watch?v=h-0G_FI61a8:
-- final fantasy x
-- final fantasy 10
-https://www.youtube.com/watch?v=do5NTPLMqXQ:
-- fire emblem fates
-https://www.youtube.com/watch?v=eFVj0Z6ahcI:
-- persona 5
-- persona five
-https://www.youtube.com/watch?v=PhciLj5VzOk:
-- super mario odyssey
-https://www.youtube.com/watch?v=GBPbJyxqHV0:
-- super mario 64
-- mario 64
-https://www.youtube.com/watch?v=wRWq53IFXVQ:
-- the legend of zelda the wind waker
-- legend of zelda the wind waker
-- the legend of zelda wind waker
-- legend of zelda wind waker
+- super smash bros. 3ds
+https://www.youtube.com/watch?v=EDmsNVWZIws:
+- Dragon Quest
+https://www.youtube.com/watch?v=EF7QwcRAwac:
+- Suikoden II
+- Suikoden 2
+https://www.youtube.com/watch?v=EF_lbrpdRQo:
+- Contact
+https://www.youtube.com/watch?v=EHAbZoBjQEw:
+- Secret of Evermore
+https://www.youtube.com/watch?v=EHRfd2EQ_Do:
+- Persona 4
+- Persona IV
+https://www.youtube.com/watch?v=EL_jBUYPi88:
+- Journey to Silius
+https://www.youtube.com/watch?v=ELqpqweytFc:
+- Metroid Prime
+https://www.youtube.com/watch?v=ELyz549E_f4:
+- Mother 3
+- Mother III
+https://www.youtube.com/watch?v=ENStkWiosK4:
+- Kid Icarus
+https://www.youtube.com/watch?v=EQjT6103nLg:
+- Senko no Ronde (Wartech)
+- Wartech
+- senko no ronde
+https://www.youtube.com/watch?v=ERUnY6EIsn8:
+- Snake Pass
+https://www.youtube.com/watch?v=ERohLbXvzVQ:
+- Z-Out
+https://www.youtube.com/watch?v=EVo5O3hKVvo:
+- Mega Turrican
+https://www.youtube.com/watch?v=EX5V_PWI3yM:
+- Kingdom Hearts II
+- Kingdom Hearts 2
+https://www.youtube.com/watch?v=EcUxGQkLj2c:
+- Final Fantasy III DS
+- Final Fantasy 3 DS
+https://www.youtube.com/watch?v=EdkkgkEu_NQ:
+- The Smurfs' Nightmare
+https://www.youtube.com/watch?v=EeGhYL_8wtg:
+- Phantasy Star Portable 2
+- Phantasy Star Portable II
+https://www.youtube.com/watch?v=EeXlQNJnjj0:
+- 'E.V.O: Search for Eden'
+https://www.youtube.com/watch?v=Ef3xB2OP8l8:
+- Diddy Kong Racing
+https://www.youtube.com/watch?v=Ef5pp7mt1lA:
+- 'Animal Crossing: Wild World'
+https://www.youtube.com/watch?v=Ekiz0YMNp7A:
+- 'Romancing SaGa: Minstrel Song'
+https://www.youtube.com/watch?v=ElSUKQOF3d4:
+- Elebits
+https://www.youtube.com/watch?v=EmD9WnLYR5I:
+- Super Mario Land 2
+- Super Mario Land II
+https://www.youtube.com/watch?v=EohQnQbQQWk:
+- Super Mario Kart
+https://www.youtube.com/watch?v=EpbcztAybh0:
+- Super Mario Maker
+https://www.youtube.com/watch?v=ErlBKXnOHiQ:
+- Dragon Quest IV
+- Dragon Quest 4
+https://www.youtube.com/watch?v=Ev1MRskhUmA:
+- Dragon Quest VI
+- Dragon Quest 6
+https://www.youtube.com/watch?v=EvRTjXbb8iw:
+- Unlimited Saga
+https://www.youtube.com/watch?v=F0cuCvhbF9k:
+- 'The Legend of Zelda: Breath of the Wild'
+- 'breath of the wild'
+https://www.youtube.com/watch?v=F2-bROS64aI:
+- Mega Man Soccer
+https://www.youtube.com/watch?v=F3hz58VDWs8:
+- Chrono Trigger
+https://www.youtube.com/watch?v=F41PKROUnhA:
+- F-Zero GX
+https://www.youtube.com/watch?v=F4QbiPftlEE:
+- Dustforce
+https://www.youtube.com/watch?v=F6sjYt6EJVw:
+- Journey to Silius
+https://www.youtube.com/watch?v=F7p1agUovzs:
+- 'Silent Hill: Shattered Memories'
+https://www.youtube.com/watch?v=F8U5nxhxYf0:
+- Breath of Fire III
+- Breath of Fire 3
+https://www.youtube.com/watch?v=FCB7Dhm8RuY:
+- Super Mario Galaxy 2
+- Super Mario Galaxy II
+https://www.youtube.com/watch?v=FDAMxLKY2EY:
+- Ogre Battle
+https://www.youtube.com/watch?v=FE59rlKJRPs:
+- Rogue Galaxy
+https://www.youtube.com/watch?v=FEpAD0RQ66w:
+- Shinobi III
+- Shinobi 3
+https://www.youtube.com/watch?v=FGtk_eaVnxQ:
+- Minecraft
+https://www.youtube.com/watch?v=FJ976LQSY-k:
+- Western Lords
+https://www.youtube.com/watch?v=FJJPaBA7264:
+- 'Castlevania: Aria of Sorrow'
+https://www.youtube.com/watch?v=FKqTtZXIid4:
+- Super Mario Galaxy
+https://www.youtube.com/watch?v=FKtnlUcGVvM:
+- Star Ocean 3
+- Star Ocean III
+https://www.youtube.com/watch?v=FPjueitq904:
+- "Einh\xC3\xA4nder"
+https://www.youtube.com/watch?v=FQioui9YeiI:
+- Ragnarok Online
+https://www.youtube.com/watch?v=FR-TFI71s6w:
+- Super Monkey Ball 2
+- Super Monkey Ball II
+https://www.youtube.com/watch?v=FSfRr0LriBE:
+- Hearthstone
+https://www.youtube.com/watch?v=FWSwAKVS-IA:
+- 'Disaster: Day of Crisis'
+https://www.youtube.com/watch?v=FYSt4qX85oA:
+- 'Star Ocean 3: Till the End of Time'
+- 'Star Ocean III: Till the End of Time'
+https://www.youtube.com/watch?v=Fa9-pSBa9Cg:
+- Gran Turismo 5
+- Gran Turismo V
+https://www.youtube.com/watch?v=Ff_r_6N8PII:
+- 'The Legend of Zelda: Twilight Princess'
+- twilight princess
+https://www.youtube.com/watch?v=FgQaK7TGjX4:
+- 'The Legend of Zelda: A Link to the Past'
+- a link to the past
+https://www.youtube.com/watch?v=FjFx5oO-riE:
+- 'Castlevania: Order of Ecclesia'
+https://www.youtube.com/watch?v=FkMm63VAHps:
+- Gunlord
+https://www.youtube.com/watch?v=FnogL42dEL4:
+- 'Command & Conquer: Red Alert'
+- 'command and conquer: red alert'
+https://www.youtube.com/watch?v=FqrNEjtl2FI:
+- Twinsen's Odyssey
+https://www.youtube.com/watch?v=FrhLXDBP-2Q:
+- DuckTales
+https://www.youtube.com/watch?v=Fs9FhHHQKwE:
+- Chrono Cross
+https://www.youtube.com/watch?v=Ft-qnOD77V4:
+- Doom
+https://www.youtube.com/watch?v=G0YMlSu1DeA:
+- Final Fantasy VII
+- Final Fantasy 7
+https://www.youtube.com/watch?v=G4g1SH2tEV0:
+- Aliens Incursion
+https://www.youtube.com/watch?v=GAVePrZeGTc:
+- SaGa Frontier
+https://www.youtube.com/watch?v=GBYsdw4Vwx8:
+- Silent Hill 2
+- Silent Hill II
+https://www.youtube.com/watch?v=GC99a8VRsIw:
+- Earthbound
+https://www.youtube.com/watch?v=GCiOjOMciOI:
+- LocoRoco
+https://www.youtube.com/watch?v=GEuRzRW86bI:
+- Musashi Samurai Legend
+https://www.youtube.com/watch?v=GIhf0yU94q4:
+- Mr. Nutz
+https://www.youtube.com/watch?v=GIuBC4GU6C8:
+- Final Fantasy VI
+- Final Fantasy 6
+https://www.youtube.com/watch?v=GKFwm2NSJdc:
+- 'Paper Mario: The Thousand Year Door'
+https://www.youtube.com/watch?v=GKKhBT0A1pE:
+- Wild Arms 3
+- Wild Arms III
+https://www.youtube.com/watch?v=GLPT6H4On4o:
+- Metroid Fusion
+https://www.youtube.com/watch?v=GM6lrZw9Fdg:
+- Super Mario Galaxy 2
+- Super Mario Galaxy II
+https://www.youtube.com/watch?v=GNqR9kGLAeA:
+- Croc 2
+- Croc II
+https://www.youtube.com/watch?v=GQND5Y7_pXc:
+- Sprint Vector
+https://www.youtube.com/watch?v=GRU4yR3FQww:
+- Final Fantasy XIII
+- Final Fantasy 13
+https://www.youtube.com/watch?v=GWaooxrlseo:
+- Mega Man X3
+https://www.youtube.com/watch?v=G_80PQ543rM:
+- DuckTales
+https://www.youtube.com/watch?v=GaOT77kUTD8:
+- Jack Bros.
+https://www.youtube.com/watch?v=GdOFuA2qpG4:
+- Mega Man Battle Network 3
+- Mega Man Battle Network III
+https://www.youtube.com/watch?v=GhFffRvPfig:
+- DuckTales
+https://www.youtube.com/watch?v=Gibt8OLA__M:
+- Pilotwings 64
+https://www.youtube.com/watch?v=GnwlAOp6tfI:
+- L.A. Noire
+- 50.A. Noire
+https://www.youtube.com/watch?v=Gt-QIiYkAOU:
+- Galactic Pinball
+https://www.youtube.com/watch?v=GtZNgj5OUCM:
+- 'Pokemon Mystery Dungeon: Explorers of Sky'
+https://www.youtube.com/watch?v=GyiSanVotOM:
+- Dark Souls II
+- Dark Souls 2
+https://www.youtube.com/watch?v=GyuReqv2Rnc:
+- ActRaiser
+https://www.youtube.com/watch?v=GzBsFGh6zoc:
+- Lufia
+https://www.youtube.com/watch?v=Gza34GxrZlk:
+- Secret of the Stars
+https://www.youtube.com/watch?v=H-CwNdgHcDw:
+- Lagoon
+https://www.youtube.com/watch?v=H1B52TSCl_A:
+- Super Mario 64
+https://www.youtube.com/watch?v=H2-rCJmEDIQ:
+- Fez
+https://www.youtube.com/watch?v=H3fQtYVwpx4:
+- Croc 2
+- Croc II
+https://www.youtube.com/watch?v=H4hryHF3kTw:
+- Xenosaga II
+- Xenosaga 2
+https://www.youtube.com/watch?v=HCHsMo4BOJ0:
+- Wild Arms 4
+- Wild Arms IV
+https://www.youtube.com/watch?v=HCi2-HtFh78:
+- 'Star Ocean 2: The Second Story'
+- 'Star Ocean II: The Second Story'
+https://www.youtube.com/watch?v=HFKtYCcMWT4:
+- Mega Man 2
+- Mega Man II
+https://www.youtube.com/watch?v=HGMjMDE-gAY:
+- Terranigma
+https://www.youtube.com/watch?v=HHun7iYtbFU:
+- Mega Man 6
+- Mega Man VI
+https://www.youtube.com/watch?v=HIKOSJh9_5k:
+- Treasure Hunter G
+https://www.youtube.com/watch?v=HImC0q17Pk0:
+- 'FTL: Faster Than Light'
+https://www.youtube.com/watch?v=HLl-oMBhiPc:
+- 'Sailor Moon RPG: Another Story'
+https://www.youtube.com/watch?v=HNPqugUrdEM:
+- 'Castlevania: Lament of Innocence'
+https://www.youtube.com/watch?v=HO0rvkOPQww:
+- Guardian's Crusade
+https://www.youtube.com/watch?v=HRAnMmwuLx4:
+- Radiant Historia
+https://www.youtube.com/watch?v=HSWAPWjg5AM:
+- Mother 3
+- Mother III
+https://www.youtube.com/watch?v=HTo_H7376Rs:
+- Dark Souls II
+- Dark Souls 2
+https://www.youtube.com/watch?v=HUpDqe4s4do:
+- 'Lunar: The Silver Star'
+https://www.youtube.com/watch?v=HUzLO2GpPv4:
+- Castlevania 64
+https://www.youtube.com/watch?v=HW5WcFpYDc4:
+- 'Mega Man Battle Network 5: Double Team'
+- 'Mega Man Battle Network V: Double Team'
+https://www.youtube.com/watch?v=HXxA7QJTycA:
+- Mario Kart Wii
+https://www.youtube.com/watch?v=HZ9O1Gh58vI:
+- Final Fantasy IX
+- Final Fantasy 9
+https://www.youtube.com/watch?v=H_rMLATTMws:
+- Illusion of Gaia
+https://www.youtube.com/watch?v=HaRmFcPG7o8:
+- 'Shadow Hearts II: Covenant'
+- 'Shadow Hearts 2: Covenant'
+https://www.youtube.com/watch?v=Hbw3ZVY7qGc:
+- Scott Pilgrim vs the World
+https://www.youtube.com/watch?v=He7jFaamHHk:
+- 'Castlevania: Symphony of the Night'
+https://www.youtube.com/watch?v=HeirTA9Y9i0:
+- Maken X
+https://www.youtube.com/watch?v=HijQBbE0WiQ:
+- Heroes of Might and Magic III
+- Heroes of Might and Magic 3
+https://www.youtube.com/watch?v=HmOUI30QqiE:
+- Streets of Rage 2
+- Streets of Rage II
+https://www.youtube.com/watch?v=HneWfB9jsHk:
+- Suikoden III
+- Suikoden 3
+https://www.youtube.com/watch?v=Ho2TE9ZfkgI:
+- Battletoads (Arcade)
+- battletoads
+https://www.youtube.com/watch?v=HpecW3jSJvQ:
+- Xenoblade Chronicles
+https://www.youtube.com/watch?v=Hro03nOyUuI:
+- Ecco the Dolphin (Sega CD)
+- Ecco the Dolphin
+https://www.youtube.com/watch?v=HtJPpVCuYGQ:
+- 'Chuck Rock II: Son of Chuck'
+- 'Chuck Rock 2: Son of Chuck'
+https://www.youtube.com/watch?v=HvnAkAQK82E:
+- Tales of Symphonia
+https://www.youtube.com/watch?v=HvyPtN7_jNk:
+- F-Zero GX
+https://www.youtube.com/watch?v=HwBOvdH38l0:
+- Super Mario Galaxy 2
+- Super Mario Galaxy II
+https://www.youtube.com/watch?v=HyWy1vzcqGE:
+- Boom Blox
+https://www.youtube.com/watch?v=I-_yzFMnclM:
+- 'Lufia: The Legend Returns'
+https://www.youtube.com/watch?v=I0FNN-t4pRU:
+- Earthbound
+https://www.youtube.com/watch?v=I0rfWwuyHFg:
+- Time Trax
+https://www.youtube.com/watch?v=I1USJ16xqw4:
+- Disney's Aladdin
+https://www.youtube.com/watch?v=I2LzT-9KtNA:
+- The Oregon Trail
+https://www.youtube.com/watch?v=I4b8wCqmQfE:
+- Phantasy Star Online Episode III
+- Phantasy Star Online Episode 3
+https://www.youtube.com/watch?v=I4gMnPkOQe8:
+- Earthbound
+https://www.youtube.com/watch?v=I5GznpBjHE4:
+- Soul Blazer
+https://www.youtube.com/watch?v=I8ij2RGGBtc:
+- Mario Sports Mix
+https://www.youtube.com/watch?v=I8zZaUvkIFY:
+- Final Fantasy VII
+- Final Fantasy 7
+https://www.youtube.com/watch?v=ICOotKB_MUc:
+- Top Gear
+https://www.youtube.com/watch?v=ICdhgaXXor4:
+- Mass Effect 3
+- Mass Effect III
+https://www.youtube.com/watch?v=IDUGJ22OWLE:
+- Front Mission 1st
+https://www.youtube.com/watch?v=IE3FTu_ppko:
+- Final Fantasy VII
+- Final Fantasy 7
+https://www.youtube.com/watch?v=IEMaS33Wcd8:
+- Shovel Knight
+https://www.youtube.com/watch?v=IEf1ALD_TCA:
+- Bully
+https://www.youtube.com/watch?v=IQDiMzoTMH4:
+- 'World of Warcraft: Wrath of the Lich King'
+https://www.youtube.com/watch?v=IS-bZp4WW4w:
+- Crusader of Centy
+https://www.youtube.com/watch?v=ITQVlvGsSDA:
+- Donkey Kong Country 2
+- Donkey Kong Country II
+https://www.youtube.com/watch?v=ITijTBoqJpc:
+- 'Final Fantasy Fables: Chocobo''s Dungeon'
+https://www.youtube.com/watch?v=IUAZtA-hHsw:
+- SaGa Frontier II
+- SaGa Frontier 2
+https://www.youtube.com/watch?v=IVCQ-kau7gs:
+- Shatterhand
+https://www.youtube.com/watch?v=IWoCTYqBOIE:
+- Final Fantasy X
+- Final Fantasy 10
+https://www.youtube.com/watch?v=IXU7Jhi6jZ8:
+- Wild Arms 5
+- Wild Arms V
+https://www.youtube.com/watch?v=IY7hfsfPh84:
+- Radiata Stories
+https://www.youtube.com/watch?v=IYGLnkSrA50:
+- Super Paper Mario
+https://www.youtube.com/watch?v=Ia1BEcALLX0:
+- Radiata Stories
+https://www.youtube.com/watch?v=IbBmFShDBzs:
+- Secret of Mana
+https://www.youtube.com/watch?v=Ie1zB5PHwEw:
+- Contra
+https://www.youtube.com/watch?v=IgPtGSdLliQ:
+- Chrono Trigger
+https://www.youtube.com/watch?v=IjZaRBbmVUc:
+- Bastion
+https://www.youtube.com/watch?v=ImdjNeH310w:
+- Ragnarok Online II
+- Ragnarok Online 2
+https://www.youtube.com/watch?v=IrLs8cW3sIc:
+- 'The Legend of Zelda: Wind Waker'
+- wind waker
+https://www.youtube.com/watch?v=Ir_3DdPZeSg:
+- 'Far Cry 3: Blood Dragon'
+- 'Far Cry III: Blood Dragon'
+https://www.youtube.com/watch?v=Is_yOYLMlHY:
+- "We \xE2\u2122\xA5 Katamari"
+https://www.youtube.com/watch?v=Iss6CCi3zNk:
+- Earthbound
+https://www.youtube.com/watch?v=Iu4MCoIyV94:
+- Motorhead
+https://www.youtube.com/watch?v=IwIt4zlHSWM:
+- Donkey Kong Country 3
+- Donkey Kong Country III
+https://www.youtube.com/watch?v=IyAs15CjGXU:
+- Super Mario Galaxy 2
+- Super Mario Galaxy II
+https://www.youtube.com/watch?v=J-zD9QjtRNo:
+- 'Paper Mario: The Thousand Year Door'
+https://www.youtube.com/watch?v=J1x1Ao6CxyA:
+- Double Dragon II
+- Double Dragon 2
+https://www.youtube.com/watch?v=J323aFuwx64:
+- Super Mario Bros 3
+- Super Mario Bros III
+https://www.youtube.com/watch?v=J4EE4hRA9eU:
+- Lost Odyssey
+https://www.youtube.com/watch?v=J67nkzoJ_2M:
+- Donkey Kong Country 2
+- Donkey Kong Country II
+https://www.youtube.com/watch?v=J6Beh5YUWdI:
+- Wario World
+https://www.youtube.com/watch?v=JA_VeKxyfiU:
+- Golden Sun
+https://www.youtube.com/watch?v=JCqSHvyY_2I:
+- Secret of Evermore
+https://www.youtube.com/watch?v=JE1hhd0E-_I:
+- Lufia II
+- Lufia 2
+https://www.youtube.com/watch?v=JF7ucc5IH_Y:
+- Mass Effect
+https://www.youtube.com/watch?v=JFadABMZnYM:
+- Ragnarok Online
+https://www.youtube.com/watch?v=JGQ_Z0W43D4:
+- Secret of Evermore
+https://www.youtube.com/watch?v=JHrGsxoZumY:
+- Soukaigi
+https://www.youtube.com/watch?v=JKVUavdztAg:
+- Shovel Knight
+https://www.youtube.com/watch?v=JOFsATsPiH0:
+- Deus Ex
+https://www.youtube.com/watch?v=JRKOBmaENoE:
+- Spanky's Quest
+https://www.youtube.com/watch?v=JS8vCLXX5Pg:
+- Panzer Dragoon Saga
+https://www.youtube.com/watch?v=JV8qMsWKTvk:
+- Legaia 2
+- Legaia II
+https://www.youtube.com/watch?v=JWMtsksJtYw:
+- Kingdom Hearts
+https://www.youtube.com/watch?v=JXtWCWeM6uI:
+- Animal Crossing
+https://www.youtube.com/watch?v=J_cTMwAZil0:
+- Wild Arms 4
+- Wild Arms IV
+https://www.youtube.com/watch?v=Jb83GX7k_08:
+- Shadow of the Colossus
+https://www.youtube.com/watch?v=Je3YoGKPC_o:
+- Grandia II
+- Grandia 2
+https://www.youtube.com/watch?v=Jg5M1meS6wI:
+- Metal Gear Solid
+https://www.youtube.com/watch?v=JgGPRcUgGNk:
+- Ace Combat 6
+- Ace Combat VI
+https://www.youtube.com/watch?v=Jgm24MNQigg:
+- Parasite Eve II
+- Parasite Eve 2
+https://www.youtube.com/watch?v=JhDblgtqx5o:
+- Arumana no Kiseki
+https://www.youtube.com/watch?v=Jig-PUAk-l0:
+- Final Fantasy Adventure
+https://www.youtube.com/watch?v=JkEt-a3ro1U:
+- Final Fantasy Adventure
+https://www.youtube.com/watch?v=JlGnZvt5OBE:
+- Ittle Dew
+https://www.youtube.com/watch?v=Jokz0rBmE7M:
+- ZombiU
+https://www.youtube.com/watch?v=Jq949CcPxnM:
+- Super Valis IV
+- Super Valis 4
+https://www.youtube.com/watch?v=JrlGy3ozlDA:
+- Deep Fear
+https://www.youtube.com/watch?v=JsjTpjxb9XU:
+- Seiken Densetsu 3
+- Seiken Densetsu III
+https://www.youtube.com/watch?v=JvGhaOX-aOo:
+- Mega Man & Bass
+- mega man and bass
+https://www.youtube.com/watch?v=JvMsfqT9KB8:
+- Hotline Miami
+https://www.youtube.com/watch?v=JwSV7nP5wcs:
+- Skies of Arcadia
+https://www.youtube.com/watch?v=JxhYFSN_xQY:
+- Musashi Samurai Legend
+https://www.youtube.com/watch?v=Jz2sxbuN3gM:
+- 'Moon: Remix RPG Adventure'
+https://www.youtube.com/watch?v=JzPKClyQ1rQ:
+- Persona 3 Portable
+- Persona III Portable
+https://www.youtube.com/watch?v=K2fx7bngK80:
+- Thumper
+https://www.youtube.com/watch?v=K5AOu1d79WA:
+- 'Ecco the Dolphin: Defender of the Future'
+https://www.youtube.com/watch?v=KAHuWEfue8U:
+- Wild Arms 3
+- Wild Arms III
+https://www.youtube.com/watch?v=KB0Yxdtig90:
+- 'Hitman 2: Silent Assassin'
+- 'Hitman II: Silent Assassin'
+https://www.youtube.com/watch?v=KDVUlqp8aFM:
+- Earthworm Jim
+https://www.youtube.com/watch?v=KI6ZwWinXNM:
+- 'Digimon Story: Cyber Sleuth'
+https://www.youtube.com/watch?v=KTHBvQKkibA:
+- The 7th Saga
+https://www.youtube.com/watch?v=KULCV3TgyQk:
+- Breath of Fire
+https://www.youtube.com/watch?v=KWH19AGkFT0:
+- Dark Cloud
+https://www.youtube.com/watch?v=KWIbZ_4k3lE:
+- Final Fantasy III
+- Final Fantasy 3
+https://www.youtube.com/watch?v=KWRoyFQ1Sj4:
+- Persona 5
+- Persona V
+https://www.youtube.com/watch?v=KX57tzysYQc:
+- Metal Gear 2
+- Metal Gear II
+https://www.youtube.com/watch?v=KYfK61zxads:
+- Angry Video Game Nerd Adventures
+https://www.youtube.com/watch?v=KZA1PegcwIg:
+- Goldeneye
+https://www.youtube.com/watch?v=KZyPC4VPWCY:
+- Final Fantasy VIII
+- Final Fantasy 8
+https://www.youtube.com/watch?v=K_jigRSuN-g:
+- MediEvil
+https://www.youtube.com/watch?v=Kc7UynA9WVk:
+- Final Fantasy VIII
+- Final Fantasy 8
+https://www.youtube.com/watch?v=KgCLAXQow3w:
+- Ghouls 'n' Ghosts
+https://www.youtube.com/watch?v=KiGfjOLF_j0:
+- Earthbound
+https://www.youtube.com/watch?v=Kk0QDbYvtAQ:
+- Arcana
+https://www.youtube.com/watch?v=Km-cCxquP-s:
+- Yoshi's Island
+https://www.youtube.com/watch?v=KnTyM5OmRAM:
+- 'Mario & Luigi: Partners in Time'
+- 'mario and luigi: partners in time'
+https://www.youtube.com/watch?v=KnoUxId8yUQ:
+- Jak & Daxter
+- jak and daxter
+https://www.youtube.com/watch?v=KoPF_wOrQ6A:
+- 'Tales from Space: Mutant Blobs Attack'
+https://www.youtube.com/watch?v=Kr5mloai1B0:
+- 'Shadow Hearts II: Covenant'
+- 'Shadow Hearts 2: Covenant'
+https://www.youtube.com/watch?v=KrvdivSD98k:
+- Sonic the Hedgehog 3
+- Sonic the Hedgehog III
+https://www.youtube.com/watch?v=Ks9ZCaUNKx4:
+- Quake II
+- Quake 2
+https://www.youtube.com/watch?v=L5t48bbzRDs:
+- Xenosaga II
+- Xenosaga 2
+https://www.youtube.com/watch?v=L8TEsGhBOfI:
+- The Binding of Isaac
+https://www.youtube.com/watch?v=L9Uft-9CV4g:
+- Final Fantasy IX
+- Final Fantasy 9
+https://www.youtube.com/watch?v=L9e6Pye7p5A:
+- Mystical Ninja Starring Goemon
+https://www.youtube.com/watch?v=LAHKscXvt3Q:
+- Space Harrier
+https://www.youtube.com/watch?v=LD4OAYQx1-I:
+- Metal Gear Solid 4
+- Metal Gear Solid IV
+https://www.youtube.com/watch?v=LDvKwSVuUGA:
+- Donkey Kong Country
+https://www.youtube.com/watch?v=LGLW3qgiiB8:
+- "We \xE2\u2122\xA5 Katamari"
+https://www.youtube.com/watch?v=LPO5yrMSMEw:
+- Ridge Racers
+https://www.youtube.com/watch?v=LQ0uDk5i_s0:
+- Xenoblade Chronicles
+https://www.youtube.com/watch?v=LQxlUTTrKWE:
+- 'Assassin''s Creed III: The Tyranny of King Washington'
+- 'Assassin''s Creed 3: The Tyranny of King Washington'
+https://www.youtube.com/watch?v=LSFho-sCOp0:
+- Grandia
+https://www.youtube.com/watch?v=LScvuN6-ZWo:
+- Battletoads & Double Dragon
+- battletoads
+- double dragon
+https://www.youtube.com/watch?v=LSfbb3WHClE:
+- No More Heroes
+https://www.youtube.com/watch?v=LTWbJDROe7A:
+- Xenoblade Chronicles X
+- Xenoblade Chronicles 10
+https://www.youtube.com/watch?v=LUjxPj3al5U:
+- Blue Dragon
+https://www.youtube.com/watch?v=LXuXWMV2hW4:
+- Metroid AM2R
+https://www.youtube.com/watch?v=LYiwMd5y78E:
+- 'Shadow Hearts II: Covenant'
+- 'Shadow Hearts 2: Covenant'
+https://www.youtube.com/watch?v=LcFX7lFjfqA:
+- Shin Megami Tensei IV
+- Shin Megami Tensei 4
+https://www.youtube.com/watch?v=LdIlCX2iOa0:
+- Antichamber
+https://www.youtube.com/watch?v=Lj8ouSLvqzU:
+- Megalomachia 2
+- Megalomachia II
+https://www.youtube.com/watch?v=LkRfePyfoj4:
+- Senko no Ronde (Wartech)
+- wartech
+- senko no ronde
+https://www.youtube.com/watch?v=LlokRNcURKM:
+- The Smurfs' Nightmare
+https://www.youtube.com/watch?v=LpO2ar64UGE:
+- Mega Man 9
+- Mega Man IX
+https://www.youtube.com/watch?v=LpxUHj-a_UI:
+- Michael Jackson's Moonwalker
+https://www.youtube.com/watch?v=Luko2A5gNpk:
+- Metroid Prime
+https://www.youtube.com/watch?v=Lx906iVIZSE:
+- 'Diablo III: Reaper of Souls'
+- 'Diablo 3: Reaper of Souls'
+https://www.youtube.com/watch?v=M16kCIMiNyc:
+- 'Lisa: The Painful RPG'
+https://www.youtube.com/watch?v=M3FytW43iOI:
+- Fez
+https://www.youtube.com/watch?v=M3Wux3163kI:
+- 'Castlevania: Dracula X' 
+https://www.youtube.com/watch?v=M4FN0sBxFoE:
+- Arc the Lad
+https://www.youtube.com/watch?v=M4XYQ8YfVdo:
+- Rollercoaster Tycoon 3
+- Rollercoaster Tycoon III
+https://www.youtube.com/watch?v=MCITsL-vfW8:
+- Miitopia
+https://www.youtube.com/watch?v=MH00uDOwD28:
+- Portal 2
+- Portal II
+https://www.youtube.com/watch?v=MK41-UzpQLk:
+- Star Fox 64
+https://www.youtube.com/watch?v=ML-kTPHnwKI:
+- Metroid
+https://www.youtube.com/watch?v=MLFX_CIsvS8:
+- Final Fantasy Adventure
+https://www.youtube.com/watch?v=MPvQoxXUQok:
+- Final Fantasy Tactics
+https://www.youtube.com/watch?v=MTThoxoAVoI:
+- NieR
+https://www.youtube.com/watch?v=MYNeu0cZ3NE:
+- Silent Hill
+https://www.youtube.com/watch?v=M_B1DJu8FlQ:
+- Super Mario Odyssey
+https://www.youtube.com/watch?v=MaiHaXRYtNQ:
+- Tales of Vesperia
+https://www.youtube.com/watch?v=MbkMki62A4o:
+- Gran Turismo 5
+- Gran Turismo V
+https://www.youtube.com/watch?v=Mea-D-VFzck:
+- 'Castlevania: Dawn of Sorrow'
+https://www.youtube.com/watch?v=MffE4TpsHto:
+- Assassin's Creed II
+- Assassin's Creed 2
+https://www.youtube.com/watch?v=MfsFZsPiw3M:
+- Grandia
+https://www.youtube.com/watch?v=Mg236zrHA40:
+- Dragon Quest VIII
+- Dragon Quest 8
+https://www.youtube.com/watch?v=MhjEEbyuJME:
+- Xenogears
+https://www.youtube.com/watch?v=MjeghICMVDY:
+- Ape Escape 3
+- Ape Escape III
+https://www.youtube.com/watch?v=MkKh-oP7DBQ:
+- Waterworld
+https://www.youtube.com/watch?v=MlRGotA3Yzs:
+- Mega Man 4
+- Mega Man IV
+https://www.youtube.com/watch?v=MlhPnFjCfwc:
+- Blue Stinger
+https://www.youtube.com/watch?v=Mn3HPClpZ6Q:
+- 'Vampire The Masquerade: Bloodlines'
+https://www.youtube.com/watch?v=Mobwl45u2J8:
+- Emil Chronicle Online
+https://www.youtube.com/watch?v=MowlJduEbgY:
+- Ori and the Blind Forest
+https://www.youtube.com/watch?v=MqK5MvPwPsE:
+- Hotline Miami
+https://www.youtube.com/watch?v=MthR2dXqWHI:
+- Super Mario RPG
+https://www.youtube.com/watch?v=MvJUxw8rbPA:
+- 'The Elder Scrolls III: Morrowind'
+- 'The Elder Scrolls 3: Morrowind'
+- Morrowind
+https://www.youtube.com/watch?v=MxShFnOgCnk:
+- Soma Bringer
+https://www.youtube.com/watch?v=MxyCk1mToY4:
+- Koudelka
+https://www.youtube.com/watch?v=N-BiX7QXE8k:
+- Shin  Megami Tensei Nocturne
+https://www.youtube.com/watch?v=N-T8KwCCNh8:
+- Advance Wars DS
+https://www.youtube.com/watch?v=N1EyCv65yOI:
+- 'Qbeh-1: The Atlas Cube'
+- 'Qbeh-I: The Atlas Cube'
+https://www.youtube.com/watch?v=N1lp6YLpT_o:
+- Tribes 2
+- Tribes II
+https://www.youtube.com/watch?v=N2_yNExicyI:
+- 'Castlevania: Curse of Darkness'
+https://www.youtube.com/watch?v=N46rEikk4bw:
+- Ecco the Dolphin (Sega CD)
+- Ecco the Dolphin
+https://www.youtube.com/watch?v=N4V4OxH1d9Q:
+- Final Fantasy IX
+- Final Fantasy 9
+https://www.youtube.com/watch?v=N6hzEQyU6QM:
+- Grounseed
+https://www.youtube.com/watch?v=N74vegXRMNk:
+- Bayonetta
+https://www.youtube.com/watch?v=NAyXKITCss8:
+- Forza Motorsport 4
+- Forza Motorsport IV
+https://www.youtube.com/watch?v=NFsvEFkZHoE:
+- Kingdom Hearts
+https://www.youtube.com/watch?v=NGJp1-tPT54:
+- OutRun2
+https://www.youtube.com/watch?v=NL0AZ-oAraw:
+- Terranigma
+https://www.youtube.com/watch?v=NOomtJrX_MA:
+- Western Lords
+https://www.youtube.com/watch?v=NP3EK1Kr1sQ:
+- Dr. Mario
+https://www.youtube.com/watch?v=NRNHbaF_bvY:
+- Kingdom Hearts
+https://www.youtube.com/watch?v=NT-c2ZeOpsg:
+- Sonic Unleashed
+https://www.youtube.com/watch?v=NTfVsOnX0lY:
+- Rayman
+https://www.youtube.com/watch?v=NUloEiKpAZU:
+- Goldeneye
+https://www.youtube.com/watch?v=NVRgpAmkmPg:
+- Resident Evil 4
+- Resident Evil IV
+https://www.youtube.com/watch?v=NXr5V6umW6U:
+- Opoona
+https://www.youtube.com/watch?v=NZVZC4x9AzA:
+- Final Fantasy IV
+- Final Fantasy 4
+https://www.youtube.com/watch?v=NcjcKZnJqAA:
+- 'The Legend of Zelda: Minish Cap'
+- minish cap
+https://www.youtube.com/watch?v=Nd2O6mbhCLU:
+- Mega Man 5
+- Mega Man V
+https://www.youtube.com/watch?v=NgKT8GTKhYU:
+- 'Final Fantasy XI: Wings of the Goddess'
+- 'Final Fantasy 11: Wings of the Goddess'
+https://www.youtube.com/watch?v=Nhj0Rct8v48:
+- The Wonderful 101
+- The Wonderful CI
+https://www.youtube.com/watch?v=NjG2ZjPqzzE:
+- Journey to Silius
+https://www.youtube.com/watch?v=NjmUCbNk65o:
+- Donkey Kong Country 3
+- Donkey Kong Country III
+https://www.youtube.com/watch?v=NkonFpRLGTU:
+- Transistor
+https://www.youtube.com/watch?v=NlsRts7Sims:
+- 'Shadow Hearts II: Covenant'
+- 'Shadow Hearts 2: Covenant'
+https://www.youtube.com/watch?v=Nn5K-NNmgTM:
+- Chrono Trigger
+https://www.youtube.com/watch?v=NnZlRu28fcU:
+- Etrian Odyssey
+https://www.youtube.com/watch?v=NnvD6RDF-SI:
+- Chibi-Robo
+https://www.youtube.com/watch?v=NnvZ6Dqv7Ws:
+- Final Fantasy VI
+- Final Fantasy 6
+https://www.youtube.com/watch?v=Nr2McZBfSmc:
+- Uninvited
+https://www.youtube.com/watch?v=NtRlpjt5ItA:
+- Lone Survivor
+https://www.youtube.com/watch?v=NtXv9yFZI_Y:
+- Earthbound
+https://www.youtube.com/watch?v=Nu91ToSI4MU:
+- Breath of Death VII
+- Breath of Death 7
+https://www.youtube.com/watch?v=NuSPcCqiCZo:
+- Pilotwings 64
+https://www.youtube.com/watch?v=Nw5cfSRvFSA:
+- Super Meat Boy
+https://www.youtube.com/watch?v=Nw7bbb1mNHo:
+- NeoTokyo
+https://www.youtube.com/watch?v=NxWGa33zC8w:
+- Alien Breed
+https://www.youtube.com/watch?v=O-v3Df_q5QQ:
+- Star Fox Adventures
+https://www.youtube.com/watch?v=O0fQlDmSSvY:
+- Opoona
+https://www.youtube.com/watch?v=O0kjybFXyxM:
+- Final Fantasy X-2
+- Final Fantasy 10-2
+- Final Fantasy X-II
+https://www.youtube.com/watch?v=O0rVK4H0-Eo:
+- Legaia 2
+- Legaia II
+https://www.youtube.com/watch?v=O1Ysg-0v7aQ:
+- Tekken 2
+- Tekken II
+https://www.youtube.com/watch?v=O5a4jwv-jPo:
+- Teenage Mutant Ninja Turtles
+https://www.youtube.com/watch?v=O8jJJXgNLo4:
+- Diablo I & II
+- Diablo 1 & 2
+- diablo 1
+- diablo 2
+- diablo I
+- diablo II
+https://www.youtube.com/watch?v=OB9t0q4kkEE:
+- Katamari Damacy
+https://www.youtube.com/watch?v=OCFWEWW9tAo:
+- SimCity
+https://www.youtube.com/watch?v=OD49e9J3qbw:
+- 'Resident Evil: Revelations'
+https://www.youtube.com/watch?v=ODjYdlmwf1E:
+- 'The Binding of Isaac: Rebirth'
+https://www.youtube.com/watch?v=OIsI5kUyLcI:
+- Super Mario Maker
+https://www.youtube.com/watch?v=OJjsUitjhmU:
+- 'Chuck Rock II: Son of Chuck'
+- 'Chuck Rock 2: Son of Chuck'
+https://www.youtube.com/watch?v=OMsJdryIOQU:
+- Xenoblade Chronicles
+https://www.youtube.com/watch?v=OUmeK282f-E:
+- 'Silent Hill 4: The Room'
+- 'Silent Hill IV: The Room'
+https://www.youtube.com/watch?v=OViAthHme2o:
+- The Binding of Isaac
+https://www.youtube.com/watch?v=OWQ4bzYMbNQ:
+- Devil May Cry 3
+- Devil May Cry III
+https://www.youtube.com/watch?v=OXHIuTm-w2o:
+- Super Mario RPG
+https://www.youtube.com/watch?v=OXWqqshHuYs:
+- La-Mulana
+https://www.youtube.com/watch?v=OXqxg3FpuDA:
+- Ollie King
+https://www.youtube.com/watch?v=OYr-B_KWM50:
+- Mega Man 3
+- Mega Man III
+https://www.youtube.com/watch?v=OZLXcCe7GgA:
+- Ninja Gaiden
+https://www.youtube.com/watch?v=Oam7ttk5RzA:
+- Final Fantasy IX
+- Final Fantasy 9
+https://www.youtube.com/watch?v=OegoI_0vduQ:
+- Mystical Ninja Starring Goemon
+https://www.youtube.com/watch?v=OjRNSYsddz0:
+- Yo-Kai Watch
+https://www.youtube.com/watch?v=Ol9Ine1TkEk:
+- Dark Souls
+https://www.youtube.com/watch?v=OmMWlRu6pbM:
+- 'Call of Duty: Black Ops II'
+- 'Call of Duty: Black Ops 2'
+- black ops 2
+https://www.youtube.com/watch?v=On1N8hL95Xw:
+- Final Fantasy VI
+- Final Fantasy 6
+https://www.youtube.com/watch?v=Op2h7kmJw10:
+- 'Castlevania: Dracula X' 
+https://www.youtube.com/watch?v=OpvLr9vyOhQ:
+- Undertale
+https://www.youtube.com/watch?v=OqXhJ_eZaPI:
+- Breath of Fire III
+- Breath of Fire 3
+https://www.youtube.com/watch?v=Os2q1_PkgzY:
+- Super Adventure Island
+https://www.youtube.com/watch?v=Ou0WU5p5XkI:
+- 'Atelier Iris 3: Grand Phantasm'
+- 'Atelier Iris III: Grand Phantasm'
+https://www.youtube.com/watch?v=Ovn18xiJIKY:
+- Dragon Quest VI
+- Dragon Quest 6
+https://www.youtube.com/watch?v=OzbSP7ycMPM:
+- Yoshi's Island
+https://www.youtube.com/watch?v=P01-ckCZtCo:
+- Wild Arms 5
+- Wild Arms V
+https://www.youtube.com/watch?v=P1IBUrLte2w:
+- Earthbound 64
+https://www.youtube.com/watch?v=P2smOsHacjk:
+- The Magical Land of Wozz
+https://www.youtube.com/watch?v=P3FU2NOzUEU:
+- Paladin's Quest
+https://www.youtube.com/watch?v=P3oYGDwIKbc:
+- The Binding of Isaac
+https://www.youtube.com/watch?v=P3vzN5sizXk:
+- Seiken Densetsu 3
+- Seiken Densetsu III
+https://www.youtube.com/watch?v=P7K7jzxf6iw:
+- Legend of Legaia
+https://www.youtube.com/watch?v=P8oefrmJrWk:
+- Metroid Prime
+https://www.youtube.com/watch?v=P9OdKnQQchQ:
+- 'The Elder Scrolls IV: Oblivion'
+- 'The Elder Scrolls 4: Oblivion'
+- Oblivion
+https://www.youtube.com/watch?v=PAU7aZ_Pz4c:
+- Heimdall 2
+- Heimdall II
+https://www.youtube.com/watch?v=PAuFr7PZtGg:
+- Tales of Legendia
+https://www.youtube.com/watch?v=PFQCO_q6kW8:
+- Donkey Kong 64
+https://www.youtube.com/watch?v=PGowEQXyi3Y:
+- Donkey Kong Country 2
+- Donkey Kong Country II
+https://www.youtube.com/watch?v=PKno6qPQEJg:
+- Blaster Master
+https://www.youtube.com/watch?v=PMKc5Ffynzw:
+- 'Kid Icarus: Uprising'
+https://www.youtube.com/watch?v=POAGsegLMnA:
+- Super Mario Land
+https://www.youtube.com/watch?v=PQjOIZTv8I4:
+- Super Street Fighter II Turbo
+- Super Street Fighter 2 Turbo
+https://www.youtube.com/watch?v=PRCBxcvNApQ:
+- Glover
+https://www.youtube.com/watch?v=PRLWoJBwJFY:
+- World of Warcraft
+https://www.youtube.com/watch?v=PUZ8r9MJczQ:
+- 'Castlevania: Portrait of Ruin'
+https://www.youtube.com/watch?v=PXqJEm-vm-w:
+- Tales of Vesperia
+https://www.youtube.com/watch?v=PZBltehhkog:
+- 'MediEvil: Resurrection'
+https://www.youtube.com/watch?v=PZnF6rVTgQE:
+- Dragon Quest VII
+- Dragon Quest 7
+https://www.youtube.com/watch?v=PZwTdBbDmB8:
+- Mother
+https://www.youtube.com/watch?v=Pc3GfVHluvE:
+- Baten Kaitos
+https://www.youtube.com/watch?v=PfY_O8NPhkg:
+- 'Bravely Default: Flying Fairy'
+https://www.youtube.com/watch?v=PhW7tlUisEU:
+- Grandia II
+- Grandia 2
+https://www.youtube.com/watch?v=Pjdvqy1UGlI:
+- Final Fantasy VIII
+- Final Fantasy 8
+https://www.youtube.com/watch?v=PjlkqeMdZzU:
+- Paladin's Quest II
+- Paladin's Quest 2
+https://www.youtube.com/watch?v=PkKXW2-3wvg:
+- Final Fantasy VI
+- Final Fantasy 6
+https://www.youtube.com/watch?v=Pmn-r3zx-E0:
+- Katamari Damacy
+https://www.youtube.com/watch?v=Poh9VDGhLNA:
+- Final Fantasy VII
+- Final Fantasy 7
+https://www.youtube.com/watch?v=PqvQvt3ePyg:
+- Live a Live
+https://www.youtube.com/watch?v=PwEzeoxbHMQ:
+- Donkey Kong Country 3
+- Donkey Kong Country III
+https://www.youtube.com/watch?v=PwlvY_SeUQU:
+- Starcraft
+https://www.youtube.com/watch?v=PyubBPi9Oi0:
+- Pokemon
+https://www.youtube.com/watch?v=PzkbuitZEjE:
+- Ragnarok Online
+https://www.youtube.com/watch?v=Q1TnrjE909c:
+- 'Lunar: Dragon Song'
+https://www.youtube.com/watch?v=Q27un903ps0:
+- F-Zero GX
+https://www.youtube.com/watch?v=Q3Vci9ri4yM:
+- Cyborg 009
+https://www.youtube.com/watch?v=Q7a0piUG3jM:
+- Dragon Ball Z Butouden 2
+- Dragon Ball Z Butouden II
+https://www.youtube.com/watch?v=QD30b0MwpQw:
+- Shatter
+https://www.youtube.com/watch?v=QGgK5kQkLUE:
+- Kingdom Hearts
+https://www.youtube.com/watch?v=QHStTXLP7II:
+- Breath of Fire IV
+- Breath of Fire 4
+https://www.youtube.com/watch?v=QLsVsiWgTMo:
+- 'Mario Kart: Double Dash!!'
+https://www.youtube.com/watch?v=QN1wbetaaTk:
+- Kirby & The Rainbow Curse
+- kirby and the rainbow curse
+https://www.youtube.com/watch?v=QNd4WYmj9WI:
+- 'World of Warcraft: Wrath of the Lich King'
+https://www.youtube.com/watch?v=QOKl7-it2HY:
+- Silent Hill
+https://www.youtube.com/watch?v=QR5xn8fA76Y:
+- Terranigma
+https://www.youtube.com/watch?v=QTwpZhWtQus:
+- 'The Elder Scrolls IV: Oblivion'
+- 'The Elder Scrolls 4: Oblivion'
+- Oblivion
+https://www.youtube.com/watch?v=QXd1P54rIzQ:
+- Secret of Evermore
+https://www.youtube.com/watch?v=QYnrEDKTB-k:
+- The Guardian Legend
+https://www.youtube.com/watch?v=QZiTBVot5xE:
+- Legaia 2
+- Legaia II
+https://www.youtube.com/watch?v=QaE0HHN4c30:
+- Halo
+https://www.youtube.com/watch?v=QdLD2Wop_3k:
+- Super Paper Mario
+https://www.youtube.com/watch?v=QiX-xWrkNZs:
+- Machinarium
+https://www.youtube.com/watch?v=QkgA1qgTsdQ:
+- Contact
+https://www.youtube.com/watch?v=Ql-Ud6w54wc:
+- Final Fantasy VIII
+- Final Fantasy 8
+https://www.youtube.com/watch?v=Qnz_S0QgaLA:
+- Deus Ex
+https://www.youtube.com/watch?v=QqN7bKgYWI0:
+- Suikoden
+https://www.youtube.com/watch?v=QtW1BBAufvM:
+- Super Mario Galaxy 2
+- Super Mario Galaxy II
+https://www.youtube.com/watch?v=QuSSx8dmAXQ:
+- Gran Turismo 4
+- Gran Turismo IV
+https://www.youtube.com/watch?v=Qv_8KiUsRTE:
+- Golden Sun
+https://www.youtube.com/watch?v=R1DRTdnR0qU:
+- Chrono Trigger
+https://www.youtube.com/watch?v=R2yEBE2ueuQ:
+- Breath of Fire
+https://www.youtube.com/watch?v=R3gmQcMK_zg:
+- Ragnarok Online
+https://www.youtube.com/watch?v=R5BZKMlqbPI:
+- Castlevania Curse of Darkness
+https://www.youtube.com/watch?v=R6BoWeWh2Fg:
+- 'Cladun: This is an RPG'
+https://www.youtube.com/watch?v=R6tANRv2YxA:
+- FantaVision (North America)
+- FantaVision
+https://www.youtube.com/watch?v=R6us0FiZoTU:
+- Final Fantasy Mystic Quest
+https://www.youtube.com/watch?v=R9rnsbf914c:
+- Lethal League
+https://www.youtube.com/watch?v=RAevlv9Y1ao:
+- Tales of Symphonia
+https://www.youtube.com/watch?v=RBKbYPqJNOw:
+- Wii Shop Channel
+https://www.youtube.com/watch?v=RBslMKpPu1M:
+- 'Donkey Kong Country: Tropical Freeze'
+https://www.youtube.com/watch?v=RBxWlVGd9zE:
+- Wild Arms 2
+- Wild Arms II
+https://www.youtube.com/watch?v=RHiQZ7tXSlw:
+- Radiant Silvergun
+https://www.youtube.com/watch?v=RKm11Z6Btbg:
+- Daytona USA
+https://www.youtube.com/watch?v=RNkUpb36KhQ:
+- Titan Souls
+https://www.youtube.com/watch?v=ROKcr2OTgws:
+- Chrono Cross
+https://www.youtube.com/watch?v=RO_FVqiEtDY:
+- Super Paper Mario
+https://www.youtube.com/watch?v=RP5DzEkA0l8:
+- Machinarium
+https://www.youtube.com/watch?v=RSlUnXWm9hM:
+- NeoTokyo
+https://www.youtube.com/watch?v=RSm22cu707w:
+- Donkey Kong Country 2
+- Donkey Kong Country II
+https://www.youtube.com/watch?v=RVBoUZgRG68:
+- Super Paper Mario
+https://www.youtube.com/watch?v=RXZ2gTXDwEc:
+- Donkey Kong Country 3
+- Donkey Kong Country III
+https://www.youtube.com/watch?v=Rj9bp-bp-TA:
+- Grow Home
+https://www.youtube.com/watch?v=RkDusZ10M4c:
+- Mother 3
+- Mother III
+https://www.youtube.com/watch?v=Roj5F9QZEpU:
+- 'Momodora: Reverie Under the Moonlight'
+https://www.youtube.com/watch?v=RpQlfTGfEsw:
+- Sonic CD
+- Sonic 400
+https://www.youtube.com/watch?v=RqqbUR7YxUw:
+- Pushmo
+https://www.youtube.com/watch?v=Rs2y4Nqku2o:
+- Chrono Cross
+https://www.youtube.com/watch?v=Ru7_ew8X6i4:
+- 'Paper Mario: The Thousand Year Door'
+https://www.youtube.com/watch?v=Rv7-G28CPFI:
+- Castlevania Curse of Darkness
+https://www.youtube.com/watch?v=RxcQY1OUzzY:
+- Xenoblade Chronicles
+https://www.youtube.com/watch?v=RyQAZcBim88:
+- Ape Escape 3
+- Ape Escape III
+https://www.youtube.com/watch?v=RypdLW4G1Ng:
+- Hot Rod
+https://www.youtube.com/watch?v=S-vNB8mR1B4:
+- Sword of Mana
+https://www.youtube.com/watch?v=S0TmwLeUuBw:
+- God Hand
+https://www.youtube.com/watch?v=S3k1zdbBhRQ:
+- Donkey Kong Land
+https://www.youtube.com/watch?v=S87W-Rnag1E:
+- 'The Legend of Zelda: Twilight Princess'
+- twilight princess
+https://www.youtube.com/watch?v=SA7NfjCWbZU:
+- Treasure Hunter G
+https://www.youtube.com/watch?v=SAWxsyvWcqs:
+- Super Mario Galaxy 2
+- Super Mario Galaxy II
+https://www.youtube.com/watch?v=SCdUSkq_imI:
+- Super Mario 64
+https://www.youtube.com/watch?v=SDUUpUB1eu8:
+- Super Princess Peach
+https://www.youtube.com/watch?v=SE4FuK4MHJs:
+- Final Fantasy VIII
+- Final Fantasy 8
+https://www.youtube.com/watch?v=SFCn8IpgiLY:
+- Solstice
+https://www.youtube.com/watch?v=SKtO8AZLp2I:
+- Wild Arms 5
+- Wild Arms V
+https://www.youtube.com/watch?v=SNYFdankntY:
+- Mario Kart 64
+https://www.youtube.com/watch?v=SOAsm2UqIIM:
+- Cuphead
+https://www.youtube.com/watch?v=SPBIT_SSzmI:
+- Mario Party
+https://www.youtube.com/watch?v=SXQsmY_Px8Q:
+- Guardian of Paradise
+https://www.youtube.com/watch?v=SYp2ic7v4FU:
+- Rise of the Triad (2013)
+- Rise of the Triad
+https://www.youtube.com/watch?v=SawlCRnYYC8:
+- Eek! The Cat
+https://www.youtube.com/watch?v=Se-9zpPonwM:
+- Shatter
+https://www.youtube.com/watch?v=SeYZ8Bjo7tw:
+- Final Fantasy VIII
+- Final Fantasy 8
+https://www.youtube.com/watch?v=Sht8cKbdf_g:
+- Donkey Kong Country
+https://www.youtube.com/watch?v=Sime7JZrTl0:
+- Castlevania
+https://www.youtube.com/watch?v=SjEwSzmSNVo:
+- Shenmue II
+- Shenmue 2
+https://www.youtube.com/watch?v=Sp7xqhunH88:
+- Waterworld
+https://www.youtube.com/watch?v=SqWu2wRA-Rk:
+- Battle Squadron
+https://www.youtube.com/watch?v=SrINCHeDeGI:
+- Luigi's Mansion
+https://www.youtube.com/watch?v=SsFYXts6EeE:
+- Ar Tonelico
+https://www.youtube.com/watch?v=Su5Z-NHGXLc:
+- 'Lunar: Eternal Blue'
+https://www.youtube.com/watch?v=SuI_RSHfLIk:
+- Guardian's Crusade
+https://www.youtube.com/watch?v=SvCIrLZ8hkI:
+- The Walking Dead
+https://www.youtube.com/watch?v=Sw9BfnRv8Ik:
+- 'Dreamfall: The Longest Journey'
+https://www.youtube.com/watch?v=SwVfsXvFbno:
+- 'The Legend of Zelda: Ocarina of Time'
+- ocarina of time
+https://www.youtube.com/watch?v=SzksdwLmxmY:
+- Bomberman Quest
+https://www.youtube.com/watch?v=T18nAaO_rGs:
+- Dragon Quest Monsters
+https://www.youtube.com/watch?v=T1edn6OPNRo:
+- 'Ys: The Oath in Felghana'
+https://www.youtube.com/watch?v=T24J3gTL4vY:
+- Polymer
+https://www.youtube.com/watch?v=T586T6QFjqE:
+- 'Castlevania: Dawn of Sorrow'
+https://www.youtube.com/watch?v=T9kK9McaCoE:
+- Mushihimesama Futari
+https://www.youtube.com/watch?v=TBx-8jqiGfA:
+- Super Mario Bros
+https://www.youtube.com/watch?v=TEPaoDnS6AM:
+- Street Fighter III 3rd Strike
+- Street Fighter 3 3rd Strike
+https://www.youtube.com/watch?v=TFxtovEXNmc:
+- Bahamut Lagoon
+https://www.youtube.com/watch?v=TIzYqi_QFY8:
+- Legend of Dragoon
+https://www.youtube.com/watch?v=TJH9E2x87EY:
+- Super Castlevania IV
+- Super Castlevania 4
+https://www.youtube.com/watch?v=TM3BIOvEJSw:
+- Eternal Sonata
+https://www.youtube.com/watch?v=TMhh7ApHESo:
+- Super Win the Game
+https://www.youtube.com/watch?v=TO1kcFmNtTc:
+- Lost Odyssey
+https://www.youtube.com/watch?v=TPW9GRiGTek:
+- Yoshi's Woolly World
+https://www.youtube.com/watch?v=TRdrbKasYz8:
+- Xenosaga
+https://www.youtube.com/watch?v=TS8q1pjWviA:
+- Star Fox
+https://www.youtube.com/watch?v=TSlDUPl7DoA:
+- 'Star Ocean 3: Till the End of Time'
+- 'Star Ocean III: Till the End of Time'
+https://www.youtube.com/watch?v=TTt_-gE9iPU:
+- Bravely Default
+https://www.youtube.com/watch?v=TUZU34Sss8o:
+- Pokemon
+https://www.youtube.com/watch?v=TVKAMsRwIUk:
+- Nintendo World Cup
+https://www.youtube.com/watch?v=TXEz-i-oORk:
+- Wild Arms 5
+- Wild Arms V
+https://www.youtube.com/watch?v=TXO9vzXnAeg:
+- Dragon Quest
+https://www.youtube.com/watch?v=TYjKjjgQPk8:
+- Donkey Kong Country
+https://www.youtube.com/watch?v=T_HfcZMUR4k:
+- Doom
+https://www.youtube.com/watch?v=TaRAKfltBfo:
+- Etrian Odyssey IV
+- Etrian Odyssey 4
+https://www.youtube.com/watch?v=Tc6G2CdSVfs:
+- 'Hitman: Blood Money'
+https://www.youtube.com/watch?v=TcKSIuOSs4U:
+- The Legendary Starfy
+https://www.youtube.com/watch?v=TdiRoUoSM-E:
+- Soma Bringer
+https://www.youtube.com/watch?v=TdxJKAvFEIU:
+- Lost Odyssey
+https://www.youtube.com/watch?v=TidW2D0Mnpo:
+- Blast Corps
+https://www.youtube.com/watch?v=TioQJoZ8Cco:
+- Xenosaga III
+- Xenosaga 3
+https://www.youtube.com/watch?v=Tj04oRO-0Ws:
+- Super Castlevania IV
+- Super Castlevania 4
+https://www.youtube.com/watch?v=TkEH0e07jg8:
+- Secret of Evermore
+https://www.youtube.com/watch?v=TlDaPnHXl_o:
+- 'The Seventh Seal: Dark Lord'
+https://www.youtube.com/watch?v=TlLIOD2rJMs:
+- Chrono Trigger
+https://www.youtube.com/watch?v=TmkijsJ8-Kg:
+- 'NieR: Automata'
+https://www.youtube.com/watch?v=Tms-MKKS714:
+- Dark Souls
+https://www.youtube.com/watch?v=Tq8TV1PqZvw:
+- Final Fantasy VI
+- Final Fantasy 6
+https://www.youtube.com/watch?v=TrO0wRbqPUo:
+- Donkey Kong Country
+https://www.youtube.com/watch?v=TssxHy4hbko:
+- Mother 3
+- Mother III
+https://www.youtube.com/watch?v=TtACPCoJ-4I:
+- Mega Man 9
+- Mega Man IX
+https://www.youtube.com/watch?v=Tug0cYK0XW0:
+- Shenmue
+https://www.youtube.com/watch?v=U2MqAWgqYJY:
+- Mystical Ninja Starring Goemon
+https://www.youtube.com/watch?v=U2XioVnZUlo:
+- Nintendo Land
+https://www.youtube.com/watch?v=U3FkappfRsQ:
+- Katamari Damacy
+https://www.youtube.com/watch?v=U4aEm6UufgY:
+- 'NyxQuest: Kindred Spirits'
+https://www.youtube.com/watch?v=U9z3oWS0Qo0:
+- 'Castlevania: Bloodlines'
+https://www.youtube.com/watch?v=UBCtM24yyYY:
+- Little Inferno
+https://www.youtube.com/watch?v=UC6_FirddSI:
+- 'The Legend of Zelda: Ocarina of Time'
+- ocarina of time
+https://www.youtube.com/watch?v=UHAEjRndMwg:
+- Machinarium
+https://www.youtube.com/watch?v=UOOmKmahDX4:
+- Super Mario Kart
+https://www.youtube.com/watch?v=UOdV3Ci46jY:
+- Run Saber
+https://www.youtube.com/watch?v=UPdZlmyedcI:
+- Castlevania 64
+https://www.youtube.com/watch?v=UQFiG9We23I:
+- Streets of Rage 2
+- Streets of Rage II
+https://www.youtube.com/watch?v=UWOTB6x_WAs:
+- Magical Tetris Challenge
+https://www.youtube.com/watch?v=UZ9Z0YwFkyk:
+- Donkey Kong Country
+https://www.youtube.com/watch?v=U_Ox-uIbalo:
+- Bionic Commando
+https://www.youtube.com/watch?v=U_l3eYfpUQ0:
+- 'Resident Evil: Revelations'
+https://www.youtube.com/watch?v=Ubu3U44i5Ic:
+- Super Mario 64
+https://www.youtube.com/watch?v=UdKzw6lwSuw:
+- Super Mario Galaxy
+https://www.youtube.com/watch?v=UmTX3cPnxXg:
+- Super Mario 3D World
+https://www.youtube.com/watch?v=UmgTFGAPkXc:
+- Secret of Mana
+https://www.youtube.com/watch?v=Un0n0m8b3uE:
+- 'Ys: The Oath in Felghana'
+https://www.youtube.com/watch?v=UnyOHbOV-h0:
+- Dragon Ball Z Butouden 2
+- Dragon Ball Z Butouden II
+https://www.youtube.com/watch?v=UoBLfXPlyPA:
+- Shatter
+https://www.youtube.com/watch?v=UoDDUr6poOs:
+- World of Warcraft
+https://www.youtube.com/watch?v=UoEyt7S10Mo:
+- Legend of Dragoon
+https://www.youtube.com/watch?v=UqQQ8LlMd3s:
+- Final Fantasy
+https://www.youtube.com/watch?v=Urqrn3sZbHQ:
+- Emil Chronicle Online
+https://www.youtube.com/watch?v=Uu4KCLd5kdg:
+- 'Diablo III: Reaper of Souls'
+- 'Diablo 3: Reaper of Souls'
+https://www.youtube.com/watch?v=UxiG3triMd8:
+- Hearthstone
+https://www.youtube.com/watch?v=V07qVpXUhc0:
+- Suikoden II
+- Suikoden 2
+https://www.youtube.com/watch?v=V1YsfDO8lgY:
+- Pokemon
+https://www.youtube.com/watch?v=V2UKwNO9flk:
+- 'Fire Emblem: Radiant Dawn'
+https://www.youtube.com/watch?v=V2kV7vfl1SE:
+- Super Mario Galaxy
+https://www.youtube.com/watch?v=V39OyFbkevY:
+- Etrian Odyssey IV
+- Etrian Odyssey 4
+https://www.youtube.com/watch?v=V4JjpIUYPg4:
+- Street Fighter IV
+- Street Fighter 4
+https://www.youtube.com/watch?v=V4tmMcpWm_I:
+- Super Street Fighter IV
+- Super Street Fighter 4
+https://www.youtube.com/watch?v=VClUpC8BwJU:
+- 'Silent Hill: Downpour'
+https://www.youtube.com/watch?v=VHCxLYOFHqU:
+- Chrono Trigger
+https://www.youtube.com/watch?v=VMMxNt_-s8E:
+- River City Ransom
+https://www.youtube.com/watch?v=VMt6f3DvTaU:
+- Mighty Switch Force
+https://www.youtube.com/watch?v=VVc6pY7njCA:
+- 'Kid Icarus: Uprising'
+https://www.youtube.com/watch?v=VVlFM_PDBmY:
+- Metal Gear Solid
+https://www.youtube.com/watch?v=VZIA6ZoLBEA:
+- Donkey Kong Country Returns
+https://www.youtube.com/watch?v=VdYkebbduH8:
+- Mario Kart 64
+https://www.youtube.com/watch?v=VfvadCcVXCo:
+- Crystal Beans from Dungeon Explorer
+https://www.youtube.com/watch?v=VgMHWxN2U_w:
+- Pokemon Trading Card Game
+https://www.youtube.com/watch?v=Vgxs785sqjw:
+- Persona 3 FES
+- Persona III FES
+https://www.youtube.com/watch?v=Vin5IrgdWnM:
+- Donkey Kong 64
+https://www.youtube.com/watch?v=VixvyNbhZ6E:
+- 'Lufia: The Legend Returns'
+https://www.youtube.com/watch?v=Vjf--bJDDGQ:
+- Super Mario 3D World
+https://www.youtube.com/watch?v=VktyN1crFLQ:
+- Devilish
+https://www.youtube.com/watch?v=Vl9Nz-X4M68:
+- Double Dragon Neon
+https://www.youtube.com/watch?v=VmOy8IvUcAE:
+- F-Zero GX
+https://www.youtube.com/watch?v=VmemS-mqlOQ:
+- Nostalgia
+https://www.youtube.com/watch?v=VpOYrLJKFUk:
+- The Walking Dead
+https://www.youtube.com/watch?v=VpyUtWCMrb4:
+- Castlevania III
+- Castlevania 3
+https://www.youtube.com/watch?v=VsvQy72iZZ8:
+- 'Kid Icarus: Uprising'
+https://www.youtube.com/watch?v=Vt2-826EsT8:
+- Cosmic Star Heroine
+https://www.youtube.com/watch?v=VuT5ukjMVFw:
+- Grandia III
+- Grandia 3
+https://www.youtube.com/watch?v=VvMkmsgHWMo:
+- Wild Arms 4
+- Wild Arms IV
+https://www.youtube.com/watch?v=VxJf8k4YzBY:
+- The Mummy Demastered
+https://www.youtube.com/watch?v=VxgLPrbSg-U:
+- Romancing Saga 3
+- Romancing Saga III
+https://www.youtube.com/watch?v=VzHPc-HJlfM:
+- Tales of Symphonia
+https://www.youtube.com/watch?v=VzJ2MLvIGmM:
+- 'E.V.O.: Search for Eden'
+- 'E.5.O.: Search for Eden'
+https://www.youtube.com/watch?v=W0fvt7_n9CU:
+- 'Castlevania: Lords of Shadow'
+https://www.youtube.com/watch?v=W4259ddJDtw:
+- 'The Legend of Zelda: Ocarina of Time'
+- ocarina of time
+https://www.youtube.com/watch?v=W6GNcYfHe1E:
+- Illusion of Gaia
+https://www.youtube.com/watch?v=W6O1WLDxRrY:
+- Krater
+https://www.youtube.com/watch?v=W7RPY-oiDAQ:
+- Final Fantasy VI
+- Final Fantasy 6
+https://www.youtube.com/watch?v=W8-GDfP2xNM:
+- Suikoden III
+- Suikoden 3
+https://www.youtube.com/watch?v=W8Y2EuSrz-k:
+- Sonic the Hedgehog 3
+- Sonic the Hedgehog III
+https://www.youtube.com/watch?v=WBawD9gcECk:
+- 'Castlevania: Portrait of Ruin'
+https://www.youtube.com/watch?v=WCGk_7V5IGk:
+- Super Street Fighter II
+- Super Street Fighter 2
+https://www.youtube.com/watch?v=WEoHCLNJPy0:
+- Radical Dreamers
+https://www.youtube.com/watch?v=WLorUNfzJy8:
+- Breath of Death VII
+- Breath of Death 7
+https://www.youtube.com/watch?v=WNORnKsigdQ:
+- Radiant Historia
+https://www.youtube.com/watch?v=WP9081WAmiY:
+- 'The Legend of Zelda: Wind Waker'
 - wind waker
-https://www.youtube.com/watch?v=nkPF5UiDi4g:
-- uncharted 2
-https://www.youtube.com/watch?v=CdYen5UII0s:
-- battlefield 1
-- battlefield one
-https://www.youtube.com/watch?v=8yj-25MOgOM:
-- star fox zero
-- starfox zero
-https://www.youtube.com/watch?v=Z9dNrmGD7mU:
-- dark souls iii
-- dark souls 3
-https://www.youtube.com/watch?v=Bio99hoZVYI:
-- fire emblem awakening
-https://www.youtube.com/watch?v=4EcgruWlXnQ:
-- monty on the run
-https://www.youtube.com/watch?v=oEf8gPFFZ58:
-- mega man 3
-- megaman 3
-https://www.youtube.com/watch?v=ifbr2NQ3Js0:
-- castlevania
-https://www.youtube.com/watch?v=W7rhEKTX-sE:
-- shovel knight
-https://www.youtube.com/watch?v=as_ct9tgkZA:
-- mega man 2
-- megaman 2
-https://www.youtube.com/watch?v=FB9Pym-sdbs:
-- actraiser
-https://www.youtube.com/watch?v=G3zhZHU6B2M:
-- ogre battle
-https://www.youtube.com/watch?v=hlrOAEr6dXc:
-- metroid zero mission
-- zero mission
-https://www.youtube.com/watch?v=jl6kjAkVw_s:
-- sonic 2
-https://www.youtube.com/watch?v=K8GRDNU50b8:
-- the legend of zelda ocarina of time
-- legend of zelda ocarina of time
+https://www.youtube.com/watch?v=WR_AncWskUk:
+- Metal Saga
+https://www.youtube.com/watch?v=WV56iJ9KFlw:
+- Mass Effect
+https://www.youtube.com/watch?v=WY2kHNPn-x8:
+- Tearaway
+https://www.youtube.com/watch?v=WYRFMUNIUVw:
+- Chrono Trigger
+https://www.youtube.com/watch?v=WZ1TQWlSOxo:
+- OutRun 2
+- OutRun II
+https://www.youtube.com/watch?v=W_t9udYAsBE:
+- Super Mario Bros 3
+- Super Mario Bros III
+https://www.youtube.com/watch?v=WaThErXvfD8:
+- Super Mario RPG
+https://www.youtube.com/watch?v=WcM38YKdk44:
+- Killer7
+https://www.youtube.com/watch?v=WdZPEL9zoMA:
+- Celeste
+https://www.youtube.com/watch?v=WeVAeMWeFNo:
+- 'Sakura Taisen: Atsuki Chishio Ni'
+https://www.youtube.com/watch?v=WgK4UTP0gfU:
+- Breath of Fire II
+- Breath of Fire 2
+https://www.youtube.com/watch?v=Wj17uoJLIV8:
+- Prince of Persia
+https://www.youtube.com/watch?v=Wqv5wxKDSIo:
+- Scott Pilgrim vs the World
+https://www.youtube.com/watch?v=WwXBfLnChSE:
+- Radiant Historia
+https://www.youtube.com/watch?v=WwuhhymZzgY:
+- The Last Story
+https://www.youtube.com/watch?v=X1-oxRS8-m4:
+- Skies of Arcadia
+https://www.youtube.com/watch?v=X3rxfNjBGqQ:
+- Earthbound
+https://www.youtube.com/watch?v=X68AlSKY0d8:
+- Shatter
+https://www.youtube.com/watch?v=X80YQj6UHG8:
+- Xenogears
+https://www.youtube.com/watch?v=X8CGqt3N4GA:
+- 'The Legend of Zelda: Majora''s Mask'
+- 'majora''s mask'
+https://www.youtube.com/watch?v=XCfYHd-9Szw:
+- Mass Effect
+https://www.youtube.com/watch?v=XG7HmRvDb5Y:
+- Yoshi's Woolly World
+https://www.youtube.com/watch?v=XH1J5XxZklI:
+- Snowboard Kids
+https://www.youtube.com/watch?v=XIzflqDtA1M:
+- Lone Survivor
+https://www.youtube.com/watch?v=XJllrwZzWwc:
+- Namco x Capcom
+https://www.youtube.com/watch?v=XKI0-dPmwSo:
+- Shining Force II
+- Shining Force 2
+https://www.youtube.com/watch?v=XKeXXWBYTkE:
+- Wild Arms 5
+- Wild Arms V
+https://www.youtube.com/watch?v=XLJxqz83ujw:
+- Glover
+https://www.youtube.com/watch?v=XMc9xjrnySg:
+- Golden Sun
+https://www.youtube.com/watch?v=XSSNGYomwAU:
+- Suikoden
+https://www.youtube.com/watch?v=XSkuBJx8q-Q:
+- Doki Doki Literature Club!
+https://www.youtube.com/watch?v=XW3Buw2tUgI:
+- Extreme-G
+https://www.youtube.com/watch?v=XWd4539-gdk:
+- Tales of Phantasia
+https://www.youtube.com/watch?v=XZEuJnSFz9U:
+- Bubble Bobble
+https://www.youtube.com/watch?v=X_PszodM17s:
+- ICO
+https://www.youtube.com/watch?v=Xa7uyLoh8t4:
+- Silent Hill 3
+- Silent Hill III
+https://www.youtube.com/watch?v=Xb8k4cp_mvQ:
+- Sonic the Hedgehog 2
+- Sonic the Hedgehog II
+https://www.youtube.com/watch?v=XelC_ns-vro:
+- Breath of Fire II
+- Breath of Fire 2
+https://www.youtube.com/watch?v=XhlM0eFM8F4:
+- Banjo-Tooie
+https://www.youtube.com/watch?v=Xkr40w4TfZQ:
+- 'The Legend of Zelda: Skyward Sword'
+- 'skyward sword'
+https://www.youtube.com/watch?v=Xm7lW0uvFpc:
+- DuckTales
+https://www.youtube.com/watch?v=XmAMeRNX_D4:
+- Ragnarok Online
+https://www.youtube.com/watch?v=XmmV5c2fS30:
+- Final Fantasy Mystic Quest
+https://www.youtube.com/watch?v=XnHysmcf31o:
+- Mother
+https://www.youtube.com/watch?v=Xnmuncx1F0Q:
+- Demon's Crest
+https://www.youtube.com/watch?v=Xo1gsf_pmzM:
+- Super Mario 3D World
+https://www.youtube.com/watch?v=Xpwy4RtRA1M:
+- The Witcher
+https://www.youtube.com/watch?v=XqPsT01sZVU:
+- Kingdom of Paradise
+https://www.youtube.com/watch?v=Xv_VYdKzO3A:
+- 'Tintin: Prisoners of the Sun'
+https://www.youtube.com/watch?v=Xw58jPitU-Q:
+- Ys Origin
+https://www.youtube.com/watch?v=XxMf4BdVq_g:
+- Deus Ex
+https://www.youtube.com/watch?v=Xy9eA5PJ9cU:
+- Pokemon
+https://www.youtube.com/watch?v=XztQyuJ4HoQ:
+- Legend of Legaia
+https://www.youtube.com/watch?v=Y0oO0bOyIAU:
+- Hotline Miami
+https://www.youtube.com/watch?v=Y1i3z56CiU4:
+- Pokemon X / Y
+- pokemon x
+- pokemon y
+https://www.youtube.com/watch?v=Y5HHYuQi7cQ:
+- Castlevania Curse of Darkness
+https://www.youtube.com/watch?v=Y5cXKVt3wOE:
+- Souten no Celenaria
+https://www.youtube.com/watch?v=Y7McPnKoP8g:
+- Illusion of Gaia
+https://www.youtube.com/watch?v=Y8Z8C0kziMw:
+- Sonic the Hedgehog
+https://www.youtube.com/watch?v=Y9a5VahqzOE:
+- Kirby's Dream Land
+https://www.youtube.com/watch?v=YA3VczBNCh8:
+- Lost Odyssey
+https://www.youtube.com/watch?v=YADDsshr-NM:
+- Super Castlevania IV
+- Super Castlevania 4
+https://www.youtube.com/watch?v=YCwOCGt97Y0:
+- Kaiser Knuckle
+https://www.youtube.com/watch?v=YD19UMTxu4I:
+- Time Trax
+https://www.youtube.com/watch?v=YEoAPCEZyA0:
+- Breath of Fire III
+- Breath of Fire 3
+https://www.youtube.com/watch?v=YFDcu-hy4ak:
+- Donkey Kong Country 3
+- Donkey Kong Country III
+https://www.youtube.com/watch?v=YFz1vqikCaE:
+- 'TMNT IV: Turtles in Time'
+- 'TMNT 4: Turtles in Time'
+https://www.youtube.com/watch?v=YJcuMHvodN4:
+- Super Bonk
+https://www.youtube.com/watch?v=YKe8k8P2FNw:
+- Baten Kaitos
+https://www.youtube.com/watch?v=YL5Q4GybKWc:
+- Balloon Fight
+https://www.youtube.com/watch?v=YQasQAYgbb4:
+- Terranigma
+https://www.youtube.com/watch?v=YYBmrB3bYo4:
+- Christmas NiGHTS
+https://www.youtube.com/watch?v=YYGKW8vyYXU:
+- Shatterhand
+https://www.youtube.com/watch?v=YYxvaixwybA:
+- Shatter
+https://www.youtube.com/watch?v=YZGrI4NI9Nw:
+- Guacamelee!
+https://www.youtube.com/watch?v=Y_GJywu5Wr0:
+- Final Fantasy Tactics A2
+https://www.youtube.com/watch?v=Y_RoEPwYLug:
+- Mega Man ZX
+https://www.youtube.com/watch?v=YdcgKnwaE-A:
+- Final Fantasy VII
+- Final Fantasy 7
+https://www.youtube.com/watch?v=YfFxcLGBCdI:
+- Final Fantasy IV
+- Final Fantasy 4
+https://www.youtube.com/watch?v=Yh0LHDiWJNk:
+- 'The Legend of Zelda: Ocarina of Time'
+- ocarina of time
+https://www.youtube.com/watch?v=Yh4e_rdWD-k:
+- Seiken Densetsu 3
+- Seiken Densetsu III
+https://www.youtube.com/watch?v=YhOUDccL1i8:
+- Rudra No Hihou
+https://www.youtube.com/watch?v=YlLX3U6QfyQ:
+- 'Albert Odyssey: Legend of Eldean'
+https://www.youtube.com/watch?v=YmF88zf5qhM:
+- Halo 4
+- Halo IV
+https://www.youtube.com/watch?v=YmaHBaNxWt0:
+- Tekken 7
+- Tekken VII
+https://www.youtube.com/watch?v=Yn9EmSHIaLw:
+- Stardew Valley
+https://www.youtube.com/watch?v=YnQ9nrcp_CE:
+- Skyblazer
+https://www.youtube.com/watch?v=YqPjWx9XiWk:
+- Captain America and the Avengers
+https://www.youtube.com/watch?v=Ys_xfruRWSc:
+- Pokemon Snap
+https://www.youtube.com/watch?v=Yx-m8z-cbzo:
+- Cave Story
+https://www.youtube.com/watch?v=YzELBO_3HzE:
+- Plok
+https://www.youtube.com/watch?v=Z-LAcjwV74M:
+- Soul Calibur II
+- Soul Calibur 2
+https://www.youtube.com/watch?v=Z167OL2CQJw:
+- Lost Eden
+https://www.youtube.com/watch?v=Z41vcQERnQQ:
+- Dragon Quest III
+- Dragon Quest 3
+https://www.youtube.com/watch?v=Z49Lxg65UOM:
+- Tsugunai
+https://www.youtube.com/watch?v=Z4QunenBEXI:
+- 'The Legend of Zelda: Link''s Awakening'
+- 'link''s awakening'
+https://www.youtube.com/watch?v=Z74e6bFr5EY:
+- Chrono Trigger
+https://www.youtube.com/watch?v=Z8Jf5aFCbEE:
+- Secret of Evermore
+https://www.youtube.com/watch?v=Z9UnlYHogTE:
+- The Violinist of Hameln
+https://www.youtube.com/watch?v=ZAyRic3ZW0Y:
+- Comix Zone
+https://www.youtube.com/watch?v=ZCd2Y1HlAnA:
+- 'Atelier Iris: Eternal Mana'
+https://www.youtube.com/watch?v=ZEUEQ4wlvi4:
+- Dragon Quest III
+- Dragon Quest 3
+https://www.youtube.com/watch?v=ZJGF0_ycDpU:
+- Pokemon GO
+https://www.youtube.com/watch?v=ZJjaiYyES4w:
+- 'Tales of Symphonia: Dawn of the New World'
+https://www.youtube.com/watch?v=ZQGc9rG5qKo:
+- Metroid Prime
+https://www.youtube.com/watch?v=ZW-eiSBpG8E:
+- Legend of Mana
+https://www.youtube.com/watch?v=ZabqQ7MSsIg:
+- Wrecking Crew
+https://www.youtube.com/watch?v=ZbIfD6r518s:
+- Secret of Mana
+https://www.youtube.com/watch?v=ZbPfNA8vxQY:
+- Dustforce
+https://www.youtube.com/watch?v=ZbpEhw42bvQ:
+- Mega Man 6
+- Mega Man VI
+https://www.youtube.com/watch?v=Zee9VKBU_Vk:
+- Fallout 3
+- Fallout III
+https://www.youtube.com/watch?v=ZfZQWz0VVxI:
+- Platoon
+https://www.youtube.com/watch?v=ZgvsIvHJTds:
+- Donkey Kong Country 2
+- Donkey Kong Country II
+https://www.youtube.com/watch?v=Zj3P44pqM_Q:
+- Final Fantasy XI
+- Final Fantasy 11
+https://www.youtube.com/watch?v=Zn8GP0TifCc:
+- Lufia II
+- Lufia 2
+https://www.youtube.com/watch?v=ZrDAjeoPR7A:
+- Child of Eden
+https://www.youtube.com/watch?v=ZriKAVSIQa0:
+- 'The Legend of Zelda: A Link Between Worlds'
+- a link between worlds
+https://www.youtube.com/watch?v=ZuM618JZgww:
+- Metroid Prime Hunters
+https://www.youtube.com/watch?v=ZulAUy2_mZ4:
+- Gears of War 4
+- Gears of War IV
+https://www.youtube.com/watch?v=ZyAIAKItmoM:
+- Hotline Miami 2
+- Hotline Miami II
+https://www.youtube.com/watch?v=Zys-MeBfBto:
+- Tales of Symphonia
+https://www.youtube.com/watch?v=_1CWWL9UBUk:
+- Final Fantasy V
+- Final Fantasy 5
+https://www.youtube.com/watch?v=_1rwSdxY7_g:
+- Breath of Fire III
+- Breath of Fire 3
+https://www.youtube.com/watch?v=_24ZkPUOIeo:
+- Pilotwings 64
+https://www.youtube.com/watch?v=_2FYWCCZrNs:
+- Chrono Cross
+https://www.youtube.com/watch?v=_3Am7OPTsSk:
+- Earthbound
+https://www.youtube.com/watch?v=_9LUtb1MOSU:
+- Secret of Mana
+https://www.youtube.com/watch?v=_BdvaCCUsYo:
+- Tales of Destiny
+https://www.youtube.com/watch?v=_CB18Elh4Rc:
+- Chrono Cross
+https://www.youtube.com/watch?v=_C_fXeDZHKw:
+- Secret of Evermore
+https://www.youtube.com/watch?v=_CeQp-NVkSw:
+- Grounseed
+https://www.youtube.com/watch?v=_EYg1z-ZmUs:
+- Breath of Death VII
+- Breath of Death 7
+https://www.youtube.com/watch?v=_Gnu2AttTPI:
+- Pokemon Black / White
+- pokemon black
+- pokemon white
+https://www.youtube.com/watch?v=_H42_mzLMz0:
+- Dragon Quest IV
+- Dragon Quest 4
+https://www.youtube.com/watch?v=_Ju6JostT7c:
+- Castlevania
+https://www.youtube.com/watch?v=_L6scVxzIiI:
+- 'The Legend of Zelda: Link''s Awakening'
+- 'link''s awakening'
+https://www.youtube.com/watch?v=_Ms2ME7ufis:
+- 'Superbrothers: Sword & Sworcery EP'
+- 'superbrothers: sword and sworcery ep'
+https://www.youtube.com/watch?v=_OM5A6JwHig:
+- Machinarium
+https://www.youtube.com/watch?v=_OguBY5x-Qo:
+- Shenmue
+https://www.youtube.com/watch?v=_RHmWJyCsAM:
+- Dragon Quest II
+- Dragon Quest 2
+https://www.youtube.com/watch?v=_U3JUtO8a9U:
+- Mario + Rabbids Kingdom Battle
+https://www.youtube.com/watch?v=_Wcte_8oFyM:
+- Plants vs Zombies
+https://www.youtube.com/watch?v=_WjOqJ4LbkQ:
+- Mega Man 10
+https://www.youtube.com/watch?v=_XJw072Co_A:
+- Diddy Kong Racing
+https://www.youtube.com/watch?v=_YxsxsaP2T4:
+- 'The Elder Scrolls V: Skyrim'
+- 'The Elder Scrolls 5: Skyrim'
+- Skyrim
+https://www.youtube.com/watch?v=_bOxB__fyJI:
+- World Reborn
+https://www.youtube.com/watch?v=_blDkW4rCwc:
+- Hyrule Warriors
+https://www.youtube.com/watch?v=_cglnkygG_0:
+- Xenoblade Chronicles
+https://www.youtube.com/watch?v=_dXaKTGvaEk:
+- 'Fatal Frame II: Crimson Butterfly'
+- 'Fatal Frame 2: Crimson Butterfly'
+https://www.youtube.com/watch?v=_dsKphN-mEI:
+- Sonic Unleashed
+https://www.youtube.com/watch?v=_eDz4_fCerk:
+- Jurassic Park
+https://www.youtube.com/watch?v=_gmeGnmyn34:
+- 3D Dot Game Heroes
+https://www.youtube.com/watch?v=_hRi2AwnEyw:
+- Dragon Quest V
+- Dragon Quest 5
+https://www.youtube.com/watch?v=_i9LIgKpgkc:
+- Persona 3
+- Persona III
+https://www.youtube.com/watch?v=_j8AXugAZCQ:
+- Earthbound
+https://www.youtube.com/watch?v=_jWbBWpfBWw:
+- Advance Wars
+https://www.youtube.com/watch?v=_joPG7N0lRk:
+- Lufia II
+- Lufia 2
+https://www.youtube.com/watch?v=_qbSmANSx6s:
+- 'The Legend of Zelda: Ocarina of Time'
 - ocarina of time
-https://www.youtube.com/watch?v=dTZ8uhJ5hIE:
-- kirby's epic yarn
-- kirbys epic yarn
-https://www.youtube.com/watch?v=QaaD9CnWgig:
-- super smash bros brawl
-- super smash bros. brawl
-- super smash brothers brawl
-https://www.youtube.com/watch?v=JDqJa1RC3q8:
-- kid icarus uprising
-https://www.youtube.com/watch?v=MQurUl4Snio:
-- punch-out!!
-- punch-out
-- punch out
-- punchout
-https://www.youtube.com/watch?v=vlz6qgahnYQ:
-- super street fighter 2 turbo
-- super street fighter two turbo
-- street fighter 2 turbo
-- street fighter two turbo
-https://www.youtube.com/watch?v=FBLp-3Rw_u0:
-- mario & luigi bowser's inside story
-- mario and luigi bowser's inside story
-- mario & luigi bowsers inside story
-- mario and luigi bowsers inside story
-- bowser's inside story
-- bowsers inside story
-https://www.youtube.com/watch?v=jqE8M2ZnFL8:
-- grand theft auto 4
-- grand theft auto four
-https://www.youtube.com/watch?v=GQZLEegUK74:
-- goldeneye 007
-- goldeneye
-https://www.youtube.com/watch?v=nCe7W1ajzIE:
-- tmnt iv turtles in time
-- tmnt iv
-- tmnt 4 turtles in time
-- tmnt 4
-- turtles in time
-https://www.youtube.com/watch?v=YHEifuLCSIY:
-- ducktales
-https://www.youtube.com/watch?v=rXefFHRgyE0:
+https://www.youtube.com/watch?v=_thDGKkVgIE:
+- 'Spyro: A Hero''s Tail'
+https://www.youtube.com/watch?v=_ttw1JCEiZE:
+- NieR
+https://www.youtube.com/watch?v=_wHwJoxw4i4:
+- Metroid
+https://www.youtube.com/watch?v=_wbGNLXgYgE:
+- Grand Theft Auto V
+- Grand Theft Auto 5
+https://www.youtube.com/watch?v=a0oq7Yw8tkc:
+- 'The Binding of Isaac: Rebirth'
+https://www.youtube.com/watch?v=a14tqUAswZU:
+- Daytona USA
+https://www.youtube.com/watch?v=a43NXcUkHkI:
+- Final Fantasy
+https://www.youtube.com/watch?v=a4t1ty8U9qw:
+- Earthbound
+https://www.youtube.com/watch?v=a5JdLRzK_uQ:
+- Wild Arms 3
+- Wild Arms III
+https://www.youtube.com/watch?v=a5WtWa8lL7Y:
+- Tetris
+https://www.youtube.com/watch?v=a8hAxP__AKw:
+- Lethal Weapon
+https://www.youtube.com/watch?v=a9MLBjUvgFE:
+- Minecraft (Update Aquatic)
+- Minecraft
+https://www.youtube.com/watch?v=aBmqRgtqOgw:
+- 'The Legend of Zelda: Minish Cap'
+- minish cap
+https://www.youtube.com/watch?v=aDJ3bdD4TPM:
+- Terranigma
+https://www.youtube.com/watch?v=aDbohXp2oEs:
+- Baten Kaitos Origins
+https://www.youtube.com/watch?v=aKgSFxA0ZhY:
+- Touch My Katamari
+https://www.youtube.com/watch?v=aKqYLGaG_E4:
+- Earthbound
+https://www.youtube.com/watch?v=aObuQqkoa-g:
+- Dragon Quest VI
+- Dragon Quest 6
+https://www.youtube.com/watch?v=aOjeeAVojAE:
+- Metroid AM2R
+https://www.youtube.com/watch?v=aOxqL6hSt8c:
+- Suikoden II
+- Suikoden 2
+https://www.youtube.com/watch?v=aPrcJy-5hoA:
+- 'Westerado: Double Barreled'
+https://www.youtube.com/watch?v=aRloSB3iXG0:
+- Metal Warriors
+https://www.youtube.com/watch?v=aTofARLXiBk:
+- Jazz Jackrabbit 3
+- Jazz Jackrabbit III
+https://www.youtube.com/watch?v=aU0WdpQRzd4:
+- Grandia II
+- Grandia 2
+https://www.youtube.com/watch?v=aWh7crjCWlM:
+- Conker's Bad Fur Day
+https://www.youtube.com/watch?v=aXJ0om-_1Ew:
+- Crystal Beans from Dungeon Explorer
+https://www.youtube.com/watch?v=aYUMd2GvwsU:
+- A Bug's Life
+https://www.youtube.com/watch?v=aZ37adgwDIw:
+- Shenmue
+https://www.youtube.com/watch?v=a_WurTZJrpE:
+- Earthbound
+https://www.youtube.com/watch?v=a_qDMzn6BOA:
+- Shin Megami Tensei IV
+- Shin Megami Tensei 4
+https://www.youtube.com/watch?v=aatRnG3Tkmg:
+- Mother 3
+- Mother III
+https://www.youtube.com/watch?v=abv-zluKyQQ:
+- Final Fantasy Tactics Advance
+https://www.youtube.com/watch?v=acAAz1MR_ZA:
+- 'Disgaea: Hour of Darkness'
+https://www.youtube.com/watch?v=acLncvJ9wHI:
+- Trauma Team
+https://www.youtube.com/watch?v=acVjEoRvpv8:
+- Dark Cloud
+https://www.youtube.com/watch?v=aci_luVBju4:
+- 'The Legend of Zelda: Skyward Sword'
+- skyward sword
+https://www.youtube.com/watch?v=ae_lrtPgor0:
+- Super Mario World
+https://www.youtube.com/watch?v=afsUV7q6Hqc:
+- Mega Man ZX
+https://www.youtube.com/watch?v=ag5q7vmDOls:
+- Lagoon
+https://www.youtube.com/watch?v=aj9mW0Hvp0g:
+- 'Ufouria: The Saga'
+https://www.youtube.com/watch?v=am5TVpGwHdE:
+- Digital Devil Saga
+https://www.youtube.com/watch?v=ammnaFhcafI:
+- Mario Party 4
+- Mario Party IV
+https://www.youtube.com/watch?v=an3P8otlD2A:
+- Skies of Arcadia
+https://www.youtube.com/watch?v=aqLjvjhHgDI:
+- Minecraft
+https://www.youtube.com/watch?v=aqWw9gLgFRA:
+- Portal
+https://www.youtube.com/watch?v=aumWblPK58M:
+- SaGa Frontier
+https://www.youtube.com/watch?v=avyGawaBrtQ:
+- 'Dragon Ball Z: Budokai'
+https://www.youtube.com/watch?v=b-oxtWJ00WA:
+- Pikmin 3
+- Pikmin III
+https://www.youtube.com/watch?v=b-rgxR_zIC4:
+- Mega Man 4
+- Mega Man IV
+https://www.youtube.com/watch?v=b0kqwEbkSag:
+- Deathsmiles IIX
+https://www.youtube.com/watch?v=b1YKRCKnge8:
+- Chrono Trigger
+https://www.youtube.com/watch?v=b3Ayzzo8eZo:
+- 'Lunar: Dragon Song'
+https://www.youtube.com/watch?v=b3l5v-QQF40:
+- 'TMNT IV: Turtles in Time'
+- 'TMNT 4: Turtles in Time'
+https://www.youtube.com/watch?v=b6QzJaltmUM:
+- What Remains of Edith Finch
+https://www.youtube.com/watch?v=b9OZwTLtrl4:
+- Legend of Mana
+https://www.youtube.com/watch?v=bA4PAkrAVpQ:
+- Mega Man 9
+- Mega Man IX
+https://www.youtube.com/watch?v=bAkK3HqzoY0:
+- 'Fire Emblem: Radiant Dawn'
+https://www.youtube.com/watch?v=bCNdNTdJYvE:
+- Final Fantasy X
+- Final Fantasy 10
+https://www.youtube.com/watch?v=bDH8AIok0IM:
+- TimeSplitters 2
+- TimeSplitters II
+https://www.youtube.com/watch?v=bFk3mS6VVsE:
+- Threads of Fate
+https://www.youtube.com/watch?v=bItjdi5wxFQ:
+- Watch Dogs
+https://www.youtube.com/watch?v=bKj3JXmYDfY:
+- The Swapper
+https://www.youtube.com/watch?v=bNzYIEY-CcM:
+- Chrono Trigger
+https://www.youtube.com/watch?v=bO2wTaoCguc:
+- Super Dodge Ball
+https://www.youtube.com/watch?v=bOg8XuvcyTY:
+- Final Fantasy Legend II
+- Final Fantasy Legend 2
+https://www.youtube.com/watch?v=bQ1D8oR128E:
+- 'Castlevania: Portrait of Ruin'
+https://www.youtube.com/watch?v=bR4AB3xNT0c:
+- Donkey Kong Country Returns
+https://www.youtube.com/watch?v=bRAT5LgAl5E:
+- The Dark Spire
+https://www.youtube.com/watch?v=bW3KNnZ2ZiA:
+- Chrono Trigger
+https://www.youtube.com/watch?v=bWp4F1p2I64:
+- 'Deus Ex: Human Revolution'
+https://www.youtube.com/watch?v=bXfaBUCDX1I:
+- 'Mario & Luigi: Dream Team'
+- 'mario and luigi: dream team'
+https://www.youtube.com/watch?v=bZBoTinEpao:
+- Jade Cocoon
+https://www.youtube.com/watch?v=bcHL3tGy7ws:
+- World of Warcraft
+https://www.youtube.com/watch?v=bckgyhCo7Lw:
+- Tales of Legendia
+https://www.youtube.com/watch?v=bdNrjSswl78:
+- Kingdom Hearts II
+- Kingdom Hearts 2
+https://www.youtube.com/watch?v=berZX7mPxbE:
+- Kingdom Hearts
+https://www.youtube.com/watch?v=bffwco66Vnc:
+- 'Little Nemo: The Dream Master'
+https://www.youtube.com/watch?v=bhW8jNscYqA:
+- Seiken Densetsu 3
+- Seiken Densetsu III
+https://www.youtube.com/watch?v=bmsw4ND8HNA:
+- Pokemon Diamond / Pearl / Platinum
+- pokemon diamond
+- pokemon pearl
+- pokemon platinum
+https://www.youtube.com/watch?v=bp4-fXuTwb8:
+- Final Fantasy IV
+- Final Fantasy 4
+https://www.youtube.com/watch?v=brYzVFvM98I:
+- Super Castlevania IV
+- Super Castlevania 4
+https://www.youtube.com/watch?v=bss8vzkIB74:
+- 'Vampire The Masquerade: Bloodlines'
+https://www.youtube.com/watch?v=bu-kSDUXUts:
+- Silent Hill 2
+- Silent Hill II
+https://www.youtube.com/watch?v=bvbOS8Mp8aQ:
+- Street Fighter V
+- Street Fighter 5
+https://www.youtube.com/watch?v=bviyWo7xpu0:
+- Wild Arms 5
+- Wild Arms V
+https://www.youtube.com/watch?v=c2Y1ANec-5M:
+- Ys Chronicles
+https://www.youtube.com/watch?v=c47-Y-y_dqI:
+- Blue Dragon
+https://www.youtube.com/watch?v=c62hLhyF2D4:
+- Jelly Defense
+https://www.youtube.com/watch?v=c7mYaBoSIQU:
+- Contact
+https://www.youtube.com/watch?v=c8sDG4L-qrY:
+- Skullgirls
+https://www.youtube.com/watch?v=cETUoqcjICE:
+- Vay
+https://www.youtube.com/watch?v=cHfgcOHSTs0:
+- Ogre Battle 64
+https://www.youtube.com/watch?v=cKBgNT-8rrM:
+- Grounseed
+https://www.youtube.com/watch?v=cKQZVFIuyko:
+- Streets of Rage 2
+- Streets of Rage II
+https://www.youtube.com/watch?v=cMxOAeESteU:
+- 'Paper Mario: The Thousand Year Door'
+https://www.youtube.com/watch?v=cO1UTkT6lf8:
+- Baten Kaitos Origins
+https://www.youtube.com/watch?v=cQhqxEIAZbE:
+- Resident Evil Outbreak
+https://www.youtube.com/watch?v=cRyIPt01AVM:
+- Banjo-Kazooie
+https://www.youtube.com/watch?v=cU1Z5UwBlQo:
+- 'Shadow Hearts II: Covenant'
+- 'Shadow Hearts 2: Covenant'
+https://www.youtube.com/watch?v=cWTZEXmWcOs:
+- Night in the Woods
+https://www.youtube.com/watch?v=cWt6j5ZJCHU:
+- R-Type Delta
+https://www.youtube.com/watch?v=cYV7Ph-qvvI:
+- 'Romancing Saga: Minstrel Song'
+https://www.youtube.com/watch?v=cYlKsL8r074:
+- NieR
+https://www.youtube.com/watch?v=cZVRDjJUPIQ:
+- Kirby & The Rainbow Curse
+- kirby and the rainbow curse
+https://www.youtube.com/watch?v=c_ex2h9t2yk:
+- Klonoa
+https://www.youtube.com/watch?v=calW24ddgOM:
+- 'Castlevania: Order of Ecclesia'
+https://www.youtube.com/watch?v=cbiEH5DMx78:
+- Wild Arms
+https://www.youtube.com/watch?v=ccHauz5l5Kc:
+- Torchlight
+https://www.youtube.com/watch?v=ccMkXEV0YmY:
+- Tekken 2
+- Tekken II
+https://www.youtube.com/watch?v=ciM3PBf1DRs:
+- Sonic the Hedgehog
+https://www.youtube.com/watch?v=cjrh4YcvptY:
+- Jurassic Park 2
+- Jurassic Park II
+https://www.youtube.com/watch?v=ckVmgiTobAw:
+- Okami
+https://www.youtube.com/watch?v=cl6iryREksM:
+- 'The Legend of Zelda: Skyward Sword'
+- skyward sword
+https://www.youtube.com/watch?v=clyy2eKqdC0:
+- Mother 3
+- Mother III
+https://www.youtube.com/watch?v=cmyK3FdTu_Q:
+- 'Castlevania: Symphony of the Night'
+https://www.youtube.com/watch?v=cnjADMWesKk:
+- Silent Hill 2
+- Silent Hill II
+https://www.youtube.com/watch?v=coyl_h4_tjc:
+- Mega Man 2
+- Mega Man II
+https://www.youtube.com/watch?v=cpcx0UQt4Y8:
+- Shadow of the Beast
+https://www.youtube.com/watch?v=cqSEDRNwkt8:
+- 'SMT: Digital Devil Saga 2'
+- 'SMT: Digital Devil Saga II'
+https://www.youtube.com/watch?v=cqkYQt8dnxU:
+- Shadow Hearts III
+- Shadow Hearts 3
+https://www.youtube.com/watch?v=cs3hwrowdaQ:
+- Final Fantasy VII
+- Final Fantasy 7
+https://www.youtube.com/watch?v=cvae_OsnWZ0:
+- Super Mario RPG
+https://www.youtube.com/watch?v=cvpGCTUGi8o:
+- Pokemon Diamond / Pearl / Platinum
 - pokemon diamond
 - pokemon pearl
 - pokemon platinum
-https://www.youtube.com/watch?v=4jaIUlz-wNU:
-- warriors orochi 3
-- warriors orochi three
-https://www.youtube.com/watch?v=EAwWPadFsOA:
-- mortal kombat
-https://www.youtube.com/watch?v=XI1VpElKWF8:
-- metal gear solid
-https://www.youtube.com/watch?v=zz8m1oEkW5k:
-- tetris blitz
-https://www.youtube.com/watch?v=gMdX_Iloow8:
-- ultimate marvel vs capcom 3
-- marvel vs capcom 3
-- ultimate marvel vs. capcom 3
-- marvel vs. capcom 3
-https://www.youtube.com/watch?v=vRe3h1iQ1Os:
-- sonic the hedgehog 2006
-- sonic the hegehog
-https://www.youtube.com/watch?v=SYTS2sJWcIs:
-- pokemon heartgold
-- pokemon soulsilver
-https://www.youtube.com/watch?v=5-BIqqSe1nU:
-- red dead redemption
-https://www.youtube.com/watch?v=wp6QpMWaKpE:
-- bioshock
-https://www.youtube.com/watch?v=R9XdMnsKvUs:
-- call of duty 4 modern warfare
-- call of duty 4
-- modern warfare
-https://www.youtube.com/watch?v=f-sQhBDsjgE:
-- killzone 2
-https://www.youtube.com/watch?v=-_O6F5FwQ0s:
-- soul calibur v
-- sould calibur 5
-https://www.youtube.com/watch?v=MgK_OfW7nl4:
-- the legend of zelda breath of the wild
-- legend of zelda breath of the wild
-- breath of the wild
-https://www.youtube.com/watch?v=tz82xbLvK_k:
-- undertale
-https://www.youtube.com/watch?v=J46RY4PU8a8:
-- chrono cross
-https://www.youtube.com/watch?v=6LB7LZZGpkw:
-- silent hill 2
-https://www.youtube.com/watch?v=ya3yxTbkh5s:
-- Ōkami
-- okami
-- wolf
-https://www.youtube.com/watch?v=KGidvt4NTPI:
-- hikari 光
-- hikari
-- 光
-- light
-https://www.youtube.com/watch?v=JbXVNKtmWnc:
-- final fantasy vi
-- final fantasy 6
-https://www.youtube.com/watch?v=-jMDutXA4-M:
-- final fantasy iii
-- final fantasy 3
\ No newline at end of file
+https://www.youtube.com/watch?v=cwmHupo9oSQ:
+- Street Fighter 2010
+- Street Fighter MMX
+https://www.youtube.com/watch?v=cxAE48Dul7Y:
+- Top Gear 3000
+- Top Gear MMM
+https://www.youtube.com/watch?v=cxAbbHCpucs:
+- Unreal Tournament
+https://www.youtube.com/watch?v=cyShVri-4kQ:
+- NieR
+https://www.youtube.com/watch?v=d0akzKhBl2k:
+- Pop'n Music 7
+- Pop'n Music VII
+https://www.youtube.com/watch?v=d12Pt-zjLsI:
+- Fire Emblem Fates
+https://www.youtube.com/watch?v=d1UyVXN13SI:
+- 'The Legend of Zelda: A Link to the Past'
+- a link to the past
+https://www.youtube.com/watch?v=d2dB0PuWotU:
+- Sonic Adventure 2
+- Sonic Adventure II
+https://www.youtube.com/watch?v=d3mJsXFGhDg:
+- Altered Beast
+https://www.youtube.com/watch?v=d5OK1GkI_CU:
+- Chrono Cross
+https://www.youtube.com/watch?v=d8xtkry1wK8:
+- Lost Odyssey
+https://www.youtube.com/watch?v=dBsdllfE4Ek:
+- Undertale
+https://www.youtube.com/watch?v=dEVI5_OxUyY:
+- Goldeneye
+https://www.youtube.com/watch?v=dG4ZCzodq4g:
+- Tekken 6
+- Tekken VI
+https://www.youtube.com/watch?v=dGF7xsF0DmQ:
+- Shatterhand (JP)
+- shatterhand
+https://www.youtube.com/watch?v=dGzGSapPGL8:
+- Jets 'N' Guns
+https://www.youtube.com/watch?v=dJzTqmQ_erE:
+- Chrono Trigger
+https://www.youtube.com/watch?v=dMSjvBILQRU:
+- Fable
+https://www.youtube.com/watch?v=dMYW4wBDQLU:
+- 'Ys VI: The Ark of Napishtim'
+- 'Ys 6: The Ark of Napishtim'
+https://www.youtube.com/watch?v=dO4awKzd8rc:
+- One Step Beyond
+https://www.youtube.com/watch?v=dOHur-Yc3nE:
+- Shatter
+https://www.youtube.com/watch?v=dQRiJz_nEP8:
+- Castlevania II
+- Castlevania 2
+https://www.youtube.com/watch?v=dRHpQFbEthY:
+- Shovel Knight
+https://www.youtube.com/watch?v=dSwUFI18s7s:
+- Valkyria Chronicles 3
+- Valkyria Chronicles III
+https://www.youtube.com/watch?v=dTjNEOT-e-M:
+https://www.youtube.com/watch?v=dUcTukA0q4Y:
+- Super Mario World
+- 'FTL: Faster Than Light'
+https://www.youtube.com/watch?v=dWiHtzP-bc4:
+- 'Kirby 64: The Crystal Shards'
+https://www.youtube.com/watch?v=dWrm-lwiKj0:
+- Nora to Toki no Koubou
+https://www.youtube.com/watch?v=dZAOgvdXhuk:
+- 'Star Wars: Shadows of the Empire'
+https://www.youtube.com/watch?v=dcEXzNbn20k:
+- Dead Space
+https://www.youtube.com/watch?v=dd2dbckq54Q:
+- Black/Matrix
+https://www.youtube.com/watch?v=deKo_UHZa14:
+- Return All Robots!
+https://www.youtube.com/watch?v=dfykPUgPns8:
+- Parasite Eve
+https://www.youtube.com/watch?v=dgD5lgqNzP8:
+- Dark Souls
+https://www.youtube.com/watch?v=dhGMZwQr0Iw:
+- Mario Kart 8
+- Mario Kart VIII
+https://www.youtube.com/watch?v=dhzrumwtwFY:
+- Final Fantasy Tactics
+https://www.youtube.com/watch?v=dim1KXcN34U:
+- ActRaiser
+https://www.youtube.com/watch?v=dj0Ib2lJ7JA:
+- Final Fantasy XII
+- Final Fantasy 12
+https://www.youtube.com/watch?v=dj8Qe3GUrdc:
+- 'Divinity II: Ego Draconis'
+- 'Divinity 2: Ego Draconis'
+https://www.youtube.com/watch?v=dlZyjOv5G80:
+- Shenmue
+https://www.youtube.com/watch?v=dobKarKesA0:
+- Elemental Master
+https://www.youtube.com/watch?v=dqww-xq7b9k:
+- SaGa Frontier II
+- SaGa Frontier 2
+https://www.youtube.com/watch?v=drFZ1-6r7W8:
+- Shenmue II
+- Shenmue 2
+https://www.youtube.com/watch?v=dszJhqoPRf8:
+- Super Mario Kart
+https://www.youtube.com/watch?v=dtITnB_uRzc:
+- Xenosaga II
+- Xenosaga 2
+https://www.youtube.com/watch?v=dyFj_MfRg3I:
+- Dragon Quest
+https://www.youtube.com/watch?v=dylldXUC20U:
+- 'The Legend of Zelda: Wind Waker'
+- wind waker
+https://www.youtube.com/watch?v=e-r3yVxzwe0:
+- Chrono Cross
+https://www.youtube.com/watch?v=e1HWSPwGlpA:
+- Doom 3
+- Doom III
+https://www.youtube.com/watch?v=e6cvikWAAEo:
+- Super Smash Bros. Brawl
+https://www.youtube.com/watch?v=e7YW5tmlsLo:
+- Cannon Fodder
+https://www.youtube.com/watch?v=e9uvCvvlMn4:
+- Wave Race 64
+https://www.youtube.com/watch?v=e9xHOWHjYKc:
+- Beyond Good & Evil
+- beyond good and evil
+https://www.youtube.com/watch?v=eCS1Tzbcbro:
+- Demon's Crest
+https://www.youtube.com/watch?v=eDOCPzvn87s:
+- Super Mario World
+https://www.youtube.com/watch?v=eDjJq3DsNTc:
+- Ar nosurge
+https://www.youtube.com/watch?v=eEZLBWjQsGk:
+- Parasite Eve
+https://www.youtube.com/watch?v=eF03eqpRxHE:
+- Soul Edge
+https://www.youtube.com/watch?v=eFN9fNhjRPg:
+- 'NieR: Automata'
+https://www.youtube.com/watch?v=eFR7iBDJYpI:
+- Ratchet & Clank
+- ratchet and clank
+https://www.youtube.com/watch?v=eKiz8PrTvSs:
+- Metroid
+https://www.youtube.com/watch?v=eLLdU3Td1w0:
+- Star Fox 64
+https://www.youtube.com/watch?v=eNXj--eakKg:
+- Chrono Trigger
+https://www.youtube.com/watch?v=eNXv3L_ebrk:
+- 'Moon: Remix RPG Adventure'
+https://www.youtube.com/watch?v=eOx1HJJ-Y8M:
+- Xenosaga II
+- Xenosaga 2
+https://www.youtube.com/watch?v=eRuhYeSR19Y:
+- Uncharted Waters
+https://www.youtube.com/watch?v=eRzo1UGPn9s:
+- 'TMNT IV: Turtles in Time'
+- 'TMNT 4: Turtles in Time'
+https://www.youtube.com/watch?v=eWsYdciDkqY:
+- Jade Cocoon
+https://www.youtube.com/watch?v=ehNS3sKQseY:
+- Wipeout Pulse
+https://www.youtube.com/watch?v=ehxzly2ogW4:
+- Xenoblade Chronicles X
+- Xenoblade Chronicles 10
+https://www.youtube.com/watch?v=ej4PiY8AESE:
+- 'Lunar: Eternal Blue'
+https://www.youtube.com/watch?v=eje3VwPYdBM:
+- Pop'n Music 7
+- Pop'n Music VII
+https://www.youtube.com/watch?v=elvSWFGFOQs:
+- Ridge Racer Type 4
+- Ridge Racer Type IV
+https://www.youtube.com/watch?v=emGEYMPc9sY:
+- Final Fantasy IX
+- Final Fantasy 9
+https://www.youtube.com/watch?v=eoPtQd6adrA:
+- Talesweaver
+https://www.youtube.com/watch?v=euk6wHmRBNY:
+- Infinite Undiscovery
+https://www.youtube.com/watch?v=ev9G_jTIA-k:
+- Robotrek
+https://www.youtube.com/watch?v=evHQZjhE9CM:
+- The Bouncer
+https://www.youtube.com/watch?v=evVH7gshLs8:
+- Turok 2 (Gameboy)
+- Turok II
+- turok 2
+https://www.youtube.com/watch?v=eyhLabJvb2M:
+- 'Paper Mario: The Thousand Year Door'
+https://www.youtube.com/watch?v=eyiABstbKJE:
+- Kirby's Return to Dreamland
+https://www.youtube.com/watch?v=f0UzNWcwC30:
+- Tales of Graces
+https://www.youtube.com/watch?v=f0bj_Aqhbb8:
+- Guild Wars 2
+- Guild Wars II
+https://www.youtube.com/watch?v=f0muXjuV6cc:
+- Super Mario World
+https://www.youtube.com/watch?v=f1EFHMwKdkY:
+- Shadow Hearts III
+- Shadow Hearts 3
+https://www.youtube.com/watch?v=f1QLfSOUiHU:
+- 'The Legend of Zelda: Ocarina of Time'
+- ocarina of time
+https://www.youtube.com/watch?v=f2XcqUwycvA:
+- 'Kingdom Hearts: Birth By Sleep'
+https://www.youtube.com/watch?v=f2q9axKQFHc:
+- Tekken Tag Tournament 2
+- Tekken Tag Tournament II
+https://www.youtube.com/watch?v=f3z73Xp9fCk:
+- Outlaws
+https://www.youtube.com/watch?v=f6QCNRRA1x0:
+- Legend of Mana
+https://www.youtube.com/watch?v=fEfuvS-V9PI:
+- Mii Channel
+https://www.youtube.com/watch?v=fH-lLbHbG-A:
+- 'TMNT IV: Turtles in Time'
+- 'TMNT 4: Turtles in Time'
+https://www.youtube.com/watch?v=fH66CHAUcoA:
+- Chrono Trigger
+https://www.youtube.com/watch?v=fJZoDK-N6ug:
+- Castlevania 64
+https://www.youtube.com/watch?v=fJkpSSJUxC4:
+- Castlevania Curse of Darkness
+https://www.youtube.com/watch?v=fNBMeTJb9SM:
+- Dead Rising 3
+- Dead Rising III
+https://www.youtube.com/watch?v=fRy6Ly5A5EA:
+- Legend of Dragoon
+https://www.youtube.com/watch?v=fTj73xQg2TY:
+- Child of Light
+https://www.youtube.com/watch?v=fTvPg89TIMI:
+- Tales of Legendia
+https://www.youtube.com/watch?v=fWqvxC_8yDk:
+- 'Ecco: The Tides of Time (Sega CD)'
+- 'Ecco: The Tides of Time'
+https://www.youtube.com/watch?v=fWx4q8GqZeo:
+- Digital Devil Saga
+https://www.youtube.com/watch?v=fXxbFMtx0Bo:
+- Halo 3 ODST
+- Halo III ODST
+https://www.youtube.com/watch?v=fYvGx-PEAtg:
+- Tales of Symphonia
+https://www.youtube.com/watch?v=f_UurCb4AD4:
+- Dewy's Adventure
+https://www.youtube.com/watch?v=fbc17iYI7PA:
+- Warcraft II
+- Warcraft 2
+https://www.youtube.com/watch?v=fcJLdQZ4F8o:
+- Ar Tonelico
+https://www.youtube.com/watch?v=fc_3fMMaWK8:
+- Secret of Mana
+https://www.youtube.com/watch?v=fd6QnwqipcE:
+- Mutant Mudds
+https://www.youtube.com/watch?v=feZJtZnevAM:
+- Pandora's Tower
+https://www.youtube.com/watch?v=fexAY_t4N8U:
+- Conker's Bad Fur Day
+https://www.youtube.com/watch?v=fg1PDaOnU2Q:
+- 'Castlevania: Portrait of Ruin'
+https://www.youtube.com/watch?v=fiPxE3P2Qho:
+- Wild Arms 4
+- Wild Arms IV
+https://www.youtube.com/watch?v=fjNJqcuFD-A:
+- Katamari Damacy
+https://www.youtube.com/watch?v=fpVag5b7zHo:
+- Pokemon Omega Ruby / Alpha Sapphire
+- pokemon omega ruby
+- pokemon alpha sapphire
+https://www.youtube.com/watch?v=ft5DP1h8jsg:
+- Wild Arms 2
+- Wild Arms II
+https://www.youtube.com/watch?v=g2S2Lxzow3Q:
+- Mega Man 5
+- Mega Man V
+https://www.youtube.com/watch?v=g4Bnot1yBJA:
+- 'The Elder Scrolls III: Morrowind'
+- 'The Elder Scrolls 3: Morrowind'
+- Morrowind
+https://www.youtube.com/watch?v=g6vc_zFeHFk:
+- Streets of Rage
+https://www.youtube.com/watch?v=gAy6qk8rl5I:
+- Wild Arms
+https://www.youtube.com/watch?v=gDL6uizljVk:
+- 'Batman: Return of the Joker'
+https://www.youtube.com/watch?v=gF4pOYxzplw:
+- Xenogears
+https://www.youtube.com/watch?v=gIlGulCdwB4:
+- Pilotwings Resort
+https://www.youtube.com/watch?v=gLfz9w6jmJM:
+- Machinarium
+https://www.youtube.com/watch?v=gLu7Bh0lTPs:
+- Donkey Kong Country
+https://www.youtube.com/watch?v=gQUe8l_Y28Y:
+- Lineage II
+- Lineage 2
+https://www.youtube.com/watch?v=gQiYZlxJk3w:
+- Lufia II
+- Lufia 2
+https://www.youtube.com/watch?v=gQndM8KdTD0:
+- 'Kirby 64: The Crystal Shards'
+https://www.youtube.com/watch?v=gRZFl-vt4w0:
+- Ratchet & Clank
+- ratchet and clank
+https://www.youtube.com/watch?v=gSLIlAVZ6Eo:
+- Tales of Vesperia
+https://www.youtube.com/watch?v=gTahA9hCxAg:
+- Undertale
+https://www.youtube.com/watch?v=gVGhVofDPb4:
+- Mother 3
+- Mother III
+https://www.youtube.com/watch?v=gW0DiDKWgWc:
+- Earthbound
+https://www.youtube.com/watch?v=gWZ2cqFr0Vo:
+- Chrono Cross
+https://www.youtube.com/watch?v=gY9jq9-1LTk:
+- Treasure Hunter G
+https://www.youtube.com/watch?v=g_Hsyo7lmQU:
+- Pictionary
+https://www.youtube.com/watch?v=gcm3ak-SLqM:
+- 'Shadow Hearts II: Covenant'
+- 'Shadow Hearts 2: Covenant'
+https://www.youtube.com/watch?v=gf3NerhyM_k:
+- Tales of Berseria
+https://www.youtube.com/watch?v=ggTedyRHx20:
+- 'Qbeh-1: The Atlas Cube'
+- 'Qbeh-I: The Atlas Cube'
+https://www.youtube.com/watch?v=ghe_tgQvWKQ:
+- Resident Evil REmake
+https://www.youtube.com/watch?v=ght6F5_jHQ0:
+- Mega Man 4
+- Mega Man IV
+https://www.youtube.com/watch?v=glFK5I0G2GE:
+- Sheep Raider
+https://www.youtube.com/watch?v=glcGXw3gS6Q:
+- Silent Hill 3
+- Silent Hill III
+https://www.youtube.com/watch?v=gmfBMy-h6Js:
+- NieR
+https://www.youtube.com/watch?v=go7JlCI5n5o:
+- Counter Strike
+https://www.youtube.com/watch?v=gokt9KTpf18:
+- Mario Kart 7
+- Mario Kart VII
+https://www.youtube.com/watch?v=grQkblTqSMs:
+- Earthbound
+https://www.youtube.com/watch?v=grmP-wEjYKw:
+- Okami
+https://www.youtube.com/watch?v=guff_k4b6cI:
+- Wild Arms
+https://www.youtube.com/watch?v=gwesq9ElVM4:
+- 'The Legend of Zelda: A Link Between Worlds'
+- a link between worlds
+https://www.youtube.com/watch?v=gxF__3CNrsU:
+- Final Fantasy VI
+- Final Fantasy 6
+https://www.youtube.com/watch?v=gzl9oJstIgg:
+- 'The Legend of Zelda: Ocarina of Time'
+- ocarina of time
+https://www.youtube.com/watch?v=h0LDHLeL-mE:
+- Sonic Forces
+https://www.youtube.com/watch?v=h0ed9Kei7dw:
+- Biker Mice from Mars
+https://www.youtube.com/watch?v=h2AhfGXAPtk:
+- Deathsmiles
+https://www.youtube.com/watch?v=h4VF0mL35as:
+- Super Castlevania IV
+- Super Castlevania 4
+https://www.youtube.com/watch?v=h5iAyksrXgc:
+- Yoshi's Story
+https://www.youtube.com/watch?v=h8Z73i0Z5kk:
+- Final Fantasy Mystic Quest
+https://www.youtube.com/watch?v=h8wD8Dmxr94:
+- 'Dragon Ball Z: The Legacy of Goku II'
+- 'Dragon Ball Z: The Legacy of Goku 2'
+https://www.youtube.com/watch?v=hB3mYnW-v4w:
+- 'Superbrothers: Sword & Sworcery EP'
+- 'superbrothers: sword and sworcery ep'
+https://www.youtube.com/watch?v=hBg-pnQpic4:
+- Pokemon Ruby / Sapphire / Emerald
+- pokemon ruby
+- pokemon sapphire
+- pokemon emerald
+https://www.youtube.com/watch?v=hELte7HgL2Y:
+- Chrono Trigger
+https://www.youtube.com/watch?v=hFgqnQLyqqE:
+- Sonic Lost World
+https://www.youtube.com/watch?v=hL7-cD9LDp0:
+- Glover
+https://www.youtube.com/watch?v=hLKBPvLNzng:
+- 'The Legend of Zelda: A Link to the Past'
+- a link to the past
+https://www.youtube.com/watch?v=hMd5T_RlE_o:
+- Super Mario World
+https://www.youtube.com/watch?v=hMoejZAOOUM:
+- Ys II Chronicles
+- Ys 2 Chronicles
+https://www.youtube.com/watch?v=hNCGAN-eyuc:
+- Undertale
+https://www.youtube.com/watch?v=hNOTJ-v8xnk:
+- Final Fantasy IX
+- Final Fantasy 9
+https://www.youtube.com/watch?v=hT8FhGDS5qE:
+- Lufia II
+- Lufia 2
+https://www.youtube.com/watch?v=hUpjPQWKDpM:
+- Breath of Fire V
+- Breath of Fire 5
+https://www.youtube.com/watch?v=hV3Ktwm356M:
+- Killer Instinct
+https://www.youtube.com/watch?v=hYHMbcC08xA:
+- Mega Man 9
+- Mega Man IX
+https://www.youtube.com/watch?v=h_suLF-Qy5U:
+- Katamari Damacy
+https://www.youtube.com/watch?v=hb6Ny-4Pb7o:
+- Mana Khemia
+https://www.youtube.com/watch?v=he2oLG1Trtg:
+- 'Kirby: Triple Deluxe'
+https://www.youtube.com/watch?v=heD3Rzhrnaw:
+- Mega Man 2
+- Mega Man II
+https://www.youtube.com/watch?v=he_ECgg9YyU:
+- Mega Man
+https://www.youtube.com/watch?v=hlCHzEa9MRg:
+- Skies of Arcadia
+https://www.youtube.com/watch?v=hlQ-DG9Jy3Y:
+- Pop'n Music 2
+- Pop'n Music II
+https://www.youtube.com/watch?v=hoOeroni32A:
+- Mutant Mudds
+https://www.youtube.com/watch?v=hqKfTvkVo1o:
+- Monster Hunter Tri
+https://www.youtube.com/watch?v=hrxseupEweU:
+- Unreal Tournament 2003 & 2004
+- unreal tournament 2003
+- unreal tournament 2004
+https://www.youtube.com/watch?v=hsPiGiZ2ks4:
+- SimCity 4
+- SimCity IV
+https://www.youtube.com/watch?v=hv2BL0v2tb4:
+- Phantasy Star Online
+https://www.youtube.com/watch?v=hxZTBl7Q5fs:
+- 'The Legend of Zelda: Link''s Awakening'
+- 'link''s awakening'
+https://www.youtube.com/watch?v=hyjJl59f_I0:
+- Star Fox Adventures
+https://www.youtube.com/watch?v=i-hcCtD_aB0:
+- Soma Bringer
+https://www.youtube.com/watch?v=i-v-bJhK5yc:
+- Undertale
+https://www.youtube.com/watch?v=i1GFclxeDIU:
+- Shadow Hearts
+https://www.youtube.com/watch?v=i1ZVtT5zdcI:
+- Secret of Mana
+https://www.youtube.com/watch?v=i2E9c0j0n4A:
+- Rad Racer II
+- Rad Racer 2
+https://www.youtube.com/watch?v=i49PlEN5k9I:
+- Soul Sacrifice
+https://www.youtube.com/watch?v=i8DTcUWfmws:
+- Guilty Gear Isuka
+https://www.youtube.com/watch?v=iA6xXR3pwIY:
+- Baten Kaitos
+https://www.youtube.com/watch?v=iDIbO2QefKo:
+- Final Fantasy V
+- Final Fantasy 5
+https://www.youtube.com/watch?v=iDVMfUFs_jo:
+- LOST CHILD
+https://www.youtube.com/watch?v=iFa5bIrsWb0:
+- 'The Legend of Zelda: Link''s Awakening'
+https://www.youtube.com/watch?v=iJS-PjSQMtw:
+- 'Castlevania: Symphony of the Night'
+https://www.youtube.com/watch?v=iK-g9PXhXzM:
+- Radiant Historia
+https://www.youtube.com/watch?v=iMeBQBv2ACs:
+- Etrian Mystery Dungeon
+https://www.youtube.com/watch?v=iN3Jp55Db_A:
+- Maniac Mansion
+https://www.youtube.com/watch?v=iS98ggIHkRw:
+- Extreme-G
+https://www.youtube.com/watch?v=iSP-_hNQyYs:
+- Chrono Trigger
+https://www.youtube.com/watch?v=iTUBlKA5IfY:
+- Pokemon Art Academy
+https://www.youtube.com/watch?v=iV5Ae4lOWmk:
+- Super Paper Mario
+https://www.youtube.com/watch?v=iXDF9eHsmD4:
+- F-Zero
+https://www.youtube.com/watch?v=iZv19yJrZyo:
+- 'FTL: Advanced Edition'
+https://www.youtube.com/watch?v=idw1zFkySA0:
+- Boot Hill Heroes
+https://www.youtube.com/watch?v=ietzDT5lOpQ:
+- Braid
+https://www.youtube.com/watch?v=ifqmN14qJp8:
+- Minecraft
+https://www.youtube.com/watch?v=ifvxBt7tmA8:
+- Yoshi's Island
+https://www.youtube.com/watch?v=iga0Ed0BWGo:
+- Diablo III
+- Diablo 3
+https://www.youtube.com/watch?v=ihi7tI8Kaxc:
+- The Last Remnant
+https://www.youtube.com/watch?v=ijUwAWUS8ug:
+- Diablo II
+- Diablo 2
+https://www.youtube.com/watch?v=ilOYzbGwX7M:
+- Deja Vu
+https://www.youtube.com/watch?v=imK2k2YK36E:
+- Giftpia
+https://www.youtube.com/watch?v=in7TUvirruo:
+- Sonic Unleashed
+https://www.youtube.com/watch?v=injXmLzRcBI:
+- Blue Dragon
+https://www.youtube.com/watch?v=iohvqM6CGEU:
+- Mario Kart 64
+https://www.youtube.com/watch?v=irGCdR0rTM4:
+- 'Shadow Hearts II: Covenant'
+- 'Shadow Hearts 2: Covenant'
+https://www.youtube.com/watch?v=irQxobE5PU8:
+- Frozen Synapse
+https://www.youtube.com/watch?v=ivfEScAwMrE:
+- 'Paper Mario: Sticker Star'
+https://www.youtube.com/watch?v=iwemkM-vBmc:
+- Super Mario Sunshine
+https://www.youtube.com/watch?v=ixE9HlQv7v8:
+- Castle Crashers
+https://www.youtube.com/watch?v=j16ZcZf9Xz8:
+- Pokemon Silver / Gold / Crystal
+- pokemon silver
+- pokemon gold
+- pokemon crystal
+https://www.youtube.com/watch?v=j2zAq26hqd8:
+- 'Metroid Prime 2: Echoes'
+- 'Metroid Prime II: Echoes'
+https://www.youtube.com/watch?v=j4Zh9IFn_2U:
+- Etrian Odyssey Untold
+https://www.youtube.com/watch?v=j6i73HYUNPk:
+- Gauntlet III
+- Gauntlet 3
+https://www.youtube.com/watch?v=jANl59bNb60:
+- Breath of Fire III
+- Breath of Fire 3
+https://www.youtube.com/watch?v=jAQGCM-IyOE:
+- Xenosaga
+https://www.youtube.com/watch?v=jChHVPyd4-Y:
+- 'The Legend of Zelda: Ocarina of Time'
+- ocarina of time
+https://www.youtube.com/watch?v=jEmyzsFaiZ8:
+- Tomb Raider
+https://www.youtube.com/watch?v=jI2ltHB50KU:
+- Opoona
+https://www.youtube.com/watch?v=jJVTRXZXEIA:
+- 'Dust: An Elysian Tail'
+https://www.youtube.com/watch?v=jL57YsG1JJE:
+- Metroid
+https://www.youtube.com/watch?v=jLrqs_dvAGU:
+- Yoshi's Woolly World
+https://www.youtube.com/watch?v=jNoiUfwuuP8:
+- 'Kirby 64: The Crystal Shards'
+https://www.youtube.com/watch?v=jObg1aw9kzE:
+- 'Divinity 2: Ego Draconis'
+- 'Divinity II: Ego Draconis'
+https://www.youtube.com/watch?v=jP2CHO9yrl8:
+- Final Fantasy X
+- Final Fantasy 10
+https://www.youtube.com/watch?v=jRqXWj7TL5A:
+- Goldeneye
+https://www.youtube.com/watch?v=jTZEuazir4s:
+- Environmental Station Alpha
+https://www.youtube.com/watch?v=jWtiuVTe5kQ:
+- Equinox
+https://www.youtube.com/watch?v=jXGaW3dKaHs:
+- Mega Man 2
+- Mega Man II
+https://www.youtube.com/watch?v=jYFYsfEyi0c:
+- Ragnarok Online
+https://www.youtube.com/watch?v=j_8sYSOkwAg:
+- Professor Layton and the Curious Village
+https://www.youtube.com/watch?v=j_EH4xCh1_U:
+- Metroid Prime
+https://www.youtube.com/watch?v=jaG1I-7dYvY:
+- Earthbound
+https://www.youtube.com/watch?v=jfEZs-Ada78:
+- Jack Bros.
+https://www.youtube.com/watch?v=jgtKSnmM5oE:
+- Tetris
+https://www.youtube.com/watch?v=jhHfROLw4fA:
+- 'Donkey Kong Country: Tropical Freeze'
+https://www.youtube.com/watch?v=jhsNQ6r2fHE:
+- 3D Dot Game Heroes
+https://www.youtube.com/watch?v=jkWYvENgxwA:
+- Journey to Silius
+https://www.youtube.com/watch?v=jlFYSIyAGmA:
+- Donkey Kong Country 2
+- Donkey Kong Country II
+https://www.youtube.com/watch?v=jlcjrgSVkkc:
+- Mario Kart 8
+- Mario Kart VIII
+https://www.youtube.com/watch?v=jpghr0u8LCU:
+- Final Fantasy X
+- Final Fantasy 10
+https://www.youtube.com/watch?v=jv5_zzFZMtk:
+- Shadow of the Colossus
+https://www.youtube.com/watch?v=k09qvMpZYYo:
+- Secret of Mana
+https://www.youtube.com/watch?v=k0f4cCJqUbg:
+- Katamari Forever
+https://www.youtube.com/watch?v=k3m-_uCo-b8:
+- Mega Man
+https://www.youtube.com/watch?v=k4L8cq2vrlk:
+- Chrono Trigger
+https://www.youtube.com/watch?v=k4N3Go4wZCg:
+- 'Uncharted: Drake''s Fortune'
+https://www.youtube.com/watch?v=kA69u0-U-Vk:
+- MapleStory
+https://www.youtube.com/watch?v=kDssUvBiHFk:
+- Yoshi's Island
+https://www.youtube.com/watch?v=kEA-4iS0sco:
+- Skies of Arcadia
+https://www.youtube.com/watch?v=kJRiZaexNno:
+- Unlimited Saga
+https://www.youtube.com/watch?v=kN-jdHNOq8w:
+- Super Mario 64
+https://www.youtube.com/watch?v=kNDB4L0D2wg:
+- 'Everquest: Planes of Power'
+https://www.youtube.com/watch?v=kNPz77g5Xyk:
+- Super Castlevania IV
+- Super Castlevania 4
+https://www.youtube.com/watch?v=kNgI7N5k5Zo:
+- 'Atelier Iris 2: The Azoth of Destiny'
+- 'Atelier Iris II: The Azoth of Destiny'
+https://www.youtube.com/watch?v=kW63YiVf5I0:
+- Splatoon
+https://www.youtube.com/watch?v=kWRFPdhAFls:
+- 'Fire Emblem 4: Seisen no Keifu'
+- 'Fire Emblem IV: Seisen no Keifu'
+https://www.youtube.com/watch?v=khPWld3iA8g:
+- Max Payne 2
+- Max Payne II
+https://www.youtube.com/watch?v=ki_ralGwQN4:
+- Legend of Mana
+https://www.youtube.com/watch?v=kmkzuPrQHQM:
+- Yoshi's Island DS
+https://www.youtube.com/watch?v=koHO9vN6t4I:
+- Giftpia
+https://www.youtube.com/watch?v=krmNfjbfJUQ:
+- Midnight Resistance
+https://www.youtube.com/watch?v=ks0xlnvjwMo:
+- Final Fantasy VIII
+- Final Fantasy 8
+https://www.youtube.com/watch?v=ks74Hlce8yw:
+- Super Mario 3D World
+https://www.youtube.com/watch?v=ksq6wWbVsPY:
+- Tekken 2
+- Tekken II
+https://www.youtube.com/watch?v=ktnL6toFPCo:
+- PaRappa the Rapper
+https://www.youtube.com/watch?v=ku0pS3ko5CU:
+- 'The Legend of Zelda: Minish Cap'
+- minish cap
+https://www.youtube.com/watch?v=kx580yOvKxs:
+- Final Fantasy VI
+- Final Fantasy 6
+https://www.youtube.com/watch?v=kyaC_jSV_fw:
+- Nostalgia
+https://www.youtube.com/watch?v=kzId-AbowC4:
+- Xenosaga III
+- Xenosaga 3
+https://www.youtube.com/watch?v=kzUYJAaiEvA:
+- ICO
+https://www.youtube.com/watch?v=l1O9XZupPJY:
+- Tomb Raider III
+- Tomb Raider 3
+https://www.youtube.com/watch?v=l1UCISJoDTU:
+- Xenoblade Chronicles 2
+- Xenoblade Chronicles II
+https://www.youtube.com/watch?v=l5VK4kR1YTw:
+- Banjo-Kazooie
+https://www.youtube.com/watch?v=l5WLVNhczjE:
+- 'Phoenix Wright: Justice for All'
+https://www.youtube.com/watch?v=lBEvtA4Uuwk:
+- Wild Arms
+https://www.youtube.com/watch?v=lFOBRmPK-Qs:
+- Pokemon
+https://www.youtube.com/watch?v=lJc9ajk9bXs:
+- Sonic the Hedgehog 2
+- Sonic the Hedgehog II
+https://www.youtube.com/watch?v=lLP6Y-1_P1g:
+- Asterix & Obelix
+- asterix and obelix
+https://www.youtube.com/watch?v=lLniW316mUk:
+- Suikoden III
+- Suikoden 3
+https://www.youtube.com/watch?v=lOaWT7Y7ZNo:
+- Mirror's Edge
+https://www.youtube.com/watch?v=lPFndohdCuI:
+- Super Mario RPG
+https://www.youtube.com/watch?v=lXBFPdRiZMs:
+- 'Dragon Ball Z: Super Butoden'
+https://www.youtube.com/watch?v=lZUgl5vm6tk:
+- Trip World
+https://www.youtube.com/watch?v=lb88VsHVDbw:
+- 'The Legend of Zelda: Ocarina of Time'
+- ocarina of time
+https://www.youtube.com/watch?v=lcOky3CKCa0:
+- Yoshi's Woolly World
+https://www.youtube.com/watch?v=lfudDzITiw8:
+- Opoona
+https://www.youtube.com/watch?v=lhVk4Q47cgQ:
+- Shadow of the Colossus
+https://www.youtube.com/watch?v=lmhxytynQOE:
+- Romancing Saga 3
+- Romancing Saga III
+https://www.youtube.com/watch?v=loh0SQ_SF2s:
+- Xenogears
+https://www.youtube.com/watch?v=lwUtHErD2Yo:
+- Furi
+https://www.youtube.com/watch?v=lyduqdKbGSw:
+- Create
+https://www.youtube.com/watch?v=lzhkFmiTB_8:
+- Grandia II
+- Grandia 2
+https://www.youtube.com/watch?v=m-VXBxd2pmo:
+- Asterix
+https://www.youtube.com/watch?v=m09KrtCgiCA:
+- Final Fantasy Origins
+- final fantasy origins
+https://www.youtube.com/watch?v=m2Vlxyd9Wjw:
+- Dragon Quest V
+- Dragon Quest 5
+https://www.youtube.com/watch?v=m2q8wtFHbyY:
+- 'La Pucelle: Tactics'
+https://www.youtube.com/watch?v=m4NfokfW3jw:
+- 'Dragon Ball Z: The Legacy of Goku II'
+- 'Dragon Ball Z: The Legacy of Goku 2'
+https://www.youtube.com/watch?v=m4uR39jNeGE:
+- Wild Arms 3
+- Wild Arms III
+https://www.youtube.com/watch?v=m57kb5d3wZ4:
+- Chrono Cross
+https://www.youtube.com/watch?v=m6HgGxxjyrU:
+- Tales of Symphonia
+https://www.youtube.com/watch?v=m9kEp_sNLJo:
+- Illusion of Gaia
+https://www.youtube.com/watch?v=mA2rTmfT1T8:
+- Valdis Story
+https://www.youtube.com/watch?v=mASkgOcUdOQ:
+- Final Fantasy V
+- Final Fantasy 5
+https://www.youtube.com/watch?v=mDw3F-Gt4bQ:
+- Knuckles Chaotix
+https://www.youtube.com/watch?v=mG1D80dMhKo:
+- Asterix
+https://www.youtube.com/watch?v=mG9BcQEApoI:
+- 'Castlevania: Dawn of Sorrow'
+https://www.youtube.com/watch?v=mHUE5GkAUXo:
+- Wild Arms 4
+- Wild Arms IV
+https://www.youtube.com/watch?v=mJCRoXkJohc:
+- Bomberman 64
+https://www.youtube.com/watch?v=mNDaE4dD8dE:
+- Monster Rancher 4
+- Monster Rancher IV
+https://www.youtube.com/watch?v=mPhy1ylhj7E:
+- Earthbound
+https://www.youtube.com/watch?v=mRGdr6iahg8:
+- 'Kirby 64: The Crystal Shards'
+https://www.youtube.com/watch?v=mSXFiU0mqik:
+- Chrono Cross
+https://www.youtube.com/watch?v=mTnXMcxBwcE:
+- 'The Legend of Zelda: Ocarina of Time'
+- ocarina of time
+https://www.youtube.com/watch?v=mWJeicPtar0:
+- NieR
+https://www.youtube.com/watch?v=mX78VEVMSVo:
+- Arcana
+https://www.youtube.com/watch?v=m_kAJLsSGz8:
+- 'Shantae: Risky''s Revenge'
+https://www.youtube.com/watch?v=mbPpGeTPbjM:
+- Eternal Darkness
+https://www.youtube.com/watch?v=mfOHgEeuEHE:
+- Umineko no Naku Koro ni
+https://www.youtube.com/watch?v=mh9iibxyg14:
+- Super Mario RPG
+https://www.youtube.com/watch?v=minJMBk4V9g:
+- 'Star Trek: Deep Space Nine'
+https://www.youtube.com/watch?v=mkTkAkcj6mQ:
+- 'The Elder Scrolls IV: Oblivion'
+- 'The Elder Scrolls 4: Oblivion'
+- Oblivion
+https://www.youtube.com/watch?v=mm-nVnt8L0g:
+- Earthbound
+https://www.youtube.com/watch?v=mnPqUs4DZkI:
+- 'Turok: Dinosaur Hunter'
+https://www.youtube.com/watch?v=mngXThXnpwY:
+- Legendary Wings
+https://www.youtube.com/watch?v=moDNdAfZkww:
+- Minecraft
+https://www.youtube.com/watch?v=mpt-RXhdZzQ:
+- Mega Man X
+https://www.youtube.com/watch?v=mr1anFEQV9s:
+- Alundra
+https://www.youtube.com/watch?v=msEbmIgnaSI:
+- Breath of Fire IV
+- Breath of Fire 4
+https://www.youtube.com/watch?v=mvcctOvLAh4:
+- Donkey Kong Country
+https://www.youtube.com/watch?v=mwWcWgKjN5Y:
+- F.E.A.R.
+https://www.youtube.com/watch?v=mwdGO2vfAho:
+- 'Castlevania: Portrait of Ruin'
+https://www.youtube.com/watch?v=myZzE9AYI90:
+- Silent Hill 2
+- Silent Hill II
+https://www.youtube.com/watch?v=myjd1MnZx5Y:
+- Dragon Quest IX
+- Dragon Quest 9
+https://www.youtube.com/watch?v=mzFGgwKMOKw:
+- Super Mario Land 2
+- Super Mario Land II
+https://www.youtube.com/watch?v=n10VyIRJj58:
+- Xenosaga III
+- Xenosaga 3
+https://www.youtube.com/watch?v=n2CyG6S363M:
+- Final Fantasy VII
+- Final Fantasy 7
+https://www.youtube.com/watch?v=n4Pun5BDH0g:
+- Okamiden
+https://www.youtube.com/watch?v=n5L0ZpcDsZw:
+- Lufia II
+- Lufia 2
+https://www.youtube.com/watch?v=n5eb_qUg5rY:
+- Jazz Jackrabbit 2
+- Jazz Jackrabbit II
+https://www.youtube.com/watch?v=n6f-bb8DZ_k:
+- Street Fighter II
+- Street Fighter 2
+https://www.youtube.com/watch?v=n9QNuhs__8s:
+- 'Magna Carta: Tears of Blood'
+https://www.youtube.com/watch?v=nBWjVglSVGk:
+- The Flintstones
+https://www.youtube.com/watch?v=nEBoB571s9w:
+- Asterix & Obelix
+- asterix and obelix
+https://www.youtube.com/watch?v=nFsoCfGij0Y:
+- 'Batman: Return of the Joker'
+https://www.youtube.com/watch?v=nH7ma8TPnE8:
+- The Legend of Zelda
+https://www.youtube.com/watch?v=nJN-xeA7ZJo:
+- Treasure Master
+https://www.youtube.com/watch?v=nJgwF3gw9Xg:
+- 'Zelda II: The Adventure of Link'
+- 'Zelda 2: The Adventure of Link'
+https://www.youtube.com/watch?v=nK-IjRF-hs4:
+- 'Spyro: A Hero''s Tail'
+https://www.youtube.com/watch?v=nL3YMZ-Br0o:
+- Child of Light
+https://www.youtube.com/watch?v=nL5Y2NmHn38:
+- Fallout 4
+- Fallout IV
+https://www.youtube.com/watch?v=nO3lPvYVxzs:
+- Super Mario Galaxy
+https://www.youtube.com/watch?v=nOeGX-O_QRU:
+- Top Gear
+https://www.youtube.com/watch?v=nQC4AYA14UU:
+- Battery Jam
+https://www.youtube.com/watch?v=nRw54IXvpE8:
+- Gitaroo Man
+https://www.youtube.com/watch?v=nUScyv5DcIo:
+- Super Stickman Golf 2
+- Super Stickman Golf II
+https://www.youtube.com/watch?v=nUbwvWQOOvU:
+- Metal Gear Solid 3
+- Metal Gear Solid III
+https://www.youtube.com/watch?v=nUiZp8hb42I:
+- Intelligent Qube
+https://www.youtube.com/watch?v=nY8JLHPaN4c:
+- 'Ape Escape: Million Monkeys'
+https://www.youtube.com/watch?v=naIUUMurT5U:
+- Lara Croft GO
+https://www.youtube.com/watch?v=nea0ze3wh6k:
+- Toy Story 2
+- Toy Story II
+https://www.youtube.com/watch?v=nesYhwViPkc:
+- 'The Legend of Zelda: Tri Force Heroes'
+- tri force heroes
+https://www.youtube.com/watch?v=ng442hwhhAw:
+- Super Mario Bros 3
+- Super Mario Bros III
+https://www.youtube.com/watch?v=nj2d8U-CO9E:
+- Wild Arms 2
+- Wild Arms II
+https://www.youtube.com/watch?v=njoqMF6xebE:
+- 'Chip ''n Dale: Rescue Rangers'
+https://www.youtube.com/watch?v=nl57xFzDIM0:
+- Darksiders II
+- Darksiders 2
+https://www.youtube.com/watch?v=novAJAlNKHk:
+- Wild Arms 4
+- Wild Arms IV
+https://www.youtube.com/watch?v=nrNPfvs4Amc:
+- Super Turrican 2
+- Super Turrican II
+https://www.youtube.com/watch?v=nuUYTK61228:
+- Hyper Light Drifter
+https://www.youtube.com/watch?v=nuXnaXgt2MM:
+- Super Mario 64
+https://www.youtube.com/watch?v=nvv6JrhcQSo:
+- 'The Legend of Zelda: Spirit Tracks'
+- spirit tracks
+https://www.youtube.com/watch?v=ny2ludAFStY:
+- Sonic Triple Trouble
+https://www.youtube.com/watch?v=o0t8vHJtaKk:
+- Rayman
+https://www.youtube.com/watch?v=o5tflPmrT5c:
+- I am Setsuna
+- 1 am Setsuna
+https://www.youtube.com/watch?v=o8cQl5pL6R8:
+- Street Fighter IV
+- Street Fighter 4
+https://www.youtube.com/watch?v=oEEm45iRylE:
+- Super Princess Peach
+https://www.youtube.com/watch?v=oFbVhFlqt3k:
+- Xenogears
+https://www.youtube.com/watch?v=oHjt7i5nt8w:
+- Final Fantasy VI
+- Final Fantasy 6
+https://www.youtube.com/watch?v=oIPYptk_eJE:
+- 'Starcraft II: Wings of Liberty'
+- 'Starcraft 2: Wings of Liberty'
+https://www.youtube.com/watch?v=oJFAAWYju6c:
+- Ys Origin
+https://www.youtube.com/watch?v=oNjnN_p5Clo:
+- Bomberman 64
+https://www.youtube.com/watch?v=oPjI-qh3QWQ:
+- Opoona
+https://www.youtube.com/watch?v=oQVscNAg1cQ:
+- The Adventures of Bayou Billy
+https://www.youtube.com/watch?v=oYOdCD4mWsk:
+- Donkey Kong Country 2
+- Donkey Kong Country II
+https://www.youtube.com/watch?v=o_vtaSXF0WU:
+- 'Arc the Lad IV: Twilight of the Spirits'
+- 'Arc the Lad 4: Twilight of the Spirits'
+https://www.youtube.com/watch?v=obPhMUJ8G9k:
+- Mother 3
+- Mother III
+https://www.youtube.com/watch?v=ocVRCl9Kcus:
+- Shatter
+https://www.youtube.com/watch?v=odyd0b_WZ9E:
+- Dr. Mario
+https://www.youtube.com/watch?v=oeBGiKhMy-Q:
+- Chrono Cross
+https://www.youtube.com/watch?v=oksAhZuJ55I:
+- Etrian Odyssey II
+- Etrian Odyssey 2
+https://www.youtube.com/watch?v=ol2zCdVl3pQ:
+- Final Fantasy Mystic Quest
+https://www.youtube.com/watch?v=ooohjN5k5QE:
+- Cthulhu Saves the World
+https://www.youtube.com/watch?v=oseD00muRc8:
+- 'Phoenix Wright: Trials and Tribulations'
+https://www.youtube.com/watch?v=ouV9XFnqgio:
+- Final Fantasy Tactics
+https://www.youtube.com/watch?v=oubq22rV9sE:
+- Top Gear Rally
+https://www.youtube.com/watch?v=p-GeFCcmGzk:
+- World of Warcraft
+https://www.youtube.com/watch?v=p-dor7Fj3GM:
+- 'The Legend of Zelda: Majora''s Mask'
+- 'majora''s mask'
+https://www.youtube.com/watch?v=p2vEakoOIdU:
+- Final Fantasy Mystic Quest
+https://www.youtube.com/watch?v=p48dpXQixgk:
+- Beyond Good & Evil
+- beyond good and evil
+https://www.youtube.com/watch?v=p5ObFGkl_-4:
+- 'The Legend of Zelda: A Link to the Past'
+- a link to the past
+https://www.youtube.com/watch?v=p6LMIrRG16c:
+- Asterix & Obelix
+- asterix and obelix
+https://www.youtube.com/watch?v=p6alE3r44-E:
+- Final Fantasy IX
+- Final Fantasy 9
+https://www.youtube.com/watch?v=p9Nt449SP24:
+- Guardian's Crusade
+https://www.youtube.com/watch?v=pAlhuLOMFbU:
+- World of Goo
+https://www.youtube.com/watch?v=pDW_nN8EkjM:
+- Wild Guns
+https://www.youtube.com/watch?v=pDznNHFE5rA:
+- Final Fantasy Tactics Advance
+https://www.youtube.com/watch?v=pETxZAqgYgQ:
+- 'Zelda II: The Adventure of Link'
+- 'Zelda 2: The Adventure of Link'
+https://www.youtube.com/watch?v=pI4lS0lxV18:
+- Terraria
+https://www.youtube.com/watch?v=pIC5D1F9EQQ:
+- 'Zelda II: The Adventure of Link'
+- 'Zelda 2: The Adventure of Link'
+https://www.youtube.com/watch?v=pOK5gWEnEPY:
+- Resident Evil REmake
+https://www.youtube.com/watch?v=pQVuAGSKofs:
+- Super Castlevania IV
+- Super Castlevania 4
+https://www.youtube.com/watch?v=pTp4d38cPtc:
+- Super Metroid
+https://www.youtube.com/watch?v=pWVxGmFaNFs:
+- Ragnarok Online II
+- Ragnarok Online 2
+https://www.youtube.com/watch?v=pYSlMtpYKgw:
+- Final Fantasy XII
+- Final Fantasy 12
+https://www.youtube.com/watch?v=pZBBZ77gob4:
+- Xenoblade Chronicles
+https://www.youtube.com/watch?v=pb3EJpfIYGc:
+- Persona 5
+- Persona V
+https://www.youtube.com/watch?v=pbmKt4bb5cs:
+- Brave Fencer Musashi
+https://www.youtube.com/watch?v=pfe5a22BHGk:
+- Skies of Arcadia
+https://www.youtube.com/watch?v=pgacxbSdObw:
+- Breath of Fire IV
+- Breath of Fire 4
+https://www.youtube.com/watch?v=pieNm70nCIQ:
+- Baten Kaitos
+https://www.youtube.com/watch?v=pmKP4hR2Td0:
+- Mario Paint
+https://www.youtube.com/watch?v=pmQu1KRUw7U:
+- New Super Mario Bros Wii
+https://www.youtube.com/watch?v=pnS50Lmz6Y8:
+- 'Beyond: Two Souls'
+https://www.youtube.com/watch?v=pqCxONuUK3s:
+- 'Persona Q: Shadow of the Labyrinth'
+https://www.youtube.com/watch?v=pq_nXXuZTtA:
+- Phantasy Star Online
+https://www.youtube.com/watch?v=prRDZPbuDcI:
+- Guilty Gear XX Reload (Korean Version)
+- Guilty Gear 20 Reload
+- guilty gear xx reload
+https://www.youtube.com/watch?v=prc_7w9i_0Q:
+- Super Mario RPG
+https://www.youtube.com/watch?v=ptr9JCSxeug:
+- Popful Mail
+https://www.youtube.com/watch?v=pucNWokmRr0:
+- Tales of Eternia
+https://www.youtube.com/watch?v=pwIy1Oto4Qc:
+- Dark Cloud
+https://www.youtube.com/watch?v=pxAH2U75BoM:
+- Guild Wars 2
+- Guild Wars II
+https://www.youtube.com/watch?v=pxcx_BACNQE:
+- Double Dragon
+https://www.youtube.com/watch?v=pyO56W8cysw:
+- Machinarium
+https://www.youtube.com/watch?v=q-Fc23Ksh7I:
+- Final Fantasy V
+- Final Fantasy 5
+https://www.youtube.com/watch?v=q-NUnKMEXnM:
+- Evoland II
+- Evoland 2
+https://www.youtube.com/watch?v=q5vG69CXgRs:
+- Pokemon Ruby / Sapphire / Emerald
+- pokemon ruby
+- pokemon sapphire
+- pokemon emerald
+https://www.youtube.com/watch?v=q6btinyHMAg:
+- Okamiden
+https://www.youtube.com/watch?v=q87OASJOKOg:
+- 'Castlevania: Aria of Sorrow'
+https://www.youtube.com/watch?v=q8ZKmxmWqhY:
+- Massive Assault
+https://www.youtube.com/watch?v=qBC7aIoDSHU:
+- 'Minecraft: Story Mode'
+https://www.youtube.com/watch?v=qBh4tvmT6N4:
+- Max Payne 3
+- Max Payne III
+https://www.youtube.com/watch?v=qEozZuqRbgQ:
+- Snowboard Kids 2
+- Snowboard Kids II
+https://www.youtube.com/watch?v=qH8MFPIvFpU:
+- Xenogears
+https://www.youtube.com/watch?v=qJMfgv5YFog:
+- Katamari Damacy
+https://www.youtube.com/watch?v=qMkvXCaxXOg:
+- Senko no Ronde DUO
+https://www.youtube.com/watch?v=qN32pn9abhI:
+- Secret of Mana
+https://www.youtube.com/watch?v=qNIAYDOCfGU:
+- Guacamelee!
+https://www.youtube.com/watch?v=qP_40IXc-UA:
+- Mutant Mudds
+https://www.youtube.com/watch?v=qPgoOxGb6vk:
+- For the Frog the Bell Tolls
+https://www.youtube.com/watch?v=qR8x99ylgqc:
+- Axiom Verge
+https://www.youtube.com/watch?v=q_ClDJNpFV8:
+- Silent Hill 3
+- Silent Hill III
+https://www.youtube.com/watch?v=qcf1CdKVATo:
+- Jurassic Park
+https://www.youtube.com/watch?v=qgJ0yQNX2cI:
+- A Boy And His Blob
+https://www.youtube.com/watch?v=qhYbg4fsPiE:
+- Pokemon Quest
+https://www.youtube.com/watch?v=qjNHwF3R-kg:
+- Starbound
+https://www.youtube.com/watch?v=qmeaNH7mWAY:
+- 'Animal Crossing: New Leaf'
+https://www.youtube.com/watch?v=qmvx5zT88ww:
+- Sonic the Hedgehog
+https://www.youtube.com/watch?v=qnJDEN-JOzY:
+- Ragnarok Online II
+- Ragnarok Online 2
+https://www.youtube.com/watch?v=qnvYRm_8Oy8:
+- Shenmue
+https://www.youtube.com/watch?v=qqa_pXXSMDg:
+- Panzer Dragoon Saga
+https://www.youtube.com/watch?v=qrmzQOAASXo:
+- Kirby's Return to Dreamland
+https://www.youtube.com/watch?v=qs3lqJnkMX8:
+- Kirby's Epic Yarn
+https://www.youtube.com/watch?v=qsDU8LC5PLI:
+- 'Tactics Ogre: Let Us Cling Together'
+https://www.youtube.com/watch?v=qtrFSnyvEX0:
+- Demon's Crest
+https://www.youtube.com/watch?v=qyrLcNCBnPQ:
+- Sonic Unleashed
+https://www.youtube.com/watch?v=qzhWuriX9Ws:
+- Xenogears
+https://www.youtube.com/watch?v=r-zRrHICsw0:
+- LED Storm
+https://www.youtube.com/watch?v=r5A1MkzCX-s:
+- Castlevania
+https://www.youtube.com/watch?v=r5n9re80hcQ:
+- Dragon Quest VII 3DS
+- Dragon Quest 7 3DS
+https://www.youtube.com/watch?v=r6F92CUYjbI:
+- Titan Souls
+https://www.youtube.com/watch?v=r6dC9N4WgSY:
+- Lisa the Joyful
+https://www.youtube.com/watch?v=r7owYv6_tuw:
+- Tobal No. 1
+- Tobal No. I
+https://www.youtube.com/watch?v=rACVXsRX6IU:
+- Yoshi's Island DS
+https://www.youtube.com/watch?v=rADeZTd9qBc:
+- 'Ace Combat 5: The Unsung War'
+- 'Ace Combat V: The Unsung War'
+https://www.youtube.com/watch?v=rAJS58eviIk:
+- Ragnarok Online II
+- Ragnarok Online 2
+https://www.youtube.com/watch?v=rEE6yp873B4:
+- Contact
+https://www.youtube.com/watch?v=rFIzW_ET_6Q:
+- Shadow Hearts III
+- Shadow Hearts 3
+https://www.youtube.com/watch?v=rKGlXub23pw:
+- 'Ys VIII: Lacrimosa of Dana'
+- 'Ys 8: Lacrimosa of Dana'
+https://www.youtube.com/watch?v=rLM_wOEsOUk:
+- F-Zero
+https://www.youtube.com/watch?v=rLXgXfncaIA:
+- Anodyne
+https://www.youtube.com/watch?v=rLuP2pUwK8M:
+- Pop'n Music GB
+https://www.youtube.com/watch?v=rMxIyQqeGZ8:
+- Soma Bringer
+https://www.youtube.com/watch?v=rSBh2ZUKuq4:
+- 'Castlevania: Lament of Innocence'
+https://www.youtube.com/watch?v=rVmt7axswLo:
+- Castlevania Curse of Darkness
+https://www.youtube.com/watch?v=rXNrtuz0vl4:
+- Mega Man ZX
+https://www.youtube.com/watch?v=rXlxR7sH3iU:
+- Katamari Damacy
+https://www.youtube.com/watch?v=rY3n4qQZTWY:
+- Dragon Quest III
+- Dragon Quest 3
+https://www.youtube.com/watch?v=rZ2sNdqELMY:
+- Pikmin
+https://www.youtube.com/watch?v=rZn6QE_iVzA:
+- Tekken 5
+- Tekken V
+https://www.youtube.com/watch?v=rb9yuLqoryU:
+- Spelunky
+https://www.youtube.com/watch?v=rcnkZCiwKPs:
+- Trine
+https://www.youtube.com/watch?v=rd3QIW5ds4Q:
+- Spanky's Quest
+https://www.youtube.com/watch?v=reOJi31i9JM:
+- Chrono Trigger
+https://www.youtube.com/watch?v=rg_6OKlgjGE:
+- Shin Megami Tensei IV
+- Shin Megami Tensei 4
+https://www.youtube.com/watch?v=rhCzbGrG7DU:
+- Super Mario Galaxy
+https://www.youtube.com/watch?v=rhaQM_Vpiko:
+- Outlaws
+https://www.youtube.com/watch?v=rhbGqHurV5I:
+- Castlevania II
+- Castlevania 2
+https://www.youtube.com/watch?v=rltCi97DQ7Y:
+- Xenosaga II
+- Xenosaga 2
+https://www.youtube.com/watch?v=ro4ceM17QzY:
+- Sonic Lost World
+https://www.youtube.com/watch?v=roRsBf_kQps:
+- Xenoblade Chronicles
+https://www.youtube.com/watch?v=rt0hrHroPz8:
+- 'Phoenix Wright: Ace Attorney'
+https://www.youtube.com/watch?v=ru4pkshvp7o:
+- Rayman Origins
+https://www.youtube.com/watch?v=rzLD0vbOoco:
+- 'Dracula X: Rondo of Blood'
+https://www.youtube.com/watch?v=rz_aiHo3aJg:
+- ActRaiser
+https://www.youtube.com/watch?v=s-6L1lM_x7k:
+- Final Fantasy XI
+- Final Fantasy 11
+https://www.youtube.com/watch?v=s-kTMBeDy40:
+- Grandia
+https://www.youtube.com/watch?v=s0mCsa2q2a4:
+- Donkey Kong Country 3
+- Donkey Kong Country III
+https://www.youtube.com/watch?v=s25IVZL0cuE:
+- 'Castlevania: Portrait of Ruin'
+https://www.youtube.com/watch?v=s3ja0vTezhs:
+- Mother 3
+- Mother III
+https://www.youtube.com/watch?v=s4pG2_UOel4:
+- Castlevania III
+- Castlevania 3
+https://www.youtube.com/watch?v=s6D8clnSE_I:
+- Pokemon
+https://www.youtube.com/watch?v=s7mVzuPSvSY:
+- Gravity Rush
+https://www.youtube.com/watch?v=sA_8Y30Lk2Q:
+- 'Ys VI: The Ark of Napishtim'
+- 'Ys 6: The Ark of Napishtim'
+https://www.youtube.com/watch?v=sBkqcoD53eI:
+- Breath of Fire II
+- Breath of Fire 2
+https://www.youtube.com/watch?v=sC4xMC4sISU:
+- Bioshock
+https://www.youtube.com/watch?v=sHQslJ2FaaM:
+- Krater
+https://www.youtube.com/watch?v=sHduBNdadTA:
+- 'Atelier Iris 2: The Azoth of Destiny'
+- 'Atelier Iris II: The Azoth of Destiny'
+https://www.youtube.com/watch?v=sIXnwB5AyvM:
+- Alundra
+https://www.youtube.com/watch?v=sMcx87rq0oA:
+- Seiken Densetsu 3
+- Seiken Densetsu III
+https://www.youtube.com/watch?v=sN8gtvYdqY4:
+- Opoona
+https://www.youtube.com/watch?v=sOgo6fXbJI4:
+- Final Fantasy Mystic Quest
+https://www.youtube.com/watch?v=sQ4aADxHssY:
+- Romance of the Three Kingdoms V
+- Romance of the Three Kingdoms 5
+https://www.youtube.com/watch?v=sRLoAqxsScI:
+- 'Tintin: Prisoners of the Sun'
+https://www.youtube.com/watch?v=sSkcY8zPWIY:
+- 'The Legend of Zelda: Skyward Sword'
+- skyward sword
+https://www.youtube.com/watch?v=sUc3p5sojmw:
+- 'Zelda II: The Adventure of Link'
+- 'Zelda 2: The Adventure of Link'
+https://www.youtube.com/watch?v=sVnly-OASsI:
+- Lost Odyssey
+https://www.youtube.com/watch?v=sYVOk6kU3TY:
+- 'South Park: The Stick of Truth'
+https://www.youtube.com/watch?v=sZU8xWDH68w:
+- The World Ends With You
+https://www.youtube.com/watch?v=s_Z71tcVVVg:
+- Super Mario Sunshine
+https://www.youtube.com/watch?v=seJszC75yCg:
+- Final Fantasy VII
+- Final Fantasy 7
+https://www.youtube.com/watch?v=seaPEjQkn74:
+- Emil Chronicle Online
+https://www.youtube.com/watch?v=shx_nhWmZ-I:
+- 'Adventure Time: Hey Ice King! Why''d You Steal Our Garbage?!'
+https://www.youtube.com/watch?v=sl22D3F1954:
+- Marvel vs Capcom 3
+- Marvel vs Capcom III
+https://www.youtube.com/watch?v=snsS40I9-Ts:
+- Shovel Knight
+https://www.youtube.com/watch?v=sqIb-ZhY85Q:
+- Mega Man 5
+- Mega Man V
+https://www.youtube.com/watch?v=su8bqSqIGs0:
+- Chrono Trigger
+https://www.youtube.com/watch?v=sx6L5b-ACVk:
+- 'The Legend of Zelda: A Link to the Past'
+- a link to the past
+https://www.youtube.com/watch?v=sxcTW6DlNqA:
+- Super Adventure Island
+https://www.youtube.com/watch?v=szxxAefjpXw:
+- 'Mario & Luigi: Bowser''s Inside Story'
+- 'mario and luigi: bower''s inside story'
+https://www.youtube.com/watch?v=t6-MOj2mkgE:
+- '999: Nine Hours, Nine Persons, Nine Doors'
+https://www.youtube.com/watch?v=t6YVE2kp8gs:
+- Earthbound
+https://www.youtube.com/watch?v=t97-JQtcpRA:
+- Nostalgia
+https://www.youtube.com/watch?v=t9uUD60LS38:
+- 'SMT: Digital Devil Saga 2'
+- 'SMT: Digital Devil Saga II'
+https://www.youtube.com/watch?v=tBr9OyNHRjA:
+- 'Sang-Froid: Tales of Werewolves'
+https://www.youtube.com/watch?v=tDuCLC_sZZY:
+- 'Divinity: Original Sin'
+https://www.youtube.com/watch?v=tEXf3XFGFrY:
+- Sonic Unleashed
+https://www.youtube.com/watch?v=tFsVKUoGJZs:
+- Deus Ex
+https://www.youtube.com/watch?v=tIiNJgLECK0:
+- Super Mario RPG
+https://www.youtube.com/watch?v=tKMWMS7O50g:
+- Pokemon Mystery Dungeon
+https://www.youtube.com/watch?v=tKmmcOH2xao:
+- VVVVVV
+https://www.youtube.com/watch?v=tL3zvui1chQ:
+- 'The Legend of Zelda: Majora''s Mask'
+- 'majora''s mask'
+https://www.youtube.com/watch?v=tNvY96zReis:
+- Metal Gear Solid
+https://www.youtube.com/watch?v=tQYCO5rHSQ8:
+- Donkey Kong Land
+https://www.youtube.com/watch?v=tU3ZA2tFxDU:
+- Fatal Frame
+https://www.youtube.com/watch?v=tVnjViENsds:
+- Super Robot Wars 4
+- Super Robot Wars IV
+https://www.youtube.com/watch?v=tWopcEQUkhg:
+- Super Smash Bros. Wii U
+https://www.youtube.com/watch?v=tXnCJLLZIvc:
+- 'Paper Mario: The Thousand Year Door'
+https://www.youtube.com/watch?v=tbVLmRfeIQg:
+- Alundra
+https://www.youtube.com/watch?v=tdsnX2Z0a3g:
+- Blast Corps
+https://www.youtube.com/watch?v=tgxFLMM9TLw:
+- Lost Odyssey
+https://www.youtube.com/watch?v=tiL0mhmOOnU:
+- Sleepwalker
+https://www.youtube.com/watch?v=tiwsAs6WVyQ:
+- Castlevania II
+- Castlevania 2
+https://www.youtube.com/watch?v=tj3ks8GfBQU:
+- Guilty Gear XX Reload (Korean Version)
+- Guilty Gear 20 Reload
+- guilty gear xx reload
+https://www.youtube.com/watch?v=tk61GaJLsOQ:
+- Mother 3
+- Mother III
+https://www.youtube.com/watch?v=tkj57nM0OqQ:
+- Sonic the Hedgehog 2
+- Sonic the Hedgehog II
+https://www.youtube.com/watch?v=tlY88rlNnEE:
+- Xenogears
+https://www.youtube.com/watch?v=tnAXbjXucPc:
+- Battletoads & Double Dragon
+- battletoads
+- double dragon
+https://www.youtube.com/watch?v=tqyigq3uWzo:
+- Perfect Dark
+https://www.youtube.com/watch?v=tvGn7jf7t8c:
+- Shinobi
+https://www.youtube.com/watch?v=tvjGxtbJpMk:
+- Parasite Eve
+https://www.youtube.com/watch?v=ty4CBnWeEKE:
+- Mario Kart 64
+https://www.youtube.com/watch?v=tzi9trLh9PE:
+- Blue Dragon
+https://www.youtube.com/watch?v=u3S8CGo_klk:
+- Radical Dreamers
+https://www.youtube.com/watch?v=u4cv8dOFQsc:
+- Silent Hill 3
+- Silent Hill III
+https://www.youtube.com/watch?v=u5v8qTkf-yk:
+- Super Smash Bros. Brawl
+https://www.youtube.com/watch?v=u6Fa28hef7I:
+- Last Bible III
+- Last Bible 3
+https://www.youtube.com/watch?v=uDwLy1_6nDw:
+- F-Zero
+https://www.youtube.com/watch?v=uDzUf4I751w:
+- Mega Man Battle Network
+https://www.youtube.com/watch?v=uKK631j464M:
+- 'Castlevania: Symphony of the Night'
+https://www.youtube.com/watch?v=uKWkvGnNffU:
+- Dustforce
+https://www.youtube.com/watch?v=uM3dR2VbMck:
+- Super Stickman Golf 2
+- Super Stickman Golf II
+https://www.youtube.com/watch?v=uPU4gCjrDqg:
+- StarTropics
+https://www.youtube.com/watch?v=uSOspFMHVls:
+- Super Mario Bros 2
+- Super Mario Bros II
+https://www.youtube.com/watch?v=uTRjJj4UeCg:
+- Shovel Knight
+https://www.youtube.com/watch?v=uUA40z9kT6w:
+- Tomb Raider Legend
+https://www.youtube.com/watch?v=uURUC6yEMZc:
+- Yooka-Laylee
+https://www.youtube.com/watch?v=uV_g76ThygI:
+- Xenosaga III
+- Xenosaga 3
+https://www.youtube.com/watch?v=uX-Dk8gBgg8:
+- Valdis Story
+https://www.youtube.com/watch?v=uYX350EdM-8:
+- Secret of Mana
+https://www.youtube.com/watch?v=uYcqP1TWYOE:
+- Soul Blade
+https://www.youtube.com/watch?v=ucXYUeyQ6iM:
+- Pop'n Music 2
+- Pop'n Music II
+https://www.youtube.com/watch?v=udEC_I8my9Y:
+- Final Fantasy X
+- Final Fantasy 10
+https://www.youtube.com/watch?v=udNOf4W52hg:
+- Dragon Quest III
+- Dragon Quest 3
+https://www.youtube.com/watch?v=udO3kaNWEsI:
+- Xenoblade Chronicles
+https://www.youtube.com/watch?v=uixqfTElRuI:
+- 'The Legend of Zelda: Wind Waker'
+- 'wind waker'
+https://www.youtube.com/watch?v=uj2mhutaEGA:
+- Ghouls 'n' Ghosts
+https://www.youtube.com/watch?v=ujverEHBzt8:
+- F-Zero GX
+https://www.youtube.com/watch?v=umh0xNPh-pY:
+- Okami
+https://www.youtube.com/watch?v=un-CZxdgudA:
+- Vortex
+https://www.youtube.com/watch?v=ung2q_BVXWY:
+- Nora to Toki no Koubou
+https://www.youtube.com/watch?v=uvRU3gsmXx4:
+- 'Qbeh-1: The Atlas Cube'
+- 'Qbeh-I: The Atlas Cube'
+https://www.youtube.com/watch?v=uwB0T1rExMc:
+- Drakkhen
+https://www.youtube.com/watch?v=uxETfaBcSYo:
+- Grandia II
+- Grandia 2
+https://www.youtube.com/watch?v=uy2OQ0waaPo:
+- Secret of Evermore
+https://www.youtube.com/watch?v=v-h3QCB_Pig:
+- Ninja Gaiden II
+- Ninja Gaiden 2
+https://www.youtube.com/watch?v=v02ZFogqSS8:
+- Pokemon Diamond / Pearl / Platinum
+- pokemon diamond
+- pokemon pearl
+- pokemon platinum
+https://www.youtube.com/watch?v=v0toUGs93No:
+- 'Command & Conquer: Tiberian Sun'
+- 'command and conquer: tiberian sun'
+https://www.youtube.com/watch?v=v4fgFmfuzqc:
+- Final Fantasy X
+- Final Fantasy 10
+https://www.youtube.com/watch?v=vCqkxI9eu44:
+- Astal
+https://www.youtube.com/watch?v=vEx9gtmDoRI:
+- 'Star Ocean 2: The Second Story'
+- 'Star Ocean II: The Second Story'
+https://www.youtube.com/watch?v=vLRhuxHiYio:
+- Hotline Miami 2
+- Hotline Miami II
+https://www.youtube.com/watch?v=vLkDLzEcJlU:
+- 'Final Fantasy VII: CC'
+- 'Final Fantasy 7: 200'
+https://www.youtube.com/watch?v=vMNf5-Y25pQ:
+- Final Fantasy V
+- Final Fantasy 5
+https://www.youtube.com/watch?v=vN9zJNpH3Mc:
+- Terranigma
+https://www.youtube.com/watch?v=vRRrOKsfxPg:
+- 'The Legend of Zelda: A Link to the Past'
+- a link to the past
+https://www.youtube.com/watch?v=vY8in7gADDY:
+- Tetrisphere
+https://www.youtube.com/watch?v=vZOCpswBNiw:
+- Lufia
+https://www.youtube.com/watch?v=v_9EdBLmHcE:
+- Equinox
+https://www.youtube.com/watch?v=vaJvNNWO_OQ:
+- Mega Man 2
+- Mega Man II
+https://www.youtube.com/watch?v=vbzmtIEujzk:
+- Deadly Premonition
+https://www.youtube.com/watch?v=vfRr0Y0QnHo:
+- Super Mario 64
+https://www.youtube.com/watch?v=vfqMK4BuN64:
+- Beyond Good & Evil
+- beyond good and evil
+https://www.youtube.com/watch?v=vgD6IngCtyU:
+- 'Romancing Saga: Minstrel Song'
+https://www.youtube.com/watch?v=vl6Cuvw4iyk:
+- Mighty Switch Force!
+https://www.youtube.com/watch?v=vmUwR3aa6dc:
+- F-Zero
+https://www.youtube.com/watch?v=vp6NjZ0cGiI:
+- Deep Labyrinth
+https://www.youtube.com/watch?v=vrWC1PosXSI:
+- Legend of Dragoon
+https://www.youtube.com/watch?v=vsLJDafIEHc:
+- Legend of Grimrock
+https://www.youtube.com/watch?v=vsYHDEiBSrg:
+- 'The Legend of Zelda: Twilight Princess'
+- twilight princess
+https://www.youtube.com/watch?v=vtTk81cIJlg:
+- Magnetis
+https://www.youtube.com/watch?v=vz59icOE03E:
+- Boot Hill Heroes
+https://www.youtube.com/watch?v=w1tmFpEPagk:
+- Suikoden
+https://www.youtube.com/watch?v=w2HT5XkGaws:
+- 'Gremlins 2: The New Batch'
+- 'Gremlins II: The New Batch'
+https://www.youtube.com/watch?v=w4J4ZQP7Nq0:
+- Legend of Mana
+https://www.youtube.com/watch?v=w4b-3x2wqpw:
+- Breath of Death VII
+- Breath of Death 7
+https://www.youtube.com/watch?v=w6exvhdhIE8:
+- Suikoden II
+- Suikoden 2
+https://www.youtube.com/watch?v=w7dO2edfy00:
+- Wild Arms
+https://www.youtube.com/watch?v=wBAXLY1hq7s:
+- Ys Chronicles
+https://www.youtube.com/watch?v=wBUVdh4mVDc:
+- Lufia
+https://www.youtube.com/watch?v=wE8p0WBW4zo:
+- Guilty Gear XX Reload (Korean Version)
+- Guilty Gear 20 Reload
+- guilty gear xx reload
+https://www.youtube.com/watch?v=wEkfscyZEfE:
+- Sonic Rush
+https://www.youtube.com/watch?v=wFJYhWhioPI:
+- Shin Megami Tensei Nocturne
+https://www.youtube.com/watch?v=wFM8K7GLFKk:
+- Goldeneye
+https://www.youtube.com/watch?v=wHgmFPLNdW8:
+- Pop'n Music 8
+- Pop'n Music VIII
+https://www.youtube.com/watch?v=wKNz1SsO_cM:
+- Life is Strange
+https://www.youtube.com/watch?v=wKgoegkociY:
+- Opoona
+https://www.youtube.com/watch?v=wNfUOcOv1no:
+- Final Fantasy X
+- Final Fantasy 10
+https://www.youtube.com/watch?v=wPCmweLoa8Q:
+- Wangan Midnight Maximum Tune 3
+- Wangan Midnight Maximum Tune III
+https://www.youtube.com/watch?v=wPZgCJwBSgI:
+- Perfect Dark
+https://www.youtube.com/watch?v=wXSFR4tDIUs:
+- F-Zero
+https://www.youtube.com/watch?v=wXXgqWHDp18:
+- Tales of Zestiria
+https://www.youtube.com/watch?v=wXZ-2p4rC5s:
+- 'Metroid II: Return of Samus'
+- 'Metroid 2: Return of Samus'
+https://www.youtube.com/watch?v=w_6ZSQ2_7Q4:
+- Final Fantasy X
+- Final Fantasy 10
+https://www.youtube.com/watch?v=w_N7__8-9r0:
+- Donkey Kong Land
+https://www.youtube.com/watch?v=w_TOt-XQnPg:
+- Pokemon Ruby / Sapphire / Emerald
+- pokemon ruby
+- pokemon sapphire
+- pokemon emerald
+https://www.youtube.com/watch?v=waesdKG4rhM:
+- Dragon Quest VII 3DS
+- Dragon Quest 7 3DS
+https://www.youtube.com/watch?v=wdWZYggy75A:
+- Mother 4
+- Mother IV
+https://www.youtube.com/watch?v=wgAtWoPfBgQ:
+- Metroid Prime
+https://www.youtube.com/watch?v=wkrgYK2U5hE:
+- 'Super Monkey Ball: Step & Roll'
+- 'super monkey ball: step and roll'
+https://www.youtube.com/watch?v=wqb9Cesq3oM:
+- Super Mario RPG
+https://www.youtube.com/watch?v=wuFKdtvNOp0:
+- Granado Espada
+https://www.youtube.com/watch?v=wv6HHTa4jjI:
+- Miitopia
+https://www.youtube.com/watch?v=ww6KySR4MQ0:
+- Street Fighter II
+- Street Fighter 2
+https://www.youtube.com/watch?v=wxzrrUWOU8M:
+- Space Station Silicon Valley
+https://www.youtube.com/watch?v=wyYpZvfAUso:
+- Soul Calibur
+https://www.youtube.com/watch?v=x0wxJHbcDYE:
+- Prop Cycle
+https://www.youtube.com/watch?v=x4i7xG2IOOE:
+- 'Silent Hill: Origins'
+https://www.youtube.com/watch?v=x4mrK-42Z18:
+- Sonic Generations
+https://www.youtube.com/watch?v=x6VlzkDSU6k:
+- Parasite Eve
+https://www.youtube.com/watch?v=x9S3GnJ3_WQ:
+- Wild Arms
+https://www.youtube.com/watch?v=xFUvAJTiSH4:
+- Suikoden II
+- Suikoden 2
+https://www.youtube.com/watch?v=xJHVfLI5pLY:
+- 'Animal Crossing: Wild World'
+https://www.youtube.com/watch?v=xKxhEqH7UU0:
+- ICO
+https://www.youtube.com/watch?v=xP3PDznPrw4:
+- Dragon Quest IX
+- Dragon Quest 9
+https://www.youtube.com/watch?v=xTRmnisEJ7Y:
+- Super Mario Galaxy
+https://www.youtube.com/watch?v=xTxZchmHmBw:
+- Asterix
+https://www.youtube.com/watch?v=xWQOYiYHZ2w:
+- Antichamber
+https://www.youtube.com/watch?v=xWVBra_NpZo:
+- Bravely Default
+https://www.youtube.com/watch?v=xY86oDk6Ces:
+- Super Street Fighter II
+- Super Street Fighter 2
+https://www.youtube.com/watch?v=xZHoULMU6fE:
+- Firewatch
+https://www.youtube.com/watch?v=xaKXWFIz5E0:
+- Dragon Ball Z Butouden 2
+- Dragon Ball Z Butouden II
+https://www.youtube.com/watch?v=xajMfQuVnp4:
+- 'OFF'
+https://www.youtube.com/watch?v=xdQDETzViic:
+- The 7th Saga
+https://www.youtube.com/watch?v=xfzWn5b6MHM:
+- 'Silent Hill: Origins'
+https://www.youtube.com/watch?v=xgn1eHG_lr8:
+- Total Distortion
+https://www.youtube.com/watch?v=xhVwxYU23RU:
+- Bejeweled 3
+- Bejeweled III
+https://www.youtube.com/watch?v=xhgVOEt-wOo:
+- Final Fantasy VIII
+- Final Fantasy 8
+https://www.youtube.com/watch?v=xhzySCD19Ss:
+- 'The Legend of Zelda: Twilight Princess'
+- twilight princess
+https://www.youtube.com/watch?v=xieau-Uia18:
+- Sonic the Hedgehog (2006)
+- Sonic the Hedgehog 2006
+- sonic the hedgehog 06
+https://www.youtube.com/watch?v=xj0AV3Y-gFU:
+- 'The Legend of Zelda: Wind Waker'
+- wind waker
+https://www.youtube.com/watch?v=xkSD3pCyfP4:
+- Gauntlet
+https://www.youtube.com/watch?v=xl30LV6ruvA:
+- Fantasy Life
+https://www.youtube.com/watch?v=xorfsUKMGm8:
+- 'Shadow Hearts II: Covenant'
+- 'Shadow Hearts 2: Covenant'
+https://www.youtube.com/watch?v=xpu0N_oRDrM:
+- Final Fantasy X
+- Final Fantasy 10
+https://www.youtube.com/watch?v=xrLiaewZZ2E:
+- 'The Legend of Zelda: Twilight Princess'
+- twilight princess
+https://www.youtube.com/watch?v=xsC6UGAJmIw:
+- Waterworld
+https://www.youtube.com/watch?v=xtsyXDTAWoo:
+- Tetris Attack
+https://www.youtube.com/watch?v=xuCzPu3tHzg:
+- Seiken Densetsu 3
+- Seiken Densetsu III
+https://www.youtube.com/watch?v=xvvXFCYVmkw:
+- Mario Kart 64
+https://www.youtube.com/watch?v=xx9uLg6pYc0:
+- 'Spider-Man & X-Men: Arcade''s Revenge'
+- 'Spider-Man and X-Men: Arcade''s Revenge'
+https://www.youtube.com/watch?v=xze4yNQAmUU:
+- Mega Man 10
+https://www.youtube.com/watch?v=xzfhOQampfs:
+- Suikoden II
+- Suikoden 2
+https://www.youtube.com/watch?v=xzmv8C2I5ek:
+- 'Lightning Returns: Final Fantasy XIII'
+- 'Lightning Returns: Final Fantasy 13'
+https://www.youtube.com/watch?v=y0PixBaf8_Y:
+- Waterworld
+https://www.youtube.com/watch?v=y2MP97fwOa8:
+- Pokemon Ruby / Sapphire / Emerald
+- pokemon ruby
+- pokemon sapphire
+- pokemon emerald
+https://www.youtube.com/watch?v=y4DAIZM2sTc:
+- Breath of Fire III
+- Breath of Fire 3
+https://www.youtube.com/watch?v=y6UhV3E2H6w:
+- Xenoblade Chronicles
+https://www.youtube.com/watch?v=y81PyRX4ENA:
+- Zone of the Enders 2
+- Zone of the Enders II
+https://www.youtube.com/watch?v=y9SFrBt1xtw:
+- 'Mario Kart: Double Dash!!'
+https://www.youtube.com/watch?v=yCLW8IXbFYM:
+- Suikoden V
+- Suikoden 5
+https://www.youtube.com/watch?v=yDMN8XKs1z0:
+- Sonic 3D Blast (Saturn)
+- sonic 3d blast
+https://www.youtube.com/watch?v=yERMMu-OgEo:
+- Final Fantasy IV
+- Final Fantasy 4
+https://www.youtube.com/watch?v=yF_f-Y-MD2o:
+- Final Fantasy IX
+- Final Fantasy 9
+https://www.youtube.com/watch?v=yJrRo8Dqpkw:
+- 'Mario Kart: Double Dash !!'
+- 'mario kart double dash'
+https://www.youtube.com/watch?v=yTe_L2AYaI4:
+- Legend of Dragoon
+https://www.youtube.com/watch?v=yV7eGX8y2dM:
+- Hotline Miami 2
+- Hotline Miami II
+https://www.youtube.com/watch?v=yVcn0cFJY_c:
+- Xenosaga II
+- Xenosaga 2
+https://www.youtube.com/watch?v=yYPNScB1alA:
+- Speed Freaks
+https://www.youtube.com/watch?v=yZ5gFAjZsS4:
+- Wolverine
+https://www.youtube.com/watch?v=y_4Ei9OljBA:
+- 'The Legend of Zelda: Minish Cap'
+- minish cap
+https://www.youtube.com/watch?v=ye960O2B3Ao:
+- Star Fox
+https://www.youtube.com/watch?v=ygqp3eNXbI4:
+- Pop'n Music 18
+- Pop'n Music XVIII
+https://www.youtube.com/watch?v=yh8dWsIVCD8:
+- Battletoads
+https://www.youtube.com/watch?v=yirRajMEud4:
+- Jet Set Radio
+https://www.youtube.com/watch?v=yr7fU3D0Qw4:
+- Final Fantasy VII
+- Final Fantasy 7
+https://www.youtube.com/watch?v=ysLhWVbE12Y:
+- Panzer Dragoon
+https://www.youtube.com/watch?v=ysoz5EnW6r4:
+- Tekken 7
+- Tekken VII
+https://www.youtube.com/watch?v=ytp_EVRf8_I:
+- Super Mario RPG
+https://www.youtube.com/watch?v=yz1yrVcpWjA:
+- Persona 3
+- Persona III
+https://www.youtube.com/watch?v=yzgSscW7klw:
+- Steamworld Dig 2
+- Steamworld Dig II
+https://www.youtube.com/watch?v=z-QISdXXN_E:
+- Wild Arms Alter Code F
+https://www.youtube.com/watch?v=z1oW4USdB68:
+- 'The Legend of Zelda: Minish Cap'
+- minish cap
+https://www.youtube.com/watch?v=z513Tty2hag:
+- Fez
+https://www.youtube.com/watch?v=z5ndH9xEVlo:
+- Streets of Rage
+https://www.youtube.com/watch?v=z5oERC4cD8g:
+- Skies of Arcadia
+https://www.youtube.com/watch?v=zB-n8fx-Dig:
+- Kirby's Return to Dreamland
+https://www.youtube.com/watch?v=zCP7hfY8LPo:
+- Ape Escape
+https://www.youtube.com/watch?v=zFfgwmWuimk:
+- 'DmC: Devil May Cry'
+- devil may cry
+https://www.youtube.com/watch?v=zHej43S_OMI:
+- Radiata Stories
+https://www.youtube.com/watch?v=zLXJ6l4Gxsg:
+- Kingdom Hearts
+https://www.youtube.com/watch?v=zO9y6EH6jVw:
+- 'Metroid Prime 2: Echoes'
+- 'Metroid Prime II: Echoes'
+https://www.youtube.com/watch?v=zS8QlZkN_kM:
+- Guardian's Crusade
+https://www.youtube.com/watch?v=zTHAKsaD_8U:
+- Super Mario Bros
+https://www.youtube.com/watch?v=zTKEnlYhL0M:
+- 'Gremlins 2: The New Batch'
+- 'Gremlins II: The New Batch'
+https://www.youtube.com/watch?v=zTOZesa-uG4:
+- 'Turok: Dinosaur Hunter'
+https://www.youtube.com/watch?v=zYMU-v7GGW4:
+- Kingdom Hearts
+https://www.youtube.com/watch?v=za05W9gtegc:
+- Metroid Prime
+https://www.youtube.com/watch?v=zawNmXL36zM:
+- SpaceChem
+https://www.youtube.com/watch?v=ziyH7x0P5tU:
+- Final Fantasy
+https://www.youtube.com/watch?v=zojcLdL7UTw:
+- Shining Hearts
+https://www.youtube.com/watch?v=zpVIM8de2xw:
+- Mega Man 3
+- Mega Man III
+https://www.youtube.com/watch?v=zpleUx1Llgs:
+- Super Smash Bros Wii U / 3DS
+- super smash bros wii u
+- super smas bros 3ds
+https://www.youtube.com/watch?v=zqFtW92WUaI:
+- Super Mario World
+https://www.youtube.com/watch?v=zqgfOTBPv3E:
+- Metroid Prime 3
+- Metroid Prime III
+https://www.youtube.com/watch?v=zsuBQNO7tps:
+- Dark Souls
+https://www.youtube.com/watch?v=ztLD9IqnRqY:
+- Metroid Prime 3
+- Metroid Prime III
+https://www.youtube.com/watch?v=ztiSivmoE0c:
+- Breath of Fire
+https://www.youtube.com/watch?v=zxZROhq4Lz0:
+- Pop'n Music 8
+- Pop'n Music VIII
diff --git a/audiotrivia/data/lists/guitar.yaml b/audiotrivia/data/lists/guitar.yaml
deleted file mode 100644
index 1c0d07e..0000000
--- a/audiotrivia/data/lists/guitar.yaml
+++ /dev/null
@@ -1,4 +0,0 @@
-https://www.youtube.com/watch?v=hfyE220BsD0:
-- holiday
-https://www.youtube.com/watch?v=Hh3U9iPKeXQ:
-- sultans of swing
\ No newline at end of file
diff --git a/audiotrivia/data/lists/league.yaml b/audiotrivia/data/lists/league.yaml
deleted file mode 100644
index 323aadd..0000000
--- a/audiotrivia/data/lists/league.yaml
+++ /dev/null
@@ -1,4 +0,0 @@
-https://www.youtube.com/watch?v=Hi1kUdreiWk:
-- Jinx
-https://www.youtube.com/watch?v=PNYHFluhOGI:
-- Teemo
\ No newline at end of file
diff --git a/audiotrivia/data/lists/nhlgoalhorns.yaml b/audiotrivia/data/lists/nhlgoalhorns.yaml
new file mode 100644
index 0000000..689f478
--- /dev/null
+++ b/audiotrivia/data/lists/nhlgoalhorns.yaml
@@ -0,0 +1,125 @@
+AUTHOR: Lazar
+https://youtu.be/6OejNXrGkK0:
+- Anaheim Ducks
+- Anaheim
+- Ducks
+https://youtu.be/RbUxSPoU9Yg:
+- Arizona Coyotes
+- Arizona
+- Coyotes
+https://youtu.be/DsI0PgWADks:
+- Boston Bruins
+- Boston
+- Bruins
+https://youtu.be/hjFTd3MJOHc:
+- Buffalo Sabres
+- Buffalo
+- Sabres
+https://youtu.be/sn1PliBCRDY:
+- Calgary Flames
+- Calgary
+- Flames
+https://youtu.be/3exZm6Frd18:
+- Carolina Hurricanes
+- Carolina
+- Hurricanes
+https://youtu.be/sBeXPMkqR80:
+- Chicago Blackhawks
+- Chicago
+- Blackhawks
+https://youtu.be/MARxzs_vCPI:
+- Colorado Avalanche
+- Colorado
+- Avalanche
+https://youtu.be/6yYbQfOWw4k:
+- Columbus Blue Jackets
+- Columbus
+- Blue Jackets
+https://youtu.be/Af8_9NP5lyw:
+- Dallas
+- Stars
+- Dallas Stars
+https://youtu.be/JflfvLvY7ks:
+- Detroit Red Wings
+- Detroit
+- Red wings
+https://youtu.be/xc422k5Tcqc:
+- Edmonton Oilers
+- Edmonton
+- Oilers
+https://youtu.be/Dm1bjUB9HLE:
+- Florida Panthers
+- Florida
+- Panthers
+https://youtu.be/jSgd3aIepY4:
+- Los Angeles Kings
+- Los Angeles
+- Kings
+https://youtu.be/4Pj8hWPR9VI:
+- Minnesota Wild
+- Minnesota
+- Wild
+https://youtu.be/rRGlUFWEBMk:
+- Montreal Canadiens
+- Montreal
+- Canadiens
+https://youtu.be/fHTehdlMwWQ:
+- Nashville Predators
+- Nashville
+- Predators
+https://youtu.be/4q0eNg-AbrQ:
+- New Jersey Devils
+- New Jersey
+- Devils
+https://youtu.be/ZC514zGrL80:
+- New York
+- Islanders
+- New York Islanders
+https://youtu.be/Zzfks2A2n38:
+- New York Rangers
+- New York
+- Rangers
+https://youtu.be/fHlWxPRNVBc:
+- Ottawa Senators
+- Ottawa
+- Senators
+https://youtu.be/0LsXpMiVD1E:
+- Philadelphia Flyers
+- Philadelphia
+- Flyers
+https://youtu.be/Llw3adcNuzI:
+- Pittsburgh Penguins
+- Pittsburgh
+- Penguins
+https://youtu.be/NZqSBkmpbLw:
+- San Jose Sharks
+- San Jose
+- Sharks
+https://youtu.be/Q23TDOJsY1s:
+- St. Louis Blues
+- St. Louis
+- Blues
+https://youtu.be/bdhDXxM20iM:
+- Tampa Bay Lightning
+- Tampa Bay
+- Lightning
+https://youtu.be/2cyekaemZgs:
+- Toronto Maple Leafs
+- Toronto
+- Maple Leafs
+https://youtu.be/CPozN-ZHpAo:
+- Vancouver
+- Canucks
+- Vancouver Canucks
+https://youtu.be/zheGI316WXg:
+- Vegas Golden Knights
+- Vegas
+- Golden Knights
+https://youtu.be/BH_CC1RxtfU:
+- Washington Capitals
+- Washington
+- Capitals
+https://youtu.be/3gcahU_i9WE:
+- Winnipeg Jets
+- Winnipeg
+- Jets
diff --git a/audiotrivia/info.json b/audiotrivia/info.json
index 519973e..697875d 100644
--- a/audiotrivia/info.json
+++ b/audiotrivia/info.json
@@ -10,11 +10,11 @@
   "description": "Start an Audio Trivia game",
   "hidden": false,
   "install_msg": "Thank you for installing Audio trivia!\n You **MUST** unload trivia to use this (`[p]unload trivia`)\n Then you can get started with `[p]load audiotrivia` and `[p]help AudioTrivia`",
-  "requirements": [],
   "short": "Start an Audio Trivia game",
   "tags": [
     "fox",
     "bobloy",
-    "games"
+    "games",
+    "audio"
   ]
 }
\ No newline at end of file
diff --git a/ccrole/ccrole.py b/ccrole/ccrole.py
index 18d9320..3f3be5e 100644
--- a/ccrole/ccrole.py
+++ b/ccrole/ccrole.py
@@ -116,7 +116,7 @@ class CCRole(Cog):
 
         # Selfrole
         await ctx.send(
-            "Is this a targeted command?(yes//no)\nNo will make this a selfrole command"
+            "Is this a targeted command?(yes/no)\nNo will make this a selfrole command"
         )
 
         try:
@@ -235,7 +235,8 @@ class CCRole(Cog):
             for page in pagify(cmd_list, delims=[" ", "\n"]):
                 await ctx.author.send(box(page))
             await ctx.send("Command list DM'd")
-
+    
+    @commands.Cog.listener()
     async def on_message(self, message):
         if len(message.content) < 2 or message.guild is None:
             return
@@ -293,7 +294,7 @@ class CCRole(Cog):
         if cmd["targeted"]:
             try:
                 target = discord.utils.get(
-                    message.guild.members, mention=message.content.split()[1]
+                    message.guild.members, mention=message.content.split(maxsplit=1)[1]
                 )
             except IndexError:  # .split() return list of len<2
                 target = None
diff --git a/ccrole/info.json b/ccrole/info.json
index 0c0c70c..6e0d8f7 100644
--- a/ccrole/info.json
+++ b/ccrole/info.json
@@ -10,7 +10,6 @@
   "description": "[Incomplete] Creates custom commands to adjust roles and send custom messages",
   "hidden": false,
   "install_msg": "Thank you for installing Custom Commands w/ Roles. Get started with `[p]load ccrole` and `[p]help CCRole`",
-  "requirements": [],
   "short": "[Incomplete] Creates commands that adjust roles",
   "tags": [
     "fox",
diff --git a/chatter/chat.py b/chatter/chat.py
index 587b01e..3daa957 100644
--- a/chatter/chat.py
+++ b/chatter/chat.py
@@ -7,10 +7,10 @@ from redbot.core import Config
 from redbot.core import commands
 from redbot.core.data_manager import cog_data_path
 
-from chatter.chatterbot import ChatBot
-from chatter.chatterbot.comparisons import levenshtein_distance
-from chatter.chatterbot.response_selection import get_first_response
-from chatter.chatterbot.trainers import ListTrainer
+from .chatterbot import ChatBot
+from .chatterbot.comparisons import levenshtein_distance
+from .chatterbot.response_selection import get_first_response
+from .chatterbot.trainers import ListTrainer
 from typing import Any
 
 Cog: Any = getattr(commands, "Cog", object)
@@ -27,7 +27,7 @@ class Chatter(Cog):
         default_global = {}
         default_guild = {"whitelist": None, "days": 1}
         path: pathlib.Path = cog_data_path(self)
-        data_path = path / ("database.sqlite3")
+        data_path = path / "database.sqlite3"
 
         self.chatbot = ChatBot(
             "ChatterBot",
@@ -80,7 +80,7 @@ class Chatter(Cog):
             send_time = None
             try:
 
-                async for message in channel.history(limit=None, reverse=True, after=after):
+                async for message in channel.history(limit=None, after=after):
                     # if message.author.bot:  # Skip bot messages
                     #     continue
                     if new_message(message, send_time, out[i]):
@@ -152,6 +152,10 @@ class Chatter(Cog):
         Trains the bot based on language in this guild
         """
 
+        await ctx.send("Warning: The cog may use significant RAM or CPU if trained on large data sets.\n"
+                       "Additionally, large sets will use more disk space to save the trained data.\n\n"
+                       "If you experience issues, clear your trained data and train again on a smaller scope.")
+
         conversation = await self._get_conversation(ctx, channel)
 
         if not conversation:
@@ -176,21 +180,22 @@ class Chatter(Cog):
         else:
             await ctx.send("Error occurred :(")
 
+    @commands.Cog.listener()
     async def on_message(self, message: discord.Message):
         """
         Credit to https://github.com/Twentysix26/26-Cogs/blob/master/cleverbot/cleverbot.py
         for on_message recognition of @bot
         """
         author = message.author
-        try:
-            guild: discord.Guild = message.guild
-        except AttributeError:  # Not a guild message
-            return
+        guild: discord.Guild = message.guild
 
         channel: discord.TextChannel = message.channel
 
         if author.id != self.bot.user.id:
-            to_strip = "@" + guild.me.display_name + " "
+            if guild is None:
+                to_strip = "@" + channel.me.display_name + " "
+            else:
+                to_strip = "@" + guild.me.display_name + " "
             text = message.clean_content
             if not text.startswith(to_strip):
                 return
diff --git a/chatter/chatterbot/chatterbot.py b/chatter/chatterbot/chatterbot.py
index 08576c3..c99de2c 100644
--- a/chatter/chatterbot/chatterbot.py
+++ b/chatter/chatterbot/chatterbot.py
@@ -2,7 +2,7 @@ from __future__ import unicode_literals
 
 import logging
 
-from chatter.chatterbot import utils
+from . import utils
 
 
 class ChatBot(object):
@@ -11,7 +11,7 @@ class ChatBot(object):
     """
 
     def __init__(self, name, **kwargs):
-        from chatter.chatterbot.logic import MultiLogicAdapter
+        from .logic import MultiLogicAdapter
 
         self.name = name
         kwargs['name'] = name
@@ -136,7 +136,7 @@ class ChatBot(object):
         """
         Learn that the statement provided is a valid response.
         """
-        from chatter.chatterbot.conversation import Response
+        from .conversation import Response
 
         if previous_statement:
             statement.add_response(
diff --git a/chatter/chatterbot/comparisons.py b/chatter/chatterbot/comparisons.py
index 5e253a0..f7ceb8d 100644
--- a/chatter/chatterbot/comparisons.py
+++ b/chatter/chatterbot/comparisons.py
@@ -92,7 +92,7 @@ class SynsetDistance(Comparator):
         """
         Download required NLTK corpora if they have not already been downloaded.
         """
-        from chatter.chatterbot.utils import nltk_download_corpus
+        from .utils import nltk_download_corpus
 
         nltk_download_corpus('corpora/wordnet')
 
@@ -100,7 +100,7 @@ class SynsetDistance(Comparator):
         """
         Download required NLTK corpora if they have not already been downloaded.
         """
-        from chatter.chatterbot.utils import nltk_download_corpus
+        from .utils import nltk_download_corpus
 
         nltk_download_corpus('tokenizers/punkt')
 
@@ -108,7 +108,7 @@ class SynsetDistance(Comparator):
         """
         Download required NLTK corpora if they have not already been downloaded.
         """
-        from chatter.chatterbot.utils import nltk_download_corpus
+        from .utils import nltk_download_corpus
 
         nltk_download_corpus('corpora/stopwords')
 
@@ -124,7 +124,7 @@ class SynsetDistance(Comparator):
         """
         from nltk.corpus import wordnet
         from nltk import word_tokenize
-        from chatter.chatterbot import utils
+        from . import utils
         import itertools
 
         tokens1 = word_tokenize(statement.text.lower())
@@ -177,7 +177,7 @@ class SentimentComparison(Comparator):
         Download the NLTK vader lexicon for sentiment analysis
         that is required for this algorithm to run.
         """
-        from chatter.chatterbot.utils import nltk_download_corpus
+        from .utils import nltk_download_corpus
 
         nltk_download_corpus('sentiment/vader_lexicon')
 
@@ -252,7 +252,7 @@ class JaccardSimilarity(Comparator):
         Download the NLTK wordnet corpora that is required for this algorithm
         to run only if the corpora has not already been downloaded.
         """
-        from chatter.chatterbot.utils import nltk_download_corpus
+        from .utils import nltk_download_corpus
 
         nltk_download_corpus('corpora/wordnet')
 
diff --git a/chatter/chatterbot/ext/sqlalchemy_app/models.py b/chatter/chatterbot/ext/sqlalchemy_app/models.py
index 6a7dc00..cf0843f 100644
--- a/chatter/chatterbot/ext/sqlalchemy_app/models.py
+++ b/chatter/chatterbot/ext/sqlalchemy_app/models.py
@@ -3,9 +3,9 @@ from sqlalchemy.ext.declarative import declared_attr, declarative_base
 from sqlalchemy.orm import relationship
 from sqlalchemy.sql import func
 
-from chatter.chatterbot.constants import TAG_NAME_MAX_LENGTH, STATEMENT_TEXT_MAX_LENGTH
-from chatter.chatterbot.conversation import StatementMixin
-from chatter.chatterbot.ext.sqlalchemy_app.types import UnicodeString
+from ...constants import TAG_NAME_MAX_LENGTH, STATEMENT_TEXT_MAX_LENGTH
+from ...conversation import StatementMixin
+from .types import UnicodeString
 
 
 class ModelBase(object):
@@ -72,8 +72,8 @@ class Statement(Base, StatementMixin):
         return [tag.name for tag in self.tags]
 
     def get_statement(self):
-        from chatter.chatterbot.conversation import Statement as StatementObject
-        from chatter.chatterbot.conversation import Response as ResponseObject
+        from ...conversation import Statement as StatementObject
+        from ...conversation import Response as ResponseObject
 
         statement = StatementObject(
             self.text,
diff --git a/chatter/chatterbot/input/gitter.py b/chatter/chatterbot/input/gitter.py
index 9018e37..24e97cd 100644
--- a/chatter/chatterbot/input/gitter.py
+++ b/chatter/chatterbot/input/gitter.py
@@ -2,8 +2,8 @@ from __future__ import unicode_literals
 
 from time import sleep
 
-from chatter.chatterbot.conversation import Statement
-from chatter.chatterbot.input import InputAdapter
+from ..conversation import Statement
+from . import InputAdapter
 
 
 class Gitter(InputAdapter):
diff --git a/chatter/chatterbot/input/hipchat.py b/chatter/chatterbot/input/hipchat.py
index b5da731..bfcb06a 100644
--- a/chatter/chatterbot/input/hipchat.py
+++ b/chatter/chatterbot/input/hipchat.py
@@ -2,8 +2,8 @@ from __future__ import unicode_literals
 
 from time import sleep
 
-from chatter.chatterbot.conversation import Statement
-from chatter.chatterbot.input import InputAdapter
+from ..conversation import Statement
+from . import InputAdapter
 
 
 class HipChat(InputAdapter):
diff --git a/chatter/chatterbot/input/input_adapter.py b/chatter/chatterbot/input/input_adapter.py
index 49c63db..1785b1f 100644
--- a/chatter/chatterbot/input/input_adapter.py
+++ b/chatter/chatterbot/input/input_adapter.py
@@ -1,6 +1,6 @@
 from __future__ import unicode_literals
 
-from chatter.chatterbot.adapters import Adapter
+from ..adapters import Adapter
 
 
 class InputAdapter(Adapter):
diff --git a/chatter/chatterbot/input/mailgun.py b/chatter/chatterbot/input/mailgun.py
index 6fb78a8..6de09d7 100644
--- a/chatter/chatterbot/input/mailgun.py
+++ b/chatter/chatterbot/input/mailgun.py
@@ -2,8 +2,8 @@ from __future__ import unicode_literals
 
 import datetime
 
-from chatter.chatterbot.conversation import Statement
-from chatter.chatterbot.input import InputAdapter
+from ..conversation import Statement
+from . import InputAdapter
 
 
 class Mailgun(InputAdapter):
diff --git a/chatter/chatterbot/input/microsoft.py b/chatter/chatterbot/input/microsoft.py
index 3a255bf..7a9d446 100644
--- a/chatter/chatterbot/input/microsoft.py
+++ b/chatter/chatterbot/input/microsoft.py
@@ -2,8 +2,8 @@ from __future__ import unicode_literals
 
 from time import sleep
 
-from chatter.chatterbot.conversation import Statement
-from chatter.chatterbot.input import InputAdapter
+from ..conversation import Statement
+from . import InputAdapter
 
 
 class Microsoft(InputAdapter):
diff --git a/chatter/chatterbot/input/terminal.py b/chatter/chatterbot/input/terminal.py
index 20cb3c2..582060d 100644
--- a/chatter/chatterbot/input/terminal.py
+++ b/chatter/chatterbot/input/terminal.py
@@ -1,8 +1,8 @@
 from __future__ import unicode_literals
 
-from chatter.chatterbot.conversation import Statement
-from chatter.chatterbot.input import InputAdapter
-from chatter.chatterbot.utils import input_function
+from ..conversation import Statement
+from . import InputAdapter
+from ..utils import input_function
 
 
 class TerminalAdapter(InputAdapter):
diff --git a/chatter/chatterbot/input/variable_input_type_adapter.py b/chatter/chatterbot/input/variable_input_type_adapter.py
index d2d598c..dda8ef3 100644
--- a/chatter/chatterbot/input/variable_input_type_adapter.py
+++ b/chatter/chatterbot/input/variable_input_type_adapter.py
@@ -1,7 +1,7 @@
 from __future__ import unicode_literals
 
-from chatter.chatterbot.conversation import Statement
-from chatter.chatterbot.input import InputAdapter
+from ..conversation import Statement
+from . import InputAdapter
 
 
 class VariableInputTypeAdapter(InputAdapter):
diff --git a/chatter/chatterbot/logic/best_match.py b/chatter/chatterbot/logic/best_match.py
index f19fc99..05b3863 100644
--- a/chatter/chatterbot/logic/best_match.py
+++ b/chatter/chatterbot/logic/best_match.py
@@ -1,6 +1,6 @@
 from __future__ import unicode_literals
 
-from chatter.chatterbot.logic import LogicAdapter
+from . import LogicAdapter
 
 
 class BestMatch(LogicAdapter):
diff --git a/chatter/chatterbot/logic/logic_adapter.py b/chatter/chatterbot/logic/logic_adapter.py
index 1239cca..0a2e359 100644
--- a/chatter/chatterbot/logic/logic_adapter.py
+++ b/chatter/chatterbot/logic/logic_adapter.py
@@ -1,7 +1,7 @@
 from __future__ import unicode_literals
 
-from chatter.chatterbot.adapters import Adapter
-from chatter.chatterbot.utils import import_module
+from ..adapters import Adapter
+from ..utils import import_module
 
 
 class LogicAdapter(Adapter):
@@ -18,8 +18,8 @@ class LogicAdapter(Adapter):
 
     def __init__(self, **kwargs):
         super(LogicAdapter, self).__init__(**kwargs)
-        from chatter.chatterbot.comparisons import levenshtein_distance
-        from chatter.chatterbot.response_selection import get_first_response
+        from ..comparisons import levenshtein_distance
+        from ..response_selection import get_first_response
 
         # Import string module parameters
         if 'statement_comparison_function' in kwargs:
diff --git a/chatter/chatterbot/logic/low_confidence.py b/chatter/chatterbot/logic/low_confidence.py
index 2d33bba..a07d9af 100644
--- a/chatter/chatterbot/logic/low_confidence.py
+++ b/chatter/chatterbot/logic/low_confidence.py
@@ -1,7 +1,7 @@
 from __future__ import unicode_literals
 
-from chatter.chatterbot.conversation import Statement
-from chatter.chatterbot.logic import BestMatch
+from ..conversation import Statement
+from . import BestMatch
 
 
 class LowConfidenceAdapter(BestMatch):
diff --git a/chatter/chatterbot/logic/mathematical_evaluation.py b/chatter/chatterbot/logic/mathematical_evaluation.py
index af27548..b720e10 100644
--- a/chatter/chatterbot/logic/mathematical_evaluation.py
+++ b/chatter/chatterbot/logic/mathematical_evaluation.py
@@ -1,7 +1,7 @@
 from __future__ import unicode_literals
 
-from chatter.chatterbot.conversation import Statement
-from chatter.chatterbot.logic import LogicAdapter
+from ..conversation import Statement
+from . import LogicAdapter
 
 
 class MathematicalEvaluation(LogicAdapter):
diff --git a/chatter/chatterbot/logic/multi_adapter.py b/chatter/chatterbot/logic/multi_adapter.py
index 5ae79f4..97a1958 100644
--- a/chatter/chatterbot/logic/multi_adapter.py
+++ b/chatter/chatterbot/logic/multi_adapter.py
@@ -2,8 +2,8 @@ from __future__ import unicode_literals
 
 from collections import Counter
 
-from chatter.chatterbot import utils
-from chatter.chatterbot.logic import LogicAdapter
+from .. import utils
+from . import LogicAdapter
 
 
 class MultiLogicAdapter(LogicAdapter):
diff --git a/chatter/chatterbot/logic/no_knowledge_adapter.py b/chatter/chatterbot/logic/no_knowledge_adapter.py
index 848b23e..4811f75 100644
--- a/chatter/chatterbot/logic/no_knowledge_adapter.py
+++ b/chatter/chatterbot/logic/no_knowledge_adapter.py
@@ -1,6 +1,6 @@
 from __future__ import unicode_literals
 
-from chatter.chatterbot.logic import LogicAdapter
+from . import LogicAdapter
 
 
 class NoKnowledgeAdapter(LogicAdapter):
diff --git a/chatter/chatterbot/logic/specific_response.py b/chatter/chatterbot/logic/specific_response.py
index ef7a630..bdf71fa 100644
--- a/chatter/chatterbot/logic/specific_response.py
+++ b/chatter/chatterbot/logic/specific_response.py
@@ -1,6 +1,6 @@
 from __future__ import unicode_literals
 
-from chatter.chatterbot.logic import LogicAdapter
+from . import LogicAdapter
 
 
 class SpecificResponseAdapter(LogicAdapter):
@@ -16,7 +16,7 @@ class SpecificResponseAdapter(LogicAdapter):
 
     def __init__(self, **kwargs):
         super(SpecificResponseAdapter, self).__init__(**kwargs)
-        from chatter.chatterbot.conversation import Statement
+        from ..conversation import Statement
 
         self.input_text = kwargs.get('input_text')
 
diff --git a/chatter/chatterbot/logic/time_adapter.py b/chatter/chatterbot/logic/time_adapter.py
index d4bbd15..78f4a2a 100644
--- a/chatter/chatterbot/logic/time_adapter.py
+++ b/chatter/chatterbot/logic/time_adapter.py
@@ -2,7 +2,7 @@ from __future__ import unicode_literals
 
 from datetime import datetime
 
-from chatter.chatterbot.logic import LogicAdapter
+from . import LogicAdapter
 
 
 class TimeLogicAdapter(LogicAdapter):
@@ -81,7 +81,7 @@ class TimeLogicAdapter(LogicAdapter):
         return features
 
     def process(self, statement):
-        from chatter.chatterbot.conversation import Statement
+        from ..conversation import Statement
 
         now = datetime.now()
 
diff --git a/chatter/chatterbot/output/gitter.py b/chatter/chatterbot/output/gitter.py
index 664d341..ff5db8b 100644
--- a/chatter/chatterbot/output/gitter.py
+++ b/chatter/chatterbot/output/gitter.py
@@ -1,6 +1,6 @@
 from __future__ import unicode_literals
 
-from chatter.chatterbot.output import OutputAdapter
+from . import OutputAdapter
 
 
 class Gitter(OutputAdapter):
diff --git a/chatter/chatterbot/output/hipchat.py b/chatter/chatterbot/output/hipchat.py
index 20029fa..647c155 100644
--- a/chatter/chatterbot/output/hipchat.py
+++ b/chatter/chatterbot/output/hipchat.py
@@ -2,7 +2,7 @@ from __future__ import unicode_literals
 
 import json
 
-from chatter.chatterbot.output import OutputAdapter
+from . import OutputAdapter
 
 
 class HipChat(OutputAdapter):
diff --git a/chatter/chatterbot/output/mailgun.py b/chatter/chatterbot/output/mailgun.py
index d022a51..47ec55c 100644
--- a/chatter/chatterbot/output/mailgun.py
+++ b/chatter/chatterbot/output/mailgun.py
@@ -1,6 +1,6 @@
 from __future__ import unicode_literals
 
-from chatter.chatterbot.output import OutputAdapter
+from . import OutputAdapter
 
 
 class Mailgun(OutputAdapter):
diff --git a/chatter/chatterbot/output/microsoft.py b/chatter/chatterbot/output/microsoft.py
index 4f2426a..caf7ce7 100644
--- a/chatter/chatterbot/output/microsoft.py
+++ b/chatter/chatterbot/output/microsoft.py
@@ -2,7 +2,7 @@ from __future__ import unicode_literals
 
 import json
 
-from chatter.chatterbot.output import OutputAdapter
+from . import OutputAdapter
 
 
 class Microsoft(OutputAdapter):
diff --git a/chatter/chatterbot/output/output_adapter.py b/chatter/chatterbot/output/output_adapter.py
index 5d13dd7..880cb18 100644
--- a/chatter/chatterbot/output/output_adapter.py
+++ b/chatter/chatterbot/output/output_adapter.py
@@ -1,4 +1,4 @@
-from chatter.chatterbot.adapters import Adapter
+from ..adapters import Adapter
 
 
 class OutputAdapter(Adapter):
diff --git a/chatter/chatterbot/output/terminal.py b/chatter/chatterbot/output/terminal.py
index 005d0ae..9fbdafd 100644
--- a/chatter/chatterbot/output/terminal.py
+++ b/chatter/chatterbot/output/terminal.py
@@ -1,6 +1,6 @@
 from __future__ import unicode_literals
 
-from chatter.chatterbot.output import OutputAdapter
+from . import OutputAdapter
 
 
 class TerminalAdapter(OutputAdapter):
diff --git a/chatter/chatterbot/storage/mongodb.py b/chatter/chatterbot/storage/mongodb.py
index 1ddb625..1270df9 100644
--- a/chatter/chatterbot/storage/mongodb.py
+++ b/chatter/chatterbot/storage/mongodb.py
@@ -1,4 +1,4 @@
-from chatter.chatterbot.storage import StorageAdapter
+from . import StorageAdapter
 
 
 class Query(object):
@@ -119,7 +119,7 @@ class MongoDatabaseAdapter(StorageAdapter):
         """
         Return the class for the statement model.
         """
-        from chatter.chatterbot.conversation import Statement
+        from ..conversation import Statement
 
         # Create a storage-aware statement
         statement = Statement
@@ -131,7 +131,7 @@ class MongoDatabaseAdapter(StorageAdapter):
         """
         Return the class for the response model.
         """
-        from chatter.chatterbot.conversation import Response
+        from ..conversation import Response
 
         # Create a storage-aware response
         response = Response
diff --git a/chatter/chatterbot/storage/sql_storage.py b/chatter/chatterbot/storage/sql_storage.py
index 23b54ef..f21d17c 100644
--- a/chatter/chatterbot/storage/sql_storage.py
+++ b/chatter/chatterbot/storage/sql_storage.py
@@ -1,8 +1,8 @@
-from chatter.chatterbot.storage import StorageAdapter
+from . import StorageAdapter
 
 
 def get_response_table(response):
-    from chatter.chatterbot.ext.sqlalchemy_app.models import Response
+    from ..ext.sqlalchemy_app.models import Response
     return Response(text=response.text, occurrence=response.occurrence)
 
 
@@ -86,28 +86,28 @@ class SQLStorageAdapter(StorageAdapter):
         """
         Return the statement model.
         """
-        from chatter.chatterbot.ext.sqlalchemy_app.models import Statement
+        from ..ext.sqlalchemy_app.models import Statement
         return Statement
 
     def get_response_model(self):
         """
         Return the response model.
         """
-        from chatter.chatterbot.ext.sqlalchemy_app.models import Response
+        from ..ext.sqlalchemy_app.models import Response
         return Response
 
     def get_conversation_model(self):
         """
         Return the conversation model.
         """
-        from chatter.chatterbot.ext.sqlalchemy_app.models import Conversation
+        from ..ext.sqlalchemy_app.models import Conversation
         return Conversation
 
     def get_tag_model(self):
         """
         Return the conversation model.
         """
-        from chatter.chatterbot.ext.sqlalchemy_app.models import Tag
+        from ..ext.sqlalchemy_app.models import Tag
         return Tag
 
     def count(self):
@@ -379,14 +379,14 @@ class SQLStorageAdapter(StorageAdapter):
         """
         Drop the database attached to a given adapter.
         """
-        from chatter.chatterbot.ext.sqlalchemy_app.models import Base
+        from ..ext.sqlalchemy_app.models import Base
         Base.metadata.drop_all(self.engine)
 
     def create(self):
         """
         Populate the database with the tables.
         """
-        from chatter.chatterbot.ext.sqlalchemy_app.models import Base
+        from ..ext.sqlalchemy_app.models import Base
         Base.metadata.create_all(self.engine)
 
     def _session_finish(self, session, statement_text=None):
diff --git a/chatter/chatterbot/trainers.py b/chatter/chatterbot/trainers.py
index f3a4165..433d2ba 100644
--- a/chatter/chatterbot/trainers.py
+++ b/chatter/chatterbot/trainers.py
@@ -2,8 +2,8 @@ import logging
 import os
 import sys
 
-from chatter.chatterbot import utils
-from chatter.chatterbot.conversation import Statement, Response
+from . import utils
+from .conversation import Statement, Response
 
 
 class Trainer(object):
@@ -127,7 +127,7 @@ class ChatterBotCorpusTrainer(Trainer):
 
     def __init__(self, storage, **kwargs):
         super(ChatterBotCorpusTrainer, self).__init__(storage, **kwargs)
-        from chatter.chatterbot.corpus import Corpus
+        from .corpus import Corpus
 
         self.corpus = Corpus()
 
@@ -391,10 +391,8 @@ class UbuntuCorpusTrainer(Trainer):
             '**', '**', '*.tsv'
         )
 
-        file_kwargs = {}
-
         # Specify the encoding in Python versions 3 and up
-        file_kwargs['encoding'] = 'utf-8'
+        file_kwargs = {'encoding': 'utf-8'}
         # WARNING: This might fail to read a unicode corpus file in Python 2.x
 
         for file in glob.iglob(extracted_corpus_path):
diff --git a/chatter/chatterbot/utils.py b/chatter/chatterbot/utils.py
index 9785bd4..8692612 100644
--- a/chatter/chatterbot/utils.py
+++ b/chatter/chatterbot/utils.py
@@ -11,8 +11,16 @@ def import_module(dotted_path):
     import importlib
 
     module_parts = dotted_path.split('.')
+    if module_parts[:2] == ["chatter", "chatterbot"]:
+        # An import path starting with chatter.chatterbot means it comes from this
+        # package, and should be imported relatively.
+        package = __package__
+        module_parts = module_parts[2:]
+        module_parts[0] = "." + module_parts[0]
+    else:
+        package = None
     module_path = '.'.join(module_parts[:-1])
-    module = importlib.import_module(module_path)
+    module = importlib.import_module(module_path, package=package)
 
     return getattr(module, module_parts[-1])
 
@@ -46,7 +54,7 @@ def validate_adapter_class(validate_class, adapter_class):
 
     :raises: Adapter.InvalidAdapterTypeException
     """
-    from chatter.chatterbot.adapters import Adapter
+    from .adapters import Adapter
 
     # If a dictionary was passed in, check if it has an import_path attribute
     if isinstance(validate_class, dict):
@@ -128,7 +136,7 @@ def remove_stopwords(tokens, language):
     Stop words are words like "is, the, a, ..."
 
     Be sure to download the required NLTK corpus before calling this function:
-    - from chatter.chatterbot.utils import nltk_download_corpus
+    - from chatterbot.utils import nltk_download_corpus
     - nltk_download_corpus('corpora/stopwords')
     """
     from nltk.corpus import stopwords
diff --git a/coglint/coglint.py b/coglint/coglint.py
index 2a802fe..37f129f 100644
--- a/coglint/coglint.py
+++ b/coglint/coglint.py
@@ -75,7 +75,7 @@ class CogLint(Cog):
 
         for c in code_blocks:
             is_python, code = c.split(None, 1)
-            is_python = is_python.lower() == "python"
+            is_python = is_python.lower() in ["python", "py"]
             if is_python:  # Then we're in business
                 linted, errors = await self.lint_code(code)
                 linted = linted.getvalue()
diff --git a/coglint/info..json b/coglint/info.json
similarity index 91%
rename from coglint/info..json
rename to coglint/info.json
index 6436b6d..aa3f665 100644
--- a/coglint/info..json
+++ b/coglint/info.json
@@ -10,7 +10,7 @@
   "description": "Lint python code posted in chat",
   "hidden": true,
   "install_msg": "Thank you for installing CogLint! Get started with `[p]load coglint` and `[p]help CogLint`",
-  "requirements": [],
+  "requirements": ["pylint"],
   "short": "Python cog linter",
   "tags": [
     "bobloy",
diff --git a/dad/dad.py b/dad/dad.py
index bf67526..b1ab14a 100644
--- a/dad/dad.py
+++ b/dad/dad.py
@@ -28,7 +28,7 @@ class Dad(Cog):
         self.bot = bot
         self.config = Config.get_conf(self, identifier=6897100, force_registration=True)
 
-        default_guild = {"enabled": False, "nickname": False, "cooldown": 240}
+        default_guild = {"enabled": True, "nickname": False, "cooldown": 240}
 
         self.config.register_guild(**default_guild)
 
@@ -76,6 +76,7 @@ class Dad(Cog):
         await self.config.guild(ctx.guild).cooldown.set(cooldown)
         await ctx.send("Dad joke cooldown is now set to {}".format(cooldown))
 
+    @commands.Cog.listener()
     async def on_message(self, message: discord.Message):
         guild: discord.Guild = message.guild
         if guild is None:
@@ -104,8 +105,10 @@ class Dad(Cog):
                     out = message.author.mention
             else:
                 out = lower[4:]
-
-            await message.channel.send("Hi {}, I'm {}!".format(out, guild.me.display_name))
+            try:
+                await message.channel.send("Hi {}, I'm {}!".format(out, guild.me.display_name))
+            except discord.HTTPException:
+                return
 
             self.cooldown[guild.id] = datetime.now() + timedelta(
                 seconds=(await guild_config.cooldown())
diff --git a/dad/info..json b/dad/info.json
similarity index 93%
rename from dad/info..json
rename to dad/info.json
index 4b8f44c..81af745 100644
--- a/dad/info..json
+++ b/dad/info.json
@@ -10,7 +10,6 @@
   "description": "Tell dad jokes and give out bad nicknames",
   "hidden": true,
   "install_msg": "Thank you for installing Dad. Get started with `[p]load dad`, then `[p]help Dad`",
-  "requirements": [],
   "short": "Dad joke bot",
   "tags": [
     "bobloy",
diff --git a/exclusiverole/exclusiverole.py b/exclusiverole/exclusiverole.py
index d59a474..e792b44 100644
--- a/exclusiverole/exclusiverole.py
+++ b/exclusiverole/exclusiverole.py
@@ -9,8 +9,7 @@ Cog: Any = getattr(commands, "Cog", object)
 
 class ExclusiveRole(Cog):
     """
-    Custom commands
-    Creates commands used to display text and adjust roles
+    Create roles that prevent all other roles from being added
     """
 
     def __init__(self, bot):
@@ -20,7 +19,8 @@ class ExclusiveRole(Cog):
 
         self.config.register_guild(**default_guild)
 
-    @commands.group(no_pm=True, aliases=["exclusiverole"])
+    @commands.guild_only()
+    @commands.group(aliases=["exclusiverole"])
     async def exclusive(self, ctx):
         """Base command for managing exclusive roles"""
 
@@ -55,6 +55,21 @@ class ExclusiveRole(Cog):
 
         await ctx.send("Exclusive role removed")
 
+    @exclusive.command(name="list")
+    @checks.mod_or_permissions(administrator=True)
+    async def exclusive_list(self, ctx):
+        """List current exclusive roles"""
+        role_list = await self.config.guild(ctx.guild).role_list()
+        guild: discord.Guild = ctx.guild
+
+        role_list = [guild.get_role(role_id) for role_id in role_list]
+        out = "**Exclusive roles**\n\n"
+
+        for role in role_list:
+            out += "{}\n".format(role)
+
+        await ctx.send(out)
+
     async def check_guild(self, guild: discord.Guild):
         role_set = set(await self.config.guild(guild).role_list())
         for member in guild.members:
@@ -74,6 +89,7 @@ class ExclusiveRole(Cog):
             to_remove = [discord.utils.get(member.guild.roles, id=id) for id in to_remove]
             await member.remove_roles(*to_remove, reason="Exclusive roles")
 
+    @commands.Cog.listener()
     async def on_member_update(self, before: discord.Member, after: discord.Member):
         if before.roles == after.roles:
             return
diff --git a/exclusiverole/info.json b/exclusiverole/info.json
index 8c90983..ade6bd0 100644
--- a/exclusiverole/info.json
+++ b/exclusiverole/info.json
@@ -10,7 +10,6 @@
   "description": "Assign roles to be exclusive, preventing other roles from being added",
   "hidden": false,
   "install_msg": "Thank you for installing ExclusiveRole. Get started with `[p]load exclusiverole` and `[p]help ExclusiveRole`",
-  "requirements": [],
   "short": "Set roles to be exclusive",
   "tags": [
     "fox",
diff --git a/flag/flag.py b/flag/flag.py
index 573e1bc..2751d33 100644
--- a/flag/flag.py
+++ b/flag/flag.py
@@ -72,25 +72,22 @@ class Flag(Cog):
         """Flag a member"""
         guild = ctx.guild
         await self._check_flags(guild)
-        # clashroyale = self.bot.get_cog('clashroyale')
-        # if clashroyale is None:
-        # await ctx.send("Requires clashroyale cog installed")
-        # return
 
         flag = self._flag_template()
-        expiredate = date.today()
-        expiredate += timedelta(days=await self.config.guild(guild).days())
+        expire_date = date.today() + timedelta(days=await self.config.guild(guild).days())
 
         flag["reason"] = reason
-        flag["expireyear"] = expiredate.year
-        flag["expiremonth"] = expiredate.month
-        flag["expireday"] = expiredate.day
+        flag["expireyear"] = expire_date.year
+        flag["expiremonth"] = expire_date.month
+        flag["expireday"] = expire_date.day
 
         # flags = await self.config.guild(guild).flags.get_raw(str(member.id), default=[])
         # flags.append(flag)
         # await self.config.guild(guild).flags.set_raw(str(member.id), value=flags)
 
         async with self.config.guild(guild).flags() as flags:
+            if str(member.id) not in flags:
+                flags[str(member.id)] = []
             flags[str(member.id)].append(flag)
 
         outembed = await self._list_flags(member)
@@ -98,7 +95,10 @@ class Flag(Cog):
         if outembed:
             await ctx.send(embed=outembed)
             if await self.config.guild(guild).dm():
-                await member.send(embed=outembed)
+                try:
+                    await member.send(embed=outembed)
+                except discord.Forbidden:
+                    await ctx.send("DM-ing user failed")
         else:
             await ctx.send("This member has no flags.. somehow..")
 
@@ -173,7 +173,7 @@ class Flag(Cog):
     async def _check_flags(self, guild: discord.Guild):
         """Updates and removes expired flags"""
         flag_data = await self.config.guild(guild).flags()
-        flag_d = {}
+        # flag_d = {}
         for memberid, flags in flag_data.items():
             # for member in guild.members:
             # flags = await self.config.guild(guild).flags.get_raw(str(member.id), default=[])
diff --git a/flag/info..json b/flag/info.json
similarity index 94%
rename from flag/info..json
rename to flag/info.json
index 0883f13..7ee8ad5 100644
--- a/flag/info..json
+++ b/flag/info.json
@@ -10,7 +10,6 @@
   "description": "Add expiring flags on members to track warnings or incidents",
   "hidden": false,
   "install_msg": "Thank you for installing Flag! Get started with `[p]load flag` and `[p]help Flag`",
-  "requirements": [],
   "short": "Add expiring flags to members",
   "tags": [
     "bobloy",
diff --git a/forcemention/forcemention.py b/forcemention/forcemention.py
index b8ef9a9..0bf2a61 100644
--- a/forcemention/forcemention.py
+++ b/forcemention/forcemention.py
@@ -1,12 +1,18 @@
 from discord.utils import get
 
+from redbot import VersionInfo, version_info
 from redbot.core import Config, checks, commands
 
 from redbot.core.bot import Red
 from typing import Any
+import asyncio
 
 Cog: Any = getattr(commands, "Cog", object)
 
+if version_info < VersionInfo.from_str("3.4.0"):
+    SANITIZE_ROLES_KWARG = {}
+else:
+    SANITIZE_ROLES_KWARG = {"sanitize_roles": False}
 
 class ForceMention(Cog):
     """
@@ -35,7 +41,8 @@ class ForceMention(Cog):
 
         if not role_obj.mentionable:
             await role_obj.edit(mentionable=True)
-            await ctx.send("{}\n{}".format(role_obj.mention, message))
+            await ctx.send("{}\n{}".format(role_obj.mention, message), **SANITIZE_ROLES_KWARG)
+            await asyncio.sleep(5)
             await role_obj.edit(mentionable=False)
         else:
-            await ctx.send("{}\n{}".format(role_obj.mention, message))
+            await ctx.send("{}\n{}".format(role_obj.mention, message), **SANITIZE_ROLES_KWARG)
diff --git a/forcemention/info..json b/forcemention/info.json
similarity index 93%
rename from forcemention/info..json
rename to forcemention/info.json
index 3a7b1e1..f7326b9 100644
--- a/forcemention/info..json
+++ b/forcemention/info.json
@@ -10,7 +10,6 @@
   "description": "Mentions roles that are unmentionable",
   "hidden": false,
   "install_msg": "Thank you for installing ForceMention! Get started with `[p]load forcemention`, then `[p]forcemention`",
-  "requirements": [],
   "short": "Mention unmentionables",
   "tags": [
     "bobloy",
diff --git a/hangman/__init__.py b/hangman/__init__.py
index 88598f8..dbc62e7 100644
--- a/hangman/__init__.py
+++ b/hangman/__init__.py
@@ -4,6 +4,6 @@ from redbot.core import data_manager
 
 def setup(bot):
     n = Hangman(bot)
-    data_manager.load_bundled_data(n, __file__)
+    data_manager.bundled_data_path(n)
     bot.add_cog(n)
     bot.add_listener(n.on_react, "on_reaction_add")
diff --git a/hangman/hangman.py b/hangman/hangman.py
index a5b4137..69db263 100644
--- a/hangman/hangman.py
+++ b/hangman/hangman.py
@@ -3,7 +3,7 @@ from random import randint
 
 import discord
 from redbot.core import Config, checks, commands
-from redbot.core.data_manager import cog_data_path
+from redbot.core.data_manager import bundled_data_path
 from typing import Any
 
 Cog: Any = getattr(commands, "Cog", object)
@@ -31,9 +31,11 @@ class Hangman(Cog):
                 "answer": "",
             }
         )
-        self.path = str(cog_data_path(self)).replace("\\", "/")
+#         self.path = str(cog_data_path(self)).replace("\\", "/")
 
-        self.answer_path = self.path + "/bundled_data/hanganswers.txt"
+#         self.answer_path = self.path + "/bundled_data/hanganswers.txt"
+
+        self.answer_path = bundled_data_path(self) / "hanganswers.txt"
 
         self.winbool = defaultdict(lambda: False)
 
@@ -137,21 +139,25 @@ class Hangman(Cog):
                     HANGMAN""",
             )
 
-    @commands.group(aliases=["sethang"], pass_context=True)
+    @commands.group(aliases=["sethang"])
     @checks.mod_or_permissions(administrator=True)
     async def hangset(self, ctx):
         """Adjust hangman settings"""
         if ctx.invoked_subcommand is None:
             pass
 
-    @hangset.command(pass_context=True)
+    @hangset.command()
     async def face(self, ctx: commands.Context, theface):
         """Set the face of the hangman"""
         message = ctx.message
         # Borrowing FlapJack's emoji validation
         # (https://github.com/flapjax/FlapJack-Cogs/blob/master/smartreact/smartreact.py)
         if theface[:2] == "<:":
-            theface = [r for r in self.bot.emojis if r.id == theface.split(":")[2][:-1]][0]
+            theface = self.bot.get_emoji(int(theface.split(":")[2][:-1]))
+
+        if theface is None:
+            await ctx.send("I could not find that emoji")
+            return
 
         try:
             # Use the face as reaction to see if it's valid (THANKS FLAPJACK <3)
@@ -160,11 +166,11 @@ class Hangman(Cog):
             await ctx.send("That's not an emoji I recognize.")
             return
 
-        await self.config.guild(ctx.guild).theface.set(theface)
+        await self.config.guild(ctx.guild).theface.set(str(theface))
         await self._update_hanglist()
         await ctx.send("Face has been updated!")
 
-    @hangset.command(pass_context=True)
+    @hangset.command()
     async def toggleemoji(self, ctx: commands.Context):
         """Toggles whether to automatically react with the alphabet"""
 
@@ -172,7 +178,7 @@ class Hangman(Cog):
         await self.config.guild(ctx.guild).emojis.set(not current)
         await ctx.send("Emoji Letter reactions have been set to {}".format(not current))
 
-    @commands.command(aliases=["hang"], pass_context=True)
+    @commands.command(aliases=["hang"])
     async def hangman(self, ctx, guess: str = None):
         """Play a game of hangman against the bot!"""
         if guess is None:
@@ -270,6 +276,7 @@ class Hangman(Cog):
 
         await self._reprintgame(message)
 
+    @commands.Cog.listener()
     async def on_react(self, reaction, user):
         """ Thanks to flapjack reactpoll for guidelines
             https://github.com/flapjax/FlapJack-Cogs/blob/master/reactpoll/reactpoll.py"""
@@ -339,11 +346,14 @@ class Hangman(Cog):
 
         await message.add_reaction(self.navigate[0])
 
-    def _make_say(self, guild):
+    async def _make_say(self, guild):
         c_say = "Guess this: " + str(self._hideanswer(guild)) + "\n"
         c_say += "Used Letters: " + str(self._guesslist(guild)) + "\n"
         c_say += self.hanglist[guild][self.the_data[guild]["hangman"]] + "\n"
-        c_say += self.navigate[0] + " for A-M, " + self.navigate[-1] + " for N-Z"
+        if await self.config.guild(guild).emojis():
+            c_say += "{} for A-M, {} for N-Z".format(self.navigate[0], self.navigate[-1])
+        else:
+            c_say += "React with {} - {} to guess".format(self.letters[0], self.letters[-1])
 
         return c_say
 
@@ -351,7 +361,7 @@ class Hangman(Cog):
         if message.guild not in self.hanglist:
             await self._update_hanglist()
 
-        c_say = self._make_say(message.guild)
+        c_say = await self._make_say(message.guild)
 
         await message.edit(content=c_say)
         self.the_data[message.guild]["trackmessage"] = message.id
@@ -363,7 +373,7 @@ class Hangman(Cog):
         if channel.guild not in self.hanglist:
             await self._update_hanglist()
 
-        c_say = self._make_say(channel.guild)
+        c_say = await self._make_say(channel.guild)
 
         message = await channel.send(c_say)
 
diff --git a/infochannel/__init__.py b/infochannel/__init__.py
new file mode 100644
index 0000000..514cd5f
--- /dev/null
+++ b/infochannel/__init__.py
@@ -0,0 +1,5 @@
+from .infochannel import InfoChannel
+
+
+def setup(bot):
+    bot.add_cog(InfoChannel(bot))
diff --git a/infochannel/info.json b/infochannel/info.json
new file mode 100644
index 0000000..2a2efc5
--- /dev/null
+++ b/infochannel/info.json
@@ -0,0 +1,18 @@
+{
+  "author": [
+    "Bobloy"
+  ],
+  "bot_version": [
+    3,
+    0,
+    0
+  ],
+  "description": "Create a channel with updating server info",
+  "hidden": false,
+  "install_msg": "Thank you for installing InfoChannel. Get started with `[p]load infochannel`, then `[p]help InfoChannel`",
+  "short": "Updating server info channel",
+  "tags": [
+    "bobloy",
+    "utils"
+  ]
+}
\ No newline at end of file
diff --git a/infochannel/infochannel.py b/infochannel/infochannel.py
new file mode 100644
index 0000000..23e04de
--- /dev/null
+++ b/infochannel/infochannel.py
@@ -0,0 +1,215 @@
+from typing import Any
+import discord
+
+from redbot.core import Config, commands, checks
+from redbot.core.bot import Red
+
+Cog: Any = getattr(commands, "Cog", object)
+listener = getattr(commands.Cog, "listener", None)  # Trusty + Sinbad
+if listener is None:
+
+    def listener(name=None):
+        return lambda x: x
+
+
+class InfoChannel(Cog):
+    """
+    Create a channel with updating server info
+
+    Less important information about the cog
+    """
+
+    def __init__(self, bot: Red):
+        self.bot = bot
+        self.config = Config.get_conf(
+            self, identifier=731101021116710497110110101108, force_registration=True
+        )
+
+        default_guild = {
+            "channel_id": None,
+            "botchannel_id": None,
+            "onlinechannel_id": None,
+            "member_count": True,
+            "bot_count": False,
+            "online_count": False,
+        }
+
+        self.config.register_guild(**default_guild)
+
+    @commands.command()
+    @checks.admin()
+    async def infochannel(self, ctx: commands.Context):
+        """
+        Toggle info channel for this server
+        """
+
+        def check(m):
+            return (
+                m.content.upper() in ["Y", "YES", "N", "NO"]
+                and m.channel == ctx.channel
+                and m.author == ctx.author
+            )
+
+        guild: discord.Guild = ctx.guild
+        channel_id = await self.config.guild(guild).channel_id()
+        if channel_id is not None:
+            channel: discord.VoiceChannel = guild.get_channel(channel_id)
+        else:
+            channel: discord.VoiceChannel = None
+
+        if channel_id is not None and channel is None:
+            await ctx.send("Info channel has been deleted, recreate it?")
+        elif channel_id is None:
+            await ctx.send("Enable info channel on this server?")
+        else:
+            await ctx.send("Do you wish to delete current info channels?")
+
+        msg = await self.bot.wait_for("message", check=check)
+
+        if msg.content.upper() in ["N", "NO"]:
+            await ctx.send("Cancelled")
+            return
+
+        if channel is None:
+            await self.make_infochannel(guild)
+        else:
+            await self.delete_infochannel(guild, channel)
+
+        if not await ctx.tick():
+            await ctx.send("Done!")
+
+    @commands.group()
+    @checks.admin()
+    async def infochannelset(self, ctx: commands.Context):
+        """
+        Toggle different types of infochannels
+        """
+
+    @infochannelset.command(name="botcount")
+    async def _infochannelset_botcount(self, ctx: commands.Context, enabled: bool = None):
+        """
+        Toggle an infochannel that shows the amount of bots in the server
+        """
+        guild = ctx.guild
+        if enabled is None:
+            enabled = not await self.config.guild(guild).bot_count()
+        await self.config.guild(guild).bot_count.set(enabled)
+        if enabled:
+            await ctx.send("InfoChannel for bot count has been enabled.")
+        else:
+            await ctx.send("InfoChannel for bot count has been disabled.")
+
+    @infochannelset.command(name="onlinecount")
+    async def _infochannelset_onlinecount(self, ctx: commands.Context, enabled: bool = None):
+        """
+        Toggle an infochannel that shows the amount of online users in the server
+        """
+        guild = ctx.guild
+        if enabled is None:
+            enabled = not await self.config.guild(guild).online_count()
+        await self.config.guild(guild).online_count.set(enabled)
+        if enabled:
+            await ctx.send("InfoChannel for online user count has been enabled.")
+        else:
+            await ctx.send("InfoChannel for online user count has been disabled.")
+
+    async def make_infochannel(self, guild: discord.Guild):
+        botcount = await self.config.guild(guild).bot_count()
+        onlinecount = await self.config.guild(guild).online_count()
+        overwrites = {
+            guild.default_role: discord.PermissionOverwrite(connect=False),
+            guild.me: discord.PermissionOverwrite(manage_channels=True, connect=True),
+        }
+
+        channel = await guild.create_voice_channel(
+            "Placeholder", reason="InfoChannel make", overwrites=overwrites
+        )
+        await self.config.guild(guild).channel_id.set(channel.id)
+
+        if botcount:
+            botchannel = await guild.create_voice_channel(
+                "Placeholder", reason="InfoChannel botcount", overwrites=overwrites
+            )
+            await self.config.guild(guild).botchannel_id.set(botchannel.id)
+        if onlinecount:
+            onlinechannel = await guild.create_voice_channel(
+                "Placeholder", reason="InfoChannel onlinecount", overwrites=overwrites
+            )
+            await self.config.guild(guild).onlinechannel_id.set(onlinechannel.id)
+
+        await self.update_infochannel(guild)
+
+    async def delete_infochannel(self, guild: discord.Guild, channel: discord.VoiceChannel):
+        guild_data = await self.config.guild(guild).all()
+        botchannel_id = guild_data["botchannel_id"]
+        onlinechannel_id = guild_data["onlinechannel_id"]
+        botchannel: discord.VoiceChannel = guild.get_channel(botchannel_id)
+        onlinechannel: discord.VoiceChannel = guild.get_channel(onlinechannel_id)
+        channel_id = guild_data["channel_id"]
+        channel: discord.VoiceChannel = guild.get_channel(channel_id)
+        await channel.delete(reason="InfoChannel delete")
+        if botchannel_id is not None:
+            await botchannel.delete(reason="InfoChannel delete")
+        if onlinechannel_id is not None:
+            await onlinechannel.delete(reason="InfoChannel delete")
+        await self.config.guild(guild).clear()
+
+    async def update_infochannel(self, guild: discord.Guild):
+        guild_data = await self.config.guild(guild).all()
+        botcount = guild_data["bot_count"]
+        onlinecount = guild_data["online_count"]
+
+        # Gets count of bots
+        bots = lambda x: x.bot
+        num = len([m for m in guild.members if bots(m)])
+        bot_msg = f"Bots: {num}"
+
+        # Gets count of online users
+        members = guild.member_count
+        offline = len(list(filter(lambda m: m.status is discord.Status.offline, guild.members)))
+        num = members - offline
+        online_msg = f"Online: {num}"
+
+        # Gets count of actual users
+        total = lambda x: not x.bot
+        num = len([m for m in guild.members if total(m)])
+        human_msg = f"Total Humans: {num}"
+
+        channel_id = guild_data["channel_id"]
+        if channel_id is None:
+            return
+
+        botchannel_id = guild_data["botchannel_id"]
+        onlinechannel_id = guild_data["onlinechannel_id"]
+        channel_id = guild_data["channel_id"]
+        channel: discord.VoiceChannel = guild.get_channel(channel_id)
+        botchannel: discord.VoiceChannel = guild.get_channel(botchannel_id)
+        onlinechannel: discord.VoiceChannel = guild.get_channel(onlinechannel_id)
+
+        if guild_data["member_count"]:
+            name = "{} ".format(human_msg)
+
+        await channel.edit(reason="InfoChannel update", name=name)
+
+        if botcount:
+            name = "{} ".format(bot_msg)
+            await botchannel.edit(reason="InfoChannel update", name=name)
+
+        if onlinecount:
+            name = "{} ".format(online_msg)
+            await onlinechannel.edit(reason="InfoChannel update", name=name)
+
+    @listener()
+    async def on_member_join(self, member: discord.Member):
+        await self.update_infochannel(member.guild)
+
+    @listener()
+    async def on_member_remove(self, member: discord.Member):
+        await self.update_infochannel(member.guild)
+
+    @listener()
+    async def on_member_update(self, before: discord.Member, after: discord.Member):
+        onlinecount = await self.config.guild(after.guild).online_count()
+        if onlinecount:
+            if before.status != after.status:
+                await self.update_infochannel(after.guild)
diff --git a/leaver/info.json b/leaver/info.json
index 669689b..f5b0a65 100644
--- a/leaver/info.json
+++ b/leaver/info.json
@@ -10,7 +10,6 @@
   "description": "Keeps track of when people leave the server, and posts a message notifying",
   "hidden": false,
   "install_msg": "Thank you for installing Leaver. Get started with `[p]load leaver`, then `[p]help Leaver`",
-  "requirements": [],
   "short": "Send message on leave",
   "tags": [
     "bobloy",
diff --git a/leaver/leaver.py b/leaver/leaver.py
index e325c9a..83e8f1f 100644
--- a/leaver/leaver.py
+++ b/leaver/leaver.py
@@ -1,6 +1,7 @@
 import discord
 
 from redbot.core import Config, checks, commands
+from redbot.core.bot import Red
 from redbot.core.commands import Context
 from typing import Any
 
@@ -12,9 +13,11 @@ class Leaver(Cog):
     Creates a goodbye message when people leave
     """
 
-    def __init__(self, bot):
+    def __init__(self, bot: Red):
         self.bot = bot
-        self.config = Config.get_conf(self, identifier=9811198108111121, force_registration=True)
+        self.config = Config.get_conf(
+            self, identifier=9811198108111121, force_registration=True
+        )
         default_guild = {"channel": ""}
 
         self.config.register_guild(**default_guild)
@@ -28,16 +31,28 @@ class Leaver(Cog):
 
     @leaverset.command()
     async def channel(self, ctx: Context):
+        """Choose the channel to send leave messages to"""
         guild = ctx.guild
         await self.config.guild(guild).channel.set(ctx.channel.id)
         await ctx.send("Channel set to " + ctx.channel.name)
 
+    @commands.Cog.listener()
     async def on_member_remove(self, member: discord.Member):
         guild = member.guild
         channel = await self.config.guild(guild).channel()
 
         if channel != "":
             channel = guild.get_channel(channel)
-            await channel.send(str(member) + "(*" + str(member.nick) + "*) has left the server!")
+            out = "{}{} has left the server".format(
+                member, member.nick if member.nick is not None else ""
+            )
+            if await self.bot.embed_requested(channel, member):
+                await channel.send(
+                    embed=discord.Embed(
+                        description=out, color=(await self.bot.get_embed_color(channel))
+                    )
+                )
+            else:
+                await channel.send(out)
         else:
             pass
diff --git a/lovecalculator/lovecalculator.py b/lovecalculator/lovecalculator.py
index 25e7b46..3a83cab 100644
--- a/lovecalculator/lovecalculator.py
+++ b/lovecalculator/lovecalculator.py
@@ -30,7 +30,7 @@ class LoveCalculator(Cog):
                 soup_object = BeautifulSoup(await response.text(), "html.parser")
                 try:
                     description = (
-                        soup_object.find("div", attrs={"class": "result score"}).get_text().strip()
+                        soup_object.find("div", attrs={"class": "result__score"}).get_text().strip()
                     )
                 except:
                     description = "Dr. Love is busy right now"
diff --git a/lseen/info..json b/lseen/info.json
similarity index 100%
rename from lseen/info..json
rename to lseen/info.json
diff --git a/lseen/lseen.py b/lseen/lseen.py
index bed7400..7a3d6ab 100644
--- a/lseen/lseen.py
+++ b/lseen/lseen.py
@@ -24,7 +24,7 @@ class LastSeen(Cog):
         self.bot = bot
         self.config = Config.get_conf(self, identifier=9811198108111121, force_registration=True)
         default_global = {}
-        default_guild = {"enabled": True}
+        default_guild = {"enabled": False}
         default_member = {"seen": None}
 
         self.config.register_global(**default_global)
@@ -74,6 +74,7 @@ class LastSeen(Cog):
         embed = discord.Embed(timestamp=last_seen)
         await ctx.send(embed=embed)
 
+    @commands.Cog.listener()
     async def on_member_update(self, before: discord.Member, after: discord.Member):
         if before.status != self.offline_status and after.status == self.offline_status:
             if not await self.config.guild(before.guild).enabled():
diff --git a/planttycoon/__init__.py b/planttycoon/__init__.py
index c43d7b7..7819b90 100644
--- a/planttycoon/__init__.py
+++ b/planttycoon/__init__.py
@@ -1,5 +1,10 @@
+from redbot.core import data_manager
+
 from .planttycoon import PlantTycoon
 
 
-def setup(bot):
-    bot.add_cog(PlantTycoon(bot))
+async def setup(bot):
+    tycoon = PlantTycoon(bot)
+    data_manager.bundled_data_path(tycoon)
+    await tycoon._load_plants_products()  # I can access protected members if I want, linter!!
+    bot.add_cog(tycoon)
diff --git a/planttycoon/data/plants.json b/planttycoon/data/plants.json
index 21cb05b..cb597af 100644
--- a/planttycoon/data/plants.json
+++ b/planttycoon/data/plants.json
@@ -379,7 +379,7 @@
       "rarity": "rare",
       "image": "http://i.imgur.com/hoh17hp.jpg",
       "health": 100,
-      "degradation": 1,
+      "degradation": 1.5,
       "threshold": 110,
       "badge": "Sporadic",
       "reward": 2400
@@ -391,7 +391,7 @@
       "rarity": "rare",
       "image": "http://i.imgur.com/lhSjfQY.jpg",
       "health": 100,
-      "degradation": 1,
+      "degradation": 1.5,
       "threshold": 110,
       "badge": "Sporadic",
       "reward": 2400
@@ -403,7 +403,7 @@
       "rarity": "rare",
       "image": "http://i.imgur.com/Dhw9ync.jpg",
       "health": 100,
-      "degradation": 1,
+      "degradation": 1.5,
       "threshold": 110,
       "badge": "Sporadic",
       "reward": 2400
@@ -415,7 +415,7 @@
       "rarity": "rare",
       "image": "http://i.imgur.com/h4fJo2R.jpg",
       "health": 100,
-      "degradation": 1,
+      "degradation": 1.5,
       "threshold": 110,
       "badge": "Sporadic",
       "reward": 2400
@@ -427,7 +427,7 @@
       "rarity": "rare",
       "image": "http://i.imgur.com/NoSdxXh.jpg",
       "health": 100,
-      "degradation": 1,
+      "degradation": 1.5,
       "threshold": 110,
       "badge": "Sporadic",
       "reward": 2400
@@ -439,7 +439,7 @@
       "rarity": "rare",
       "image": "http://i.imgur.com/4ArSekX.jpg",
       "health": 100,
-      "degradation": 1,
+      "degradation": 1.5,
       "threshold": 110,
       "badge": "Sporadic",
       "reward": 2400
@@ -451,43 +451,19 @@
       "rarity": "super-rare",
       "image": "http://i.imgur.com/ASZXr7C.png",
       "health": 100,
-      "degradation": 1,
-      "threshold": 110,
-      "badge": "Odd-pod",
-      "reward": 3600
-    },
-    {
-      "name": "tba",
-      "article": "a",
-      "time": 9000,
-      "rarity": "super-rare",
-      "image": "tba",
-      "health": 100,
-      "degradation": 1.5,
+      "degradation": 2,
       "threshold": 110,
       "badge": "Odd-pod",
       "reward": 3600
     },
     {
-      "name": "Pirahna Plant",
+      "name": "Piranha Plant",
       "article": "a",
       "time": 9000,
       "rarity": "super-rare",
       "image": "http://i.imgur.com/c03i9W7.jpg",
       "health": 100,
-      "degradation": 1.5,
-      "threshold": 110,
-      "badge": "Odd-pod",
-      "reward": 3600
-    },
-    {
-      "name": "tba",
-      "article": "a",
-      "time": 9000,
-      "rarity": "super-rare",
-      "image": "tba",
-      "health": 100,
-      "degradation": 1.5,
+      "degradation": 2,
       "threshold": 110,
       "badge": "Odd-pod",
       "reward": 3600
@@ -499,19 +475,19 @@
       "rarity": "super-rare",
       "image": "https://i.imgur.com/Vo4v2Ry.png",
       "health": 100,
-      "degradation": 1.5,
+      "degradation": 2,
       "threshold": 110,
       "badge": "Odd-pod",
       "reward": 3600
     },
     {
-      "name": "tba",
+      "name": "Eldergleam Tree",
       "article": "a",
       "time": 10800,
       "rarity": "epic",
-      "image": "tba",
+      "image": "https://i.imgur.com/pnZYKZc.jpg",
       "health": 100,
-      "degradation": 2,
+      "degradation": 2.5,
       "threshold": 110,
       "badge": "Greenfingers",
       "reward": 5400
@@ -523,7 +499,7 @@
       "rarity": "epic",
       "image": "http://i.imgur.com/sizf7hE.png",
       "health": 100,
-      "degradation": 2,
+      "degradation": 2.5,
       "threshold": 110,
       "badge": "Greenfingers",
       "reward": 5400
@@ -535,7 +511,7 @@
       "rarity": "epic",
       "image": "http://i.imgur.com/9f5QzaW.jpg",
       "health": 100,
-      "degradation": 2,
+      "degradation": 2.5,
       "threshold": 110,
       "badge": "Greenfingers",
       "reward": 5400
@@ -547,7 +523,7 @@
       "rarity": "epic",
       "image": "https://i.imgur.com/ExqLLHO.png",
       "health": 100,
-      "degradation": 2,
+      "degradation": 2.5,
       "threshold": 110,
       "badge": "Greenfingers",
       "reward": 5400
@@ -559,7 +535,7 @@
       "rarity": "epic",
       "image": "https://i.imgur.com/tv2B72j.png",
       "health": 100,
-      "degradation": 2,
+      "degradation": 2.5,
       "threshold": 110,
       "badge": "Greenfingers",
       "reward": 5400
@@ -571,7 +547,7 @@
       "rarity": "legendary",
       "image": "http://i.imgur.com/MIJQDLL.jpg",
       "health": 100,
-      "degradation": 3,
+      "degradation": 8,
       "threshold": 110,
       "badge": "Nobel Peas Prize",
       "reward": 10800
@@ -583,7 +559,7 @@
       "rarity": "legendary",
       "image": "http://i.imgur.com/cFSmaHH.png",
       "health": 100,
-      "degradation": 3,
+      "degradation": 8,
       "threshold": 110,
       "badge": "Nobel Peas Prize",
       "reward": 10800
@@ -595,7 +571,7 @@
       "rarity": "legendary",
       "image": "http://i.imgur.com/Ibwm2xY.jpg",
       "health": 100,
-      "degradation": 3,
+      "degradation": 8,
       "threshold": 110,
       "badge": "Nobel Peas Prize",
       "reward": 10800
@@ -687,4 +663,4 @@
       "reward": 21600
     }
   }
-}
+}
\ No newline at end of file
diff --git a/planttycoon/data/products.json b/planttycoon/data/products.json
index 8d5b98d..f8a0a96 100644
--- a/planttycoon/data/products.json
+++ b/planttycoon/data/products.json
@@ -39,4 +39,4 @@
     "category": "tool",
     "uses": 10
   }
-}
+}
\ No newline at end of file
diff --git a/planttycoon/planttycoon.py b/planttycoon/planttycoon.py
index 46f8785..1ab7eba 100644
--- a/planttycoon/planttycoon.py
+++ b/planttycoon/planttycoon.py
@@ -1,15 +1,16 @@
 import asyncio
 import collections
+import copy
 import datetime
+import json
 import time
 from random import choice
+from typing import Any
 
 import discord
 from redbot.core import commands, Config, bank
 from redbot.core.bot import Red
-from typing import Any
-
-Cog: Any = getattr(commands, "Cog", object)
+from redbot.core.data_manager import bundled_data_path
 
 
 class Gardener:
@@ -29,7 +30,9 @@ class Gardener:
             "Badges: {}\n"
             "Points: {}\n"
             "Products: {}\n"
-            "Current: {}".format(self.user, self.badges, self.points, self.products, self.current)
+            "Current: {}".format(
+                self.user, self.badges, self.points, self.products, self.current
+            )
         )
 
     def __repr__(self):
@@ -37,7 +40,7 @@ class Gardener:
             self.user, self.badges, self.points, self.products, self.current
         )
 
-    async def _load_config(self):
+    async def load_config(self):
         self.badges = await self.config.user(self.user).badges()
         self.points = await self.config.user(self.user).points()
         self.products = await self.config.user(self.user).products()
@@ -49,6 +52,33 @@ class Gardener:
         await self.config.user(self.user).products.set(self.products)
         await self.config.user(self.user).current.set(self.current)
 
+    async def is_complete(self, now):
+
+        message = None
+        if self.current:
+            then = self.current["timestamp"]
+            health = self.current["health"]
+            grow_time = self.current["time"]
+            badge = self.current["badge"]
+            reward = self.current["reward"]
+            if (now - then) > grow_time:
+                self.points += reward
+                if badge not in self.badges:
+                    self.badges.append(badge)
+                message = (
+                    "Your plant made it! "
+                    "You are rewarded with the **{}** badge and you have received **{}** Thneeds.".format(
+                        badge, reward
+                    )
+                )
+            if health < 0:
+                message = "Your plant died!"
+
+        if message is not None:
+            self.current = {}
+            await self.save_gardener()
+            await self.user.send(message)
+
 
 async def _die_in(gardener, degradation):
     #
@@ -87,10 +117,11 @@ async def _withdraw_points(gardener: Gardener, amount):
         return True
 
 
-class PlantTycoon(Cog):
+class PlantTycoon(commands.Cog):
     """Grow your own plants! Be sure to take proper care of it."""
 
-    def __init__(self, bot: Red):
+    def __init__(self, bot: Red, *args, **kwargs):
+        super().__init__(*args, **kwargs)
         self.bot = bot
         self.config = Config.get_conf(self, identifier=80108971101168412199111111110)
 
@@ -98,739 +129,9 @@ class PlantTycoon(Cog):
 
         self.config.register_user(**default_user)
 
-        self.plants = {
-            "plants": [
-                {
-                    "name": "Poppy",
-                    "article": "a",
-                    "time": 3600,
-                    "rarity": "common",
-                    "image": "http://i.imgur.com/S4hjyUX.jpg",
-                    "health": 100,
-                    "degradation": 0.625,
-                    "threshold": 110,
-                    "badge": "Flower Power",
-                    "reward": 600,
-                },
-                {
-                    "name": "Dandelion",
-                    "article": "a",
-                    "time": 3600,
-                    "rarity": "common",
-                    "image": "http://i.imgur.com/emqnQP2.jpg",
-                    "health": 100,
-                    "degradation": 0.625,
-                    "threshold": 110,
-                    "badge": "Flower Power",
-                    "reward": 600,
-                },
-                {
-                    "name": "Daisy",
-                    "article": "a",
-                    "time": 3600,
-                    "rarity": "common",
-                    "image": "http://i.imgur.com/lcFq4AB.jpg",
-                    "health": 100,
-                    "degradation": 0.625,
-                    "threshold": 110,
-                    "badge": "Flower Power",
-                    "reward": 600,
-                },
-                {
-                    "name": "Chrysanthemum",
-                    "article": "a",
-                    "time": 3600,
-                    "rarity": "common",
-                    "image": "http://i.imgur.com/5jLtqWL.jpg",
-                    "health": 100,
-                    "degradation": 0.625,
-                    "threshold": 110,
-                    "badge": "Flower Power",
-                    "reward": 600,
-                },
-                {
-                    "name": "Pansy",
-                    "article": "a",
-                    "time": 3600,
-                    "rarity": "common",
-                    "image": "http://i.imgur.com/f7TgD1b.jpg",
-                    "health": 100,
-                    "degradation": 0.625,
-                    "threshold": 110,
-                    "badge": "Flower Power",
-                    "reward": 600,
-                },
-                {
-                    "name": "Lavender",
-                    "article": "a",
-                    "time": 3600,
-                    "rarity": "common",
-                    "image": "http://i.imgur.com/g3OmOSK.jpg",
-                    "health": 100,
-                    "degradation": 0.625,
-                    "threshold": 110,
-                    "badge": "Flower Power",
-                    "reward": 600,
-                },
-                {
-                    "name": "Lily",
-                    "article": "a",
-                    "time": 3600,
-                    "rarity": "common",
-                    "image": "http://i.imgur.com/0hzy7lO.jpg",
-                    "health": 100,
-                    "degradation": 0.625,
-                    "threshold": 110,
-                    "badge": "Flower Power",
-                    "reward": 600,
-                },
-                {
-                    "name": "Petunia",
-                    "article": "a",
-                    "time": 3600,
-                    "rarity": "common",
-                    "image": "http://i.imgur.com/rJm8ISv.jpg",
-                    "health": 100,
-                    "degradation": 0.625,
-                    "threshold": 110,
-                    "badge": "Flower Power",
-                    "reward": 600,
-                },
-                {
-                    "name": "Sunflower",
-                    "article": "a",
-                    "time": 3600,
-                    "rarity": "common",
-                    "image": "http://i.imgur.com/AzgzQK9.jpg",
-                    "health": 100,
-                    "degradation": 0.625,
-                    "threshold": 110,
-                    "badge": "Flower Power",
-                    "reward": 600,
-                },
-                {
-                    "name": "Daffodil",
-                    "article": "a",
-                    "time": 3600,
-                    "rarity": "common",
-                    "image": "http://i.imgur.com/pnCCRsH.jpg",
-                    "health": 100,
-                    "degradation": 0.625,
-                    "threshold": 110,
-                    "badge": "Flower Power",
-                    "reward": 600,
-                },
-                {
-                    "name": "Clover",
-                    "article": "a",
-                    "time": 3600,
-                    "rarity": "common",
-                    "image": "http://i.imgur.com/jNTgirw.jpg",
-                    "health": 100,
-                    "degradation": 0.625,
-                    "threshold": 110,
-                    "badge": "Flower Power",
-                    "reward": 600,
-                },
-                {
-                    "name": "Tulip",
-                    "article": "a",
-                    "time": 3600,
-                    "rarity": "common",
-                    "image": "http://i.imgur.com/kodIFjE.jpg",
-                    "health": 100,
-                    "degradation": 0.625,
-                    "threshold": 110,
-                    "badge": "Flower Power",
-                    "reward": 600,
-                },
-                {
-                    "name": "Rose",
-                    "article": "a",
-                    "time": 3600,
-                    "rarity": "common",
-                    "image": "http://i.imgur.com/sdTNiOH.jpg",
-                    "health": 100,
-                    "degradation": 0.625,
-                    "threshold": 110,
-                    "badge": "Flower Power",
-                    "reward": 600,
-                },
-                {
-                    "name": "Aster",
-                    "article": "an",
-                    "time": 3600,
-                    "rarity": "common",
-                    "image": "http://i.imgur.com/1tN04Hl.jpg",
-                    "health": 100,
-                    "degradation": 0.625,
-                    "threshold": 110,
-                    "badge": "Flower Power",
-                    "reward": 600,
-                },
-                {
-                    "name": "Aloe Vera",
-                    "article": "an",
-                    "time": 3600,
-                    "rarity": "common",
-                    "image": "http://i.imgur.com/WFAYIpx.jpg",
-                    "health": 100,
-                    "degradation": 0.625,
-                    "threshold": 110,
-                    "badge": "Flower Power",
-                    "reward": 600,
-                },
-                {
-                    "name": "Orchid",
-                    "article": "an",
-                    "time": 3600,
-                    "rarity": "common",
-                    "image": "http://i.imgur.com/IQrQYDC.jpg",
-                    "health": 100,
-                    "degradation": 0.625,
-                    "threshold": 110,
-                    "badge": "Flower Power",
-                    "reward": 600,
-                },
-                {
-                    "name": "Dragon Fruit Plant",
-                    "article": "a",
-                    "time": 5400,
-                    "rarity": "uncommon",
-                    "image": "http://i.imgur.com/pfngpDS.jpg",
-                    "health": 100,
-                    "degradation": 0.75,
-                    "threshold": 110,
-                    "badge": "Fruit Brute",
-                    "reward": 1200,
-                },
-                {
-                    "name": "Mango Tree",
-                    "article": "a",
-                    "time": 5400,
-                    "rarity": "uncommon",
-                    "image": "http://i.imgur.com/ybR78Oc.jpg",
-                    "health": 100,
-                    "degradation": 0.75,
-                    "threshold": 110,
-                    "badge": "Fruit Brute",
-                    "reward": 1200,
-                },
-                {
-                    "name": "Lychee Tree",
-                    "article": "a",
-                    "time": 5400,
-                    "rarity": "uncommon",
-                    "image": "http://i.imgur.com/w9LkfhX.jpg",
-                    "health": 100,
-                    "degradation": 0.75,
-                    "threshold": 110,
-                    "badge": "Fruit Brute",
-                    "reward": 1200,
-                },
-                {
-                    "name": "Durian Tree",
-                    "article": "a",
-                    "time": 5400,
-                    "rarity": "uncommon",
-                    "image": "http://i.imgur.com/jh249fz.jpg",
-                    "health": 100,
-                    "degradation": 0.75,
-                    "threshold": 110,
-                    "badge": "Fruit Brute",
-                    "reward": 1200,
-                },
-                {
-                    "name": "Fig Tree",
-                    "article": "a",
-                    "time": 5400,
-                    "rarity": "uncommon",
-                    "image": "http://i.imgur.com/YkhnpEV.jpg",
-                    "health": 100,
-                    "degradation": 0.75,
-                    "threshold": 110,
-                    "badge": "Fruit Brute",
-                    "reward": 1200,
-                },
-                {
-                    "name": "Jack Fruit Tree",
-                    "article": "a",
-                    "time": 5400,
-                    "rarity": "uncommon",
-                    "image": "http://i.imgur.com/2D79TlA.jpg",
-                    "health": 100,
-                    "degradation": 0.75,
-                    "threshold": 110,
-                    "badge": "Fruit Brute",
-                    "reward": 1200,
-                },
-                {
-                    "name": "Prickly Pear Plant",
-                    "article": "a",
-                    "time": 5400,
-                    "rarity": "uncommon",
-                    "image": "http://i.imgur.com/GrcGAGj.jpg",
-                    "health": 100,
-                    "degradation": 0.75,
-                    "threshold": 110,
-                    "badge": "Fruit Brute",
-                    "reward": 1200,
-                },
-                {
-                    "name": "Pineapple Plant",
-                    "article": "a",
-                    "time": 5400,
-                    "rarity": "uncommon",
-                    "image": "http://i.imgur.com/VopYQtr.jpg",
-                    "health": 100,
-                    "degradation": 0.75,
-                    "threshold": 110,
-                    "badge": "Fruit Brute",
-                    "reward": 1200,
-                },
-                {
-                    "name": "Citron Tree",
-                    "article": "a",
-                    "time": 5400,
-                    "rarity": "uncommon",
-                    "image": "http://i.imgur.com/zh7Dr23.jpg",
-                    "health": 100,
-                    "degradation": 0.75,
-                    "threshold": 110,
-                    "badge": "Fruit Brute",
-                    "reward": 1200,
-                },
-                {
-                    "name": "Cherimoya Tree",
-                    "article": "a",
-                    "time": 5400,
-                    "rarity": "uncommon",
-                    "image": "http://i.imgur.com/H62gQK6.jpg",
-                    "health": 100,
-                    "degradation": 0.75,
-                    "threshold": 110,
-                    "badge": "Fruit Brute",
-                    "reward": 1200,
-                },
-                {
-                    "name": "Mangosteen Tree",
-                    "article": "a",
-                    "time": 5400,
-                    "rarity": "uncommon",
-                    "image": "http://i.imgur.com/McNnMqa.jpg",
-                    "health": 100,
-                    "degradation": 0.75,
-                    "threshold": 110,
-                    "badge": "Fruit Brute",
-                    "reward": 1200,
-                },
-                {
-                    "name": "Guava Tree",
-                    "article": "a",
-                    "time": 5400,
-                    "rarity": "uncommon",
-                    "image": "http://i.imgur.com/iy8WgPt.jpg",
-                    "health": 100,
-                    "degradation": 0.75,
-                    "threshold": 110,
-                    "badge": "Fruit Brute",
-                    "reward": 1200,
-                },
-                {
-                    "name": "Orange Tree",
-                    "article": "an",
-                    "time": 5400,
-                    "rarity": "uncommon",
-                    "image": "http://i.imgur.com/lwjEJTm.jpg",
-                    "health": 100,
-                    "degradation": 0.75,
-                    "threshold": 110,
-                    "badge": "Fruit Brute",
-                    "reward": 1200,
-                },
-                {
-                    "name": "Apple Tree",
-                    "article": "an",
-                    "time": 5400,
-                    "rarity": "uncommon",
-                    "image": "http://i.imgur.com/QI3UTR3.jpg",
-                    "health": 100,
-                    "degradation": 0.75,
-                    "threshold": 110,
-                    "badge": "Fruit Brute",
-                    "reward": 1200,
-                },
-                {
-                    "name": "Sapodilla Tree",
-                    "article": "a",
-                    "time": 5400,
-                    "rarity": "uncommon",
-                    "image": "http://i.imgur.com/6BvO5Fu.jpg",
-                    "health": 100,
-                    "degradation": 0.75,
-                    "threshold": 110,
-                    "badge": "Fruit Brute",
-                    "reward": 1200,
-                },
-                {
-                    "name": "Franklin Tree",
-                    "article": "a",
-                    "time": 7200,
-                    "rarity": "rare",
-                    "image": "http://i.imgur.com/hoh17hp.jpg",
-                    "health": 100,
-                    "degradation": 1.5,
-                    "threshold": 110,
-                    "badge": "Sporadic",
-                    "reward": 2400,
-                },
-                {
-                    "name": "Parrot's Beak",
-                    "article": "a",
-                    "time": 7200,
-                    "rarity": "rare",
-                    "image": "http://i.imgur.com/lhSjfQY.jpg",
-                    "health": 100,
-                    "degradation": 1.5,
-                    "threshold": 110,
-                    "badge": "Sporadic",
-                    "reward": 2400,
-                },
-                {
-                    "name": "Koki'o",
-                    "article": "a",
-                    "time": 7200,
-                    "rarity": "rare",
-                    "image": "http://i.imgur.com/Dhw9ync.jpg",
-                    "health": 100,
-                    "degradation": 1.5,
-                    "threshold": 110,
-                    "badge": "Sporadic",
-                    "reward": 2400,
-                },
-                {
-                    "name": "Jade Vine",
-                    "article": "a",
-                    "time": 7200,
-                    "rarity": "rare",
-                    "image": "http://i.imgur.com/h4fJo2R.jpg",
-                    "health": 100,
-                    "degradation": 1.5,
-                    "threshold": 110,
-                    "badge": "Sporadic",
-                    "reward": 2400,
-                },
-                {
-                    "name": "Venus Fly Trap",
-                    "article": "a",
-                    "time": 7200,
-                    "rarity": "rare",
-                    "image": "http://i.imgur.com/NoSdxXh.jpg",
-                    "health": 100,
-                    "degradation": 1.5,
-                    "threshold": 110,
-                    "badge": "Sporadic",
-                    "reward": 2400,
-                },
-                {
-                    "name": "Chocolate Cosmos",
-                    "article": "a",
-                    "time": 7200,
-                    "rarity": "rare",
-                    "image": "http://i.imgur.com/4ArSekX.jpg",
-                    "health": 100,
-                    "degradation": 1.5,
-                    "threshold": 110,
-                    "badge": "Sporadic",
-                    "reward": 2400,
-                },
-                {
-                    "name": "Pizza Plant",
-                    "article": "a",
-                    "time": 9000,
-                    "rarity": "super-rare",
-                    "image": "http://i.imgur.com/ASZXr7C.png",
-                    "health": 100,
-                    "degradation": 2,
-                    "threshold": 110,
-                    "badge": "Odd-pod",
-                    "reward": 3600,
-                },
-                # {
-                #     "name": "tba",
-                #     "article": "a",
-                #     "time": 9000,
-                #     "rarity": "super-rare",
-                #     "image": "tba",
-                #     "health": 100,
-                #     "degradation": 1.5,
-                #     "threshold": 110,
-                #     "badge": "Odd-pod",
-                #     "reward": 3600
-                # },
-                {
-                    "name": "Piranha Plant",
-                    "article": "a",
-                    "time": 9000,
-                    "rarity": "super-rare",
-                    "image": "http://i.imgur.com/c03i9W7.jpg",
-                    "health": 100,
-                    "degradation": 2,
-                    "threshold": 110,
-                    "badge": "Odd-pod",
-                    "reward": 3600,
-                },
-                # {
-                #     "name": "tba",
-                #     "article": "a",
-                #     "time": 9000,
-                #     "rarity": "super-rare",
-                #     "image": "tba",
-                #     "health": 100,
-                #     "degradation": 1.5,
-                #     "threshold": 110,
-                #     "badge": "Odd-pod",
-                #     "reward": 3600
-                # },
-                {
-                    "name": "Peashooter",
-                    "article": "a",
-                    "time": 9000,
-                    "rarity": "super-rare",
-                    "image": "https://i.imgur.com/Vo4v2Ry.png",
-                    "health": 100,
-                    "degradation": 2,
-                    "threshold": 110,
-                    "badge": "Odd-pod",
-                    "reward": 3600,
-                },
-                {
-                    "name": "Eldergleam Tree",
-                    "article": "a",
-                    "time": 10800,
-                    "rarity": "epic",
-                    "image": "https://i.imgur.com/pnZYKZc.jpg",
-                    "health": 100,
-                    "degradation": 2.5,
-                    "threshold": 110,
-                    "badge": "Greenfingers",
-                    "reward": 5400,
-                },
-                {
-                    "name": "Pikmin",
-                    "article": "a",
-                    "time": 10800,
-                    "rarity": "epic",
-                    "image": "http://i.imgur.com/sizf7hE.png",
-                    "health": 100,
-                    "degradation": 2.5,
-                    "threshold": 110,
-                    "badge": "Greenfingers",
-                    "reward": 5400,
-                },
-                {
-                    "name": "Flora Colossus",
-                    "article": "a",
-                    "time": 10800,
-                    "rarity": "epic",
-                    "image": "http://i.imgur.com/9f5QzaW.jpg",
-                    "health": 100,
-                    "degradation": 2.5,
-                    "threshold": 110,
-                    "badge": "Greenfingers",
-                    "reward": 5400,
-                },
-                {
-                    "name": "Plantera Bulb",
-                    "article": "a",
-                    "time": 10800,
-                    "rarity": "epic",
-                    "image": "https://i.imgur.com/ExqLLHO.png",
-                    "health": 100,
-                    "degradation": 2.5,
-                    "threshold": 110,
-                    "badge": "Greenfingers",
-                    "reward": 5400,
-                },
-                {
-                    "name": "Chorus Tree",
-                    "article": "an",
-                    "time": 10800,
-                    "rarity": "epic",
-                    "image": "https://i.imgur.com/tv2B72j.png",
-                    "health": 100,
-                    "degradation": 2.5,
-                    "threshold": 110,
-                    "badge": "Greenfingers",
-                    "reward": 5400,
-                },
-                {
-                    "name": "Money Tree",
-                    "article": "a",
-                    "time": 35400,
-                    "rarity": "legendary",
-                    "image": "http://i.imgur.com/MIJQDLL.jpg",
-                    "health": 100,
-                    "degradation": 8,
-                    "threshold": 110,
-                    "badge": "Nobel Peas Prize",
-                    "reward": 10800,
-                },
-                {
-                    "name": "Truffula Tree",
-                    "article": "a",
-                    "time": 35400,
-                    "rarity": "legendary",
-                    "image": "http://i.imgur.com/cFSmaHH.png",
-                    "health": 100,
-                    "degradation": 8,
-                    "threshold": 110,
-                    "badge": "Nobel Peas Prize",
-                    "reward": 10800,
-                },
-                {
-                    "name": "Whomping Willow",
-                    "article": "a",
-                    "time": 35400,
-                    "rarity": "legendary",
-                    "image": "http://i.imgur.com/Ibwm2xY.jpg",
-                    "health": 100,
-                    "degradation": 8,
-                    "threshold": 110,
-                    "badge": "Nobel Peas Prize",
-                    "reward": 10800,
-                },
-            ],
-            "event": {
-                "January": {
-                    "name": "Tanabata Tree",
-                    "article": "a",
-                    "time": 70800,
-                    "rarity": "event",
-                    "image": "http://i.imgur.com/FD38JJj.jpg",
-                    "health": 100,
-                    "degradation": 9,
-                    "threshold": 110,
-                    "badge": "Annualsary",
-                    "reward": 21600,
-                },
-                "February": {
-                    "name": "Chocolate Rose",
-                    "article": "a",
-                    "time": 70800,
-                    "rarity": "event",
-                    "image": "http://i.imgur.com/Sqg6pcG.jpg",
-                    "health": 100,
-                    "degradation": 9,
-                    "threshold": 110,
-                    "badge": "Annualsary",
-                    "reward": 21600,
-                },
-                "March": {
-                    "name": "Shamrock",
-                    "article": "a",
-                    "time": 70800,
-                    "rarity": "event",
-                    "image": "http://i.imgur.com/kVig04M.jpg",
-                    "health": 100,
-                    "degradation": 9,
-                    "threshold": 110,
-                    "badge": "Annualsary",
-                    "reward": 21600,
-                },
-                "April": {
-                    "name": "Easter Egg Eggplant",
-                    "article": "an",
-                    "time": 70800,
-                    "rarity": "event",
-                    "image": "http://i.imgur.com/5jltGQa.jpg",
-                    "health": 100,
-                    "degradation": 9,
-                    "threshold": 110,
-                    "badge": "Annualsary",
-                    "reward": 21600,
-                },
-                "October": {
-                    "name": "Jack O' Lantern",
-                    "article": "a",
-                    "time": 70800,
-                    "rarity": "event",
-                    "image": "http://i.imgur.com/efApsxG.jpg",
-                    "health": 100,
-                    "degradation": 9,
-                    "threshold": 110,
-                    "badge": "Annualsary",
-                    "reward": 21600,
-                },
-                "November": {
-                    "name": "Mayflower",
-                    "article": "a",
-                    "time": 70800,
-                    "rarity": "event",
-                    "image": "http://i.imgur.com/nntNtoL.jpg",
-                    "health": 100,
-                    "degradation": 9,
-                    "threshold": 110,
-                    "badge": "Annualsary",
-                    "reward": 21600,
-                },
-                "December": {
-                    "name": "Holly",
-                    "article": "a",
-                    "time": 70800,
-                    "rarity": "event",
-                    "image": "http://i.imgur.com/maDLmJC.jpg",
-                    "health": 100,
-                    "degradation": 9,
-                    "threshold": 110,
-                    "badge": "Annualsary",
-                    "reward": 21600,
-                },
-            },
-        }
+        self.plants = None
 
-        self.products = {
-            "water": {
-                "cost": 5,
-                "health": 10,
-                "damage": 45,
-                "modifier": 0,
-                "category": "water",
-                "uses": 1,
-            },
-            "manure": {
-                "cost": 20,
-                "health": 20,
-                "damage": 55,
-                "modifier": -0.035,
-                "category": "fertilizer",
-                "uses": 1,
-            },
-            "vermicompost": {
-                "cost": 35,
-                "health": 30,
-                "damage": 60,
-                "modifier": -0.5,
-                "category": "fertilizer",
-                "uses": 1,
-            },
-            "nitrates": {
-                "cost": 70,
-                "health": 60,
-                "damage": 75,
-                "modifier": -0.08,
-                "category": "fertilizer",
-                "uses": 1,
-            },
-            "pruner": {
-                "cost": 500,
-                "health": 40,
-                "damage": 90,
-                "modifier": -0.065,
-                "category": "tool",
-                "uses": 10,
-            },
-        }
+        self.products = None
 
         self.defaults = {
             "points": {
@@ -871,8 +172,8 @@ class PlantTycoon(Cog):
         # Starting loops
         #
 
-        self.completion_task = bot.loop.create_task(self.check_completion())
-        self.degradation_task = bot.loop.create_task(self.check_degradation())
+        self.completion_task = bot.loop.create_task(self.check_completion_loop())
+        # self.degradation_task = bot.loop.create_task(self.check_degradation())
         self.notification_task = bot.loop.create_task(self.send_notification())
 
         #
@@ -881,21 +182,58 @@ class PlantTycoon(Cog):
 
         # self.bank = bot.get_cog('Economy').bank
 
+    async def _load_plants_products(self):
+        plant_path = bundled_data_path(self) / "plants.json"
+        product_path = bundled_data_path(self) / "products.json"
+        with plant_path.open() as json_data:
+            self.plants = json.load(json_data)
+
+        await self._load_event_seeds()
+
+        with product_path.open() as json_data:
+            self.products = json.load(json_data)
+
+        for product in self.products:
+            print("PlantTycoon: Loaded {}".format(product))
+
+    async def _load_event_seeds(self):
+        self.plants["all_plants"] = copy.deepcopy(self.plants["plants"])
+        plant_options = self.plants["all_plants"]
+
+        d = datetime.date.today()
+        month = d.month
+        if month == 1:
+            plant_options.append(self.plants["event"]["January"])
+        elif month == 2:
+            plant_options.append(self.plants["event"]["February"])
+        elif month == 3:
+            plant_options.append(self.plants["event"]["March"])
+        elif month == 4:
+            plant_options.append(self.plants["event"]["April"])
+        elif month == 10:
+            plant_options.append(self.plants["event"]["October"])
+        elif month == 11:
+            plant_options.append(self.plants["event"]["November"])
+        elif month == 12:
+            plant_options.append(self.plants["event"]["December"])
+
     async def _gardener(self, user: discord.User) -> Gardener:
 
         #
-        # This function returns an individual gardener namedtuple
+        # This function returns a Gardener object for the user
         #
 
         g = Gardener(user, self.config)
-        await g._load_config()
+        await g.load_config()
         return g
 
     async def _degradation(self, gardener: Gardener):
 
         #
-        # Calculating the rate of degradation per check_completion() cycle.
+        # Calculating the rate of degradation per check_completion_loop() cycle.
         #
+        if self.products is None:
+            await self._load_plants_products()
 
         modifiers = sum(
             [
@@ -908,12 +246,17 @@ class PlantTycoon(Cog):
         degradation = (
             100
             / (gardener.current["time"] / 60)
-            * (self.defaults["degradation"]["base_degradation"] + gardener.current["degradation"])
+            * (
+                self.defaults["degradation"]["base_degradation"]
+                + gardener.current["degradation"]
+            )
         ) + modifiers
 
         d = collections.namedtuple("degradation", "degradation time modifiers")
 
-        return d(degradation=degradation, time=gardener.current["time"], modifiers=modifiers)
+        return d(
+            degradation=degradation, time=gardener.current["time"], modifiers=modifiers
+        )
 
     # async def _get_member(self, user_id):
     #
@@ -938,10 +281,14 @@ class PlantTycoon(Cog):
         #
         # The function to add health
         #
-
+        if self.products is None:
+            await self._load_plants_products()
         product = product.lower()
         product_category = product_category.lower()
-        if product in self.products and self.products[product]["category"] == product_category:
+        if (
+            product in self.products
+            and self.products[product]["category"] == product_category
+        ):
             if product in gardener.products:
                 if gardener.products[product] > 0:
                     gardener.current["health"] += self.products[product]["health"]
@@ -971,7 +318,7 @@ class PlantTycoon(Cog):
                     message = "You have no {}. Go buy some!".format(product)
             else:
                 if product_category == "tool":
-                    message = "You have don't have a {}. Go buy one!".format(product)
+                    message = "You don't have a {}. Go buy one!".format(product)
                 else:
                     message = "You have no {}. Go buy some!".format(product)
         else:
@@ -1012,17 +359,24 @@ class PlantTycoon(Cog):
             ``{0}prune``: Prune your plant.\n"""
 
             em = discord.Embed(
-                title=title, description=description.format(prefix), color=discord.Color.green()
+                title=title,
+                description=description.format(prefix),
+                color=discord.Color.green(),
+            )
+            em.set_thumbnail(
+                url="https://image.prntscr.com/image/AW7GuFIBSeyEgkR2W3SeiQ.png"
             )
-            em.set_thumbnail(url="https://image.prntscr.com/image/AW7GuFIBSeyEgkR2W3SeiQ.png")
             em.set_footer(
                 text="This cog was made by SnappyDragon18 and PaddoInWonderland. Inspired by The Lorax (2012)."
             )
             await ctx.send(embed=em)
 
+    @commands.cooldown(1, 60 * 10, commands.BucketType.user)
     @_gardening.command(name="seed")
     async def _seed(self, ctx: commands.Context):
         """Plant a seed inside the earth."""
+        if self.plants is None:
+            await self._load_plants_products()
         author = ctx.author
         # server = context.message.server
         # if author.id not in self.gardeners:
@@ -1034,35 +388,11 @@ class PlantTycoon(Cog):
         gardener = await self._gardener(author)
 
         if not gardener.current:
-            d = datetime.date.today()
-            month = d.month
-
-            #
-            # Event Plant Check start
-            #
-            plant_options = self.plants["plants"]
-
-            if month == 1:
-                plant_options.append(self.plants["event"]["January"])
-            elif month == 2:
-                plant_options.append(self.plants["event"]["February"])
-            elif month == 3:
-                plant_options.append(self.plants["event"]["March"])
-            elif month == 4:
-                plant_options.append(self.plants["event"]["April"])
-            elif month == 10:
-                plant_options.append(self.plants["event"]["October"])
-            elif month == 11:
-                plant_options.append(self.plants["event"]["November"])
-            elif month == 12:
-                plant_options.append(self.plants["event"]["December"])
-
-            #
-            # Event Plant Check end
-            #
+            plant_options = self.plants["all_plants"]
 
             plant = choice(plant_options)
             plant["timestamp"] = int(time.time())
+            plant["degrade_count"] = 0
             # index = len(self.plants["plants"]) - 1
             # del [self.plants["plants"][index]]
             message = (
@@ -1096,15 +426,22 @@ class PlantTycoon(Cog):
     @_gardening.command(name="profile")
     async def _profile(self, ctx: commands.Context, *, member: discord.Member = None):
         """Check your gardening profile."""
-        if member:
+        if member is not None:
             author = member
         else:
             author = ctx.author
 
         gardener = await self._gardener(author)
+        try:
+            await self._apply_degradation(gardener)
+        except discord.Forbidden:
+            await ctx.send("ERROR\nYou blocked me, didn't you?")
+
         em = discord.Embed(color=discord.Color.green())  # , description='\a\n')
         avatar = author.avatar_url if author.avatar else author.default_avatar_url
-        em.set_author(name="Gardening profile of {}".format(author.name), icon_url=avatar)
+        em.set_author(
+            name="Gardening profile of {}".format(author.name), icon_url=avatar
+        )
         em.add_field(name="**Thneeds**", value=str(gardener.points))
         if not gardener.current:
             em.add_field(name="**Currently growing**", value="None")
@@ -1127,11 +464,13 @@ class PlantTycoon(Cog):
             em.add_field(name="**Products**", value="None")
         else:
             products = ""
-            for product in gardener.products:
+            for product_name, product_data in gardener.products.items():
+                if self.products[product_name] is None:
+                    continue
                 products += "{} ({}) {}\n".format(
-                    product.capitalize(),
-                    gardener.products[product] / self.products[product.lower()]["uses"],
-                    self.products[product]["modifier"],
+                    product_name.capitalize(),
+                    product_data / self.products[product_name]["uses"],
+                    self.products[product_name]["modifier"],
                 )
             em.add_field(name="**Products**", value=products)
         if gardener.current:
@@ -1157,46 +496,59 @@ class PlantTycoon(Cog):
     @_gardening.command(name="plants")
     async def _plants(self, ctx):
         """Look at the list of the available plants."""
+        if self.plants is None:
+            await self._load_plants_products()
         tick = ""
         tock = ""
         tick_tock = 0
-        for plant in self.plants["plants"]:
+        for plant in self.plants["all_plants"]:
             if tick_tock == 0:
                 tick += "**{}**\n".format(plant["name"])
                 tick_tock = 1
             else:
                 tock += "**{}**\n".format(plant["name"])
                 tick_tock = 0
-        em = discord.Embed(title="All plants that are growable", color=discord.Color.green())
+        em = discord.Embed(
+            title="All plants that are growable", color=discord.Color.green()
+        )
         em.add_field(name="\a", value=tick)
         em.add_field(name="\a", value=tock)
         await ctx.send(embed=em)
 
     @_gardening.command(name="plant")
-    async def _plant(self, ctx: commands.Context, *plant):
+    async def _plant(self, ctx: commands.Context, *, plantname):
         """Look at the details of a plant."""
-        plant = " ".join(plant)
+        if not plantname:
+            await ctx.send_help()
+        if self.plants is None:
+            await self._load_plants_products()
         t = False
-        for p in self.plants["plants"]:
-            if p["name"].lower() == plant.lower():
+        plant = None
+        for p in self.plants["all_plants"]:
+            if p["name"].lower() == plantname.lower().strip('"'):
                 plant = p
                 t = True
                 break
+
         if t:
             em = discord.Embed(
-                title="Plant statistics of {}".format(plant["name"]), color=discord.Color.green()
+                title="Plant statistics of {}".format(plant["name"]),
+                color=discord.Color.green(),
             )
             em.set_thumbnail(url=plant["image"])
             em.add_field(name="**Name**", value=plant["name"])
             em.add_field(name="**Rarity**", value=plant["rarity"].capitalize())
-            em.add_field(name="**Grow Time**", value="{0:.1f} minutes".format(plant["time"] / 60))
-            em.add_field(name="**Damage Threshold**", value="{}%".format(plant["threshold"]))
+            em.add_field(
+                name="**Grow Time**", value="{0:.1f} minutes".format(plant["time"] / 60)
+            )
+            em.add_field(
+                name="**Damage Threshold**", value="{}%".format(plant["threshold"])
+            )
             em.add_field(name="**Badge**", value=plant["badge"])
             em.add_field(name="**Reward**", value="{} τ".format(plant["reward"]))
         else:
-            message = "What plant?"
+            message = "I can't seem to find that plant."
             em = discord.Embed(description=message, color=discord.Color.red())
-            await ctx.send_help()
         await ctx.send(embed=em)
 
     @_gardening.command(name="state")
@@ -1204,6 +556,12 @@ class PlantTycoon(Cog):
         """Check the state of your plant."""
         author = ctx.author
         gardener = await self._gardener(author)
+        try:
+            await self._apply_degradation(gardener)
+        except discord.Forbidden:
+            # Couldn't DM the degradation
+            await ctx.send("ERROR\nYou blocked me, didn't you?")
+
         if not gardener.current:
             message = "You're currently not growing a plant."
             em_color = discord.Color.red()
@@ -1231,20 +589,24 @@ class PlantTycoon(Cog):
     @_gardening.command(name="buy")
     async def _buy(self, ctx, product=None, amount: int = 1):
         """Buy gardening supplies."""
+        if self.products is None:
+            await self._load_plants_products()
+
         author = ctx.author
         if product is None:
             em = discord.Embed(
-                title="All gardening supplies that you can buy:", color=discord.Color.green()
+                title="All gardening supplies that you can buy:",
+                color=discord.Color.green(),
             )
-            for product in self.products:
+            for pd in self.products:
                 em.add_field(
-                    name="**{}**".format(product.capitalize()),
+                    name="**{}**".format(pd.capitalize()),
                     value="Cost: {} τ\n+{} health\n-{}% damage\nUses: {}\nCategory: {}".format(
-                        self.products[product]["cost"],
-                        self.products[product]["health"],
-                        self.products[product]["damage"],
-                        self.products[product]["uses"],
-                        self.products[product]["category"],
+                        self.products[pd]["cost"],
+                        self.products[pd]["health"],
+                        self.products[pd]["damage"],
+                        self.products[pd]["uses"],
+                        self.products[pd]["category"],
                     ),
                 )
             await ctx.send(embed=em)
@@ -1268,7 +630,8 @@ class PlantTycoon(Cog):
                         message = "You bought {}.".format(product.lower())
                     else:
                         message = "You don't have enough Thneeds. You have {}, but need {}.".format(
-                            gardener.points, self.products[product.lower()]["cost"] * amount
+                            gardener.points,
+                            self.products[product.lower()]["cost"] * amount,
                         )
                 else:
                     message = "I don't have this product."
@@ -1287,17 +650,19 @@ class PlantTycoon(Cog):
             plural = "s"
         if withdraw_points:
             await bank.deposit_credits(author, amount)
-            message = "{} Thneed{} successfully exchanged for credits.".format(amount, plural)
+            message = "{} Thneed{} successfully exchanged for credits.".format(
+                amount, plural
+            )
             await gardener.save_gardener()
         else:
-            message = "You don't have enough Thneed{}. " "You have {}, but need {}.".format(
-                plural, gardener.points, amount
+            message = (
+                "You don't have enough Thneed{}. "
+                "You have {}, but need {}.".format(plural, gardener.points, amount)
             )
 
         em = discord.Embed(description=message, color=discord.Color.green())
         await ctx.send(embed=em)
 
-    @commands.cooldown(1, 60 * 10, commands.BucketType.user)
     @commands.command(name="shovel")
     async def _shovel(self, ctx: commands.Context):
         """Shovel your plant out."""
@@ -1307,7 +672,7 @@ class PlantTycoon(Cog):
             message = "You're currently not growing a plant."
         else:
             gardener.current = {}
-            message = "You sucessfuly shovelled your plant out."
+            message = "You successfully shovelled your plant out."
             if gardener.points < 0:
                 gardener.points = 0
             await gardener.save_gardener()
@@ -1321,6 +686,11 @@ class PlantTycoon(Cog):
         author = ctx.author
         channel = ctx.channel
         gardener = await self._gardener(author)
+        try:
+            await self._apply_degradation(gardener)
+        except discord.Forbidden:
+            # Couldn't DM the degradation
+            await ctx.send("ERROR\nYou blocked me, didn't you?")
         product = "water"
         product_category = "water"
         if not gardener.current:
@@ -1333,6 +703,11 @@ class PlantTycoon(Cog):
     async def _fertilize(self, ctx, fertilizer):
         """Fertilize the soil."""
         gardener = await self._gardener(ctx.author)
+        try:
+            await self._apply_degradation(gardener)
+        except discord.Forbidden:
+            # Couldn't DM the degradation
+            await ctx.send("ERROR\nYou blocked me, didn't you?")
         channel = ctx.channel
         product = fertilizer
         product_category = "fertilizer"
@@ -1346,6 +721,11 @@ class PlantTycoon(Cog):
     async def _prune(self, ctx):
         """Prune your plant."""
         gardener = await self._gardener(ctx.author)
+        try:
+            await self._apply_degradation(gardener)
+        except discord.Forbidden:
+            # Couldn't DM the degradation
+            await ctx.send("ERROR\nYou blocked me, didn't you?")
         channel = ctx.channel
         product = "pruner"
         product_category = "tool"
@@ -1355,49 +735,47 @@ class PlantTycoon(Cog):
         else:
             await self._add_health(channel, gardener, product, product_category)
 
-    async def check_degradation(self):
-        while "PlantTycoon" in self.bot.cogs:
-            users = await self.config.all_users()
-            for user_id in users:
-                user = self.bot.get_user(user_id)
-                gardener = await self._gardener(user)
-                if gardener.current:
-                    degradation = await self._degradation(gardener)
-                    gardener.current["health"] -= degradation.degradation
-                    gardener.points += self.defaults["points"]["growing"]
-                    await gardener.save_gardener()
-            await asyncio.sleep(self.defaults["timers"]["degradation"] * 60)
+    # async def check_degradation(self):
+    #     while "PlantTycoon" in self.bot.cogs:
+    #         users = await self.config.all_users()
+    #         for user_id in users:
+    #             user = self.bot.get_user(user_id)
+    #             gardener = await self._gardener(user)
+    #             await self._apply_degradation(gardener)
+    #         await asyncio.sleep(self.defaults["timers"]["degradation"] * 60)
 
-    async def check_completion(self):
+    async def _apply_degradation(self, gardener):
+        if gardener.current:
+            degradation = await self._degradation(gardener)
+            now = int(time.time())
+            timestamp = gardener.current["timestamp"]
+            degradation_count = (now - timestamp) // (
+                self.defaults["timers"]["degradation"] * 60
+            )
+            degradation_count -= gardener.current["degrade_count"]
+            gardener.current["health"] -= degradation.degradation * degradation_count
+            gardener.points += self.defaults["points"]["growing"] * degradation_count
+            gardener.current["degrade_count"] += degradation_count
+            await gardener.save_gardener()
+            await gardener.is_complete(now)
+
+    async def check_completion_loop(self):
         while "PlantTycoon" in self.bot.cogs:
             now = int(time.time())
             users = await self.config.all_users()
             for user_id in users:
-                message = None
                 user = self.bot.get_user(user_id)
+                if not user:
+                    continue
                 gardener = await self._gardener(user)
-                if gardener.current:
-                    then = gardener.current["timestamp"]
-                    health = gardener.current["health"]
-                    grow_time = gardener.current["time"]
-                    badge = gardener.current["badge"]
-                    reward = gardener.current["reward"]
-                    if (now - then) > grow_time:
-                        gardener.points += reward
-                        if badge not in gardener.badges:
-                            gardener.badges.append(badge)
-                        message = (
-                            "Your plant made it! "
-                            "You are rewarded with the **{}** badge and you have received **{}** Thneeds.".format(
-                                badge, reward
-                            )
-                        )
-                    if health < 0:
-                        message = "Your plant died!"
-                if message is not None:
-                    await user.send(message)
-                    gardener.current = {}
-                    await gardener.save_gardener()
+                if not gardener:
+                    continue
+                try:
+                    await self._apply_degradation(gardener)
+                    await gardener.is_complete(now)
+                except discord.Forbidden:
+                    # Couldn't DM the results
+                    pass
             await asyncio.sleep(self.defaults["timers"]["completion"] * 60)
 
     async def send_notification(self):
@@ -1405,15 +783,29 @@ class PlantTycoon(Cog):
             users = await self.config.all_users()
             for user_id in users:
                 user = self.bot.get_user(user_id)
+                if not user:
+                    continue
                 gardener = await self._gardener(user)
+                if not gardener:
+                    continue
+                try:
+                    await self._apply_degradation(gardener)
+                except discord.Forbidden:
+                    # Couldn't DM the degradation
+                    pass
+
                 if gardener.current:
                     health = gardener.current["health"]
                     if health < self.defaults["notification"]["max_health"]:
                         message = choice(self.notifications["messages"])
-                        await user.send(message)
+                        try:
+                            await user.send(message)
+                        except discord.Forbidden:
+                            # Couldn't DM the results
+                            pass
             await asyncio.sleep(self.defaults["timers"]["notification"] * 60)
 
     def __unload(self):
         self.completion_task.cancel()
-        self.degradation_task.cancel()
+        # self.degradation_task.cancel()
         self.notification_task.cancel()
diff --git a/qrinvite/info..json b/qrinvite/info.json
similarity index 100%
rename from qrinvite/info..json
rename to qrinvite/info.json
diff --git a/qrinvite/qrinvite.py b/qrinvite/qrinvite.py
index 82343a7..67d895b 100644
--- a/qrinvite/qrinvite.py
+++ b/qrinvite/qrinvite.py
@@ -14,7 +14,7 @@ Cog: Any = getattr(commands, "Cog", object)
 
 class QRInvite(Cog):
     """
-    V3 Cog Template
+    Create custom QR codes for server invites
     """
 
     def __init__(self, bot: Red):
@@ -50,7 +50,7 @@ class QRInvite(Cog):
             invite = invite.code
 
         if image_url is None:
-            image_url = ctx.guild.icon_url
+            image_url = str(ctx.guild.icon_url)
 
         if image_url == "":  # Still
             await ctx.send(
@@ -72,9 +72,15 @@ class QRInvite(Cog):
             file.write(image)
 
         if extension == "webp":
-            new_path = convert_png(str(image_path))
-        else:
+            new_path = convert_webp_to_png(str(image_path))
+        elif extension == "gif":
+            await ctx.send("gif is not supported yet, stay tuned")
+            return
+        elif extension == "png":
             new_path = str(image_path)
+        else:
+            await ctx.send(f"{extension} is not supported yet, stay tuned")
+            return
 
         myqr.run(
             invite,
@@ -89,7 +95,7 @@ class QRInvite(Cog):
             await ctx.send(file=discord.File(png_fp.read(), "qrcode.png"))
 
 
-def convert_png(path):
+def convert_webp_to_png(path):
     im = Image.open(path)
     im.load()
     alpha = im.split()[-1]
diff --git a/reactrestrict/info.json b/reactrestrict/info.json
index 2695630..c232ac8 100644
--- a/reactrestrict/info.json
+++ b/reactrestrict/info.json
@@ -1,10 +1,22 @@
 {
-    "author" : ["Bobloy"],
-    "bot_version" : [3,0,0],
-    "description" : "Cog to prevent reactions on specific messages from certain users",
-    "hidden" : true,
-    "install_msg" : "Thank you for installing ReactRestrict.",
-    "requirements" : [],
-    "short" : "[Incomplete] Prevent reactions",
-    "tags" : ["react", "reaction", "restrict", "tools", "utils", "bobloy"]
+  "author": [
+    "Bobloy"
+  ],
+  "bot_version": [
+    3,
+    0,
+    0
+  ],
+  "description": "Cog to prevent reactions on specific messages from certain users",
+  "hidden": true,
+  "install_msg": "Thank you for installing ReactRestrict.",
+  "short": "[Incomplete] Prevent reactions",
+  "tags": [
+    "react",
+    "reaction",
+    "restrict",
+    "tools",
+    "utils",
+    "bobloy"
+  ]
 }
\ No newline at end of file
diff --git a/reactrestrict/reactrestrict.py b/reactrestrict/reactrestrict.py
index 5e1ddda..339b474 100644
--- a/reactrestrict/reactrestrict.py
+++ b/reactrestrict/reactrestrict.py
@@ -139,7 +139,8 @@ class ReactRestrict(Cog):
 
         return member
 
-    def _get_role(self, guild: discord.Guild, role_id: int) -> discord.Role:
+    @staticmethod
+    def _get_role(guild: discord.Guild, role_id: int) -> discord.Role:
         """
         Gets a role object from the given guild with the given ID.
 
@@ -206,8 +207,7 @@ class ReactRestrict(Cog):
     @reactrestrict.command()
     async def add(self, ctx: commands.Context, message_id: int, *, role: discord.Role):
         """
-        Adds a reaction|role combination to a registered message, don't use
-        quotes for the role name.
+        Adds a reaction|role combination to a registered message, don't use quotes for the role name.
         """
         message = await self._get_message(ctx, message_id)
         if message is None:
@@ -248,6 +248,7 @@ class ReactRestrict(Cog):
 
         await ctx.send("Reaction removed.")
 
+    @commands.Cog.listener()
     async def on_raw_reaction_add(
         self, emoji: discord.PartialEmoji, message_id: int, channel_id: int, user_id: int
     ):
diff --git a/recyclingplant/__init__.py b/recyclingplant/__init__.py
index e012d18..c86df1c 100644
--- a/recyclingplant/__init__.py
+++ b/recyclingplant/__init__.py
@@ -5,5 +5,5 @@ from .recyclingplant import RecyclingPlant
 
 def setup(bot):
     plant = RecyclingPlant(bot)
-    data_manager.load_bundled_data(plant, __file__)
+    data_manager.bundled_data_path(plant)
     bot.add_cog(plant)
diff --git a/recyclingplant/info.json b/recyclingplant/info.json
index cab34d2..b713f5c 100644
--- a/recyclingplant/info.json
+++ b/recyclingplant/info.json
@@ -11,7 +11,6 @@
   "description": "Apply for a job at the recycling plant! Sort out the garbage!",
   "hidden": false,
   "install_msg": "Thank you for installing RecyclingPlant. Start recycling today with `[p]load recyclingplant`, then `[p]recyclingplant`",
-  "requirements": [],
   "short": "Apply for a job at the recycling plant!",
   "tags": [
     "bobloy",
diff --git a/recyclingplant/recyclingplant.py b/recyclingplant/recyclingplant.py
index c487804..4f3ddfc 100644
--- a/recyclingplant/recyclingplant.py
+++ b/recyclingplant/recyclingplant.py
@@ -1,12 +1,11 @@
 import asyncio
 import json
 import random
-
-from redbot.core import bank
-from redbot.core import commands
-from redbot.core.data_manager import cog_data_path
 from typing import Any
 
+from redbot.core import bank, commands
+from redbot.core.data_manager import bundled_data_path
+
 Cog: Any = getattr(commands, "Cog", object)
 
 
@@ -15,15 +14,19 @@ class RecyclingPlant(Cog):
 
     def __init__(self, bot):
         self.bot = bot
-        self.path = str(cog_data_path(self)).replace("\\", "/")
-        self.junk_path = self.path + "/bundled_data/junk.json"
+        self.junk = None
 
-        with open(self.junk_path) as json_data:
+    def load_junk(self):
+        junk_path = bundled_data_path(self) / "junk.json"
+        with junk_path.open() as json_data:
             self.junk = json.load(json_data)
 
     @commands.command(aliases=["recycle"])
     async def recyclingplant(self, ctx: commands.Context):
         """Apply for a job at the recycling plant!"""
+        if self.junk is None:
+            self.load_junk()
+
         x = 0
         reward = 0
         await ctx.send(
@@ -61,7 +64,7 @@ class RecyclingPlant(Cog):
                         used["object"]
                     )
                 )
-                reward = reward + 50
+                reward += 50
                 x += 1
             elif answer.content.lower().strip() == opp:
                 await ctx.send(
@@ -69,7 +72,7 @@ class RecyclingPlant(Cog):
                         ctx.author.display_name
                     )
                 )
-                reward = reward - 50
+                reward -= 50
             elif answer.content.lower().strip() == "exit":
                 await ctx.send(
                     "{} has been relived of their duty.".format(ctx.author.display_name)
@@ -81,9 +84,9 @@ class RecyclingPlant(Cog):
                 )
         else:
             if reward > 0:
-                bank.deposit_credits(ctx.author, reward)
+                await bank.deposit_credits(ctx.author, reward)
             await ctx.send(
                 "{} been given **{} {}s** for your services.".format(
-                    ctx.author.display_name, reward, bank.get_currency_name(ctx.guild)
+                    ctx.author.display_name, reward, await bank.get_currency_name(ctx.guild)
                 )
             )
diff --git a/rpsls/info.json b/rpsls/info.json
index f1ac3b6..c7c9ebe 100644
--- a/rpsls/info.json
+++ b/rpsls/info.json
@@ -10,7 +10,7 @@
   ],
   "description": "Play Rock Papers Scissor Lizard Spock by Sam Kass in Discord!",
   "hidden": false,
-  "install_msg": "Thank you for installing RPSLP. Get started with `[p]load rpsls`, then `[p]rpsls`",
+  "install_msg": "Thank you for installing RPSLS. Get started with `[p]load rpsls`, then `[p]rpsls`",
   "requirements": [],
   "short": "Play Rock Papers Scissor Lizard Spock in Discord!",
   "tags": [
diff --git a/sayurl/info..json b/sayurl/info.json
similarity index 86%
rename from sayurl/info..json
rename to sayurl/info.json
index 1c44fb1..1beaf60 100644
--- a/sayurl/info..json
+++ b/sayurl/info.json
@@ -9,7 +9,7 @@
   ],
   "description": "Convert any website into text and post it in chat",
   "hidden": true,
-  "install_msg": "Thank you for installing SayUrl! Get started with `[p]load forcemention`, then `[p]help SayUrl",
+  "install_msg": "Thank you for installing SayUrl! Get started with `[p]load sayurl`, then `[p]help SayUrl",
   "requirements": ["html2text"],
   "short": "Convert URL to text",
   "tags": [
diff --git a/scp/scp.py b/scp/scp.py
index 4ce08ed..7ffba0c 100644
--- a/scp/scp.py
+++ b/scp/scp.py
@@ -16,19 +16,19 @@ class SCP(Cog):
         """Look up SCP articles.
 
         Warning: Some of them may be too creepy or gruesome.
-        Reminder: You must specify a number between 1 and 4999.
+        Reminder: You must specify a number between 1 and 5999.
         """
 
         # Thanks Shigbeard and Redjumpman for helping me!
 
-        if 0 < num <= 4999:
+        if 0 < num <= 5999:
             msg = "http://www.scp-wiki.net/scp-{:03}".format(num)
             c = discord.Color.green()
         else:
-            msg = "You must specify a number between 1 and 4999."
+            msg = "You must specify a number between 1 and 5999."
             c = discord.Color.red()
 
-        if ctx.embed_requested():
+        if await ctx.embed_requested():
             await ctx.send(embed=discord.Embed(description=msg, color=c))
         else:
             await ctx.maybe_send_embed(msg)
@@ -50,10 +50,11 @@ class SCP(Cog):
 
         Warning: Some of them may be too creepy or gruesome."""
         valid_archive = (
+            1,
             13,
             48,
+            49,
             51,
-            89,
             91,
             112,
             132,
@@ -67,10 +68,9 @@ class SCP(Cog):
             257,
             338,
             356,
-            361,
             400,
             406,
-            503,
+            494,
             515,
             517,
             578,
@@ -94,7 +94,7 @@ class SCP(Cog):
 
             em = discord.Embed(title=ttl, description=msg, color=c)
 
-        if ctx.embed_requested():
+        if await ctx.embed_requested():
             await ctx.send(embed=em)
         else:
             await ctx.maybe_send_embed(msg)
@@ -106,7 +106,37 @@ class SCP(Cog):
         Warning: Some of them may be too creepy or gruesome.
         """
 
-        valid_archive = (711, 920, 1841, 1851, 1974, 2600, 4023, 8900)
+        valid_archive = (
+            1,
+            2,
+            67,
+            123,
+            445,
+            711,
+            888,
+            920,
+            1094,
+            1401,
+            1512,
+            1548,
+            1763,
+            1841,
+            1851,
+            1927,
+            1933,
+            1964,
+            1974,
+            1990,
+            2600,
+            2700,
+            3000,
+            4023,
+            4445,
+            4734,
+            5297,
+            5735,
+            8900,
+        )
         if num in valid_archive:
             msg = "http://www.scp-wiki.net/scp-{:03}-ex".format(num)
             c = discord.Color.green()
@@ -118,7 +148,7 @@ class SCP(Cog):
 
             em = discord.Embed(title=ttl, description=msg, color=c)
 
-        if ctx.embed_requested():
+        if await ctx.embed_requested():
             await ctx.send(embed=em)
         else:
             await ctx.maybe_send_embed(msg)
diff --git a/stealemoji/info..json b/stealemoji/info.json
similarity index 100%
rename from stealemoji/info..json
rename to stealemoji/info.json
diff --git a/stealemoji/stealemoji.py b/stealemoji/stealemoji.py
index 64a07e3..f0752cf 100644
--- a/stealemoji/stealemoji.py
+++ b/stealemoji/stealemoji.py
@@ -106,6 +106,7 @@ class StealEmoji(Cog):
         else:
             await ctx.send("This server has been added to be an emoji bank")
 
+    @commands.Cog.listener()
     async def on_reaction_add(self, reaction: discord.Reaction, user: discord.User):
         """Event handler for reaction watching"""
         if not reaction.custom_emoji:
diff --git a/timerole/info.json b/timerole/info.json
index 7ce0c5c..34b173b 100644
--- a/timerole/info.json
+++ b/timerole/info.json
@@ -9,8 +9,7 @@
   ],
   "description": "Apply roles based on the # of days on server",
   "hidden": false,
-  "install_msg": "Thank you for installing timerole.\nGet started with `[p]load timerole`. Configure with [p]timerole",
-  "requirements": [],
+  "install_msg": "Thank you for installing timerole.\nGet started with `[p]load timerole`. Configure with `[p]timerole`",
   "short": "Apply roles after # of days",
   "tags": [
     "bobloy",
diff --git a/timerole/timerole.py b/timerole/timerole.py
index b823dd3..44dd767 100644
--- a/timerole/timerole.py
+++ b/timerole/timerole.py
@@ -21,12 +21,20 @@ class Timerole(Cog):
 
         self.config.register_global(**default_global)
         self.config.register_guild(**default_guild)
+        self.updating = self.bot.loop.create_task(self.check_day())
+
+    def cog_unload(self):
+        self.updating.cancel()
 
     @commands.command()
     @checks.guildowner()
     @commands.guild_only()
     async def runtimerole(self, ctx: commands.Context):
-        """Trigger the daily timerole"""
+        """
+        Trigger the daily timerole
+
+        Useful for troubleshooting the initial setup
+        """
 
         await self.timerole_update()
         await ctx.send("Success")
@@ -46,12 +54,34 @@ class Timerole(Cog):
         """Add a role to be added after specified time on server"""
         guild = ctx.guild
 
-        to_set = {"days": days}
+        to_set = {"days": days, "remove": False}
         if requiredroles:
             to_set["required"] = [r.id for r in requiredroles]
 
         await self.config.guild(guild).roles.set_raw(role.id, value=to_set)
-        await ctx.send("Time Role for {0} set to {1} days".format(role.name, days))
+        await ctx.maybe_send_embed(
+            "Time Role for {0} set to {1} days until added".format(role.name, days)
+        )
+
+    @timerole.command()
+    async def removerole(
+        self, ctx: commands.Context, role: discord.Role, days: int, *requiredroles: discord.Role
+    ):
+        """
+        Add a role to be removed after specified time on server
+
+        Useful with an autorole cog
+        """
+        guild = ctx.guild
+
+        to_set = {"days": days, "remove": True}
+        if requiredroles:
+            to_set["required"] = [r.id for r in requiredroles]
+
+        await self.config.guild(guild).roles.set_raw(role.id, value=to_set)
+        await ctx.maybe_send_embed(
+            "Time Role for {0} set to {1} days until removed".format(role.name, days)
+        )
 
     @timerole.command()
     async def channel(self, ctx: commands.Context, channel: discord.TextChannel):
@@ -62,8 +92,8 @@ class Timerole(Cog):
         await ctx.send("Announce channel set to {0}".format(channel.mention))
 
     @timerole.command()
-    async def removerole(self, ctx: commands.Context, role: discord.Role):
-        """Removes a role from being added after specified time"""
+    async def delrole(self, ctx: commands.Context, role: discord.Role):
+        """Deletes a role from being added/removed after specified time"""
         guild = ctx.guild
 
         await self.config.guild(guild).roles.set_raw(role.id, value=None)
@@ -93,6 +123,7 @@ class Timerole(Cog):
     async def timerole_update(self):
         for guild in self.bot.guilds:
             addlist = []
+            removelist = []
 
             role_dict = await self.config.guild(guild).roles()
             if not any(role_data for role_data in role_dict.values()):  # No roles
@@ -101,55 +132,70 @@ class Timerole(Cog):
             for member in guild.members:
                 has_roles = [r.id for r in member.roles]
 
-                get_roles = [int(rID) for rID, r_data in role_dict.items() if r_data is not None]
-
-                check_roles = set(get_roles) - set(has_roles)
-
-                for role_id in check_roles:
-                    # Check for required role
-                    if "required" in role_dict[str(role_id)]:
-                        if not set(role_dict[str(role_id)]["required"]) & set(has_roles):
-                            # Doesn't have required role
-                            continue
-
-                    if (
-                        member.joined_at + timedelta(days=role_dict[str(role_id)]["days"])
-                        <= datetime.today()
-                    ):
-                        # Qualifies
-                        addlist.append((member, role_id))
+                add_roles = [
+                    int(rID)
+                    for rID, r_data in role_dict.items()
+                    if r_data is not None and not r_data["remove"]
+                ]
+                remove_roles = [
+                    int(rID)
+                    for rID, r_data in role_dict.items()
+                    if r_data is not None and r_data["remove"]
+                ]
+
+                check_add_roles = set(add_roles) - set(has_roles)
+                check_remove_roles = set(remove_roles) & set(has_roles)
+
+                await self.check_required_and_date(
+                    addlist, check_add_roles, has_roles, member, role_dict
+                )
+                await self.check_required_and_date(
+                    removelist, check_remove_roles, has_roles, member, role_dict
+                )
 
             channel = await self.config.guild(guild).announce()
             if channel is not None:
                 channel = guild.get_channel(channel)
 
             title = "**These members have received the following roles**\n"
-            results = ""
-            for member, role_id in addlist:
-                role = discord.utils.get(guild.roles, id=role_id)
-                await member.add_roles(role, reason="Timerole")
+            await self.announce_roles(title, addlist, channel, guild, to_add=True)
+            title = "**These members have lost the following roles**\n"
+            await self.announce_roles(title, removelist, channel, guild, to_add=False)
+
+    async def announce_roles(self, title, role_list, channel, guild, to_add: True):
+        results = ""
+        for member, role_id in role_list:
+            role = discord.utils.get(guild.roles, id=role_id)
+            try:
+                if to_add:
+                    await member.add_roles(role, reason="Timerole")
+                else:
+                    await member.remove_roles(role, reason="Timerole")
+            except discord.Forbidden:
+                results += "{} : {} **(Failed)**\n".format(member.display_name, role.name)
+            else:
                 results += "{} : {}\n".format(member.display_name, role.name)
-
-            if channel is not None and results:
-                await channel.send(title)
-                for page in pagify(results, shorten_by=50):
-                    await channel.send(page)
+        if channel is not None and results:
+            await channel.send(title)
+            for page in pagify(results, shorten_by=50):
+                await channel.send(page)
+
+    async def check_required_and_date(self, role_list, check_roles, has_roles, member, role_dict):
+        for role_id in check_roles:
+            # Check for required role
+            if "required" in role_dict[str(role_id)]:
+                if not set(role_dict[str(role_id)]["required"]) & set(has_roles):
+                    # Doesn't have required role
+                    continue
+
+            if (
+                member.joined_at + timedelta(days=role_dict[str(role_id)]["days"])
+                <= datetime.today()
+            ):
+                # Qualifies
+                role_list.append((member, role_id))
 
     async def check_day(self):
         while self is self.bot.get_cog("Timerole"):
-            tomorrow = datetime.now() + timedelta(days=1)
-            midnight = datetime(
-                year=tomorrow.year,
-                month=tomorrow.month,
-                day=tomorrow.day,
-                hour=0,
-                minute=0,
-                second=0,
-            )
-
-            await asyncio.sleep((midnight - datetime.now()).seconds)
-
             await self.timerole_update()
-
-            await asyncio.sleep(3)
-            # then start loop over again
+            await asyncio.sleep(86400)
diff --git a/tts/info..json b/tts/info.json
similarity index 100%
rename from tts/info..json
rename to tts/info.json
diff --git a/werewolf/builder.py b/werewolf/builder.py
index da0bf1e..2ed34a2 100644
--- a/werewolf/builder.py
+++ b/werewolf/builder.py
@@ -8,9 +8,9 @@ import discord
 # Import all roles here
 from redbot.core import commands
 
-from werewolf.roles.seer import Seer
-from werewolf.roles.vanillawerewolf import VanillaWerewolf
-from werewolf.roles.villager import Villager
+from .roles.seer import Seer
+from .roles.vanillawerewolf import VanillaWerewolf
+from .roles.villager import Villager
 from redbot.core.utils.menus import menu, prev_page, next_page, close_menu
 
 # All roles in this list for iterating
diff --git a/werewolf/game.py b/werewolf/game.py
index 181c198..9451034 100644
--- a/werewolf/game.py
+++ b/werewolf/game.py
@@ -5,10 +5,10 @@ from typing import List, Any, Dict, Set, Union
 import discord
 from redbot.core import commands
 
-from werewolf.builder import parse_code
-from werewolf.player import Player
-from werewolf.role import Role
-from werewolf.votegroup import VoteGroup
+from .builder import parse_code
+from .player import Player
+from .role import Role
+from .votegroup import VoteGroup
 
 
 class Game:
diff --git a/werewolf/night_powers.py b/werewolf/night_powers.py
index 215e8eb..b50929b 100644
--- a/werewolf/night_powers.py
+++ b/werewolf/night_powers.py
@@ -1,4 +1,4 @@
-from werewolf.role import Role
+from .role import Role
 
 
 def night_immune(role: Role):
diff --git a/werewolf/roles/seer.py b/werewolf/roles/seer.py
index 63b62a2..35c8271 100644
--- a/werewolf/roles/seer.py
+++ b/werewolf/roles/seer.py
@@ -1,5 +1,5 @@
-from werewolf.night_powers import pick_target
-from werewolf.role import Role
+from ..night_powers import pick_target
+from ..role import Role
 
 
 class Seer(Role):
diff --git a/werewolf/roles/shifter.py b/werewolf/roles/shifter.py
index d7ba956..4c550dc 100644
--- a/werewolf/roles/shifter.py
+++ b/werewolf/roles/shifter.py
@@ -1,5 +1,5 @@
-from werewolf.night_powers import pick_target
-from werewolf.role import Role
+from ..night_powers import pick_target
+from ..role import Role
 
 
 class Shifter(Role):
diff --git a/werewolf/roles/vanillawerewolf.py b/werewolf/roles/vanillawerewolf.py
index 5abce61..c8050da 100644
--- a/werewolf/roles/vanillawerewolf.py
+++ b/werewolf/roles/vanillawerewolf.py
@@ -1,6 +1,6 @@
-from werewolf.role import Role
+from ..role import Role
 
-from werewolf.votegroups.wolfvote import WolfVote
+from ..votegroups.wolfvote import WolfVote
 
 
 class VanillaWerewolf(Role):
diff --git a/werewolf/roles/villager.py b/werewolf/roles/villager.py
index 040e34d..bda51d2 100644
--- a/werewolf/roles/villager.py
+++ b/werewolf/roles/villager.py
@@ -1,4 +1,4 @@
-from werewolf.role import Role
+from ..role import Role
 
 
 class Villager(Role):
diff --git a/werewolf/votegroups/wolfvote.py b/werewolf/votegroups/wolfvote.py
index 411efde..9c068d5 100644
--- a/werewolf/votegroups/wolfvote.py
+++ b/werewolf/votegroups/wolfvote.py
@@ -1,6 +1,6 @@
 import random
 
-from werewolf.votegroup import VoteGroup
+from ..votegroup import VoteGroup
 
 
 class WolfVote(VoteGroup):
diff --git a/werewolf/werewolf.py b/werewolf/werewolf.py
index 17634ec..3971f7f 100644
--- a/werewolf/werewolf.py
+++ b/werewolf/werewolf.py
@@ -5,8 +5,8 @@ from redbot.core import Config, checks
 from redbot.core.bot import Red
 from redbot.core import commands
 
-from werewolf.builder import GameBuilder, role_from_name, role_from_alignment, role_from_category, role_from_id
-from werewolf.game import Game
+from .builder import GameBuilder, role_from_name, role_from_alignment, role_from_category, role_from_id
+from .game import Game
 from redbot.core.utils.menus import menu, DEFAULT_CONTROLS
 from typing import Any
 
@@ -41,6 +41,11 @@ class Werewolf(Cog):
 
     @commands.command()
     async def buildgame(self, ctx: commands.Context):
+        """
+        Create game codes to run custom games.
+
+        Pick the roles or randomized roles you want to include in a game
+        """
         gb = GameBuilder()
         code = await gb.build_game(ctx)
 
@@ -92,7 +97,7 @@ class Werewolf(Cog):
 
     @commands.guild_only()
     @wwset.command(name="category")
-    async def wwset_category(self, ctx: commands.Context, category_id=None):
+    async def wwset_category(self, ctx: commands.Context, category_id: int=None):
         """
         Assign the channel category
         """
@@ -294,7 +299,7 @@ class Werewolf(Cog):
         Find custom roles by name, alignment, category, or ID
         """
         if ctx.invoked_subcommand is None or ctx.invoked_subcommand == self.ww_search:
-            await ctx.send_help()
+            pass
 
     @ww_search.command(name="name")
     async def ww_search_name(self, ctx: commands.Context, *, name):