From 35bed57d01c46c39905fde41b58d0bb393c91ae1 Mon Sep 17 00:00:00 2001 From: Segergren Date: Tue, 18 Jul 2023 21:44:25 +0200 Subject: [PATCH 1/3] Fixed crash on CTRL + R in Capture-settings --- ClientApp/src/pages/Settings/Capture.tsx | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/ClientApp/src/pages/Settings/Capture.tsx b/ClientApp/src/pages/Settings/Capture.tsx index a809e699..d3b5fecb 100644 --- a/ClientApp/src/pages/Settings/Capture.tsx +++ b/ClientApp/src/pages/Settings/Capture.tsx @@ -124,7 +124,7 @@ export const Capture: React.FC = ({settings, updateSettings}) => { return 'medium'; } else if (settings?.resolution === 1080 && settings.frameRate === 60 && settings.bitRate === 35) { return 'high'; - } else if ((settings!.maxScreenResolution >= 1440 ? (settings?.resolution === 1440) : (settings?.resolution === 1080)) && settings?.frameRate === 60 && settings.bitRate === 50) { + } else if (settings?.maxScreenResolution && (settings?.maxScreenResolution >= 1440 ? (settings?.resolution === 1440) : (settings?.resolution === 1080)) && settings?.frameRate === 60 && settings.bitRate === 50) { return 'ultra'; } else { return 'custom'; @@ -172,7 +172,7 @@ export const Capture: React.FC = ({settings, updateSettings}) => { settings!.resolution = 1080; settings!.frameRate = 60; settings!.bitRate = 35; break; case "ultra": - settings!.resolution = settings!.maxScreenResolution >= 1440 ? 1440 : 1080; settings!.frameRate = 60; settings!.bitRate = 50; + settings!.resolution = settings!.maxScreenResolution && settings!.maxScreenResolution >= 1440 ? 1440 : 1080; settings!.frameRate = 60; settings!.bitRate = 50; break; default: return; @@ -210,12 +210,12 @@ export const Capture: React.FC = ({settings, updateSettings}) => {
Resolution {settings!.resolution = 480; customVideoQuality.current!.checked = true; updateSettings();}}, - {name: "720p", onClick: () => {settings!.resolution = 720; updateSettings();}}, - {name: "1080p", onClick: () => {settings!.resolution = 1080; updateSettings();}}, - ...(settings!.maxScreenResolution >= 1440 ? [{ name: "1440p", onClick: () => { settings!.resolution = 1440; updateSettings(); } }] : []), - ]}/> + items={[ + {name: "480p", onClick: () => {settings!.resolution = 480; customVideoQuality.current!.checked = true; updateSettings();}}, + {name: "720p", onClick: () => {settings!.resolution = 720; updateSettings();}}, + {name: "1080p", onClick: () => {settings!.resolution = 1080; updateSettings();}}, + ...(settings && settings.maxScreenResolution && settings.maxScreenResolution >= 1440 ? [{name: "1440p", onClick: () => {settings.resolution = 1440; updateSettings();}}] : []), + ]}/>
Framerate From 1baa0950dc312e28212c39d2f363441be781fbce Mon Sep 17 00:00:00 2001 From: Segergren Date: Fri, 13 Oct 2023 22:09:20 +0200 Subject: [PATCH 2/3] Added Force Display Capture --- Classes/Recorders/LibObsRecorder.cs | 47 +- Classes/Services/DetectionService.cs | 26 +- Classes/Services/RecordingService.cs | 8 +- Resources/detections/gameDetections.json | 7703 +++++++++++++++++++++- 4 files changed, 7738 insertions(+), 46 deletions(-) diff --git a/Classes/Recorders/LibObsRecorder.cs b/Classes/Recorders/LibObsRecorder.cs index 110ad80d..20e696f0 100644 --- a/Classes/Recorders/LibObsRecorder.cs +++ b/Classes/Recorders/LibObsRecorder.cs @@ -258,33 +258,42 @@ public override async Task StartRecording() { } } - // SETUP NEW VIDEO SOURCE - // - Create a source for the game_capture in channel 0 - IntPtr videoSourceSettings = obs_data_create(); - obs_data_set_string(videoSourceSettings, "capture_mode", IsFullscreen(windowHandle) ? "any_fullscreen" : "window"); - obs_data_set_string(videoSourceSettings, "window", windowClassNameId); - videoSources.TryAdd("gameplay", obs_source_create("game_capture", "gameplay", videoSourceSettings, IntPtr.Zero)); - obs_data_release(videoSourceSettings); - - // SETUP VIDEO ENCODER string encoder = SettingsService.Settings.captureSettings.encoder; string rateControl = SettingsService.Settings.captureSettings.rateControl; string fileFormat = SettingsService.Settings.captureSettings.fileFormat.format; - videoEncoders.TryAdd(encoder, GetVideoEncoder(encoder, rateControl, fileFormat)); - obs_encoder_set_video(videoEncoders[encoder], obs_get_video()); - obs_set_output_source(0, videoSources["gameplay"]); - // attempt to wait for game_capture source to hook first - retryAttempt = 0; - Logger.WriteLine($"Waiting for successful graphics hook for [{windowClassNameId}]..."); - while (signalGCHookSuccess == false && retryAttempt < Math.Min(maxRetryAttempts + signalGCHookAttempt, 30)) { - await Task.Delay(retryInterval); - retryAttempt++; + if (session.ForceDisplayCapture == false) { + // SETUP NEW VIDEO SOURCE + // - Create a source for the game_capture in channel 0 + IntPtr videoSourceSettings = obs_data_create(); + obs_data_set_string(videoSourceSettings, "capture_mode", IsFullscreen(windowHandle) ? "any_fullscreen" : "window"); + obs_data_set_string(videoSourceSettings, "window", windowClassNameId); + videoSources.TryAdd("gameplay", obs_source_create("game_capture", "gameplay", videoSourceSettings, IntPtr.Zero)); + obs_data_release(videoSourceSettings); + + // SETUP VIDEO ENCODER + videoEncoders.TryAdd(encoder, GetVideoEncoder(encoder, rateControl, fileFormat)); + obs_encoder_set_video(videoEncoders[encoder], obs_get_video()); + obs_set_output_source(0, videoSources["gameplay"]); + + // attempt to wait for game_capture source to hook first + retryAttempt = 0; + Logger.WriteLine($"Waiting for successful graphics hook for [{windowClassNameId}]..."); + while (signalGCHookSuccess == false && retryAttempt < Math.Min(maxRetryAttempts + signalGCHookAttempt, 30)) { + await Task.Delay(retryInterval); + retryAttempt++; + } + } + else { + videoEncoders.TryAdd(encoder, GetVideoEncoder(encoder, rateControl, fileFormat)); + obs_encoder_set_video(videoEncoders[encoder], obs_get_video()); } signalGCHookAttempt = 0; if (signalGCHookSuccess == false) { - Logger.WriteLine($"Unable to get graphics hook for [{windowClassNameId}] after {retryAttempt} attempts"); + if (session.ForceDisplayCapture == false) { + Logger.WriteLine($"Unable to get graphics hook for [{windowClassNameId}] after {retryAttempt} attempts"); + } Process process; diff --git a/Classes/Services/DetectionService.cs b/Classes/Services/DetectionService.cs index 643fb144..a63ecae3 100644 --- a/Classes/Services/DetectionService.cs +++ b/Classes/Services/DetectionService.cs @@ -35,7 +35,7 @@ public static class DetectionService { static readonly string gameDetectionsFile = Path.Join(GetCfgFolder(), "gameDetections.json"); static readonly string nonGameDetectionsFile = Path.Join(GetCfgFolder(), "nonGameDetections.json"); private static Dictionary drivePaths = new(); - private static List classBlacklist = new() { "splashscreen", "launcher", "cheat", "sdl_app", "console" }; + private static List classBlacklist = new() { "splashscreen", "launcher", "cheat", "console" }; private static List classWhitelist = new() { "unitywndclass", "unrealwindow", "riotwindowclass" }; public static bool IsStarted { get; internal set; } @@ -235,6 +235,13 @@ public static void LoadDetections() { public static JsonElement[] DownloadDetections(string dlPath, string file) { var result = "[]"; + +#if DEBUG + dlPath = Path.Join(Directory.GetParent(Environment.CurrentDirectory).Parent.Parent.FullName, @"Resources/detections/", file); + Logger.WriteLine($"Debug: Using {file} from Resources folder instead."); + return JsonDocument.Parse(File.ReadAllText(dlPath)).RootElement.EnumerateArray().ToArray(); +#endif + try { // check if current file sha matches remote or not, if it does, we are already up-to-date if (File.Exists(dlPath)) { @@ -371,7 +378,8 @@ public static bool AutoDetectGame(int processId, string executablePath, nint win $"[{className}]" + $"[{executablePath}]" ); - RecordingService.SetCurrentSession(processId, windowHandle, gameTitle, executablePath); + bool forceDisplayCapture = gameDetection.forceDisplayCapture; + RecordingService.SetCurrentSession(processId, windowHandle, gameTitle, executablePath, forceDisplayCapture); if (allowed) RecordingService.StartRecording(); } return isGame; @@ -384,11 +392,11 @@ public static bool HasBadWordInClassName(IntPtr windowHandle) { return windowHandle == IntPtr.Zero; } - public static (bool isGame, string gameTitle) IsMatchedGame(string exeFile) { + public static (bool isGame, bool forceDisplayCapture, string gameTitle) IsMatchedGame(string exeFile) { foreach (var game in SettingsService.Settings.detectionSettings.whitelist) { - if (game.gameExe == exeFile) return (true, game.gameName); + if (game.gameExe == exeFile) return (true, false, game.gameName); } - if (SettingsService.Settings.captureSettings.recordingMode == "whitelist") return (false, "Whitelist Mode"); + if (SettingsService.Settings.captureSettings.recordingMode == "whitelist") return (false, false, "Whitelist Mode"); try { for (int x = 0; x < gameDetectionsJson.Length; x++) { @@ -411,14 +419,14 @@ public static (bool isGame, string gameTitle) IsMatchedGame(string exeFile) { exePattern = exePatterns[z].Split('/').Last(); if (exePatterns[z].Length > 0 && Regex.IsMatch(exeFile, "^" + exePattern + "$", RegexOptions.IgnoreCase)) { Logger.WriteLine($"Regex Matched: input=\"{exeFile}\", pattern=\"^{exePattern}\"$"); - return (true, gameDetectionsJson[x].GetProperty("title").ToString()); + return (true, gameDetectionsJson[x].GetProperty("force_display_capture").GetBoolean(), gameDetectionsJson[x].GetProperty("title").ToString()); } } } else { if (Regex.IsMatch(exeFile, exePattern, RegexOptions.IgnoreCase)) { Logger.WriteLine($"Regex Matched: input=\"{exeFile}\", pattern=\"{exePattern}\""); - return (true, gameDetectionsJson[x].GetProperty("title").ToString()); + return (true, gameDetectionsJson[x].GetProperty("force_display_capture").GetBoolean(), gameDetectionsJson[x].GetProperty("title").ToString()); } } } @@ -431,8 +439,8 @@ public static (bool isGame, string gameTitle) IsMatchedGame(string exeFile) { // TODO: also parse Epic games/Origin games if (exeFile.Replace("\\", "/").Contains("/steamapps/common/")) - return (true, Regex.Split(exeFile.Replace("\\", "/"), "/steamapps/common/", RegexOptions.IgnoreCase)[1].Split('/')[0]); - return (false, "Game Unknown"); + return (true, false, Regex.Split(exeFile.Replace("\\", "/"), "/steamapps/common/", RegexOptions.IgnoreCase)[1].Split('/')[0]); + return (false, false, "Game Unknown"); } public static bool IsMatchedNonGame(string executablePath) { diff --git a/Classes/Services/RecordingService.cs b/Classes/Services/RecordingService.cs index 1110f3c6..07b59d5d 100644 --- a/Classes/Services/RecordingService.cs +++ b/Classes/Services/RecordingService.cs @@ -22,11 +22,13 @@ public class Session { public nint WindowHandle { get; internal set; } public string GameTitle { get; internal set; } public string Exe { get; internal set; } - public Session(int _Pid, nint _WindowHandle, string _GameTitle, string _Exe = null) { + public bool ForceDisplayCapture { get; internal set; } + public Session(int _Pid, nint _WindowHandle, string _GameTitle, string _Exe = null, bool _ForceDisplayCapture = false) { Pid = _Pid; WindowHandle = _WindowHandle; GameTitle = _GameTitle; Exe = _Exe; + ForceDisplayCapture = _ForceDisplayCapture; } } @@ -46,8 +48,8 @@ public static async void Start(Type type) { await Task.Run(() => DetectionService.CheckAlreadyRunningPrograms()); } - public static void SetCurrentSession(int _Pid, nint _WindowHandle, string _GameTitle, string exeFile) { - currentSession = new Session(_Pid, _WindowHandle, _GameTitle, exeFile); + public static void SetCurrentSession(int _Pid, nint _WindowHandle, string _GameTitle, string exeFile, bool forceDisplayCapture = false) { + currentSession = new Session(_Pid, _WindowHandle, _GameTitle, exeFile, forceDisplayCapture); } public static Session GetCurrentSession() { diff --git a/Resources/detections/gameDetections.json b/Resources/detections/gameDetections.json index 9198c92c..7fcd5667 100644 --- a/Resources/detections/gameDetections.json +++ b/Resources/detections/gameDetections.json @@ -1,5 +1,6 @@ [ { + "force_display_capture": false, "region": null, "title": "Roblox", "game_detection": [ @@ -18,6 +19,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Little Dragons Cafe", "game_detection": [ @@ -40,6 +42,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Paranormal State: Poison Spring", "game_detection": [ @@ -54,6 +57,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bounty Hounds Online", "game_detection": [ @@ -73,6 +77,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ninja Cats vs Samurai Dogs", "game_detection": [ @@ -87,6 +92,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rubies of Eventide", "game_detection": [ @@ -100,6 +106,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Katawa Shoujo", "game_detection": [ @@ -111,6 +118,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Golden Horde", "game_detection": [ @@ -122,6 +130,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Beat Hazard Ultra", "game_detection": [ @@ -133,6 +142,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tom Clancy's Rainbow Six Siege", "game_detection": [ @@ -175,6 +185,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Human: Fall Flat", "game_detection": [ @@ -189,6 +200,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tangledeep", "game_detection": [ @@ -202,6 +214,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NEO AQUARIUM - The King of Crustaceans -", "game_detection": [ @@ -216,6 +229,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "War of the Human Tanks", "game_detection": [ @@ -230,6 +244,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Majesty 2: The Fantasy Kingdom Sim", "game_detection": [ @@ -250,6 +265,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "World War 2: Panzer Claws", "game_detection": [ @@ -264,6 +280,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Broken Sword: The Angel of Death", "game_detection": [ @@ -275,6 +292,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Incredible Adventures of Van Helsing III", "game_detection": [ @@ -289,6 +307,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Parabellum", "game_detection": [ @@ -303,6 +322,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "You Are Not The Hero", "game_detection": [ @@ -317,6 +337,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims Pet Stories", "game_detection": [ @@ -328,6 +349,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SEGA Bass Fishing", "game_detection": [ @@ -342,6 +364,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DeathSmiles", "game_detection": [ @@ -356,6 +379,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Beyond Eyes", "game_detection": [ @@ -370,6 +394,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Diamond Dan", "game_detection": [ @@ -384,6 +409,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Conflict: Global Terror", "game_detection": [ @@ -396,6 +422,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gish", "game_detection": [ @@ -410,6 +437,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Batman: The Telltale Series", "game_detection": [ @@ -424,6 +452,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2016", "game_detection": [ @@ -438,6 +467,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pandemic Express", "game_detection": [ @@ -452,6 +482,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Temple of Elemental Evil", "game_detection": [ @@ -463,6 +494,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "WRC 2: FIA World Rally Championship", "game_detection": [ @@ -474,6 +506,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Game of Thrones", "game_detection": [ @@ -488,6 +521,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Exorcist II", "game_detection": [ @@ -501,6 +535,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Baseball Mogul 2009", "game_detection": [ @@ -512,6 +547,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Assassin's Creed: Brotherhood", "game_detection": [ @@ -532,6 +568,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Expendabros", "game_detection": [ @@ -546,6 +583,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pizza Frenzy Deluxe", "game_detection": [ @@ -566,6 +604,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Running Shadow", "game_detection": [ @@ -580,6 +619,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Experiment", "game_detection": [ @@ -591,6 +631,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Beyond Flesh and Blood", "game_detection": [ @@ -605,6 +646,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stacked with Daniel Negreanu", "game_detection": [ @@ -616,6 +658,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "D.W.A.R.F.S.", "game_detection": [ @@ -630,6 +673,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Max Payne 3", "game_detection": [ @@ -650,6 +694,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Amazing Adventures: The Lost Tomb", "game_detection": [ @@ -664,6 +709,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Assassin’s Creed Chronicles: India", "game_detection": [ @@ -678,6 +724,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Absent", "game_detection": [ @@ -692,6 +739,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gratuitous Tank Battles", "game_detection": [ @@ -706,6 +754,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Storm in a Teacup", "game_detection": [ @@ -720,6 +769,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tom Clancy's Rainbow Six: Lockdown Demo", "game_detection": [ @@ -732,6 +782,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deus Ex Human Revolution", "game_detection": [ @@ -747,6 +798,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rescue Bear Operation", "game_detection": [ @@ -761,6 +813,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Red Faction II", "game_detection": [ @@ -780,6 +833,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fantasy Grounds", "game_detection": [ @@ -794,6 +848,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pixel Boy and the Ever Expanding Dungeon", "game_detection": [ @@ -808,6 +863,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Space Empires IV Deluxe", "game_detection": [ @@ -827,6 +883,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rocksmith", "game_detection": [ @@ -841,6 +898,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heresy War Demo", "game_detection": [ @@ -852,6 +910,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chime", "game_detection": [ @@ -866,6 +925,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Critical Mass", "game_detection": [ @@ -880,6 +940,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battlefield 4", "game_detection": [ @@ -897,6 +958,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Anomaly Defenders", "game_detection": [ @@ -916,6 +978,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hot Squat", "game_detection": [ @@ -931,6 +994,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Elite Forces", "game_detection": [ @@ -944,6 +1008,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "IHF Handball Challenge 12", "game_detection": [ @@ -958,6 +1023,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Quantz", "game_detection": [ @@ -972,6 +1038,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hard to be a God", "game_detection": [ @@ -989,6 +1056,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Secret Ponchos", "game_detection": [ @@ -1003,6 +1071,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark Blood", "game_detection": [ @@ -1023,6 +1092,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shadowverse", "game_detection": [ @@ -1037,6 +1107,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FIFA 17", "game_detection": [ @@ -1048,6 +1119,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Age of Booty", "game_detection": [ @@ -1067,6 +1139,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Backstage Pass", "game_detection": [ @@ -1081,6 +1154,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Apotheon Arena", "game_detection": [ @@ -1095,6 +1169,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Syder Arcade", "game_detection": [ @@ -1109,6 +1184,7 @@ ] }, { + "force_display_capture": false, "region": "RU", "title": "Last Chaos", "game_detection": [ @@ -1122,6 +1198,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Street Fighter V", "game_detection": [ @@ -1137,6 +1214,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alan Wake's American Nightmare", "game_detection": [ @@ -1156,6 +1234,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mass Effect 2", "game_detection": [ @@ -1183,6 +1262,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Foreign Legion: Multi Massacre", "game_detection": [ @@ -1197,6 +1277,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Call of Cthulhu: The Wasted Land", "game_detection": [ @@ -1211,6 +1292,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Amnesia: Memories", "game_detection": [ @@ -1225,6 +1307,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Inside a Star-filled Sky", "game_detection": [ @@ -1238,6 +1321,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Talismania Deluxe", "game_detection": [ @@ -1259,6 +1343,7 @@ ] }, { + "force_display_capture": false, "region": "RU", "title": "Panzar", "game_detection": [ @@ -1285,6 +1370,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Senran Kagura Shinovi Versus", "game_detection": [ @@ -1299,6 +1385,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RimWorld", "game_detection": [ @@ -1321,6 +1408,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Street Fighter X Tekken", "game_detection": [ @@ -1340,6 +1428,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Indivisible", "game_detection": [ @@ -1350,6 +1439,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Cubicle.", "game_detection": [ @@ -1365,6 +1455,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Titan Quest: Immortal Throne", "game_detection": [ @@ -1389,6 +1480,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Reckless Ruckus", "game_detection": [ @@ -1403,6 +1495,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eternal Fate", "game_detection": [ @@ -1417,6 +1510,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spore Creature Creator", "game_detection": [ @@ -1429,6 +1523,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "We Need To Go Deeper", "game_detection": [ @@ -1443,6 +1538,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Soulbringer", "game_detection": [ @@ -1457,6 +1553,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Diaper Dash", "game_detection": [ @@ -1471,6 +1568,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Geometry Wars: Retro Evolved", "game_detection": [ @@ -1485,6 +1583,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Planetary Annihilation: Titans", "game_detection": [ @@ -1499,6 +1598,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rush for Berlin", "game_detection": [ @@ -1510,6 +1610,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "L.A. Noire", "game_detection": [ @@ -1530,6 +1631,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ether Saga Odyssey", "game_detection": [ @@ -1548,6 +1650,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Oh Wow an RPG Game", "game_detection": [ @@ -1559,6 +1662,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeon Defenders Eternity", "game_detection": [ @@ -1573,6 +1677,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Marvel Heroes", "game_detection": [ @@ -1601,6 +1706,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "White Noise Online", "game_detection": [ @@ -1615,6 +1721,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NBA Live 06", "game_detection": [ @@ -1626,6 +1733,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Octodad: Dadliest Catch", "game_detection": [ @@ -1646,6 +1754,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dawn of Magic", "game_detection": [ @@ -1657,6 +1766,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Painkiller Demo", "game_detection": [ @@ -1669,6 +1779,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Depth Hunter", "game_detection": [ @@ -1682,6 +1793,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fairy Fencer F Advent Dark Force", "game_detection": [ @@ -1696,6 +1808,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Free Realms", "game_detection": [ @@ -1719,6 +1832,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Quake Champions", "game_detection": [ @@ -1738,6 +1852,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spintires", "game_detection": [ @@ -1752,6 +1867,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Etherlords", "game_detection": [ @@ -1766,6 +1882,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Total War: Rome II", "game_detection": [ @@ -1780,6 +1897,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GUN", "game_detection": [ @@ -1799,6 +1917,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "TransOcean: The Shipping Company", "game_detection": [ @@ -1813,6 +1932,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zula: Europe", "game_detection": [ @@ -1823,6 +1943,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Faerie Solitaire", "game_detection": [ @@ -1837,6 +1958,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Call of Duty: Modern Warfare Remastered", "game_detection": [ @@ -1851,6 +1973,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blind Trust", "game_detection": [ @@ -1865,6 +1988,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "KrissX", "game_detection": [ @@ -1879,6 +2003,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Escape From Monkey Island", "game_detection": [ @@ -1891,6 +2016,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ReignMaker", "game_detection": [ @@ -1910,6 +2036,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ty the Tasmanian Tiger", "game_detection": [ @@ -1924,6 +2051,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SimCity 3000 Unlimited", "game_detection": [ @@ -1935,6 +2063,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cities XL", "game_detection": [ @@ -1955,6 +2084,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sekiro: Shadows Die Twice", "game_detection": [ @@ -1973,6 +2103,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sonic & All-Stars Racing Transformed", "game_detection": [ @@ -1987,6 +2118,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A Virus Named TOM", "game_detection": [ @@ -2006,6 +2138,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Terraria", "game_detection": [ @@ -2019,6 +2152,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Trapped Dead", "game_detection": [ @@ -2033,6 +2167,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Roguelands", "game_detection": [ @@ -2047,6 +2182,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Highborn", "game_detection": [ @@ -2061,6 +2197,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Earth Defense Force 5", "game_detection": [ @@ -2071,6 +2208,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Omerta: City of Gangsters Demo", "game_detection": [ @@ -2082,6 +2220,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chains", "game_detection": [ @@ -2096,6 +2235,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bit.Trip Flux", "game_detection": [ @@ -2110,6 +2250,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Storm of Vengeance", "game_detection": [ @@ -2124,6 +2265,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lumbermancer", "game_detection": [ @@ -2138,6 +2280,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "War Of The Roses", "game_detection": [ @@ -2152,6 +2295,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "For Honor", "game_detection": [ @@ -2180,6 +2324,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Angry Birds", "game_detection": [ @@ -2191,6 +2336,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pirateville", "game_detection": [ @@ -2202,6 +2348,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Divinity: Original Sin II", "game_detection": [ @@ -2216,6 +2363,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Puzzle Agent 2", "game_detection": [ @@ -2236,6 +2384,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "King's Bounty: Crossworlds", "game_detection": [ @@ -2251,6 +2400,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Infected: The Twin Vaccine", "game_detection": [ @@ -2265,6 +2415,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rock of Ages", "game_detection": [ @@ -2279,6 +2430,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Arena: Cyber Evolution", "game_detection": [ @@ -2293,6 +2445,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NBA Live 2004", "game_detection": [ @@ -2304,6 +2457,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Are You Smarter Than a 5th Grader?", "game_detection": [ @@ -2317,6 +2471,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mishap 2: An Intentional Haunting", "game_detection": [ @@ -2331,6 +2486,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "World of Padman", "game_detection": [ @@ -2347,6 +2503,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fantasy Tales Online", "game_detection": [ @@ -2361,6 +2518,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shovel Knight", "game_detection": [ @@ -2383,6 +2541,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eternal Lands", "game_detection": [ @@ -2394,6 +2553,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cossacks 3", "game_detection": [ @@ -2409,6 +2569,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Need for Speed: Hot Pursuit", "game_detection": [ @@ -2428,6 +2589,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gothic 3", "game_detection": [ @@ -2445,6 +2607,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tony Hawk's Underground 2", "game_detection": [ @@ -2457,6 +2620,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Marvellous Miss Take", "game_detection": [ @@ -2471,6 +2635,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "R.A.W. - Realms of Ancient War", "game_detection": [ @@ -2485,6 +2650,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Final Fantasy XII The Zodiac Age", "game_detection": [ @@ -2498,6 +2664,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Magic the Gathering: Battlegrounds", "game_detection": [ @@ -2510,6 +2677,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ashes Cricket 2009", "game_detection": [ @@ -2530,6 +2698,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead Realm", "game_detection": [ @@ -2544,6 +2713,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Farm Together", "game_detection": [ @@ -2554,6 +2724,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "CONSORTIUM", "game_detection": [ @@ -2575,6 +2746,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jewel Quest Heritage", "game_detection": [ @@ -2586,6 +2758,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Jonah Lomu Rugby Challenge", "game_detection": [ @@ -2600,6 +2773,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "HIT", "game_detection": [ @@ -2614,6 +2788,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chantelise: A Tale of Two Sisters", "game_detection": [ @@ -2628,6 +2803,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Magnetis", "game_detection": [ @@ -2642,6 +2818,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Guilty Gear X2 Reload", "game_detection": [ @@ -2661,6 +2838,7 @@ ] }, { + "force_display_capture": false, "region": "DE", "title": "Sniper Elite: Nazi Zombie Army 2", "game_detection": [ @@ -2675,6 +2853,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heroes of Might and Magic III", "game_detection": [ @@ -2698,6 +2877,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rush Bros.", "game_detection": [ @@ -2712,6 +2892,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Assetto Corsa", "game_detection": [ @@ -2726,6 +2907,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "XenoRaptor", "game_detection": [ @@ -2740,6 +2922,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Assassin's Creed Syndicate", "game_detection": [ @@ -2761,6 +2944,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blade Arcus from Shining: Battle Arena", "game_detection": [ @@ -2775,6 +2959,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Office", "game_detection": [ @@ -2794,6 +2979,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Grand Prix Legends", "game_detection": [ @@ -2805,6 +2991,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Clown2Beat", "game_detection": [ @@ -2819,6 +3006,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wake", "game_detection": [ @@ -2833,6 +3021,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "World of Tanks", "game_detection": [ @@ -2858,6 +3047,7 @@ ] }, { + "force_display_capture": false, "region": "TW", "title": "Blade & Soul", "game_detection": [ @@ -2874,6 +3064,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Scrabble", "game_detection": [ @@ -2888,6 +3079,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Time of Shadows", "game_detection": [ @@ -2904,6 +3096,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Synergy", "game_detection": [ @@ -2918,6 +3111,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dune 2000", "game_detection": [ @@ -2931,6 +3125,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Unending Dusk", "game_detection": [ @@ -2944,6 +3139,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deus Ex: Mankind Divided", "game_detection": [ @@ -2958,6 +3154,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Duke Nukem II", "game_detection": [ @@ -2972,6 +3169,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "2006 FIFA World Cup", "game_detection": [ @@ -2983,6 +3181,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Genesis Online", "game_detection": [ @@ -2997,6 +3196,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Konung 2", "game_detection": [ @@ -3011,6 +3211,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mirror's Edge", "game_detection": [ @@ -3031,6 +3232,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Construction Simulator 2015", "game_detection": [ @@ -3041,6 +3243,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Earth: Year 2066", "game_detection": [ @@ -3055,6 +3258,7 @@ ] }, { + "force_display_capture": false, "region": "JP", "title": "Master of Epic", "game_detection": [ @@ -3068,6 +3272,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Space Pirates and Zombies", "game_detection": [ @@ -3087,6 +3292,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wing Commander Saga: The Darkest Dawn", "game_detection": [ @@ -3100,6 +3306,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "32nd America's Cup: The Game", "game_detection": [ @@ -3112,6 +3319,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kung Fury Street Rage", "game_detection": [ @@ -3126,6 +3334,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Flower Shop: Summer In Fairbrook", "game_detection": [ @@ -3140,6 +3349,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wolfenstein 3D: Spear of Destiny", "game_detection": [ @@ -3154,6 +3364,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Drive A Steam Train", "game_detection": [ @@ -3168,6 +3379,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Winter Voices", "game_detection": [ @@ -3182,6 +3394,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Space Chimps", "game_detection": [ @@ -3194,6 +3407,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Turbo Dismount", "game_detection": [ @@ -3208,6 +3422,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Serious Sam: The Second Encounter", "game_detection": [ @@ -3227,6 +3442,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battlefield 2142", "game_detection": [ @@ -3246,6 +3462,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Skyreach", "game_detection": [ @@ -3260,6 +3477,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rise of Nations", "game_detection": [ @@ -3280,6 +3498,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Disciples II: Dark Prophecy", "game_detection": [ @@ -3291,6 +3510,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rabbit Hole 3D", "game_detection": [ @@ -3305,6 +3525,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Emerland Solitaire: Endless Journey", "game_detection": [ @@ -3319,6 +3540,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "htoL#NiQ: The Firefly Diary", "game_detection": [ @@ -3333,6 +3555,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Guardians of Orion", "game_detection": [ @@ -3347,6 +3570,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Conquest of Elysium 3", "game_detection": [ @@ -3361,6 +3585,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Turing Test", "game_detection": [ @@ -3375,6 +3600,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LEGO Star Wars II: The Original Trilogy", "game_detection": [ @@ -3386,6 +3612,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fantasy Strike", "game_detection": [ @@ -3399,6 +3626,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Might and Magic VII: For Blood & Honor", "game_detection": [ @@ -3417,6 +3645,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cinema Empire", "game_detection": [ @@ -3429,6 +3658,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Drakerz Confrontation", "game_detection": [ @@ -3443,6 +3673,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeon Siege II Demo", "game_detection": [ @@ -3455,6 +3686,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "TrackMania Turbo", "game_detection": [ @@ -3469,6 +3701,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hacker Evolution", "game_detection": [ @@ -3483,6 +3716,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nancy Drew: Secret of the Scarlet Hand", "game_detection": [ @@ -3497,6 +3731,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tom Clancy's Ghost Recon: Wildlands", "game_detection": [ @@ -3517,6 +3752,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Memory of Eldurim", "game_detection": [ @@ -3531,6 +3767,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ascension: Deckbuilding Game", "game_detection": [ @@ -3545,6 +3782,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Toxikk", "game_detection": [ @@ -3559,6 +3797,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Age of Wulin: Legend of the Nine Scrolls", "game_detection": [ @@ -3571,6 +3810,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Let It Die", "game_detection": [ @@ -3581,6 +3821,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shank 2", "game_detection": [ @@ -3595,6 +3836,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Acceleration of SUGURI X-Edition", "game_detection": [ @@ -3614,6 +3856,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crusader Kings II", "game_detection": [ @@ -3633,6 +3876,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ancients of Ooga", "game_detection": [ @@ -3657,6 +3901,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A-Race Extreme Show", "game_detection": [ @@ -3668,6 +3913,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Life is Feudal: Forest Village", "game_detection": [ @@ -3682,6 +3928,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bridge Constructor", "game_detection": [ @@ -3706,6 +3953,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Half-Life: A Place in the West", "game_detection": [ @@ -3721,6 +3969,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Oddworld: Abe's Oddysee", "game_detection": [ @@ -3745,6 +3994,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "200% Mixed Juice", "game_detection": [ @@ -3759,6 +4009,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Grand Chase Europe", "game_detection": [ @@ -3772,6 +4023,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Infectonator: Survivors", "game_detection": [ @@ -3786,6 +4038,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Driver: Parallel Lines", "game_detection": [ @@ -3805,6 +4058,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LEGO Star Wars", "game_detection": [ @@ -3816,6 +4070,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Brian's High Velocity Research Center", "game_detection": [ @@ -3831,6 +4086,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rune Classic", "game_detection": [ @@ -3845,6 +4101,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Survarium", "game_detection": [ @@ -3859,6 +4116,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A Way Out", "game_detection": [ @@ -3870,6 +4128,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DragonBall Xenoverse", "game_detection": [ @@ -3884,6 +4143,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sweet Lily Dreams", "game_detection": [ @@ -3898,6 +4158,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hitman Absolution", "game_detection": [ @@ -3912,6 +4173,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FaeVerse Alchemy", "game_detection": [ @@ -3926,6 +4188,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Awesomenauts", "game_detection": [ @@ -3947,6 +4210,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cube & Star: A Love Story", "game_detection": [ @@ -3961,6 +4225,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Survivors of Ragnarök", "game_detection": [ @@ -3973,6 +4238,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Natural Threat: Ominous Shores", "game_detection": [ @@ -3985,6 +4251,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Grand Prix 4", "game_detection": [ @@ -3996,6 +4263,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Wars Jedi Knight: Dark Forces 2", "game_detection": [ @@ -4007,6 +4275,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Brothers: A Tale of Two Sons", "game_detection": [ @@ -4021,6 +4290,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lume", "game_detection": [ @@ -4034,6 +4304,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "F1 2011", "game_detection": [ @@ -4053,6 +4324,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Killer Instinct", "game_detection": [ @@ -4072,6 +4344,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Klang", "game_detection": [ @@ -4086,6 +4359,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Penarium", "game_detection": [ @@ -4100,6 +4374,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hoyle Casino Games", "game_detection": [ @@ -4111,6 +4386,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chef", "game_detection": [ @@ -4121,6 +4397,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "And Yet It Moves", "game_detection": [ @@ -4140,6 +4417,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ys Origin", "game_detection": [ @@ -4159,6 +4437,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Shrouded Isle", "game_detection": [ @@ -4172,6 +4451,7 @@ ] }, { + "force_display_capture": false, "region": "JP", "title": "HEBEREKE!: March! Red Army Girls' Brigade", "game_detection": [ @@ -4187,6 +4467,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Leviathan: Warships", "game_detection": [ @@ -4201,6 +4482,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Forged Battalion", "game_detection": [ @@ -4214,6 +4496,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Truck Racer", "game_detection": [ @@ -4228,6 +4511,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Millennium: A New Hope", "game_detection": [ @@ -4242,6 +4526,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crysis 2", "game_detection": [ @@ -4277,6 +4562,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alpha Kimori: Great Doubt - Episode One", "game_detection": [ @@ -4291,6 +4577,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Galcon 2", "game_detection": [ @@ -4305,6 +4592,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark Space", "game_detection": [ @@ -4318,6 +4606,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Anna", "game_detection": [ @@ -4337,6 +4626,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spermination", "game_detection": [ @@ -4351,6 +4641,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Tiny Bang Story", "game_detection": [ @@ -4365,6 +4656,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "One Hour One Life", "game_detection": [ @@ -4375,6 +4667,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sorcerer King: Rivals", "game_detection": [ @@ -4389,6 +4682,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Football Manager 2009 Demo", "game_detection": [ @@ -4403,6 +4697,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GAUGE", "game_detection": [ @@ -4417,6 +4712,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "King's Bounty: Armored Princess", "game_detection": [ @@ -4436,6 +4732,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deadliest Catch: Alaskan Storm", "game_detection": [ @@ -4447,6 +4744,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Descenders", "game_detection": [ @@ -4461,6 +4759,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Catlateral Damage", "game_detection": [ @@ -4475,6 +4774,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Middle-Earth: Shadow of Mordor", "game_detection": [ @@ -4489,6 +4789,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nail'd", "game_detection": [ @@ -4503,6 +4804,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Juggernaut", "game_detection": [ @@ -4514,6 +4816,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dragon Quest XI: Echoes of an Elusive Age", "game_detection": [ @@ -4527,6 +4830,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Home", "game_detection": [ @@ -4551,6 +4855,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Steel Fury: Kharkov 1942", "game_detection": [ @@ -4562,6 +4867,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Unreal II: The Awakening", "game_detection": [ @@ -4592,6 +4898,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Move or Die", "game_detection": [ @@ -4602,6 +4909,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LiEat", "game_detection": [ @@ -4616,6 +4924,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blues and Bullets", "game_detection": [ @@ -4630,6 +4939,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blur", "game_detection": [ @@ -4649,6 +4959,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Power of Defense", "game_detection": [ @@ -4663,6 +4974,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeon Siege II", "game_detection": [ @@ -4683,6 +4995,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mad Max", "game_detection": [ @@ -4697,6 +5010,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DinerTown Tycoon", "game_detection": [ @@ -4711,6 +5025,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fire Pro Wrestling World", "game_detection": [ @@ -4724,6 +5039,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rage Runner", "game_detection": [ @@ -4738,6 +5054,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Out of the Park Baseball 12", "game_detection": [ @@ -4749,6 +5066,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cabela's Big Game Hunter: Pro Hunts", "game_detection": [ @@ -4763,6 +5081,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rooster Teeth vs. Zombiens", "game_detection": [ @@ -4777,6 +5096,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Arca Sim Racing", "game_detection": [ @@ -4788,6 +5108,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Raven Squad: Operation Hidden Dagger", "game_detection": [ @@ -4807,6 +5128,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Foul Play", "game_detection": [ @@ -4821,6 +5143,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wizard101", "game_detection": [ @@ -4833,6 +5156,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Otherland", "game_detection": [ @@ -4847,6 +5171,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Darkest Dungeon", "game_detection": [ @@ -4861,6 +5186,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Farm For Your Life", "game_detection": [ @@ -4875,6 +5201,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Velvet Assassin", "game_detection": [ @@ -4889,6 +5216,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "This Is The Police II", "game_detection": [ @@ -4902,6 +5230,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Yakuza Kiwami 2", "game_detection": [ @@ -4912,6 +5241,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Renegade X", "game_detection": [ @@ -4929,6 +5259,7 @@ ] }, { + "force_display_capture": false, "region": "ES", "title": "Alliance of Valiant Arms", "game_detection": [ @@ -4945,6 +5276,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Evil Within", "game_detection": [ @@ -4959,6 +5291,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RUINER", "game_detection": [ @@ -4973,6 +5306,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Runaway 2: The Dream of the Turtle", "game_detection": [ @@ -4987,6 +5321,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Powerpuff Girls: Defenders of Townsville", "game_detection": [ @@ -5001,6 +5336,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shattered Union", "game_detection": [ @@ -5012,6 +5348,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Devil May Cry 3: Dante's Awakening Special Edition", "game_detection": [ @@ -5030,6 +5367,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sid Meier's Ace Patrol", "game_detection": [ @@ -5044,6 +5382,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "One Piece: Burning Blood", "game_detection": [ @@ -5058,6 +5397,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Joint Operations: Typhoon Rising", "game_detection": [ @@ -5078,6 +5418,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cubemen 2", "game_detection": [ @@ -5092,6 +5433,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Space Beast Terror Fright", "game_detection": [ @@ -5106,6 +5448,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Islands of Nyne: Battle Royale", "game_detection": [ @@ -5119,6 +5462,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tomb Raider: Underworld Demo", "game_detection": [ @@ -5133,6 +5477,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Epic Arena", "game_detection": [ @@ -5147,6 +5492,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Archlord II", "game_detection": [ @@ -5160,6 +5506,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sam & Max Episode 103: The Mole, the Mob, and the Meatball", "game_detection": [ @@ -5179,6 +5526,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Secret of Mana", "game_detection": [ @@ -5192,6 +5540,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Madden NFL 20", "game_detection": [ @@ -5202,6 +5551,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Snuggle Truck", "game_detection": [ @@ -5216,6 +5566,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "WORLD END ECONOMiCA: Episode 2", "game_detection": [ @@ -5230,6 +5581,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Distant Worlds: Return of the Shakturi", "game_detection": [ @@ -5243,6 +5595,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fortress Forever", "game_detection": [ @@ -5259,6 +5612,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ghost in the Shell: Stand Alone Complex - First Assault Online", "game_detection": [ @@ -5274,6 +5628,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kal Online", "game_detection": [ @@ -5302,6 +5657,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fuego!", "game_detection": [ @@ -5316,6 +5672,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mordheim: City of the Damned", "game_detection": [ @@ -5330,6 +5687,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nicolas Eymerich: The Inquisitor - Book 1: The Plague", "game_detection": [ @@ -5344,6 +5702,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "No One Lives Forever 2", "game_detection": [ @@ -5356,6 +5715,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sherlock Holmes and The Hound of The Baskervilles", "game_detection": [ @@ -5369,6 +5729,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Putt Putt Travels Through Time", "game_detection": [ @@ -5383,6 +5744,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Paperbound", "game_detection": [ @@ -5397,6 +5759,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Don't Let Go!", "game_detection": [ @@ -5412,6 +5775,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NARUTO SHIPPUDEN: Ultimate Ninja STORM 3 - Full Burst", "game_detection": [ @@ -5426,6 +5790,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lost Planet: Extreme Condition Colonies Edition", "game_detection": [ @@ -5446,6 +5811,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Omegalodon", "game_detection": [ @@ -5465,6 +5831,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "UFO: Alien Invasion", "game_detection": [ @@ -5476,6 +5843,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gunscape", "game_detection": [ @@ -5490,6 +5858,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Subvein", "game_detection": [ @@ -5501,6 +5870,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spoids", "game_detection": [ @@ -5512,6 +5882,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Arcania: Gothic 4", "game_detection": [ @@ -5532,6 +5903,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Total Annihilation", "game_detection": [ @@ -5543,6 +5915,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FIFA 14", "game_detection": [ @@ -5554,6 +5927,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "Realm of Chaos", "game_detection": [ @@ -5567,6 +5941,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BATTALION 1944", "game_detection": [ @@ -5580,6 +5955,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Might & Magic Heroes VI", "game_detection": [ @@ -5599,6 +5975,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Myst", "game_detection": [ @@ -5610,6 +5987,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ironclads: Anglo Russian War 1866", "game_detection": [ @@ -5624,6 +6002,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Risk of Rain 2", "game_detection": [ @@ -5642,6 +6021,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Albion Online", "game_detection": [ @@ -5666,6 +6046,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sacrifice", "game_detection": [ @@ -5685,6 +6066,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Worms World Party Remastered", "game_detection": [ @@ -5699,6 +6081,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SunAge", "game_detection": [ @@ -5710,6 +6093,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Earthworm Jim 3D", "game_detection": [ @@ -5734,6 +6118,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ultimate General: Gettysburg", "game_detection": [ @@ -5748,6 +6133,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Basement Collection", "game_detection": [ @@ -5762,6 +6148,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mytheon", "game_detection": [ @@ -5775,6 +6162,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Race Cars: The Extreme Rally", "game_detection": [ @@ -5786,6 +6174,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dreamscapes: The Sandman", "game_detection": [ @@ -5800,6 +6189,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark Age of Camelot: Trials of Atlantis", "game_detection": [ @@ -5813,6 +6203,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Destination Sol", "game_detection": [ @@ -5827,6 +6218,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tank Universal", "game_detection": [ @@ -5841,6 +6233,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Horizon", "game_detection": [ @@ -5855,6 +6248,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Comanche 4", "game_detection": [ @@ -5869,6 +6263,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Unfair Jousting Fair", "game_detection": [ @@ -5883,6 +6278,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Granny in Paradise", "game_detection": [ @@ -5897,6 +6293,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tomb Raider: Anniversary", "game_detection": [ @@ -5916,6 +6313,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Jackbox Party Pack 5", "game_detection": [ @@ -5926,6 +6324,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Soul Journey", "game_detection": [ @@ -5938,6 +6337,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Demise of Nations: Rome", "game_detection": [ @@ -5952,6 +6352,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mushroom Men: Truffle Trouble", "game_detection": [ @@ -5966,6 +6367,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Full Bore: The First Dig", "game_detection": [ @@ -5980,6 +6382,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Empire: Total War", "game_detection": [ @@ -5994,6 +6397,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hollow Knight", "game_detection": [ @@ -6012,6 +6416,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SRS: Street Racing Syndicate", "game_detection": [ @@ -6026,6 +6431,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Company of Heroes: Tales of Valor", "game_detection": [ @@ -6037,6 +6443,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heroes of Might and Magic 3: Armageddon's Blade", "game_detection": [ @@ -6048,6 +6455,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nexuiz Classic", "game_detection": [ @@ -6060,6 +6468,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dracula Resurrection", "game_detection": [ @@ -6074,6 +6483,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Metal Gear Rising: Revengeance", "game_detection": [ @@ -6088,6 +6498,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Quake Live", "game_detection": [ @@ -6102,6 +6513,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "CUPID", "game_detection": [ @@ -6116,6 +6528,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Isbarah", "game_detection": [ @@ -6130,6 +6543,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Unreal", "game_detection": [ @@ -6141,6 +6555,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Command & Conquer Tiberian Sun: Firestorm", "game_detection": [ @@ -6156,6 +6571,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gumboy: Crazy Adventures", "game_detection": [ @@ -6170,6 +6586,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sam & Max Episode 203: Night of the Raving Dead", "game_detection": [ @@ -6189,6 +6606,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heva Clonia Online", "game_detection": [ @@ -6203,6 +6621,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Medieval II: Total War", "game_detection": [ @@ -6222,6 +6641,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zoo Tycoon 2: Ultimate Collection", "game_detection": [ @@ -6235,6 +6655,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sniper Elite: Nazi Zombie Army 2", "game_detection": [ @@ -6249,6 +6670,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Elemental: Fallen Enchantress", "game_detection": [ @@ -6268,6 +6690,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lightning Returns: Final Fantasy XIII", "game_detection": [ @@ -6282,6 +6705,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Victorian Admirals", "game_detection": [ @@ -6296,6 +6720,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Legends of Dawn", "game_detection": [ @@ -6310,6 +6735,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "See No Evil", "game_detection": [ @@ -6324,6 +6750,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crashday", "game_detection": [ @@ -6335,6 +6762,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sword of the Stars (Collector's Edition)", "game_detection": [ @@ -6347,6 +6775,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Panzar", "game_detection": [ @@ -6361,6 +6790,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Elements of War", "game_detection": [ @@ -6372,6 +6802,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims 2 Ultimate Collection", "game_detection": [ @@ -6383,6 +6814,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Global Ops: Commando Libya", "game_detection": [ @@ -6397,6 +6829,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Car Mechanic Simulator 2014", "game_detection": [ @@ -6411,6 +6844,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gothic 3: Forsaken Gods Enhanced Edition", "game_detection": [ @@ -6425,6 +6859,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Command & Conquer: Red Alert 3", "game_detection": [ @@ -6444,6 +6879,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A Story About My Uncle", "game_detection": [ @@ -6458,6 +6894,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Maw", "game_detection": [ @@ -6472,6 +6909,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Natural Soccer", "game_detection": [ @@ -6483,6 +6921,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2016 myClub", "game_detection": [ @@ -6497,6 +6936,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dream Pinball 3D", "game_detection": [ @@ -6511,6 +6951,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "WildStar", "game_detection": [ @@ -6532,6 +6973,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ironsight", "game_detection": [ @@ -6543,6 +6985,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Centration", "game_detection": [ @@ -6557,6 +7000,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tom Clancy's Rainbow Six 3: Athena Sword", "game_detection": [ @@ -6571,6 +7015,7 @@ ] }, { + "force_display_capture": false, "region": "RU", "title": "Allods Online", "game_detection": [ @@ -6586,6 +7031,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "9.03m", "game_detection": [ @@ -6600,6 +7046,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crash Time III", "game_detection": [ @@ -6614,6 +7061,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A-Train 9 V4.0: Japan Rail Simulator", "game_detection": [ @@ -6628,6 +7076,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zoo Tycoon 2: Marine Mania", "game_detection": [ @@ -6640,6 +7089,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NBA Live 08", "game_detection": [ @@ -6651,6 +7101,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Clash of the Monsters", "game_detection": [ @@ -6665,6 +7116,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Panzer Elite", "game_detection": [ @@ -6677,6 +7129,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dragomon Hunter", "game_detection": [ @@ -6698,6 +7151,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Yatagarasu: Attack on Cataclysm", "game_detection": [ @@ -6712,6 +7166,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gyromancer", "game_detection": [ @@ -6726,6 +7181,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sam & Max Episode 202: Moai Better Blues", "game_detection": [ @@ -6745,6 +7201,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Demolition Company", "game_detection": [ @@ -6759,6 +7216,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blockade Runner", "game_detection": [ @@ -6770,6 +7228,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "WPT: World Poker Tour", "game_detection": [ @@ -6786,6 +7245,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RoboSports VR", "game_detection": [ @@ -6801,6 +7261,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Call of Duty: Modern Warfare Remastered MP", "game_detection": [ @@ -6815,6 +7276,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Beneath The Cherry Trees", "game_detection": [ @@ -6830,6 +7292,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Slender: The Arrival", "game_detection": [ @@ -6865,6 +7328,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ANNO 2205", "game_detection": [ @@ -6886,6 +7350,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Falling Sun", "game_detection": [ @@ -6900,6 +7365,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mechwarrior 4: Mercenaries", "game_detection": [ @@ -6911,6 +7377,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Incredible Adventures of Van Helsing II", "game_detection": [ @@ -6925,6 +7392,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ride 2", "game_detection": [ @@ -6939,6 +7407,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lineage II", "game_detection": [ @@ -6979,6 +7448,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Space Rangers", "game_detection": [ @@ -6993,6 +7463,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Idle Champions of the Forgotten Realms", "game_detection": [ @@ -7003,6 +7474,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Road Not Taken", "game_detection": [ @@ -7017,6 +7489,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tembo The Badass Elephant", "game_detection": [ @@ -7031,6 +7504,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Clicker Heroes 2", "game_detection": [ @@ -7044,6 +7518,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Soul Reaver 2: Legacy of Kain", "game_detection": [ @@ -7058,6 +7533,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RACE: The Official WTCC Game", "game_detection": [ @@ -7072,6 +7548,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Red Faction", "game_detection": [ @@ -7092,6 +7569,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Quick Draw", "game_detection": [ @@ -7107,6 +7585,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Black & White 2", "game_detection": [ @@ -7118,6 +7597,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Armored Warfare", "game_detection": [ @@ -7132,6 +7612,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SC2VN: The eSports Visual Novel", "game_detection": [ @@ -7146,6 +7627,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Neverwinter Nights 2", "game_detection": [ @@ -7157,6 +7639,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gurumin: A Monstrous Adventure", "game_detection": [ @@ -7171,6 +7654,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Black Mirror III", "game_detection": [ @@ -7190,6 +7674,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wildlife Park 3", "game_detection": [ @@ -7204,6 +7689,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bloons TD Battles", "game_detection": [ @@ -7218,6 +7704,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SCP: Secret Laboratory", "game_detection": [ @@ -7231,6 +7718,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Intralism", "game_detection": [ @@ -7245,6 +7733,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Chibi Knight", "game_detection": [ @@ -7259,6 +7748,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Starlite: Astronaut Rescue", "game_detection": [ @@ -7273,6 +7763,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mevo and The Grooveriders", "game_detection": [ @@ -7287,6 +7778,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cloning Clyde", "game_detection": [ @@ -7311,6 +7803,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Might and Magic VI: Mandate of Heaven", "game_detection": [ @@ -7330,6 +7823,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Unclaimed World", "game_detection": [ @@ -7344,6 +7838,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Wolves 2", "game_detection": [ @@ -7358,6 +7853,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ys SEVEN", "game_detection": [ @@ -7372,6 +7868,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "PewDiePie: Legend of the Brofist", "game_detection": [ @@ -7386,6 +7883,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LoveBeat", "game_detection": [ @@ -7400,6 +7898,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Raid: Shadow Legends", "game_detection": [ @@ -7410,6 +7909,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hazen: Episode I - The Dark Whispers", "game_detection": [ @@ -7424,6 +7924,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Uplink: Hacker Elite", "game_detection": [ @@ -7450,6 +7951,7 @@ ] }, { + "force_display_capture": false, "region": "RU", "title": "Siege Online", "game_detection": [ @@ -7463,6 +7965,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alien Arena 2011", "game_detection": [ @@ -7474,6 +7977,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pyroblazer", "game_detection": [ @@ -7488,6 +7992,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Oozi: Earth Adventure", "game_detection": [ @@ -7502,6 +8007,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Farmville 2", "game_detection": [ @@ -7512,6 +8018,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alien Swarm: Reactive Drop", "game_detection": [ @@ -7526,6 +8033,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Egyptian Prophecy", "game_detection": [ @@ -7540,6 +8048,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Towns", "game_detection": [ @@ -7566,6 +8075,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Manhole", "game_detection": [ @@ -7580,6 +8090,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Batman: The Enemy Within - The Telltale Series", "game_detection": [ @@ -7594,6 +8105,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Treasures of Montezuma 4", "game_detection": [ @@ -7608,6 +8120,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Clan of Champions", "game_detection": [ @@ -7622,6 +8135,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shift 2 Unleashed", "game_detection": [ @@ -7641,6 +8155,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crusaders of the Lost Idols", "game_detection": [ @@ -7655,6 +8170,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jack Keane 2: The Fire Within", "game_detection": [ @@ -7669,6 +8185,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cattails", "game_detection": [ @@ -7683,6 +8200,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Puzzle Chronicles", "game_detection": [ @@ -7697,6 +8215,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Universe Sandbox ²", "game_detection": [ @@ -7711,6 +8230,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battleship", "game_detection": [ @@ -7725,6 +8245,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "APB Reloaded", "game_detection": [ @@ -7745,6 +8266,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Surviving Mars", "game_detection": [ @@ -7755,6 +8277,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Street Legal Racing: Redline", "game_detection": [ @@ -7769,6 +8292,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Evopollution", "game_detection": [ @@ -7783,6 +8307,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Granny 4", "game_detection": [ @@ -7797,6 +8322,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FX Football", "game_detection": [ @@ -7811,6 +8337,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sub Command", "game_detection": [ @@ -7825,6 +8352,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nancy Drew: Trail of the Twister", "game_detection": [ @@ -7839,6 +8367,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Castle: Never Judge a Book by its Cover", "game_detection": [ @@ -7853,6 +8382,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blitzkrieg 3", "game_detection": [ @@ -7867,6 +8397,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Your Doodles Are Bugged!", "game_detection": [ @@ -7881,6 +8412,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Syberia", "game_detection": [ @@ -7906,6 +8438,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Caesar III", "game_detection": [ @@ -7918,6 +8451,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ghostbusters: The Video Game", "game_detection": [ @@ -7937,6 +8471,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "N++", "game_detection": [ @@ -7951,6 +8486,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Evolve", "game_detection": [ @@ -7965,6 +8501,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Trine 2 Beta", "game_detection": [ @@ -7979,6 +8516,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battle for Blood", "game_detection": [ @@ -7993,6 +8531,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Metal Gear Solid 2: Substance", "game_detection": [ @@ -8005,6 +8544,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Canabalt", "game_detection": [ @@ -8024,6 +8564,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Ghost Recon Phantoms", "game_detection": [ @@ -8053,6 +8594,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blackthorne", "game_detection": [ @@ -8064,6 +8606,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mashed", "game_detection": [ @@ -8078,6 +8621,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Revolution Ace", "game_detection": [ @@ -8092,6 +8636,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nearwood", "game_detection": [ @@ -8106,6 +8651,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blood Bowl: Chaos Edition", "game_detection": [ @@ -8120,6 +8666,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fieldrunners 2", "game_detection": [ @@ -8139,6 +8686,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "PULSAR: Lost Colony", "game_detection": [ @@ -8153,6 +8701,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zoo Tycoon", "game_detection": [ @@ -8164,6 +8713,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Wars: Battle for Naboo", "game_detection": [ @@ -8176,6 +8726,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Legend of Kay Anniversary", "game_detection": [ @@ -8190,6 +8741,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Data Jammers: FastForward", "game_detection": [ @@ -8204,6 +8756,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Armies of Exigo Demo", "game_detection": [ @@ -8216,6 +8769,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sorcery Saga: Curse of the Great Curry God", "game_detection": [ @@ -8229,6 +8783,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Monster Jam", "game_detection": [ @@ -8243,6 +8798,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Oknytt", "game_detection": [ @@ -8257,6 +8813,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Walking Dead: Survival Instinct", "game_detection": [ @@ -8271,6 +8828,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sokobond", "game_detection": [ @@ -8290,6 +8848,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Championship Manager 2010", "game_detection": [ @@ -8302,6 +8861,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tales Of Maj'Eyal", "game_detection": [ @@ -8321,6 +8881,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NEOTOKYO", "game_detection": [ @@ -8335,6 +8896,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Commander: Conquest of the Americas", "game_detection": [ @@ -8349,6 +8911,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cossacks: European Wars", "game_detection": [ @@ -8363,6 +8926,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lazerbait", "game_detection": [ @@ -8378,6 +8942,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bad Day L.A.", "game_detection": [ @@ -8389,6 +8954,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Element4l", "game_detection": [ @@ -8403,6 +8969,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Everquest", "game_detection": [ @@ -8465,6 +9032,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hidden Source", "game_detection": [ @@ -8480,6 +9048,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Guilty Gear XX Λ Core Plus R", "game_detection": [ @@ -8494,6 +9063,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Medieval II: Total War Demo", "game_detection": [ @@ -8506,6 +9076,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Patrician IV", "game_detection": [ @@ -8520,6 +9091,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eternity's Child", "game_detection": [ @@ -8534,6 +9106,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alien Spidy", "game_detection": [ @@ -8548,6 +9121,7 @@ ] }, { + "force_display_capture": false, "region": "BR", "title": "M.A.R.S", "game_detection": [ @@ -8561,6 +9135,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Grand Theft Auto: Vice City", "game_detection": [ @@ -8580,6 +9155,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "PRICE", "game_detection": [ @@ -8594,6 +9170,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cortex Command", "game_detection": [ @@ -8618,6 +9195,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Huntsman: The Orphanage", "game_detection": [ @@ -8632,6 +9210,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Planeshift", "game_detection": [ @@ -8644,6 +9223,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Virtua Tennis 3", "game_detection": [ @@ -8655,6 +9235,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "Chaos Online", "game_detection": [ @@ -8667,6 +9248,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tales of Adventure 2", "game_detection": [ @@ -8681,6 +9263,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "STASIS", "game_detection": [ @@ -8695,6 +9278,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blue Estate: The Game", "game_detection": [ @@ -8709,6 +9293,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Contraption Maker", "game_detection": [ @@ -8723,6 +9308,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "No Pineapple Left Behind", "game_detection": [ @@ -8737,6 +9323,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Allods Online", "game_detection": [ @@ -8758,6 +9345,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fable Anniversary", "game_detection": [ @@ -8772,6 +9360,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FX Eleven", "game_detection": [ @@ -8786,6 +9375,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fuel", "game_detection": [ @@ -8806,6 +9396,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Championship Manager: Season 03/04", "game_detection": [ @@ -8817,6 +9408,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heavy Weapon Deluxe", "game_detection": [ @@ -8837,6 +9429,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Iron Grip: Marauders", "game_detection": [ @@ -8851,6 +9444,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vampires: Guide Them to Safety!", "game_detection": [ @@ -8865,6 +9459,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heroes of Might and Magic V: Tribes of the East", "game_detection": [ @@ -8889,6 +9484,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ravaged", "game_detection": [ @@ -8903,6 +9499,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blair Witch", "game_detection": [ @@ -8913,6 +9510,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Allumette", "game_detection": [ @@ -8928,6 +9526,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Half-life: Source", "game_detection": [ @@ -8944,6 +9543,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "Warface", "game_detection": [ @@ -8956,6 +9556,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "StarCraft", "game_detection": [ @@ -8968,6 +9569,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kill The Bad Guy", "game_detection": [ @@ -8987,6 +9589,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Counting Kingdom", "game_detection": [ @@ -9001,6 +9604,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rescue HQ - The Tycoon", "game_detection": [ @@ -9011,6 +9615,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kritika Online", "game_detection": [ @@ -9024,6 +9629,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cooking Dash", "game_detection": [ @@ -9038,6 +9644,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Immortal Cities: Children Of The Nile", "game_detection": [ @@ -9057,6 +9664,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Without Within", "game_detection": [ @@ -9071,6 +9679,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Entropia Universe", "game_detection": [ @@ -9096,6 +9705,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims 2 Deluxe", "game_detection": [ @@ -9107,6 +9717,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer: Mark Of Chaos Demo", "game_detection": [ @@ -9119,6 +9730,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "Glamour of Sparkle", "game_detection": [ @@ -9146,6 +9758,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ultimate Spider-Man", "game_detection": [ @@ -9157,6 +9770,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tradewinds Classic", "game_detection": [ @@ -9171,6 +9785,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Command: Modern Air/ Naval Operations", "game_detection": [ @@ -9185,6 +9800,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NHL 2004", "game_detection": [ @@ -9196,6 +9812,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Devastation", "game_detection": [ @@ -9207,6 +9824,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Greed Corp", "game_detection": [ @@ -9226,6 +9844,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Half Minute Hero: Super Mega Neo Climax Ultimate Boy", "game_detection": [ @@ -9240,6 +9859,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spy Fox in Cheese Chase", "game_detection": [ @@ -9254,6 +9874,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BlackSite: Area 51", "game_detection": [ @@ -9266,6 +9887,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RollerCoaster Tycoon 3 Platinum", "game_detection": [ @@ -9280,6 +9902,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zoo Rampage", "game_detection": [ @@ -9294,6 +9917,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Unsigned", "game_detection": [ @@ -9305,6 +9929,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Analogue: A Hate Story", "game_detection": [ @@ -9318,6 +9943,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Power-Up", "game_detection": [ @@ -9332,6 +9958,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "WarSide", "game_detection": [ @@ -9346,6 +9973,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Back To Life 2", "game_detection": [ @@ -9360,6 +9988,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Reus", "game_detection": [ @@ -9379,6 +10008,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Puzzle Quest: Galactrix Demo", "game_detection": [ @@ -9391,6 +10021,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Puzzlegeddon", "game_detection": [ @@ -9411,6 +10042,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Guacamelee! 2", "game_detection": [ @@ -9421,6 +10053,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Call of Duty: Black Ops II", "game_detection": [ @@ -9451,6 +10084,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Steel & Steam", "game_detection": [ @@ -9465,6 +10099,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blackwell's Asylum Demo", "game_detection": [ @@ -9479,6 +10114,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Falcon 4.0: Allied Force", "game_detection": [ @@ -9490,6 +10126,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead Meets Lead", "game_detection": [ @@ -9501,6 +10138,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fight of Gods", "game_detection": [ @@ -9515,6 +10153,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Moon Hunters", "game_detection": [ @@ -9529,6 +10168,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Forgotten Realms: Demon Stone", "game_detection": [ @@ -9547,6 +10187,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zu Online", "game_detection": [ @@ -9560,6 +10201,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Galactic Civilizations II: Dread Lords", "game_detection": [ @@ -9571,6 +10213,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Argo", "game_detection": [ @@ -9585,6 +10228,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heroes of Shadow Guard", "game_detection": [ @@ -9599,6 +10243,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Back to Dinosaur Island", "game_detection": [ @@ -9613,6 +10258,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Raiden Legacy", "game_detection": [ @@ -9625,6 +10271,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dragon Age II Demo", "game_detection": [ @@ -9637,6 +10284,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Metal Slug X", "game_detection": [ @@ -9652,6 +10300,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald: A Whirlwind Heist", "game_detection": [ @@ -9666,6 +10315,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Attack on Pearl Harbor", "game_detection": [ @@ -9678,6 +10328,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battlegrounds of Eldhelm", "game_detection": [ @@ -9692,6 +10343,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Insanity's Blade", "game_detection": [ @@ -9706,6 +10358,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Race The Sun", "game_detection": [ @@ -9725,6 +10378,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Card City Nights", "game_detection": [ @@ -9744,6 +10398,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sleeping Dogs: Definitive Edition", "game_detection": [ @@ -9758,6 +10413,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lumber Island", "game_detection": [ @@ -9772,6 +10428,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Metal Planet", "game_detection": [ @@ -9786,6 +10443,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hitman: Contracts", "game_detection": [ @@ -9805,6 +10463,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Strider", "game_detection": [ @@ -9819,6 +10478,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dogz", "game_detection": [ @@ -9830,6 +10490,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ori and the Blind Forest", "game_detection": [ @@ -9844,6 +10505,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Wars Knights of the Old Republic 2: The Sith Lords", "game_detection": [ @@ -9863,6 +10525,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hank Haney's World Golf", "game_detection": [ @@ -9874,6 +10537,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sword Legacy Omen", "game_detection": [ @@ -9887,6 +10551,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mount & Blade: Warband", "game_detection": [ @@ -9911,6 +10576,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blink the Bulb", "game_detection": [ @@ -9925,6 +10591,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Postal III", "game_detection": [ @@ -9939,6 +10606,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "F.E.A.R. Demo", "game_detection": [ @@ -9957,6 +10625,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Smash Up", "game_detection": [ @@ -9971,6 +10640,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MLB Front Office Manager", "game_detection": [ @@ -9985,6 +10655,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Burgers 2", "game_detection": [ @@ -9999,6 +10670,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Legend: Hand of God", "game_detection": [ @@ -10011,6 +10683,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Defenders of Time", "game_detection": [ @@ -10023,6 +10696,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Push Me Pull You", "game_detection": [ @@ -10037,6 +10711,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Archon Classic", "game_detection": [ @@ -10051,6 +10726,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Roadside Assistance Simulator", "game_detection": [ @@ -10065,6 +10741,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hotel", "game_detection": [ @@ -10079,6 +10756,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bionic Commando Rearmed", "game_detection": [ @@ -10098,6 +10776,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Empire Earth 3", "game_detection": [ @@ -10109,6 +10788,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Dawn of War", "game_detection": [ @@ -10128,6 +10808,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blood Bowl: Legendary Edition", "game_detection": [ @@ -10147,6 +10828,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Painkiller: Battle Out of Hell", "game_detection": [ @@ -10159,6 +10841,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Praetorians", "game_detection": [ @@ -10178,6 +10861,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NBA 2K20", "game_detection": [ @@ -10188,6 +10872,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nexus: The Jupiter Incident", "game_detection": [ @@ -10201,6 +10886,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warlocks Gauntlet", "game_detection": [ @@ -10212,6 +10898,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ship Simulator: Maritime Search and Rescue", "game_detection": [ @@ -10226,6 +10913,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Devil Daggers", "game_detection": [ @@ -10240,6 +10928,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Guns n Zombies", "game_detection": [ @@ -10254,6 +10943,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Trackmania 2 Canyon", "game_detection": [ @@ -10268,6 +10958,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "World of Zoo", "game_detection": [ @@ -10288,6 +10979,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Call of Juarez", "game_detection": [ @@ -10314,6 +11006,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Disciples III: Resurrection", "game_detection": [ @@ -10328,6 +11021,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "UFO Online: Invasion", "game_detection": [ @@ -10342,6 +11036,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stubbs the Zombie in Rebel Without a Pulse", "game_detection": [ @@ -10353,6 +11048,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MicroVolts", "game_detection": [ @@ -10375,6 +11071,7 @@ ] }, { + "force_display_capture": false, "region": "BR", "title": "Grand Chase", "game_detection": [ @@ -10388,6 +11085,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Namariel Legends: The Iron Lord", "game_detection": [ @@ -10402,6 +11100,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RODE", "game_detection": [ @@ -10415,6 +11114,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Premium Pool", "game_detection": [ @@ -10429,6 +11129,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heroes of Three Kingdoms", "game_detection": [ @@ -10443,6 +11144,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Think To Die", "game_detection": [ @@ -10457,6 +11159,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "Bubble Fighter", "game_detection": [ @@ -10469,6 +11172,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "DNF", "game_detection": [ @@ -10482,6 +11186,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Escape From Tarkov", "game_detection": [ @@ -10493,6 +11198,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fate", "game_detection": [ @@ -10524,6 +11230,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Call of Juarez: The Cartel", "game_detection": [ @@ -10538,6 +11245,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Skulls of the Shogun", "game_detection": [ @@ -10557,6 +11265,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hidden Expedition Amazon", "game_detection": [ @@ -10571,6 +11280,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "It Lurks Below", "game_detection": [ @@ -10584,6 +11294,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims 2: Mansion & Garden Stuff", "game_detection": [ @@ -10596,6 +11307,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Luxor 2", "game_detection": [ @@ -10610,6 +11322,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MDK", "game_detection": [ @@ -10629,6 +11342,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FlatOut", "game_detection": [ @@ -10648,6 +11362,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RPG Maker XP", "game_detection": [ @@ -10662,6 +11377,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Monsters & Munitions", "game_detection": [ @@ -10676,6 +11392,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Off-Road Super Racing", "game_detection": [ @@ -10690,6 +11407,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tremulous", "game_detection": [ @@ -10701,6 +11419,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Assassin's Creed: Liberation HD", "game_detection": [ @@ -10722,6 +11441,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Brothers in Arms: Road to Hill 30", "game_detection": [ @@ -10736,6 +11456,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Skater XL", "game_detection": [ @@ -10746,6 +11467,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "American McGee's Alice", "game_detection": [ @@ -10757,6 +11479,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kingdom Tales", "game_detection": [ @@ -10771,6 +11494,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FIFA Manager 07", "game_detection": [ @@ -10782,6 +11506,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Endless Space", "game_detection": [ @@ -10796,6 +11521,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FIFA Online 2", "game_detection": [ @@ -10808,6 +11534,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Puzzler World", "game_detection": [ @@ -10822,6 +11549,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hive", "game_detection": [ @@ -10836,6 +11564,7 @@ ] }, { + "force_display_capture": false, "region": "RU", "title": "RF Online", "game_detection": [ @@ -10848,6 +11577,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SWAT 4: Special Weapons and Tactics", "game_detection": [ @@ -10860,6 +11590,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heroine’s Quest: The Herald of Ragnarok", "game_detection": [ @@ -10874,6 +11605,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Guitar Hero World Tour", "game_detection": [ @@ -10885,6 +11617,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Game Dev Tycoon", "game_detection": [ @@ -10904,6 +11637,7 @@ ] }, { + "force_display_capture": false, "region": "RU", "title": "World of Tanks", "game_detection": [ @@ -10917,6 +11651,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crayon Physics Deluxe", "game_detection": [ @@ -10937,6 +11672,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Colonies Online", "game_detection": [ @@ -10951,6 +11687,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer: Chaosbane", "game_detection": [ @@ -10961,6 +11698,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Syberia III", "game_detection": [ @@ -10975,6 +11713,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gears of War", "game_detection": [ @@ -10987,6 +11726,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Hole Story", "game_detection": [ @@ -11001,6 +11741,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BloodRealm: Battlegrounds", "game_detection": [ @@ -11015,6 +11756,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Wolf Among Us", "game_detection": [ @@ -11029,6 +11771,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "9th Company - Roots of Terror", "game_detection": [ @@ -11043,6 +11786,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ratz Instagib", "game_detection": [ @@ -11057,6 +11801,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Greed Black Border", "game_detection": [ @@ -11071,6 +11816,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Everyday Shooter", "game_detection": [ @@ -11085,6 +11831,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sid Meier's Sim Golf", "game_detection": [ @@ -11096,6 +11843,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "18 Wheels of Steel Extreme Trucker 2", "game_detection": [ @@ -11108,6 +11856,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Iris Online", "game_detection": [ @@ -11120,6 +11869,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro-Pinball: Fantastic Journey", "game_detection": [ @@ -11131,6 +11881,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Streamline", "game_detection": [ @@ -11145,6 +11896,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cherry Tree High Comedy Club", "game_detection": [ @@ -11159,6 +11911,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "City Rain", "game_detection": [ @@ -11170,6 +11923,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Thief Simulator", "game_detection": [ @@ -11180,6 +11934,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Black & White", "game_detection": [ @@ -11191,6 +11946,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead Rising 2", "game_detection": [ @@ -11210,6 +11966,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Cave", "game_detection": [ @@ -11224,6 +11981,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Day of Defeat", "game_detection": [ @@ -11246,6 +12004,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Winning Eleven 8", "game_detection": [ @@ -11257,6 +12016,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Clone Hero", "game_detection": [ @@ -11267,6 +12027,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Windborne", "game_detection": [ @@ -11281,6 +12042,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "POSTAL Redux", "game_detection": [ @@ -11295,6 +12057,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Armed with Wings: Rearmed", "game_detection": [ @@ -11309,6 +12072,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Port Royale 3: Pirates & Merchants", "game_detection": [ @@ -11323,6 +12087,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Generation Zero", "game_detection": [ @@ -11333,6 +12098,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark and Light", "game_detection": [ @@ -11343,6 +12109,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Snapshot", "game_detection": [ @@ -11362,6 +12129,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cossacks II: Battle for Europe", "game_detection": [ @@ -11376,6 +12144,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vessel", "game_detection": [ @@ -11395,6 +12164,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Frozen Synapse 2", "game_detection": [ @@ -11408,6 +12178,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Yu-Gi-Oh! Duel Links", "game_detection": [ @@ -11421,6 +12192,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DCS: Black Shark", "game_detection": [ @@ -11434,6 +12206,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deep Below", "game_detection": [ @@ -11448,6 +12221,7 @@ ] }, { + "force_display_capture": false, "region": "BR", "title": "Hex: Shards of Fate", "game_detection": [ @@ -11461,6 +12235,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Black Mirror II", "game_detection": [ @@ -11475,6 +12250,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Return of the Obra Dinn", "game_detection": [ @@ -11485,6 +12261,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heroes of Might and Magic V", "game_detection": [ @@ -11518,6 +12295,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Synchrom", "game_detection": [ @@ -11532,6 +12310,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wolfenstein", "game_detection": [ @@ -11568,6 +12347,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Halfway", "game_detection": [ @@ -11587,6 +12367,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stronghold Crusader", "game_detection": [ @@ -11598,6 +12379,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sid Meier's Civilization IV", "game_detection": [ @@ -11629,6 +12411,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ricochet", "game_detection": [ @@ -11644,6 +12427,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deathgarden: BLOODHARVEST", "game_detection": [ @@ -11654,6 +12438,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gateways", "game_detection": [ @@ -11668,6 +12453,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Surgeon Simulator VR: Meet The Medic", "game_detection": [ @@ -11683,6 +12469,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Legend of Dungeon: Masters", "game_detection": [ @@ -11697,6 +12484,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Trover Saves the Universe", "game_detection": [ @@ -11707,6 +12495,7 @@ ] }, { + "force_display_capture": false, "region": "TW", "title": "Allods Online", "game_detection": [ @@ -11722,6 +12511,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NCIS", "game_detection": [ @@ -11733,6 +12523,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Walking Dead: Episode One", "game_detection": [ @@ -11744,6 +12535,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "Counter-Strike Online", "game_detection": [ @@ -11756,6 +12548,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Oniken", "game_detection": [ @@ -11771,6 +12564,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The 39 Steps", "game_detection": [ @@ -11785,6 +12579,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chrome Specforce", "game_detection": [ @@ -11799,6 +12594,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "World of Soccer online", "game_detection": [ @@ -11813,6 +12609,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Arcanum of Steamworks & Magick Obscura", "game_detection": [ @@ -11824,6 +12621,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Descent: Underground", "game_detection": [ @@ -11838,6 +12636,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Frosty Kiss", "game_detection": [ @@ -11852,6 +12651,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Luxor", "game_detection": [ @@ -11866,6 +12666,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sacred 3", "game_detection": [ @@ -11880,6 +12681,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Infinifactory", "game_detection": [ @@ -11894,6 +12696,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Anomaly 2", "game_detection": [ @@ -11913,6 +12716,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Combat Wings: Battle of Britain", "game_detection": [ @@ -11933,6 +12737,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A Date in the Park", "game_detection": [ @@ -11947,6 +12752,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rhythm Destruction", "game_detection": [ @@ -11961,6 +12767,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super House of Dead Ninjas", "game_detection": [ @@ -11975,6 +12782,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GoldenEye Source", "game_detection": [ @@ -11990,6 +12798,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "404Sight", "game_detection": [ @@ -12004,6 +12813,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nikopol: Secrets of the Immortals", "game_detection": [ @@ -12025,6 +12835,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Florensia", "game_detection": [ @@ -12054,6 +12865,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tiger Woods PGA Tour 07", "game_detection": [ @@ -12066,6 +12878,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Silent Hill 4: The Room", "game_detection": [ @@ -12077,6 +12890,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "IKEA VR Experience", "game_detection": [ @@ -12092,6 +12906,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Guacamelee! Super Turbo Championship Edition", "game_detection": [ @@ -12106,6 +12921,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Bug Butcher", "game_detection": [ @@ -12120,6 +12936,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DASH-DA-DASH DX", "game_detection": [ @@ -12132,6 +12949,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ArmA II: Free", "game_detection": [ @@ -12151,6 +12969,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Adam's Venture: Episode 1 - The Search for the Lost Garden", "game_detection": [ @@ -12165,6 +12984,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blasters of the Universe", "game_detection": [ @@ -12180,6 +13000,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kingdom Elemental", "game_detection": [ @@ -12194,6 +13015,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BeatBuddy Demo", "game_detection": [ @@ -12208,6 +13030,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dofus Arena", "game_detection": [ @@ -12220,6 +13043,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Transformers Universe", "game_detection": [ @@ -12231,6 +13055,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Riptide GP: Renegade", "game_detection": [ @@ -12241,6 +13066,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pride of Nations", "game_detection": [ @@ -12261,6 +13087,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeon Hearts", "game_detection": [ @@ -12280,6 +13107,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Doorways: Old Prototype", "game_detection": [ @@ -12294,6 +13122,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Condemned: Criminal Origins", "game_detection": [ @@ -12313,6 +13142,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Total War Battles: KINGDOM", "game_detection": [ @@ -12327,6 +13157,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "War and Peace, 1796-1815", "game_detection": [ @@ -12338,6 +13169,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rec Room", "game_detection": [ @@ -12353,6 +13185,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "True or False", "game_detection": [ @@ -12367,6 +13200,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "AstroPop Deluxe", "game_detection": [ @@ -12387,6 +13221,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BlazBlue: Central Fiction", "game_detection": [ @@ -12401,6 +13236,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer 40,000 Dawn of War II: Chaos Rising", "game_detection": [ @@ -12416,6 +13252,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Final Fantasy XI: Ultimate Collection", "game_detection": [ @@ -12427,6 +13264,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Airport Simulator 2014", "game_detection": [ @@ -12441,6 +13279,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Command & Conquer 4 Tiberian Twilight", "game_detection": [ @@ -12466,6 +13305,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Red Eclipse", "game_detection": [ @@ -12477,6 +13317,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ABZÛ", "game_detection": [ @@ -12491,6 +13332,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Call of Duty: Black Ops IV", "game_detection": [ @@ -12502,6 +13344,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ItzaBitza", "game_detection": [ @@ -12516,6 +13359,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shannon Tweed's Attack Of The Groupies", "game_detection": [ @@ -12530,6 +13374,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Little Farm", "game_detection": [ @@ -12545,6 +13390,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Akane", "game_detection": [ @@ -12558,6 +13404,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blood Bowl: Star Coach", "game_detection": [ @@ -12572,6 +13419,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rag Doll Kung Fu", "game_detection": [ @@ -12594,6 +13442,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rogue Warrior", "game_detection": [ @@ -12614,6 +13463,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crazy Machines: 1.5", "game_detection": [ @@ -12628,6 +13478,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Medal of Honor: Warfighter", "game_detection": [ @@ -12640,6 +13491,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Natural Selection 2", "game_detection": [ @@ -12654,6 +13506,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Project IGI: I'm Going In", "game_detection": [ @@ -12665,6 +13518,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blood", "game_detection": [ @@ -12679,6 +13533,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Command & Conquer: Generals Zero Hour", "game_detection": [ @@ -12704,6 +13559,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Orwell: Ignorance Is Strength", "game_detection": [ @@ -12717,6 +13573,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rise of Flight: Iron Cross Edition", "game_detection": [ @@ -12729,6 +13586,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "McPixel", "game_detection": [ @@ -12753,6 +13611,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "S.T.A.L.K.E.R.: Shadow of Chernobyl", "game_detection": [ @@ -12773,6 +13632,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Recovery Search & Rescue Simulation", "game_detection": [ @@ -12787,6 +13647,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A Wizard's Lizard", "game_detection": [ @@ -12806,6 +13667,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gauntlet", "game_detection": [ @@ -12820,6 +13682,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Silent Storm: Sentinels", "game_detection": [ @@ -12834,6 +13697,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zombie Driver HD", "game_detection": [ @@ -12848,6 +13712,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sniper: Ghost Warrior 2", "game_detection": [ @@ -12862,6 +13727,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Quantum Rush", "game_detection": [ @@ -12882,6 +13748,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NEO Scavenger", "game_detection": [ @@ -12901,6 +13768,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Bureau: XCOM Declassified", "game_detection": [ @@ -12915,6 +13783,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "CosmicBreak", "game_detection": [ @@ -12927,6 +13796,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hacknet", "game_detection": [ @@ -12941,6 +13811,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Restaurant Empire 2", "game_detection": [ @@ -12955,6 +13826,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Antichamber", "game_detection": [ @@ -12974,6 +13846,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Call of Juarez: Gunslinger", "game_detection": [ @@ -12988,6 +13861,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ragnarok Clicker", "game_detection": [ @@ -13002,6 +13876,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Impossible Game", "game_detection": [ @@ -13016,6 +13891,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Disgaea 2 PC", "game_detection": [ @@ -13030,6 +13906,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Safecracker: The Ultimate Puzzle Adventure", "game_detection": [ @@ -13044,6 +13921,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "QQ Treasure Hunter", "game_detection": [ @@ -13056,6 +13934,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "War in a Box: Paper Tanks", "game_detection": [ @@ -13070,6 +13949,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jade Empire: Special Edition", "game_detection": [ @@ -13084,6 +13964,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Burn Zombie Burn!", "game_detection": [ @@ -13098,6 +13979,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Double Action: Boogaloo", "game_detection": [ @@ -13112,6 +13994,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Last Remnant", "game_detection": [ @@ -13126,6 +14009,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Aion: Dark Betrayal", "game_detection": [ @@ -13183,6 +14067,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Final Fantasy III", "game_detection": [ @@ -13197,6 +14082,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "CaesarIA", "game_detection": [ @@ -13211,6 +14097,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Space Cadet 3D Pinball", "game_detection": [ @@ -13222,6 +14109,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crazy Machines: Inventors Training Camp", "game_detection": [ @@ -13236,6 +14124,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heroes In The Sky", "game_detection": [ @@ -13257,6 +14146,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crasher", "game_detection": [ @@ -13271,6 +14161,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Endless Night", "game_detection": [ @@ -13286,6 +14177,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Cat Lady", "game_detection": [ @@ -13305,6 +14197,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "TRAUMA", "game_detection": [ @@ -13319,6 +14212,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Agents of Mayhem", "game_detection": [ @@ -13333,6 +14227,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Romance of the Three Kingdoms XI", "game_detection": [ @@ -13344,6 +14239,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "hackmud", "game_detection": [ @@ -13358,6 +14254,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Toxic Bunny HD", "game_detection": [ @@ -13372,6 +14269,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mighty Switch Force! Academy", "game_detection": [ @@ -13386,6 +14284,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Driftwood The Visual Novel", "game_detection": [ @@ -13400,6 +14299,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Memento Mori", "game_detection": [ @@ -13419,6 +14319,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Need For Speed: ProStreet", "game_detection": [ @@ -13430,6 +14331,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sakura Swim Club", "game_detection": [ @@ -13444,6 +14346,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "Archlord II", "game_detection": [ @@ -13456,6 +14359,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Aion: Ascension", "game_detection": [ @@ -13471,6 +14375,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "League of Legends", "game_detection": [ @@ -13591,6 +14496,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wulfram 2", "game_detection": [ @@ -13602,6 +14508,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Attack on Titan 2", "game_detection": [ @@ -13615,6 +14522,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wings of Vi", "game_detection": [ @@ -13629,6 +14537,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Abyss: The Wraiths of Eden", "game_detection": [ @@ -13643,6 +14552,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crazy Machines: The Wacky Contraptions Game", "game_detection": [ @@ -13657,6 +14567,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Legion TD 2", "game_detection": [ @@ -13671,6 +14582,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "IL-2 Sturmovik: Battle of Stalingrad", "game_detection": [ @@ -13686,6 +14598,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Guncraft", "game_detection": [ @@ -13710,6 +14623,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Matrix: Path of Neo", "game_detection": [ @@ -13722,6 +14636,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Political Machine 2012", "game_detection": [ @@ -13736,6 +14651,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Antenna", "game_detection": [ @@ -13750,6 +14666,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Clover Tale", "game_detection": [ @@ -13764,6 +14681,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tony Hawk's American Wasteland", "game_detection": [ @@ -13777,6 +14695,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cubemen", "game_detection": [ @@ -13796,6 +14715,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "F.E.A.R.: First Encounter Assault Recon", "game_detection": [ @@ -13842,6 +14762,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "My Lil' Donut", "game_detection": [ @@ -13857,6 +14778,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kingdom Wars", "game_detection": [ @@ -13871,6 +14793,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lost Civilization", "game_detection": [ @@ -13885,6 +14808,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NBA 2K9", "game_detection": [ @@ -13899,6 +14823,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cradle of Rome", "game_detection": [ @@ -13913,6 +14838,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "MapleStory", "game_detection": [ @@ -13925,6 +14851,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GundeadliGne", "game_detection": [ @@ -13939,6 +14866,7 @@ ] }, { + "force_display_capture": false, "region": "PL", "title": "Royal Quest", "game_detection": [ @@ -13952,6 +14880,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lara Croft and the Temple of Osiris", "game_detection": [ @@ -13966,6 +14895,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stand Out", "game_detection": [ @@ -13979,6 +14909,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead Rising 4", "game_detection": [ @@ -13993,6 +14924,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Potatoman Seeks The Troof", "game_detection": [ @@ -14007,6 +14939,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lunia", "game_detection": [ @@ -14026,6 +14959,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Altitude", "game_detection": [ @@ -14040,6 +14974,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Legend of Korra", "game_detection": [ @@ -14054,6 +14989,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fortune Winds: Ancient Trader", "game_detection": [ @@ -14065,6 +15001,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Beasts of Prey", "game_detection": [ @@ -14079,6 +15016,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chime Sharp", "game_detection": [ @@ -14093,6 +15031,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Drunken Wrestlers 2", "game_detection": [ @@ -14103,6 +15042,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Agricultural Simulator 2011", "game_detection": [ @@ -14117,6 +15057,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BlazeRush", "game_detection": [ @@ -14131,6 +15072,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hector: Badge of Carnage - Episode 3", "game_detection": [ @@ -14150,6 +15092,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "OlliOlli", "game_detection": [ @@ -14164,6 +15107,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heritage of Kings: The Settlers Demo", "game_detection": [ @@ -14177,6 +15121,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "EDuke32", "game_detection": [ @@ -14188,6 +15133,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Barotrauma", "game_detection": [ @@ -14198,6 +15144,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ace of Spades", "game_detection": [ @@ -14212,6 +15159,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Abomination Tower", "game_detection": [ @@ -14226,6 +15174,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Three Kingdoms: The Battle Begins", "game_detection": [ @@ -14238,6 +15187,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A Game of Dwarves", "game_detection": [ @@ -14252,6 +15202,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Aragami", "game_detection": [ @@ -14266,6 +15217,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Happy Song", "game_detection": [ @@ -14285,6 +15237,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Team Sonic Racing", "game_detection": [ @@ -14295,6 +15248,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Expendables 2", "game_detection": [ @@ -14309,6 +15263,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Face Noir", "game_detection": [ @@ -14323,6 +15278,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hellgate", "game_detection": [ @@ -14335,6 +15291,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims Medieval", "game_detection": [ @@ -14356,6 +15313,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lucid9", "game_detection": [ @@ -14370,6 +15328,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dragonflight", "game_detection": [ @@ -14384,6 +15343,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GOD EATER 3", "game_detection": [ @@ -14394,6 +15354,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Beyond Space", "game_detection": [ @@ -14408,6 +15369,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tetrobot and Co.", "game_detection": [ @@ -14427,6 +15389,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kreedz Climbing", "game_detection": [ @@ -14442,6 +15405,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Devil May Cry", "game_detection": [ @@ -14455,6 +15419,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "Mabinogi Heroes", "game_detection": [ @@ -14468,6 +15433,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hunter Blade", "game_detection": [ @@ -14479,6 +15445,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "They Are Billions", "game_detection": [ @@ -14493,6 +15460,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Lord of the Rings: Return of the King", "game_detection": [ @@ -14504,6 +15472,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Final Fantasy XIV ARR Benchmark", "game_detection": [ @@ -14517,6 +15486,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Out of the Park Baseball 11", "game_detection": [ @@ -14528,6 +15498,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Half Minute Hero: The Second Coming", "game_detection": [ @@ -14542,6 +15513,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ludu", "game_detection": [ @@ -14556,6 +15528,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Act of War: High Treason", "game_detection": [ @@ -14576,6 +15549,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Celeste", "game_detection": [ @@ -14593,6 +15567,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Call of Duty 2", "game_detection": [ @@ -14628,6 +15603,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sid Meier’s Ace Patrol: Pacific Skies", "game_detection": [ @@ -14642,6 +15618,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pandora: First Contact", "game_detection": [ @@ -14656,6 +15633,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warbit", "game_detection": [ @@ -14670,6 +15648,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ARMED SEVEN", "game_detection": [ @@ -14684,6 +15663,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Elisa: The Innkeeper - Prequel", "game_detection": [ @@ -14698,6 +15678,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Life Is Strange", "game_detection": [ @@ -14712,6 +15693,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SAS Into the Lion's Den", "game_detection": [ @@ -14726,6 +15708,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "I'm not Alone", "game_detection": [ @@ -14740,6 +15723,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Resident Evil: Revelations 2", "game_detection": [ @@ -14754,6 +15738,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kyn", "game_detection": [ @@ -14768,6 +15753,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Afro Samurai 2", "game_detection": [ @@ -14782,6 +15768,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ISLANDS: Non-Places", "game_detection": [ @@ -14796,6 +15783,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BlazBlue: Calamity Trigger", "game_detection": [ @@ -14810,6 +15798,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pacific Storm: Allies", "game_detection": [ @@ -14822,6 +15811,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shallow Space", "game_detection": [ @@ -14836,6 +15826,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Postal 2 Complete", "game_detection": [ @@ -14851,6 +15842,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eclipse War Online", "game_detection": [ @@ -14865,6 +15857,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Our Darker Purpose", "game_detection": [ @@ -14884,6 +15877,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "OlliOlli2", "game_detection": [ @@ -14898,6 +15892,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Panzer Killer!", "game_detection": [ @@ -14909,6 +15904,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Thief The Dark Project", "game_detection": [ @@ -14923,6 +15919,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Paragon", "game_detection": [ @@ -14936,6 +15933,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Subway Simulator: World of Subways 2", "game_detection": [ @@ -14950,6 +15948,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "For the Glory", "game_detection": [ @@ -14964,6 +15963,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "iO", "game_detection": [ @@ -14978,6 +15978,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Left 4 Dead", "game_detection": [ @@ -14992,6 +15993,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims 2: H&M Fashion Stuff", "game_detection": [ @@ -15003,6 +16005,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Not Tonight", "game_detection": [ @@ -15016,6 +16019,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Talisman Prologue", "game_detection": [ @@ -15035,6 +16039,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": ".hack/G.U. Last Recode", "game_detection": [ @@ -15048,6 +16053,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Railway Empire", "game_detection": [ @@ -15058,6 +16064,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hero Academy", "game_detection": [ @@ -15077,6 +16084,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Into the Stars", "game_detection": [ @@ -15091,6 +16099,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A City Sleeps", "game_detection": [ @@ -15105,6 +16114,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sid Meier's Alpha Centauri", "game_detection": [ @@ -15116,6 +16126,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Melty Blood: Actress Again Current Code", "game_detection": [ @@ -15130,6 +16141,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kerbal Space Program", "game_detection": [ @@ -15149,6 +16161,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Automation: The Car Company Tycoon Game", "game_detection": [ @@ -15159,6 +16172,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hamilton's Great Adventure", "game_detection": [ @@ -15173,17 +16187,7 @@ ] }, { - "region": null, - "title": "Counter-Strike 2D", - "game_detection": [ - { - "launchexe": "/CounterStrike2D\\.exe", - "defaultdir": "c:/games/cs2d", - "longname": "CounterStrike 2D" - } - ] - }, - { + "force_display_capture": false, "region": null, "title": "Neocron 2", "game_detection": [ @@ -15197,6 +16201,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lords of Football", "game_detection": [ @@ -15211,6 +16216,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "TimeShift", "game_detection": [ @@ -15223,6 +16229,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mythic Manor", "game_detection": [ @@ -15233,6 +16240,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Croixleur Sigma", "game_detection": [ @@ -15247,6 +16255,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2007", "game_detection": [ @@ -15258,6 +16267,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hunting Unlimited 2009", "game_detection": [ @@ -15274,6 +16284,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Men of War", "game_detection": [ @@ -15299,6 +16310,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Broken Sword II: The Smoking Mirror", "game_detection": [ @@ -15318,6 +16330,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bone: Out from Boneville", "game_detection": [ @@ -15337,6 +16350,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Frozen State", "game_detection": [ @@ -15351,6 +16365,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The NADI Project", "game_detection": [ @@ -15365,6 +16380,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Serious Sam 2", "game_detection": [ @@ -15386,6 +16402,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Wars: X-Wing vs. Tie Fighter", "game_detection": [ @@ -15397,6 +16414,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Metal War Online: Retribution", "game_detection": [ @@ -15411,6 +16429,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Perimeter", "game_detection": [ @@ -15430,6 +16449,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SanctuaryRPG", "game_detection": [ @@ -15444,6 +16464,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Subaeria", "game_detection": [ @@ -15458,6 +16479,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deathmatch Classic", "game_detection": [ @@ -15480,6 +16502,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fly in the House", "game_detection": [ @@ -15494,6 +16517,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Plan", "game_detection": [ @@ -15508,6 +16532,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Subnautica: Below Zero", "game_detection": [ @@ -15519,6 +16544,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Political Machine 2008", "game_detection": [ @@ -15531,6 +16557,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deadfall Adventures", "game_detection": [ @@ -15545,6 +16572,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Proteus", "game_detection": [ @@ -15564,6 +16592,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vampire Saga: Break Out", "game_detection": [ @@ -15576,6 +16605,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Phantasy Star Universe: Ambition of the Illuminus", "game_detection": [ @@ -15590,6 +16620,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NightSky", "game_detection": [ @@ -15614,6 +16645,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ys: The Ark of Napishtim", "game_detection": [ @@ -15628,6 +16660,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "QUALIA 3: Multi Agent", "game_detection": [ @@ -15642,6 +16675,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wargame: Red Dragon", "game_detection": [ @@ -15656,6 +16690,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Costume Quest 2", "game_detection": [ @@ -15670,6 +16705,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deus Ex: Human Revolution - Director's Cut", "game_detection": [ @@ -15684,6 +16720,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Curse of Mermos", "game_detection": [ @@ -15698,6 +16735,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mosby's Confederacy", "game_detection": [ @@ -15712,6 +16750,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Baldur's Gate", "game_detection": [ @@ -15730,6 +16769,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Astral Heroes", "game_detection": [ @@ -15744,6 +16784,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Clutch", "game_detection": [ @@ -15758,6 +16799,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heretic 2", "game_detection": [ @@ -15770,6 +16812,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Avalon Heroes", "game_detection": [ @@ -15782,6 +16825,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "E.T. Armies", "game_detection": [ @@ -15796,6 +16840,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Star", "game_detection": [ @@ -15810,6 +16855,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sorcerer King", "game_detection": [ @@ -15824,6 +16870,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Evil Maze", "game_detection": [ @@ -15838,6 +16885,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "TorqueL", "game_detection": [ @@ -15860,6 +16908,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Earth 2160", "game_detection": [ @@ -15873,6 +16922,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SimCity 4", "game_detection": [ @@ -15885,6 +16935,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Robot Roller-Derby Disco Dodgeball", "game_detection": [ @@ -15899,6 +16950,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shadowbane", "game_detection": [ @@ -15912,6 +16964,7 @@ ] }, { + "force_display_capture": false, "region": "TW", "title": "Mabinogi Heroes", "game_detection": [ @@ -15925,6 +16978,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fingered", "game_detection": [ @@ -15939,6 +16993,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "7 Wonders II", "game_detection": [ @@ -15953,6 +17008,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Realm of the Mad God", "game_detection": [ @@ -15967,6 +17023,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Settlers II: Veni Vidi Vici", "game_detection": [ @@ -15979,6 +17036,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Other 99", "game_detection": [ @@ -15993,6 +17051,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Darwin Project", "game_detection": [ @@ -16006,6 +17065,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Beast Boxing Turbo", "game_detection": [ @@ -16020,6 +17080,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fritz Chess Twelve", "game_detection": [ @@ -16032,6 +17093,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jet Car Stunts", "game_detection": [ @@ -16046,6 +17108,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "VA-11 Hall-A: Cyberpunk Bartender Action", "game_detection": [ @@ -16060,6 +17123,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Magicka 2", "game_detection": [ @@ -16074,6 +17138,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Puzzle Agent", "game_detection": [ @@ -16085,6 +17150,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hacker's Beat", "game_detection": [ @@ -16099,6 +17165,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "La-Mulana", "game_detection": [ @@ -16119,6 +17186,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Regicide", "game_detection": [ @@ -16133,6 +17201,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Europa Universalis: Rome", "game_detection": [ @@ -16145,6 +17214,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims 2: Double Deluxe", "game_detection": [ @@ -16158,6 +17228,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stronghold Kingdoms", "game_detection": [ @@ -16178,6 +17249,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Toki Tori", "game_detection": [ @@ -16192,6 +17264,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hunting Unlimited 2008", "game_detection": [ @@ -16219,6 +17292,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stardust Vanguards", "game_detection": [ @@ -16233,6 +17307,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Septerra Core: Legacy of the Creator", "game_detection": [ @@ -16257,6 +17332,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "F.3.A.R.", "game_detection": [ @@ -16271,6 +17347,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Saint Seiya: Soldiers' Soul", "game_detection": [ @@ -16285,6 +17362,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "QQ Puzzle Dasher", "game_detection": [ @@ -16297,6 +17375,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Farm Machines Championships 2014", "game_detection": [ @@ -16311,6 +17390,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Build-a-lot 3: Passport to Europe", "game_detection": [ @@ -16325,6 +17405,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "FreeStyle Football", "game_detection": [ @@ -16339,6 +17420,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hunger Dungeon", "game_detection": [ @@ -16353,6 +17435,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FIFA Online 4", "game_detection": [ @@ -16363,6 +17446,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mall Tycoon 3", "game_detection": [ @@ -16376,6 +17460,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warlords: BattleCry 3", "game_detection": [ @@ -16387,6 +17472,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "My Hero One's Justice", "game_detection": [ @@ -16397,6 +17483,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rise of the Argonauts", "game_detection": [ @@ -16417,6 +17504,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Racer", "game_detection": [ @@ -16429,6 +17517,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Monato Esprit", "game_detection": [ @@ -16441,6 +17530,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dying Light", "game_detection": [ @@ -16455,6 +17545,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Whitewash", "game_detection": [ @@ -16469,6 +17560,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SCUM", "game_detection": [ @@ -16482,6 +17574,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kingdom Rush Frontiers", "game_detection": [ @@ -16496,6 +17589,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SUPER IMPOSSIBLE ROAD", "game_detection": [ @@ -16510,6 +17604,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Planet Stronghold", "game_detection": [ @@ -16524,6 +17619,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Elite Dangerous: Horizons", "game_detection": [ @@ -16538,6 +17634,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Front Page Sports Football", "game_detection": [ @@ -16553,6 +17650,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nancy Drew: Secret Of the Old Clock", "game_detection": [ @@ -16567,6 +17665,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FATE: The Cursed King", "game_detection": [ @@ -16581,6 +17680,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Empire: Total War Demo", "game_detection": [ @@ -16595,6 +17695,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vampire: The Masquerade Redemption", "game_detection": [ @@ -16606,6 +17707,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "American Conquest: Fight Back", "game_detection": [ @@ -16620,6 +17722,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ICEY", "game_detection": [ @@ -16634,6 +17737,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Allegiance", "game_detection": [ @@ -16646,6 +17750,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Metal Assault", "game_detection": [ @@ -16666,6 +17771,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rise of Nations: Thrones & Patriots", "game_detection": [ @@ -16678,6 +17784,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Flashback", "game_detection": [ @@ -16692,6 +17799,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Samantha Swift and the Golden Touch", "game_detection": [ @@ -16706,6 +17814,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Halo 2", "game_detection": [ @@ -16717,6 +17826,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Need For Speed Payback", "game_detection": [ @@ -16728,6 +17838,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ASDAD: All-Stars Dungeons and Diamonds", "game_detection": [ @@ -16742,6 +17853,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Infinite Space III: Sea of Stars", "game_detection": [ @@ -16756,6 +17868,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spark Rising", "game_detection": [ @@ -16770,6 +17883,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tap Tap Legions", "game_detection": [ @@ -16784,6 +17898,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Groove City", "game_detection": [ @@ -16803,6 +17918,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Test Drive Unlimited 2", "game_detection": [ @@ -16823,6 +17939,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Orake 2D MMORPG", "game_detection": [ @@ -16837,6 +17954,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Puzzle Quest 2", "game_detection": [ @@ -16851,6 +17969,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Momodora: Reverie Under the Moonlight", "game_detection": [ @@ -16869,6 +17988,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tower of Guns", "game_detection": [ @@ -16888,6 +18008,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Galactic Junk League", "game_detection": [ @@ -16902,6 +18023,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gratuitous Space Battles", "game_detection": [ @@ -16921,6 +18043,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Yooka-Laylee: Toybox", "game_detection": [ @@ -16935,6 +18058,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mind Quiz: Your Brain Coach", "game_detection": [ @@ -16947,6 +18071,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "911 Operator", "game_detection": [ @@ -16961,6 +18086,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Clockwork Tales: Of Glass and Ink", "game_detection": [ @@ -16975,6 +18101,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FIFA 20", "game_detection": [ @@ -16985,6 +18112,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dynamite Jack", "game_detection": [ @@ -16999,6 +18127,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Captain Forever Remix", "game_detection": [ @@ -17013,6 +18142,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sonic CD", "game_detection": [ @@ -17027,6 +18157,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FIFA Manager 09", "game_detection": [ @@ -17038,6 +18169,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FNaF World", "game_detection": [ @@ -17052,6 +18184,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Legends of Pegasus", "game_detection": [ @@ -17066,6 +18199,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Run for Rum", "game_detection": [ @@ -17080,6 +18214,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Radical Heights", "game_detection": [ @@ -17093,6 +18228,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sakura Agent", "game_detection": [ @@ -17107,6 +18243,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Black The Fall", "game_detection": [ @@ -17121,6 +18258,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Squids", "game_detection": [ @@ -17132,6 +18270,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Space Hulk: Ascension Edition", "game_detection": [ @@ -17146,6 +18285,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mafia III", "game_detection": [ @@ -17160,6 +18300,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "realities", "game_detection": [ @@ -17175,6 +18316,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DreadOut", "game_detection": [ @@ -17189,6 +18331,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chernobyl Commando", "game_detection": [ @@ -17208,6 +18351,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead Synchronicity: Tomorrow Comes Today", "game_detection": [ @@ -17222,6 +18366,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Injustice 2", "game_detection": [ @@ -17242,6 +18387,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SENRAN KAGURA Peach Beach Splash", "game_detection": [ @@ -17255,6 +18401,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "R.U.S.E.", "game_detection": [ @@ -17269,6 +18416,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Waven", "game_detection": [ @@ -17279,6 +18427,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sam & Max: The Devil's Playhouse - The Tomb of Sammun-Mak", "game_detection": [ @@ -17293,6 +18442,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lost Lands: Mahjong", "game_detection": [ @@ -17307,6 +18457,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NHL 09", "game_detection": [ @@ -17318,6 +18469,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Back to the Future: The Game - Ep. 2: Get Tannen!", "game_detection": [ @@ -17337,6 +18489,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wind of Luck: Arena", "game_detection": [ @@ -17351,6 +18504,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Farming World", "game_detection": [ @@ -17365,6 +18519,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ultima Online", "game_detection": [ @@ -17391,6 +18546,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RoShamBo", "game_detection": [ @@ -17405,6 +18561,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Black Market", "game_detection": [ @@ -17417,6 +18574,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Darkstar", "game_detection": [ @@ -17428,6 +18586,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "To Be or Not To Be", "game_detection": [ @@ -17442,6 +18601,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Legion Arena", "game_detection": [ @@ -17453,6 +18613,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Trek Armada II", "game_detection": [ @@ -17464,6 +18625,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tank Operations: European Campaign", "game_detection": [ @@ -17478,6 +18640,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BattleSouls", "game_detection": [ @@ -17492,6 +18655,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The White Laboratory Demo", "game_detection": [ @@ -17506,6 +18670,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Solar Flux", "game_detection": [ @@ -17520,6 +18685,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nekro", "game_detection": [ @@ -17534,6 +18700,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Prototype 2", "game_detection": [ @@ -17548,6 +18715,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tom Clancy's Splinter Cell: Chaos Theory Demo", "game_detection": [ @@ -17561,6 +18729,7 @@ ] }, { + "force_display_capture": false, "region": "PL", "title": "Lineage II", "game_detection": [ @@ -17574,6 +18743,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Smash Party VR", "game_detection": [ @@ -17589,6 +18759,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "HuniePop", "game_detection": [ @@ -17603,6 +18774,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mega Man X Legacy Collection 2", "game_detection": [ @@ -17616,6 +18788,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Montague's Mount", "game_detection": [ @@ -17635,6 +18808,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Risk", "game_detection": [ @@ -17649,6 +18823,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Soldner Secret Wars", "game_detection": [ @@ -17661,6 +18836,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Call of Duty: Infinite Warfare", "game_detection": [ @@ -17675,6 +18851,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Trove", "game_detection": [ @@ -17698,6 +18875,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Race To Mars", "game_detection": [ @@ -17712,6 +18890,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Unreal Tournament 3 Demo", "game_detection": [ @@ -17730,6 +18909,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Breath of Death VII", "game_detection": [ @@ -17749,6 +18929,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ikaruga", "game_detection": [ @@ -17763,6 +18944,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hand Simulator", "game_detection": [ @@ -17776,6 +18958,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Celestial Tear: Demon's Revenge", "game_detection": [ @@ -17790,6 +18973,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Minecraft", "game_detection": [ @@ -17907,6 +19091,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Obscure: The Aftermath", "game_detection": [ @@ -17921,6 +19106,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "State of Decay", "game_detection": [ @@ -17935,6 +19121,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Galcon Fusion", "game_detection": [ @@ -17954,6 +19141,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "X-Tension", "game_detection": [ @@ -17968,6 +19156,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "4 Elements", "game_detection": [ @@ -17987,6 +19176,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deadbreed", "game_detection": [ @@ -18001,6 +19191,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Oblitus", "game_detection": [ @@ -18015,6 +19206,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jewel Quest Solitaire III", "game_detection": [ @@ -18026,6 +19218,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Angvik", "game_detection": [ @@ -18040,6 +19233,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ibb & obb", "game_detection": [ @@ -18054,6 +19248,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zombie Night Terror", "game_detection": [ @@ -18068,6 +19263,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tiger Woods PGA Tour 06", "game_detection": [ @@ -18080,6 +19276,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tiger Woods PGA Tour 08", "game_detection": [ @@ -18092,6 +19289,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Family Feud 3: Dream Home", "game_detection": [ @@ -18106,6 +19304,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Osmos", "game_detection": [ @@ -18130,6 +19329,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chrono Trigger", "game_detection": [ @@ -18143,6 +19343,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Abalone", "game_detection": [ @@ -18157,6 +19358,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sequence", "game_detection": [ @@ -18171,6 +19373,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Uebergame", "game_detection": [ @@ -18185,6 +19388,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tales of Monkey Island 1: Launch of the Screaming Narwhal", "game_detection": [ @@ -18204,6 +19408,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Out of the Park Baseball 17", "game_detection": [ @@ -18218,6 +19423,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Black Death", "game_detection": [ @@ -18232,6 +19438,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bioshock Demo", "game_detection": [ @@ -18253,6 +19460,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bone: The Great Cow Race", "game_detection": [ @@ -18272,6 +19480,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "World of Tanks Blitz", "game_detection": [ @@ -18286,6 +19495,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vigil: Blood Bitterness", "game_detection": [ @@ -18300,6 +19510,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MUD Motocross World Championship", "game_detection": [ @@ -18314,6 +19525,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shepherd Slaughter", "game_detection": [ @@ -18325,6 +19537,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Haunted Past: Realm of Ghosts", "game_detection": [ @@ -18339,6 +19552,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2013", "game_detection": [ @@ -18358,6 +19572,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hate Plus", "game_detection": [ @@ -18372,6 +19587,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Metro: Last Light Redux", "game_detection": [ @@ -18386,6 +19602,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RISK: Factions", "game_detection": [ @@ -18400,6 +19617,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MegaTagmension Blanc + Neptune VS Zombies", "game_detection": [ @@ -18414,6 +19632,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Far Cry Primal", "game_detection": [ @@ -18435,6 +19654,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Osu!", "game_detection": [ @@ -18452,6 +19672,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Duke Nukem Forever", "game_detection": [ @@ -18466,6 +19687,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gravity Error", "game_detection": [ @@ -18480,6 +19702,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tinker", "game_detection": [ @@ -18491,6 +19714,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Aquaria", "game_detection": [ @@ -18511,6 +19735,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Need For Speed: Underground 2", "game_detection": [ @@ -18522,6 +19747,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Streets of Rogue", "game_detection": [ @@ -18536,6 +19762,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Out of the Park Baseball 14", "game_detection": [ @@ -18555,6 +19782,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Joe Danger 2: The Movie", "game_detection": [ @@ -18575,6 +19803,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "E.Y.E.", "game_detection": [ @@ -18589,6 +19818,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Glitchspace", "game_detection": [ @@ -18603,6 +19833,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Out of the Park Baseball 9", "game_detection": [ @@ -18617,6 +19848,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Anmynor Puzzles", "game_detection": [ @@ -18636,6 +19868,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Adam's Venture II: Solomon's Secret", "game_detection": [ @@ -18650,6 +19883,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tom Clancy's Rainbow Six: Vegas 2", "game_detection": [ @@ -18671,6 +19905,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Outpost Kaloki", "game_detection": [ @@ -18687,6 +19922,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "World of Kung Fu", "game_detection": [ @@ -18699,6 +19935,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Massive Chalice", "game_detection": [ @@ -18713,6 +19950,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ronin", "game_detection": [ @@ -18727,6 +19965,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Atelier Lydie & Suelle ~The Alchemists and the Mysterious Paintings~", "game_detection": [ @@ -18740,6 +19979,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Wolves 3: Civil War", "game_detection": [ @@ -18759,6 +19999,7 @@ ] }, { + "force_display_capture": false, "region": "UK", "title": "Soul Captor", "game_detection": [ @@ -18772,6 +20013,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Interplanetary", "game_detection": [ @@ -18786,6 +20028,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fallout", "game_detection": [ @@ -18805,6 +20048,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Masochisia", "game_detection": [ @@ -18819,6 +20063,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kokurase: Episode 1", "game_detection": [ @@ -18833,6 +20078,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wildlife Park 2", "game_detection": [ @@ -18895,6 +20141,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Moto Racer", "game_detection": [ @@ -18907,6 +20154,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kill Fun Yeah", "game_detection": [ @@ -18928,6 +20176,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Transformers: Rise of the Dark Spark", "game_detection": [ @@ -18942,6 +20191,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Postal 2: Share The Pain", "game_detection": [ @@ -18963,6 +20213,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Darksiders", "game_detection": [ @@ -18977,6 +20228,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Destiny 2", "game_detection": [ @@ -18998,6 +20250,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "deltarune", "game_detection": [ @@ -19008,6 +20261,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Karmaflow: The Rock Opera Videogame", "game_detection": [ @@ -19022,6 +20276,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "QP Shooting: Dangerous!!", "game_detection": [ @@ -19036,6 +20291,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Windosill", "game_detection": [ @@ -19055,6 +20311,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Toy Soldiers", "game_detection": [ @@ -19069,6 +20326,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blast Em!", "game_detection": [ @@ -19083,6 +20341,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tales of Berseria", "game_detection": [ @@ -19096,6 +20355,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Contagion", "game_detection": [ @@ -19110,6 +20370,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "7 Wonders: Treasures of Seven", "game_detection": [ @@ -19123,6 +20384,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "Smite", "game_detection": [ @@ -19137,6 +20399,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FootLOL: Epic Fail League", "game_detection": [ @@ -19151,6 +20414,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stronghold Crusader II", "game_detection": [ @@ -19165,6 +20429,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Beyond Sol", "game_detection": [ @@ -19179,6 +20444,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Take-Out Weight Curling 2", "game_detection": [ @@ -19192,6 +20458,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Asheron's Call", "game_detection": [ @@ -19204,6 +20471,7 @@ ] }, { + "force_display_capture": false, "region": "RU", "title": "Royal Quest", "game_detection": [ @@ -19217,6 +20485,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Legend of Grimrock II", "game_detection": [ @@ -19231,6 +20500,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Icewind Dale II", "game_detection": [ @@ -19243,6 +20513,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SimCity 3000", "game_detection": [ @@ -19254,6 +20525,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Fallout: New Vegas", "game_detection": [ @@ -19268,6 +20540,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "QQ Speed", "game_detection": [ @@ -19283,6 +20556,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Paint the Town Red", "game_detection": [ @@ -19297,6 +20571,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SCHAR: Blue Shield Alliance", "game_detection": [ @@ -19311,6 +20586,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Primal Carnage", "game_detection": [ @@ -19325,6 +20601,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Underground Man", "game_detection": [ @@ -19339,6 +20616,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "King Arthur II", "game_detection": [ @@ -19353,6 +20631,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Remington Super Slam Hunting Alaska", "game_detection": [ @@ -19364,6 +20643,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pink Heaven", "game_detection": [ @@ -19378,6 +20658,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Last Dream", "game_detection": [ @@ -19392,6 +20673,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Massive Assault", "game_detection": [ @@ -19412,6 +20694,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark Lore Mysteries: The Hunt For Truth", "game_detection": [ @@ -19426,6 +20709,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dreaming Sarah", "game_detection": [ @@ -19440,6 +20724,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Patrician 2", "game_detection": [ @@ -19451,6 +20736,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Astroflux", "game_detection": [ @@ -19465,6 +20751,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sharpe Investigations: Death on the Seine", "game_detection": [ @@ -19479,6 +20766,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Amnesia: The Dark Descent", "game_detection": [ @@ -19505,6 +20793,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RuneScape", "game_detection": [ @@ -19534,6 +20823,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SPORT1 Live: Duel", "game_detection": [ @@ -19548,6 +20838,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Oil Blue", "game_detection": [ @@ -19564,6 +20855,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blazing Beaks", "game_detection": [ @@ -19574,6 +20866,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Flotilla", "game_detection": [ @@ -19588,6 +20881,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tom Clancy's HAWX Demo", "game_detection": [ @@ -19599,6 +20893,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dirt Rally 2", "game_detection": [ @@ -19609,6 +20904,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Yu-Gi-Oh! Legacy of the Duelist", "game_detection": [ @@ -19623,6 +20919,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "No Time To Explain Remastered", "game_detection": [ @@ -19637,6 +20934,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Khimera: Destroy All Monster Girls", "game_detection": [ @@ -19651,6 +20949,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Punch Planet", "game_detection": [ @@ -19665,6 +20964,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "1701 A.D.", "game_detection": [ @@ -19681,6 +20981,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Steins;Gate", "game_detection": [ @@ -19695,6 +20996,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Taito Legends 2", "game_detection": [ @@ -19706,6 +21008,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Notch: The Innocent LunA: Eclipsed SinnerS", "game_detection": [ @@ -19720,6 +21023,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SpellKnights", "game_detection": [ @@ -19734,6 +21038,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Metro 2033", "game_detection": [ @@ -19748,6 +21053,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "AERENA - Masters Edition", "game_detection": [ @@ -19762,6 +21068,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Interstellar Marines", "game_detection": [ @@ -19776,6 +21083,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Adventures of Shuggy", "game_detection": [ @@ -19790,6 +21098,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Call of Duty: Modern Warfare", "game_detection": [ @@ -19808,6 +21117,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hidden Expedition: Everest", "game_detection": [ @@ -19822,6 +21132,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spore", "game_detection": [ @@ -19843,6 +21154,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Squishy the Suicidal Pig", "game_detection": [ @@ -19857,6 +21169,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ankh: Battle of the Gods", "game_detection": [ @@ -19868,6 +21181,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Expand", "game_detection": [ @@ -19882,6 +21196,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Scrolls", "game_detection": [ @@ -19895,6 +21210,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SpaceChem", "game_detection": [ @@ -19909,6 +21225,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deity", "game_detection": [ @@ -19920,6 +21237,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "UNO", "game_detection": [ @@ -19930,6 +21248,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gundemonium Recollection", "game_detection": [ @@ -19944,6 +21263,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chessmaster Challenge", "game_detection": [ @@ -19958,6 +21278,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Poly Bridge", "game_detection": [ @@ -19972,6 +21293,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Outlast", "game_detection": [ @@ -19992,6 +21314,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warlords: Battlecry 2", "game_detection": [ @@ -20003,6 +21326,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Football Manager 2005", "game_detection": [ @@ -20014,6 +21338,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Clockwork Man: The Hidden World", "game_detection": [ @@ -20028,6 +21353,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A Slower Speed of Light", "game_detection": [ @@ -20039,6 +21365,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rift", "game_detection": [ @@ -20081,6 +21408,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Egg Time", "game_detection": [ @@ -20096,6 +21424,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Resident Evil 4", "game_detection": [ @@ -20110,6 +21439,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blackguards", "game_detection": [ @@ -20129,6 +21459,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Defense Task Force", "game_detection": [ @@ -20142,6 +21473,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dragon Age: Origins", "game_detection": [ @@ -20167,6 +21499,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeonbowl", "game_detection": [ @@ -20181,6 +21514,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ANNO 1800", "game_detection": [ @@ -20199,6 +21533,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Master Levels for Doom II", "game_detection": [ @@ -20213,6 +21548,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Putt-Putt and Pep's Dog on a Stick", "game_detection": [ @@ -20227,6 +21563,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Major Mayhem", "game_detection": [ @@ -20241,6 +21578,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Silent Hill: Homecoming", "game_detection": [ @@ -20255,6 +21593,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Symphony", "game_detection": [ @@ -20274,6 +21613,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Coil", "game_detection": [ @@ -20288,6 +21628,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wrack", "game_detection": [ @@ -20302,6 +21643,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Where is My Heart?", "game_detection": [ @@ -20316,6 +21658,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "8-Bit Commando", "game_detection": [ @@ -20330,6 +21673,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "rFactor", "game_detection": [ @@ -20349,6 +21693,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Phase Shift", "game_detection": [ @@ -20360,6 +21705,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Line Rider 2: Unbound", "game_detection": [ @@ -20380,6 +21726,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Death's Gambit", "game_detection": [ @@ -20393,6 +21740,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dysfunctional Systems: Learning to Manage Chaos", "game_detection": [ @@ -20407,6 +21755,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Skullgirls", "game_detection": [ @@ -20429,6 +21778,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Joe Danger", "game_detection": [ @@ -20443,6 +21793,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Transformice", "game_detection": [ @@ -20462,6 +21813,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "oO", "game_detection": [ @@ -20476,6 +21828,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Resident Evil: Revelations", "game_detection": [ @@ -20490,6 +21843,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Adventure Park", "game_detection": [ @@ -20504,6 +21858,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "All Is Dust", "game_detection": [ @@ -20518,6 +21873,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Harry Potter and the Prisoner of Azkaban", "game_detection": [ @@ -20530,6 +21886,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Area-X", "game_detection": [ @@ -20544,6 +21901,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "El Matador", "game_detection": [ @@ -20563,6 +21921,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Win Big Or Die", "game_detection": [ @@ -20577,6 +21936,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battle Princess Madelyn", "game_detection": [ @@ -20587,6 +21947,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Call of Duty: Modern Warfare 3", "game_detection": [ @@ -20609,6 +21970,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stories Untold", "game_detection": [ @@ -20619,6 +21981,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bit.Trip Runner", "game_detection": [ @@ -20638,6 +22001,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Grow Home", "game_detection": [ @@ -20652,6 +22016,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Making History: The Great War", "game_detection": [ @@ -20666,6 +22031,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ActiveWorlds", "game_detection": [ @@ -20677,6 +22043,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "D-Day Normandy", "game_detection": [ @@ -20689,6 +22056,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mahjong Quest 2", "game_detection": [ @@ -20703,6 +22071,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Uncanny Valley", "game_detection": [ @@ -20717,6 +22086,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hamlet or the Last Game without MMORPG Features, Shaders and Product Placement", "game_detection": [ @@ -20731,6 +22101,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Enforcer: Police Crime Action", "game_detection": [ @@ -20745,6 +22116,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "March of the Eagles", "game_detection": [ @@ -20759,6 +22131,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Scourge Project - Episode 1 and 2", "game_detection": [ @@ -20773,6 +22146,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Football Manager 2012", "game_detection": [ @@ -20787,6 +22161,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Might & Magic Heroes VII", "game_detection": [ @@ -20808,6 +22183,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Oil Rush", "game_detection": [ @@ -20828,6 +22204,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Trek Voyager: Elite Force", "game_detection": [ @@ -20851,6 +22228,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sam & Max Episode 102: Situation Comedy", "game_detection": [ @@ -20870,6 +22248,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "AquaNox", "game_detection": [ @@ -20884,6 +22263,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Watch Dogs 2", "game_detection": [ @@ -20912,6 +22292,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nancy Drew: The Creature of Kapu Cave", "game_detection": [ @@ -20926,6 +22307,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Paranormal", "game_detection": [ @@ -20937,6 +22319,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mars: War Logs", "game_detection": [ @@ -20951,6 +22334,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Turning Point: The Fall of Liberty", "game_detection": [ @@ -20963,6 +22347,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Slayers Online", "game_detection": [ @@ -20974,6 +22359,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kitten Cannon", "game_detection": [ @@ -20989,6 +22375,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NBA 2K12", "game_detection": [ @@ -21008,6 +22395,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rijn the Specpyre in... Manor of the Damned!", "game_detection": [ @@ -21024,6 +22412,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "CubeGun", "game_detection": [ @@ -21038,6 +22427,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Defy Gravity Extended", "game_detection": [ @@ -21052,6 +22442,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "how do you Do It?", "game_detection": [ @@ -21066,6 +22457,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Space Pirates And Zombies 2", "game_detection": [ @@ -21080,6 +22472,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Scythe: Digital Edition", "game_detection": [ @@ -21093,6 +22486,7 @@ ] }, { + "force_display_capture": false, "region": "RU", "title": "Black Desert", "game_detection": [ @@ -21109,6 +22503,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Powerboat GT", "game_detection": [ @@ -21121,6 +22516,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Atlantis Sky Patrol", "game_detection": [ @@ -21135,6 +22531,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zone of the Enders the 2nd Runner: Mars", "game_detection": [ @@ -21148,6 +22545,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Distance", "game_detection": [ @@ -21167,6 +22565,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "War Leaders: Clash of Nations", "game_detection": [ @@ -21179,6 +22578,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hot Lava", "game_detection": [ @@ -21189,6 +22589,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Roche Fusion", "game_detection": [ @@ -21203,6 +22604,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead Hungry Diner", "game_detection": [ @@ -21217,6 +22619,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Trek", "game_detection": [ @@ -21231,6 +22634,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mount Your Friends", "game_detection": [ @@ -21246,6 +22650,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Arx Fatalis", "game_detection": [ @@ -21260,6 +22665,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "You Have 10 Seconds 2", "game_detection": [ @@ -21274,6 +22680,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Angry Birds: Star Wars", "game_detection": [ @@ -21285,6 +22692,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Smite", "game_detection": [ @@ -21322,6 +22730,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Kill Team", "game_detection": [ @@ -21336,6 +22745,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "New Frontier", "game_detection": [ @@ -21346,6 +22756,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Enemy Mind", "game_detection": [ @@ -21360,6 +22771,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Hexagon", "game_detection": [ @@ -21379,6 +22791,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spy Fox In: Hold the Mustard", "game_detection": [ @@ -21393,6 +22806,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wind Slayer", "game_detection": [ @@ -21408,6 +22822,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "KWAAN", "game_detection": [ @@ -21422,6 +22837,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gumboy Crazy Features", "game_detection": [ @@ -21436,6 +22852,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Back to the Future: The Game - Ep. 1: It's About Time", "game_detection": [ @@ -21455,6 +22872,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Guilty Gear Xrd -REVELATOR-", "game_detection": [ @@ -21469,6 +22887,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Roogoo", "game_detection": [ @@ -21488,6 +22907,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Scarygirl", "game_detection": [ @@ -21502,6 +22922,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GALAK-Z", "game_detection": [ @@ -21516,6 +22937,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Train Fever", "game_detection": [ @@ -21530,6 +22952,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crysis 3", "game_detection": [ @@ -21541,6 +22964,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Daedalus: No Escape", "game_detection": [ @@ -21555,6 +22979,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Max Gentlemen", "game_detection": [ @@ -21569,6 +22994,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "RaiderZ", "game_detection": [ @@ -21581,6 +23007,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alice: Madness Returns", "game_detection": [ @@ -21601,6 +23028,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bully: Scholarship Edition", "game_detection": [ @@ -21620,6 +23048,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battlefield Hardline", "game_detection": [ @@ -21631,6 +23060,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Equilinox", "game_detection": [ @@ -21642,6 +23072,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shin Megami Tensei: Imagine", "game_detection": [ @@ -21667,6 +23098,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heroes and Titans: Online", "game_detection": [ @@ -21681,6 +23113,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "S4 League", "game_detection": [ @@ -21706,6 +23139,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rayman 2: The Great Escape", "game_detection": [ @@ -21723,6 +23157,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FIFA Manager 13", "game_detection": [ @@ -21734,6 +23169,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kick-Ass 2", "game_detection": [ @@ -21748,6 +23184,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gourmania 2: Kitchen Confidential", "game_detection": [ @@ -21760,6 +23197,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "Heroes of Kingdoms", "game_detection": [ @@ -21775,6 +23213,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hangeki", "game_detection": [ @@ -21789,6 +23228,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Riptide GP2", "game_detection": [ @@ -21803,6 +23243,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Baseball Mogul 2012", "game_detection": [ @@ -21815,6 +23256,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Enigmatis: The Mists of Ravenwood", "game_detection": [ @@ -21829,6 +23271,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hero of the Kingdom", "game_detection": [ @@ -21843,6 +23286,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jewel Quest: Solitaire", "game_detection": [ @@ -21854,6 +23298,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Momodora", "game_detection": [ @@ -21865,6 +23310,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Bard's Tale", "game_detection": [ @@ -21884,6 +23330,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Capsized", "game_detection": [ @@ -21903,6 +23350,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MoW: Face Off XL", "game_detection": [ @@ -21917,6 +23365,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spy Fox in Dry Cereal", "game_detection": [ @@ -21931,6 +23380,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "What The Box?", "game_detection": [ @@ -21945,6 +23395,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fluttabyes", "game_detection": [ @@ -21959,6 +23410,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spy Party", "game_detection": [ @@ -21972,6 +23424,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "AI War: Fleet Command", "game_detection": [ @@ -21991,6 +23444,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "From Dust", "game_detection": [ @@ -22005,6 +23459,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BlackSoul", "game_detection": [ @@ -22019,6 +23474,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deathspank: The Baconing", "game_detection": [ @@ -22033,6 +23489,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Street Fighter X Mega Man", "game_detection": [ @@ -22044,6 +23501,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "EverQuest II: The Shadow Odyssey", "game_detection": [ @@ -22056,6 +23514,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Railroad Tycoon II Platinum", "game_detection": [ @@ -22070,6 +23529,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark Messiah of Might & Magic", "game_detection": [ @@ -22097,6 +23557,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rekoil", "game_detection": [ @@ -22118,6 +23579,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cat Goes Fishing", "game_detection": [ @@ -22132,6 +23594,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Psi-Ops: The Mindgate Conspiracy", "game_detection": [ @@ -22144,6 +23607,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mega Man 11", "game_detection": [ @@ -22154,6 +23618,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Endless Legend", "game_detection": [ @@ -22168,6 +23633,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Upshift StrikeRacer", "game_detection": [ @@ -22181,6 +23647,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "John Woo Presents Stranglehold", "game_detection": [ @@ -22193,6 +23660,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Planet Centauri", "game_detection": [ @@ -22207,6 +23675,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MANDAGON", "game_detection": [ @@ -22221,6 +23690,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battlepaths", "game_detection": [ @@ -22235,6 +23705,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Football Manager 2011", "game_detection": [ @@ -22254,6 +23725,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "One Piece: Unlimited World Red", "game_detection": [ @@ -22268,6 +23740,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Broken Sword: The Shadow of the Templars", "game_detection": [ @@ -22282,6 +23755,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fairy Tale Mysteries: The Puppet Thief", "game_detection": [ @@ -22296,6 +23770,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "UberStrike", "game_detection": [ @@ -22315,6 +23790,7 @@ ] }, { + "force_display_capture": false, "region": "RU", "title": "Dishonored", "game_detection": [ @@ -22329,6 +23805,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jutland", "game_detection": [ @@ -22340,6 +23817,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Unturned", "game_detection": [ @@ -22354,6 +23832,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Darkwood", "game_detection": [ @@ -22368,6 +23847,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Darksiders Warmastered Edition", "game_detection": [ @@ -22382,6 +23862,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Grand Theft Auto V", "game_detection": [ @@ -22402,6 +23883,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Far Cry 5", "game_detection": [ @@ -22422,6 +23904,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Final Fantasy V", "game_detection": [ @@ -22436,6 +23919,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Dawn of War Demo", "game_detection": [ @@ -22448,6 +23932,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Westerado: Double Barreled", "game_detection": [ @@ -22462,6 +23947,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Duke Nukem: Manhattan Project", "game_detection": [ @@ -22482,6 +23968,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "AssaultCube", "game_detection": [ @@ -22495,6 +23982,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "End of Nations", "game_detection": [ @@ -22508,6 +23996,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Juiced", "game_detection": [ @@ -22519,6 +24008,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Borderlands 2", "game_detection": [ @@ -22533,6 +24023,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "To Burn in Memory", "game_detection": [ @@ -22547,6 +24038,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Savage XR", "game_detection": [ @@ -22560,6 +24052,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Freaking Meatbags", "game_detection": [ @@ -22574,6 +24067,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Wars: X-Wing Alliance", "game_detection": [ @@ -22585,6 +24079,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Azuga: Age of Chaos", "game_detection": [ @@ -22597,6 +24092,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Showtime!", "game_detection": [ @@ -22611,6 +24107,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "WorldShift", "game_detection": [ @@ -22631,6 +24128,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battleship: Fleet Command", "game_detection": [ @@ -22645,6 +24143,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Iron Man", "game_detection": [ @@ -22657,6 +24156,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spellforce 2: Gold Edition", "game_detection": [ @@ -22671,6 +24171,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims 2: University", "game_detection": [ @@ -22682,6 +24183,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bunny Must Die! Chelsea and the 7 Devils", "game_detection": [ @@ -22706,6 +24208,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kholat", "game_detection": [ @@ -22720,6 +24223,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tycoon City: New York", "game_detection": [ @@ -22731,6 +24235,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Donut County", "game_detection": [ @@ -22744,6 +24249,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ubinota", "game_detection": [ @@ -22758,6 +24264,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ashes of the Singularity: Escalation", "game_detection": [ @@ -22773,6 +24280,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Virtual Villagers: A New Home", "game_detection": [ @@ -22787,6 +24295,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alien Swarm", "game_detection": [ @@ -22801,6 +24310,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Civilization V", "game_detection": [ @@ -22815,6 +24325,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Original War", "game_detection": [ @@ -22839,6 +24350,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Batman Arkham City GOTY", "game_detection": [ @@ -22853,6 +24365,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sherlock Holmes The Mystery of the Persian Carpet", "game_detection": [ @@ -22867,6 +24380,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "1849", "game_detection": [ @@ -22881,6 +24395,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dirt 3: Complete Edition", "game_detection": [ @@ -22895,6 +24410,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BLOCKPOST", "game_detection": [ @@ -22905,6 +24421,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Back to the Future: The Game - Ep. 3: Citizen Brown", "game_detection": [ @@ -22923,6 +24440,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crimzon Clover World Ignition", "game_detection": [ @@ -22937,6 +24455,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "CellFactor: Revolution", "game_detection": [ @@ -22950,6 +24469,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rehearsals and Returns", "game_detection": [ @@ -22961,6 +24481,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "I Wanna Be The Guy The Movie: The Game", "game_detection": [ @@ -22979,6 +24500,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Receiver", "game_detection": [ @@ -22993,6 +24515,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ashen", "game_detection": [ @@ -23003,6 +24526,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sid Meier's Civilization: Beyond Earth", "game_detection": [ @@ -23017,6 +24541,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Final Fantasy XI: Online", "game_detection": [ @@ -23044,6 +24569,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MTV's Virtual World", "game_detection": [ @@ -23058,6 +24584,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tom Clancy's EndWar", "game_detection": [ @@ -23070,6 +24597,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gunpoint", "game_detection": [ @@ -23089,6 +24617,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Long Live The Queen", "game_detection": [ @@ -23103,6 +24632,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mega Man Legacy Collection 2", "game_detection": [ @@ -23117,6 +24647,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mechanic Escape", "game_detection": [ @@ -23131,6 +24662,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rayman 3: Hoodlum Havoc", "game_detection": [ @@ -23148,6 +24680,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "City of Heroes", "game_detection": [ @@ -23182,6 +24715,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Medal of Honor: Allied Assault", "game_detection": [ @@ -23194,6 +24728,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Silent Hunter III", "game_detection": [ @@ -23205,6 +24740,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Perfect World International", "game_detection": [ @@ -23238,6 +24774,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ARMA II Demo", "game_detection": [ @@ -23252,6 +24789,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Return to Castle Wolfenstein", "game_detection": [ @@ -23308,6 +24846,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hydrophobia: Prophecy", "game_detection": [ @@ -23322,6 +24861,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Storm", "game_detection": [ @@ -23336,6 +24876,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Elder Scrolls 3: Morrowind", "game_detection": [ @@ -23347,6 +24888,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alabama Smith in the Quest of Fate", "game_detection": [ @@ -23359,6 +24901,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Global Outbreak: Doomsday Edition", "game_detection": [ @@ -23373,6 +24916,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dokuro", "game_detection": [ @@ -23387,6 +24931,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gridiron Solitaire", "game_detection": [ @@ -23401,6 +24946,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nancy Drew: Alibi in Ashes", "game_detection": [ @@ -23415,6 +24961,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Penny Arcade Adventures: On the Rain-Slick Precipice of Darkness Episode Three", "game_detection": [ @@ -23429,6 +24976,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stranded", "game_detection": [ @@ -23449,6 +24997,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Xpand Rally Xtreme", "game_detection": [ @@ -23463,6 +25012,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "War of the Vikings", "game_detection": [ @@ -23477,6 +25027,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BattleBlock Theater", "game_detection": [ @@ -23491,6 +25042,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Evochron Legends", "game_detection": [ @@ -23502,6 +25054,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ArmA II: Operation Arrowhead", "game_detection": [ @@ -23522,6 +25075,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jagged Alliance 2: Wildfire", "game_detection": [ @@ -23546,6 +25100,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "I Wanna Be The Boshy", "game_detection": [ @@ -23556,6 +25111,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Platformance: Castle Pain", "game_detection": [ @@ -23567,6 +25123,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "R.I.P.D.: The Game", "game_detection": [ @@ -23581,6 +25138,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Old City: Leviathan", "game_detection": [ @@ -23595,6 +25153,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Black Clover: Quartet Knights", "game_detection": [ @@ -23608,6 +25167,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Incoming Forces", "game_detection": [ @@ -23622,6 +25182,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Overlord II", "game_detection": [ @@ -23641,6 +25202,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battlefield Heroes", "game_detection": [ @@ -23652,6 +25214,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Door Kickers", "game_detection": [ @@ -23671,6 +25234,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Legionwood: Tale of the Two Swords", "game_detection": [ @@ -23685,6 +25249,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Icy Tower", "game_detection": [ @@ -23696,6 +25261,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Razor2 Hidden Skies", "game_detection": [ @@ -23710,6 +25276,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FlatOut 2", "game_detection": [ @@ -23729,6 +25296,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tick Tock Bang Bang", "game_detection": [ @@ -23743,6 +25311,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Portal Knights", "game_detection": [ @@ -23757,6 +25326,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sugar Cube: Bittersweet Factory", "game_detection": [ @@ -23771,6 +25341,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Redux: Dark Matters", "game_detection": [ @@ -23785,6 +25356,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Trainz Railroad Simulator 2006", "game_detection": [ @@ -23796,6 +25368,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Void Destroyer", "game_detection": [ @@ -23810,6 +25383,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A Stroke of Fate: Operation Valkyrie", "game_detection": [ @@ -23824,6 +25398,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deathtrap Dungeon", "game_detection": [ @@ -23838,6 +25413,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sherlock Holmes: The Awakened - Remastered Edition", "game_detection": [ @@ -23852,6 +25428,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Autocraft", "game_detection": [ @@ -23866,6 +25443,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Craft The World", "game_detection": [ @@ -23880,6 +25458,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Broken Sword: The Sleeping Dragon", "game_detection": [ @@ -23899,6 +25478,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deer Hunter 2004", "game_detection": [ @@ -23910,6 +25490,7 @@ ] }, { + "force_display_capture": false, "region": "ES", "title": "Gobernators", "game_detection": [ @@ -23924,6 +25505,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battlefield V", "game_detection": [ @@ -23943,6 +25525,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hexen", "game_detection": [ @@ -23957,6 +25540,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Triple Town", "game_detection": [ @@ -23971,6 +25555,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "INVASION!", "game_detection": [ @@ -23986,6 +25571,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead or Alive 5: Last Round", "game_detection": [ @@ -24000,6 +25586,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fancy Skulls", "game_detection": [ @@ -24019,6 +25606,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Richie's Plank Experience", "game_detection": [ @@ -24034,6 +25622,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Far Cry 4", "game_detection": [ @@ -24055,6 +25644,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hexen 2", "game_detection": [ @@ -24069,6 +25659,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rumble Fighter", "game_detection": [ @@ -24089,6 +25680,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Turbo Pug DX", "game_detection": [ @@ -24103,6 +25695,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lionheart: Kings' Crusade", "game_detection": [ @@ -24117,6 +25710,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Extreme Roads USA", "game_detection": [ @@ -24131,6 +25725,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Testament of Sherlock Holmes", "game_detection": [ @@ -24145,6 +25740,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "City Life: Deluxe", "game_detection": [ @@ -24165,6 +25761,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Commander Cool 2", "game_detection": [ @@ -24179,6 +25776,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Trackmania Nations", "game_detection": [ @@ -24190,6 +25788,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tuebor", "game_detection": [ @@ -24204,6 +25803,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Family Feud 4: Battle of the Sexes", "game_detection": [ @@ -24218,6 +25818,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Trackmania 2 Valley", "game_detection": [ @@ -24232,6 +25833,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ash of Gods: Redemption", "game_detection": [ @@ -24245,6 +25847,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tactical Intervention", "game_detection": [ @@ -24268,6 +25871,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "I Want To Be Human", "game_detection": [ @@ -24282,6 +25886,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Age of Wonders III", "game_detection": [ @@ -24296,6 +25901,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "theHunter: Primal", "game_detection": [ @@ -24310,6 +25916,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Drakensang", "game_detection": [ @@ -24337,6 +25944,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bookworm Adventures Vol. 2", "game_detection": [ @@ -24351,6 +25959,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battle Fantasia -Revised Edition-", "game_detection": [ @@ -24365,6 +25974,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eye of the Owl: Bosch VR", "game_detection": [ @@ -24380,6 +25990,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Conflict", "game_detection": [ @@ -24394,6 +26005,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tallowmere", "game_detection": [ @@ -24408,6 +26020,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "X-COM: Interceptor", "game_detection": [ @@ -24427,6 +26040,7 @@ ] }, { + "force_display_capture": false, "region": "SG", "title": "FIFA Online 3", "game_detection": [ @@ -24441,6 +26055,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GemSweeper", "game_detection": [ @@ -24455,6 +26070,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "8BallClub", "game_detection": [ @@ -24467,6 +26083,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "CT Special Forces: Fire for Effect", "game_detection": [ @@ -24481,6 +26098,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mirror Mysteries", "game_detection": [ @@ -24495,6 +26113,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NASCAR SimRacing", "game_detection": [ @@ -24506,6 +26125,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cities in Motion", "game_detection": [ @@ -24520,6 +26140,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fallout Tactics: Brotherhood of Steel", "game_detection": [ @@ -24545,6 +26166,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Winning Eleven 9", "game_detection": [ @@ -24556,6 +26178,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Overkill VR", "game_detection": [ @@ -24571,6 +26194,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zuma Deluxe", "game_detection": [ @@ -24591,6 +26215,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Settlement: Colossus", "game_detection": [ @@ -24603,6 +26228,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "QQ Robo", "game_detection": [ @@ -24615,6 +26241,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Transformers: Revenge of the Fallen", "game_detection": [ @@ -24627,6 +26254,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Inkball", "game_detection": [ @@ -24643,6 +26271,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Redneck Racers", "game_detection": [ @@ -24657,6 +26286,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Europa Universalis III", "game_detection": [ @@ -24669,6 +26299,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pokemon Trading Card Game Online", "game_detection": [ @@ -24690,6 +26321,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro-Pinball: Big Race USA", "game_detection": [ @@ -24701,6 +26333,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BrainBread 2", "game_detection": [ @@ -24715,6 +26348,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ultimate Bet", "game_detection": [ @@ -24727,6 +26361,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alien Breed 3: Descent", "game_detection": [ @@ -24741,6 +26376,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fight The Dragon", "game_detection": [ @@ -24755,6 +26391,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pacify", "game_detection": [ @@ -24765,6 +26402,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Runbow", "game_detection": [ @@ -24779,6 +26417,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Terminator Salvation", "game_detection": [ @@ -24798,6 +26437,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "There Came an Echo", "game_detection": [ @@ -24812,6 +26452,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Back to the Future: The Game - Ep. 5: OUTATIME", "game_detection": [ @@ -24830,6 +26471,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sins of a Solar Empire: Entrenchment", "game_detection": [ @@ -24841,6 +26483,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "X-Men Origins: Wolverine", "game_detection": [ @@ -24853,6 +26496,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead in Vinland", "game_detection": [ @@ -24866,6 +26510,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Street Fighter IV Arcade Edition", "game_detection": [ @@ -24885,6 +26530,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Frozen Hearth", "game_detection": [ @@ -24899,6 +26545,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hunted: The Demon's Forge", "game_detection": [ @@ -24919,6 +26566,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mighty Gunvolt", "game_detection": [ @@ -24933,6 +26581,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Offspring Fling", "game_detection": [ @@ -24952,6 +26601,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SpellForce 2: Demons of the Past", "game_detection": [ @@ -24966,6 +26616,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Silkroad Online", "game_detection": [ @@ -24980,6 +26631,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Need for Speed World", "game_detection": [ @@ -24994,6 +26646,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Indigo Prophecy Remastered", "game_detection": [ @@ -25008,6 +26661,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Boiling Point", "game_detection": [ @@ -25019,6 +26673,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Disc Jam", "game_detection": [ @@ -25033,6 +26688,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Iron Warriors: T-72 Tank Command", "game_detection": [ @@ -25047,6 +26703,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DeadEnd: Cerebral Vortex", "game_detection": [ @@ -25058,6 +26715,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Orwell", "game_detection": [ @@ -25072,6 +26730,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Overlord", "game_detection": [ @@ -25083,6 +26742,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Paper Sorcerer", "game_detection": [ @@ -25102,6 +26762,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hoyle Slots", "game_detection": [ @@ -25113,6 +26774,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "PokerRoom", "game_detection": [ @@ -25133,6 +26795,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bright Shadow", "game_detection": [ @@ -25146,6 +26809,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MadBalls in Babo Invasion", "game_detection": [ @@ -25160,6 +26824,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Guild 2: Venice", "game_detection": [ @@ -25171,6 +26836,7 @@ ] }, { + "force_display_capture": false, "region": "JP", "title": "Tsukumogami", "game_detection": [ @@ -25185,6 +26851,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Parkan II", "game_detection": [ @@ -25199,6 +26866,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Grand Theft Auto", "game_detection": [ @@ -25218,6 +26886,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Louie Cooks", "game_detection": [ @@ -25232,6 +26901,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Two Worlds Demo", "game_detection": [ @@ -25244,6 +26914,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kicks Online", "game_detection": [ @@ -25257,6 +26928,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pinball FX 2", "game_detection": [ @@ -25271,6 +26943,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2010", "game_detection": [ @@ -25282,6 +26955,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "King's Bounty: The Legend", "game_detection": [ @@ -25301,6 +26975,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Football Superstars", "game_detection": [ @@ -25321,6 +26996,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Patterns", "game_detection": [ @@ -25335,6 +27011,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Guns of Icarus Online", "game_detection": [ @@ -25349,6 +27026,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hard Truck 2", "game_detection": [ @@ -25360,6 +27038,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stronghold HD", "game_detection": [ @@ -25384,6 +27063,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Runes of Magic", "game_detection": [ @@ -25396,6 +27076,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Painkiller Redemption", "game_detection": [ @@ -25410,6 +27091,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Icarus-X: Tides of Fire", "game_detection": [ @@ -25424,6 +27106,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "You Don't Know Jack", "game_detection": [ @@ -25438,6 +27121,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deponia", "game_detection": [ @@ -25452,6 +27136,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hegemony Gold: Wars of Ancient Greece", "game_detection": [ @@ -25466,6 +27151,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bicycle Texas Hold ‘Em Poker", "game_detection": [ @@ -25477,6 +27163,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spell Fighter VR", "game_detection": [ @@ -25492,6 +27179,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Reach for the Sun", "game_detection": [ @@ -25506,6 +27194,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sentris", "game_detection": [ @@ -25520,6 +27209,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Verdun", "game_detection": [ @@ -25534,6 +27224,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Resident Evil 7 biohazard", "game_detection": [ @@ -25556,6 +27247,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sniper Elite III", "game_detection": [ @@ -25569,6 +27261,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "From the Depths", "game_detection": [ @@ -25583,6 +27276,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Defcon", "game_detection": [ @@ -25602,6 +27296,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tradewinds Legends", "game_detection": [ @@ -25616,6 +27311,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Beasts of Bermuda", "game_detection": [ @@ -25630,6 +27326,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dragon's Prophet", "game_detection": [ @@ -25651,6 +27348,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Putt-Putt Goes to the Moon", "game_detection": [ @@ -25665,6 +27363,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "Ni Zhan", "game_detection": [ @@ -25678,6 +27377,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Victoria II", "game_detection": [ @@ -25697,6 +27397,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "iRacing", "game_detection": [ @@ -25720,6 +27421,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "Kartrider", "game_detection": [ @@ -25732,6 +27434,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shot Online", "game_detection": [ @@ -25752,6 +27455,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Trash TV Demo", "game_detection": [ @@ -25766,6 +27470,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Max: The Curse of Brotherhood", "game_detection": [ @@ -25780,6 +27485,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Quake 4 Demo", "game_detection": [ @@ -25794,6 +27500,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Worms W.M.D. All Stars", "game_detection": [ @@ -25808,6 +27515,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kohan II: Kings of War", "game_detection": [ @@ -25827,6 +27535,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Loren The Amazon Princess", "game_detection": [ @@ -25846,6 +27555,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Family Feud 2010 Edition", "game_detection": [ @@ -25860,6 +27570,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sudoku Ball: Detective", "game_detection": [ @@ -25874,6 +27585,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Order of War", "game_detection": [ @@ -25888,6 +27600,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dino D-Day", "game_detection": [ @@ -25902,6 +27615,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "18 Wheels of Steel: Pedal to the Metal", "game_detection": [ @@ -25915,6 +27629,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "WALL-E", "game_detection": [ @@ -25926,6 +27641,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Endless Sky", "game_detection": [ @@ -25940,6 +27656,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Another World: 20th Anniversary", "game_detection": [ @@ -25954,6 +27671,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Holic Online", "game_detection": [ @@ -25966,6 +27684,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Lord of the Rings: Battle for Middle Earth II", "game_detection": [ @@ -25979,6 +27698,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spy Fox 2: Some Assembly Required", "game_detection": [ @@ -25993,6 +27713,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Culling of the Cows", "game_detection": [ @@ -26007,6 +27728,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Monochroma", "game_detection": [ @@ -26021,6 +27743,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "You Don't Know Jack Vol. 1 XL", "game_detection": [ @@ -26035,6 +27758,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Voyage Century", "game_detection": [ @@ -26047,6 +27771,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Teslagrad", "game_detection": [ @@ -26066,6 +27791,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Aliens Versus Predator 2: Primal Hunt", "game_detection": [ @@ -26078,6 +27804,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kung Fu Strike: The Warrior's Rise", "game_detection": [ @@ -26092,6 +27819,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Madagascar: Escape 2 Africa", "game_detection": [ @@ -26103,6 +27831,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Mega Baseball 2", "game_detection": [ @@ -26116,6 +27845,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Monopoly", "game_detection": [ @@ -26130,6 +27860,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Princess and the Frog", "game_detection": [ @@ -26141,6 +27872,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "UEFA Euro 2008", "game_detection": [ @@ -26152,6 +27884,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Medieval Engineers", "game_detection": [ @@ -26162,6 +27895,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bridge It", "game_detection": [ @@ -26176,6 +27910,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Space Ark", "game_detection": [ @@ -26190,6 +27925,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NecroVisioN: Lost Company", "game_detection": [ @@ -26210,6 +27946,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Karma Online", "game_detection": [ @@ -26222,6 +27959,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BIOS", "game_detection": [ @@ -26236,6 +27974,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Weird Worlds: Return to Infinite Space", "game_detection": [ @@ -26250,6 +27989,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hinterland", "game_detection": [ @@ -26270,6 +28010,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fritz Chess 14", "game_detection": [ @@ -26284,6 +28025,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hitogata Happa", "game_detection": [ @@ -26298,6 +28040,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "World of Fishing", "game_detection": [ @@ -26312,6 +28055,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeon Lords", "game_detection": [ @@ -26323,6 +28067,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mahjong Titans", "game_detection": [ @@ -26341,6 +28086,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "One Way To Die", "game_detection": [ @@ -26355,6 +28101,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Slam Bolt Scrappers", "game_detection": [ @@ -26369,6 +28116,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Marble Blast Gold", "game_detection": [ @@ -26380,6 +28128,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer 40,000 Gladius - Relics of War", "game_detection": [ @@ -26393,6 +28142,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Moonbase Alpha", "game_detection": [ @@ -26407,6 +28157,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2017 Trial Edition", "game_detection": [ @@ -26421,6 +28172,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Elemental Heroes", "game_detection": [ @@ -26435,6 +28187,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Soldat", "game_detection": [ @@ -26451,6 +28204,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Championship Manager 2007", "game_detection": [ @@ -26462,6 +28216,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Glowfish", "game_detection": [ @@ -26476,6 +28231,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mahjong Towers Eternity", "game_detection": [ @@ -26490,6 +28246,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Racing Manager 2014", "game_detection": [ @@ -26504,6 +28261,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Graveyard Keeper", "game_detection": [ @@ -26517,6 +28275,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Roof Rage", "game_detection": [ @@ -26527,6 +28286,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Mighty Quest for Epic Loot", "game_detection": [ @@ -26548,6 +28308,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dear Esther", "game_detection": [ @@ -26567,6 +28328,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kingdoms of Amalur: Reckoning", "game_detection": [ @@ -26587,6 +28349,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Enslaved: Odyssey to the West", "game_detection": [ @@ -26601,6 +28364,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mystery Case Files Huntsville", "game_detection": [ @@ -26615,6 +28379,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NiGHTS into Dreams...", "game_detection": [ @@ -26629,6 +28394,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Might & Magic: Duel of Champions", "game_detection": [ @@ -26649,6 +28415,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FIFA Manager 11", "game_detection": [ @@ -26668,6 +28435,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ys: The Oath in Felghana", "game_detection": [ @@ -26693,6 +28461,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heroes of Havoc: Idle Adventures", "game_detection": [ @@ -26707,6 +28476,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Neverwinter Nights", "game_detection": [ @@ -26718,6 +28488,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lichdom: Battlemage", "game_detection": [ @@ -26732,6 +28503,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Habitat", "game_detection": [ @@ -26746,6 +28518,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fifa 15", "game_detection": [ @@ -26757,6 +28530,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hard Truck: Apocalypse", "game_detection": [ @@ -26771,6 +28545,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Retro City Rampage DX", "game_detection": [ @@ -26795,6 +28570,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Buccaneer: The Pursuit of Infamy", "game_detection": [ @@ -26809,6 +28585,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cricket 07", "game_detection": [ @@ -26820,6 +28597,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Navy Field 2", "game_detection": [ @@ -26833,6 +28611,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Axel & Pixel", "game_detection": [ @@ -26847,6 +28626,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Runner3", "game_detection": [ @@ -26860,6 +28640,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dangan Ronpa: Trigger Happy Havoc", "game_detection": [ @@ -26874,6 +28655,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Toukiden: Kiwami", "game_detection": [ @@ -26888,6 +28670,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Helicopter Simulator 2014: Search and Rescue", "game_detection": [ @@ -26902,6 +28685,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Delta Force 2", "game_detection": [ @@ -26922,6 +28706,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heat Online", "game_detection": [ @@ -26935,6 +28720,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Midnight Club II", "game_detection": [ @@ -26946,6 +28732,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Legend of Fae", "game_detection": [ @@ -26960,6 +28747,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "John Deere: Drive Green", "game_detection": [ @@ -26974,6 +28762,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Livelock", "game_detection": [ @@ -26988,6 +28777,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nancy Drew: Shadow at The Water's Edge", "game_detection": [ @@ -27002,6 +28792,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ground Pounders", "game_detection": [ @@ -27016,6 +28807,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tomb Raider Legend", "game_detection": [ @@ -27035,6 +28827,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Codename CURE", "game_detection": [ @@ -27049,6 +28842,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "CrossFire", "game_detection": [ @@ -27063,6 +28857,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alvin and the Chipmunks", "game_detection": [ @@ -27075,6 +28870,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "F.E.A.R. Online", "game_detection": [ @@ -27097,6 +28893,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Microsoft Flight Simulator 2004: A Century of Flight", "game_detection": [ @@ -27108,6 +28905,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Broken Sword: The Serpent's Curse", "game_detection": [ @@ -27127,6 +28925,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "1953: KGB Unleashed", "game_detection": [ @@ -27141,6 +28940,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Secrets of Grindea", "game_detection": [ @@ -27155,6 +28955,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Altis Gates", "game_detection": [ @@ -27167,6 +28968,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kalimba", "game_detection": [ @@ -27181,6 +28983,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Long Dark", "game_detection": [ @@ -27195,6 +28998,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pool Nation FX - Lite", "game_detection": [ @@ -27209,6 +29013,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NEKOPARA Vol. 1", "game_detection": [ @@ -27223,6 +29028,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ancient Space", "game_detection": [ @@ -27237,6 +29043,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MX vs. ATV Unleashed", "game_detection": [ @@ -27249,6 +29056,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ember Strike", "game_detection": [ @@ -27263,6 +29071,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "PC Building Simulator", "game_detection": [ @@ -27276,6 +29085,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Grand Theft Auto III", "game_detection": [ @@ -27295,6 +29105,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Aveyond: Lord of Twilight", "game_detection": [ @@ -27309,6 +29120,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cryostasis: Sleep of Reason", "game_detection": [ @@ -27320,6 +29132,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ride to Hell: Retribution", "game_detection": [ @@ -27334,6 +29147,7 @@ ] }, { + "force_display_capture": false, "region": "RU", "title": "Warface", "game_detection": [ @@ -27349,6 +29163,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FIFA Soccer 09", "game_detection": [ @@ -27360,6 +29175,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mu Online", "game_detection": [ @@ -27374,6 +29190,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Closure", "game_detection": [ @@ -27388,6 +29205,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Anima Gate of Memories", "game_detection": [ @@ -27402,6 +29220,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kingdom Rush", "game_detection": [ @@ -27421,6 +29240,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Movies", "game_detection": [ @@ -27432,6 +29252,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Malevolence: The Sword of Ahkranox", "game_detection": [ @@ -27446,6 +29267,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hearts of Iron III", "game_detection": [ @@ -27466,6 +29288,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "God Mode", "game_detection": [ @@ -27480,6 +29303,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "QQ Pool", "game_detection": [ @@ -27492,6 +29316,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Thief", "game_detection": [ @@ -27506,6 +29331,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blood Bowl: Dark Elves Edition", "game_detection": [ @@ -27520,6 +29346,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Resident Evil HD", "game_detection": [ @@ -27534,6 +29361,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Vanishing of Ethan Carter", "game_detection": [ @@ -27548,6 +29376,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BeatBlasters III", "game_detection": [ @@ -27567,6 +29396,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims 2: Celebration Stuff", "game_detection": [ @@ -27584,6 +29414,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Turbo Pug", "game_detection": [ @@ -27598,6 +29429,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fallen Doll", "game_detection": [ @@ -27608,6 +29440,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Unreal Tournament 2003", "game_detection": [ @@ -27625,6 +29458,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MechWarrior 4: Black Knight", "game_detection": [ @@ -27637,6 +29471,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Happy Hereafter", "game_detection": [ @@ -27651,6 +29486,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shoot Many Robots", "game_detection": [ @@ -27665,6 +29501,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Close Your Eyes", "game_detection": [ @@ -27679,6 +29516,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Distant Worlds: Universe", "game_detection": [ @@ -27693,6 +29531,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mighty Jill Off", "game_detection": [ @@ -27704,6 +29543,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sam & Max Episode 106: Bright Side of the Moon", "game_detection": [ @@ -27723,6 +29563,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Frets on Fire", "game_detection": [ @@ -27734,6 +29575,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eurofighter Typhoon", "game_detection": [ @@ -27748,6 +29590,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Minds Eyes", "game_detection": [ @@ -27762,6 +29605,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Death Track: Resurrection", "game_detection": [ @@ -27776,6 +29620,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ARGO", "game_detection": [ @@ -27789,6 +29634,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Triennale Game Collection", "game_detection": [ @@ -27803,6 +29649,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Jackbox Party Pack", "game_detection": [ @@ -27814,6 +29661,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ys Online: The Call of Solum", "game_detection": [ @@ -27828,6 +29676,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Danganronpa 2: Goodbye Despair", "game_detection": [ @@ -27842,6 +29691,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ghostbusters: Sanctum of Slime", "game_detection": [ @@ -27856,6 +29706,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Do Not Feed The Monkeys", "game_detection": [ @@ -27866,6 +29717,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cheesecake Cool Conrad", "game_detection": [ @@ -27880,6 +29732,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Volgarr the Viking", "game_detection": [ @@ -27899,6 +29752,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Apex Legends", "game_detection": [ @@ -27910,6 +29764,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Apex Legends", "game_detection": [ @@ -27924,6 +29779,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Klepto", "game_detection": [ @@ -27938,6 +29794,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bioshock Remastered", "game_detection": [ @@ -27952,6 +29809,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battle Battalions", "game_detection": [ @@ -27966,6 +29824,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lords of the Fallen", "game_detection": [ @@ -27980,6 +29839,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Post Master", "game_detection": [ @@ -27994,6 +29854,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dustforce", "game_detection": [ @@ -28013,6 +29874,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vanquish", "game_detection": [ @@ -28027,6 +29889,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gone Home", "game_detection": [ @@ -28046,6 +29909,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Descent 3", "game_detection": [ @@ -28060,6 +29924,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Two Worlds", "game_detection": [ @@ -28071,6 +29936,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Millie", "game_detection": [ @@ -28085,6 +29951,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Faster Than Light", "game_detection": [ @@ -28109,6 +29976,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Capitalism II", "game_detection": [ @@ -28120,6 +29988,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Falling Skies: The Game", "game_detection": [ @@ -28134,6 +30003,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bullet Witch", "game_detection": [ @@ -28147,6 +30017,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Planets Under Attack", "game_detection": [ @@ -28161,6 +30032,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Crew", "game_detection": [ @@ -28182,6 +30054,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead Effect", "game_detection": [ @@ -28196,6 +30069,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Penumbra Overture Episode One", "game_detection": [ @@ -28222,6 +30096,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Actual Sunlight", "game_detection": [ @@ -28236,6 +30111,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Rockin' Dead", "game_detection": [ @@ -28250,6 +30126,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sora", "game_detection": [ @@ -28264,6 +30141,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Icewind Dale", "game_detection": [ @@ -28275,6 +30153,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Suffering: Ties That Bind", "game_detection": [ @@ -28286,6 +30165,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Witcher", "game_detection": [ @@ -28298,6 +30178,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fate/EXTELLA LINK", "game_detection": [ @@ -28308,6 +30189,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Overwatch", "game_detection": [ @@ -28327,6 +30209,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rogue's Tale", "game_detection": [ @@ -28341,6 +30224,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bloodbath", "game_detection": [ @@ -28355,6 +30239,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Helldorado", "game_detection": [ @@ -28369,6 +30254,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Delta Force: Task Force Dagger", "game_detection": [ @@ -28383,6 +30269,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sid Meier's Pirates!", "game_detection": [ @@ -28402,6 +30289,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tiger Woods PGA Tour 2004", "game_detection": [ @@ -28413,6 +30301,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Franchise Hockey Manager 2014", "game_detection": [ @@ -28427,6 +30316,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Amazing World", "game_detection": [ @@ -28441,6 +30331,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warehouse and Logistics Simulator", "game_detection": [ @@ -28455,6 +30346,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ichi", "game_detection": [ @@ -28474,6 +30366,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Peggle Deluxe", "game_detection": [ @@ -28495,6 +30388,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Brainpipe", "game_detection": [ @@ -28509,6 +30403,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Left 4 Dead Demo", "game_detection": [ @@ -28523,6 +30418,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Project Root", "game_detection": [ @@ -28537,6 +30433,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cubic Castles", "game_detection": [ @@ -28551,6 +30448,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Red Alert: A Path Beyond", "game_detection": [ @@ -28563,6 +30461,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cabal Online", "game_detection": [ @@ -28591,6 +30490,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Damage Inc.: Pacific Squadron WWII", "game_detection": [ @@ -28604,6 +30504,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tower Unite", "game_detection": [ @@ -28618,6 +30519,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Walking Dead: The Final Season", "game_detection": [ @@ -28631,6 +30533,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BallisticNG", "game_detection": [ @@ -28645,6 +30548,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "F1 2012", "game_detection": [ @@ -28659,6 +30563,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stick It To The Man!", "game_detection": [ @@ -28678,6 +30583,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Repulse", "game_detection": [ @@ -28691,6 +30597,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Knights and Merchants", "game_detection": [ @@ -28705,6 +30612,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "AVSEQ", "game_detection": [ @@ -28719,6 +30627,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fallen: A2P Protocol", "game_detection": [ @@ -28733,6 +30642,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ELEX", "game_detection": [ @@ -28747,6 +30657,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "East India Company: Privateer", "game_detection": [ @@ -28761,6 +30672,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spirits", "game_detection": [ @@ -28775,6 +30687,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Knight Squad", "game_detection": [ @@ -28789,6 +30702,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Brief Karate Foolish", "game_detection": [ @@ -28803,6 +30717,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Arizona Sunshine", "game_detection": [ @@ -28818,6 +30733,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Project Zomboid", "game_detection": [ @@ -28838,6 +30754,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Black Ice", "game_detection": [ @@ -28852,6 +30769,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tom Clancy's Splinter Cell Double Agent", "game_detection": [ @@ -28873,6 +30791,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Labyrinth of Refrain: Coven of Dusk", "game_detection": [ @@ -28883,6 +30802,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Painkiller: Recurring Evil", "game_detection": [ @@ -28897,6 +30817,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Land of Chaos Online", "game_detection": [ @@ -28909,6 +30830,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DragonSoul", "game_detection": [ @@ -28921,6 +30843,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Maneki's Curse", "game_detection": [ @@ -28935,6 +30858,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nestopia", "game_detection": [ @@ -28946,6 +30870,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Collapse", "game_detection": [ @@ -28960,6 +30885,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fastigium", "game_detection": [ @@ -28975,6 +30901,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rock N' Roll Racing", "game_detection": [ @@ -28986,6 +30913,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Age of Empires III: The WarChiefs", "game_detection": [ @@ -28997,6 +30925,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Freddi Fish and the Case of the Missing Kelp Seeds", "game_detection": [ @@ -29011,6 +30940,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Commander Keen Complete Pack", "game_detection": [ @@ -29025,6 +30955,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Thirty Flights of Loving", "game_detection": [ @@ -29039,6 +30970,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Project \"Fire\"", "game_detection": [ @@ -29053,6 +30985,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Armada 2526 Gold Edition", "game_detection": [ @@ -29067,6 +31000,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nation Red", "game_detection": [ @@ -29081,6 +31015,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Putt-Putt Enters the Race", "game_detection": [ @@ -29095,6 +31030,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "So Many Me", "game_detection": [ @@ -29109,6 +31045,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Children of Morta", "game_detection": [ @@ -29119,6 +31056,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jalopy", "game_detection": [ @@ -29133,6 +31071,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mavis Beacon Teaches Typing Family Edition", "game_detection": [ @@ -29147,6 +31086,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Trine 3: The Artifacts of Power", "game_detection": [ @@ -29161,6 +31101,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeon League", "game_detection": [ @@ -29175,6 +31116,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Space Rogue", "game_detection": [ @@ -29189,6 +31131,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "WWE 2K19", "game_detection": [ @@ -29199,6 +31142,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dynasty Warriors 8 Empires", "game_detection": [ @@ -29213,6 +31157,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ascension to the Throne", "game_detection": [ @@ -29232,6 +31177,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RuneScape: Idle Adventures", "game_detection": [ @@ -29246,6 +31192,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eador: Genesis", "game_detection": [ @@ -29276,6 +31223,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeon Fighter Online", "game_detection": [ @@ -29298,6 +31246,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nuclear Throne", "game_detection": [ @@ -29317,6 +31266,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fleet Command", "game_detection": [ @@ -29331,6 +31281,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lost Chronicles of Zerzura", "game_detection": [ @@ -29345,6 +31296,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "X-Plane 11", "game_detection": [ @@ -29358,6 +31310,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rube Works", "game_detection": [ @@ -29372,6 +31325,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wallace and Gromit's Grand Adventures, Episode 3: Muzzled!", "game_detection": [ @@ -29386,6 +31340,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sym", "game_detection": [ @@ -29405,6 +31360,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rescue: Everyday Heroes", "game_detection": [ @@ -29419,6 +31375,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "KickBeat", "game_detection": [ @@ -29433,6 +31390,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ride'em Low Demo", "game_detection": [ @@ -29444,6 +31402,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sins of a Solar Empire: Rebellion", "game_detection": [ @@ -29458,6 +31417,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "JamSouls", "game_detection": [ @@ -29472,6 +31432,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Devil May Cry 4: Special Edition", "game_detection": [ @@ -29486,6 +31447,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Monsters and Medicine", "game_detection": [ @@ -29497,6 +31459,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tom Clancy's Splinter Cell: Pandora Tomorrow", "game_detection": [ @@ -29521,6 +31484,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pixel Puzzles: UndeadZ", "game_detection": [ @@ -29535,6 +31499,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Oddworld: Abe's Exoddus", "game_detection": [ @@ -29559,6 +31524,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hero 108 Online", "game_detection": [ @@ -29571,6 +31537,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tony Hawk's Pro Skater 3", "game_detection": [ @@ -29582,6 +31549,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "Elancia", "game_detection": [ @@ -29594,6 +31562,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fate: Undiscovered Realms", "game_detection": [ @@ -29614,6 +31583,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Saga", "game_detection": [ @@ -29634,6 +31604,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Let the Cat in", "game_detection": [ @@ -29648,6 +31619,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Viscera Clean Up Detail: Shadow Warrior", "game_detection": [ @@ -29662,6 +31634,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Moon Breakers", "game_detection": [ @@ -29676,6 +31649,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Orc Attack: Flatulent Rebellion", "game_detection": [ @@ -29690,6 +31664,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Princess Isabella: Rise of an Heir", "game_detection": [ @@ -29704,6 +31679,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ashes of Creation Apocalypse", "game_detection": [ @@ -29714,6 +31690,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cal Ripken's Real Baseball", "game_detection": [ @@ -29726,6 +31703,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spy Fox: Operation Ozone", "game_detection": [ @@ -29740,6 +31718,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hive Jump", "game_detection": [ @@ -29754,6 +31733,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Forward to the Sky", "game_detection": [ @@ -29768,6 +31748,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pound of Ground", "game_detection": [ @@ -29782,6 +31763,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Blackwell Convergence", "game_detection": [ @@ -29806,6 +31788,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Wizard's Pen", "game_detection": [ @@ -29820,6 +31803,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Myst Online: Uru Live", "game_detection": [ @@ -29832,6 +31816,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Grim Fandango", "game_detection": [ @@ -29843,6 +31828,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Undertale", "game_detection": [ @@ -29857,6 +31843,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Live for Speed", "game_detection": [ @@ -29873,6 +31860,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tropico 5", "game_detection": [ @@ -29887,6 +31875,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Welcome to the Game II", "game_detection": [ @@ -29900,6 +31889,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SWARMRIDERS", "game_detection": [ @@ -29914,6 +31904,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shadowrun", "game_detection": [ @@ -29925,6 +31916,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Football Manager 2006", "game_detection": [ @@ -29936,6 +31928,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Neighbors From Hell", "game_detection": [ @@ -29956,6 +31949,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ShellShock 2: Blood Trails", "game_detection": [ @@ -29967,6 +31961,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Banner Saga: Factions", "game_detection": [ @@ -29981,6 +31976,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Room Two", "game_detection": [ @@ -29995,6 +31991,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BlazBlue: Chronophantasma EXTEND", "game_detection": [ @@ -30009,6 +32006,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Say Goodbye", "game_detection": [ @@ -30023,6 +32021,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Long Journey Home", "game_detection": [ @@ -30037,6 +32036,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Escape Goat", "game_detection": [ @@ -30056,6 +32056,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sam & Max Episode 101: Culture Shock", "game_detection": [ @@ -30075,6 +32076,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "PT Boats: South Gambit", "game_detection": [ @@ -30089,6 +32091,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Howler", "game_detection": [ @@ -30103,6 +32106,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Epic Clicker Journey", "game_detection": [ @@ -30117,6 +32121,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Galactic Assault: Prisoner of Power", "game_detection": [ @@ -30129,6 +32134,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ArcheAge", "game_detection": [ @@ -30168,6 +32174,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Massive Assault: Phantom Renaissance", "game_detection": [ @@ -30182,6 +32189,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Harry Potter Quidditch World Cup", "game_detection": [ @@ -30193,6 +32201,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eragon", "game_detection": [ @@ -30204,6 +32213,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Puzzle Hero", "game_detection": [ @@ -30215,6 +32225,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Soulcaster", "game_detection": [ @@ -30226,6 +32237,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Wild Eight", "game_detection": [ @@ -30240,6 +32252,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Close Combat: First to Fight", "game_detection": [ @@ -30251,6 +32264,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Age of Empires II: The Conquerors", "game_detection": [ @@ -30262,6 +32276,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Surge", "game_detection": [ @@ -30277,6 +32292,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Batman: Arkham Knight", "game_detection": [ @@ -30295,6 +32311,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Breath of Fire IV", "game_detection": [ @@ -30306,6 +32323,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Space Wolf", "game_detection": [ @@ -30320,6 +32338,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "UP", "game_detection": [ @@ -30332,6 +32351,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Submerged", "game_detection": [ @@ -30346,6 +32366,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Manhunt 2", "game_detection": [ @@ -30357,6 +32378,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bounders and Cads", "game_detection": [ @@ -30371,6 +32393,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Salvation Prophecy", "game_detection": [ @@ -30385,6 +32408,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Confrontation", "game_detection": [ @@ -30399,6 +32423,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead Space", "game_detection": [ @@ -30418,6 +32443,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Frag Ops", "game_detection": [ @@ -30431,6 +32457,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hatoful Boyfriend", "game_detection": [ @@ -30450,6 +32477,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Keep Talking and Nobody Explodes", "game_detection": [ @@ -30464,6 +32492,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Black Watchmen", "game_detection": [ @@ -30478,6 +32507,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lexica", "game_detection": [ @@ -30492,6 +32522,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Outer Worlds", "game_detection": [ @@ -30506,6 +32537,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Scrap Garden: The Day Before", "game_detection": [ @@ -30520,6 +32552,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sniper Elite V2", "game_detection": [ @@ -30533,6 +32566,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crazy Taxi", "game_detection": [ @@ -30552,6 +32586,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bumbledore", "game_detection": [ @@ -30566,6 +32601,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Galactic Command Echo Squad SE", "game_detection": [ @@ -30580,6 +32616,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spectraball", "game_detection": [ @@ -30594,6 +32631,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Winged Sakura: Mindy's Arc", "game_detection": [ @@ -30608,6 +32646,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ghost 1.0", "game_detection": [ @@ -30622,6 +32661,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "School of Dragons", "game_detection": [ @@ -30636,6 +32676,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jagged Alliance: Crossfire", "game_detection": [ @@ -30649,6 +32690,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Witch's Yarn", "game_detection": [ @@ -30663,6 +32705,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Space Force Captains", "game_detection": [ @@ -30674,6 +32717,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeons & Dragons Online", "game_detection": [ @@ -30716,6 +32760,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Distant Worlds", "game_detection": [ @@ -30728,6 +32773,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Game Tycoon 1.5", "game_detection": [ @@ -30742,6 +32788,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A Dance of Fire and Ice", "game_detection": [ @@ -30752,6 +32799,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jibs Arcade", "game_detection": [ @@ -30763,6 +32811,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MudRunner", "game_detection": [ @@ -30773,6 +32822,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hold 'Em", "game_detection": [ @@ -30784,6 +32834,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Panzer Tactics HD", "game_detection": [ @@ -30798,6 +32849,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Arctic Combat", "game_detection": [ @@ -30818,6 +32870,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Airscape: The Fall of Gravity", "game_detection": [ @@ -30832,6 +32885,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Poker For Dummies", "game_detection": [ @@ -30843,6 +32897,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deadly Premonition: The Director's Cut", "game_detection": [ @@ -30857,6 +32912,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mercenary Kings", "game_detection": [ @@ -30871,6 +32927,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fatale: Exploring Salome", "game_detection": [ @@ -30885,6 +32942,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Air Conflicts: Pacific Carriers", "game_detection": [ @@ -30899,6 +32957,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Parcel", "game_detection": [ @@ -30913,6 +32972,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Homeworld Remastered Collection", "game_detection": [ @@ -30927,6 +32987,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Might & Magic Heroes Online", "game_detection": [ @@ -30941,6 +33002,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "#killallzombies", "game_detection": [ @@ -30955,6 +33017,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Control Monger", "game_detection": [ @@ -30966,6 +33029,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Under Night In-Birth Exe:Late[st]", "game_detection": [ @@ -30979,6 +33043,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Memoria", "game_detection": [ @@ -30998,6 +33063,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Dawn of War II", "game_detection": [ @@ -31020,6 +33086,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "Dragon Nest", "game_detection": [ @@ -31033,6 +33100,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Khan The Absolute Power", "game_detection": [ @@ -31047,6 +33115,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Surge", "game_detection": [ @@ -31061,6 +33130,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Walking Dead: Season 2", "game_detection": [ @@ -31080,6 +33150,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cult of the Wind", "game_detection": [ @@ -31094,6 +33165,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RADical ROACH", "game_detection": [ @@ -31114,6 +33186,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Summertime Saga", "game_detection": [ @@ -31124,6 +33197,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rooks Keep", "game_detection": [ @@ -31138,6 +33212,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FIFA Soccer 07", "game_detection": [ @@ -31154,6 +33229,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Infinite Game Works Episode 0", "game_detection": [ @@ -31168,6 +33244,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "OVERKILL's The Walking Dead", "game_detection": [ @@ -31182,6 +33259,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gears 5", "game_detection": [ @@ -31196,6 +33274,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Velocity Ultra", "game_detection": [ @@ -31210,6 +33289,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Riff Racer: Race Your Music!", "game_detection": [ @@ -31224,6 +33304,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Victory: The Age of Racing", "game_detection": [ @@ -31243,6 +33324,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ICY", "game_detection": [ @@ -31257,6 +33339,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Thimbleweed Park", "game_detection": [ @@ -31267,6 +33350,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dangerous Waters", "game_detection": [ @@ -31286,6 +33370,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Don't Starve Together", "game_detection": [ @@ -31300,6 +33385,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Codename: Gordon", "game_detection": [ @@ -31314,6 +33400,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Beginner's Guide", "game_detection": [ @@ -31328,6 +33415,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crusader Kings: Deus Vult", "game_detection": [ @@ -31339,6 +33427,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Age of Wushu", "game_detection": [ @@ -31359,6 +33448,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Freestyle Street Basketball", "game_detection": [ @@ -31374,6 +33464,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Toribash", "game_detection": [ @@ -31400,6 +33491,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "AaaaA! - A Reckless Disregard for Gravity", "game_detection": [ @@ -31414,6 +33506,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Medal of Honor: Airborne", "game_detection": [ @@ -31434,6 +33527,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Call of Duty: Black Ops III", "game_detection": [ @@ -31448,6 +33542,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Noct", "game_detection": [ @@ -31462,6 +33557,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Hazard Ops", "game_detection": [ @@ -31475,6 +33571,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zuma's Revenge! - Adventure", "game_detection": [ @@ -31489,6 +33586,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "You Don't Know Jack 6: The Lost Gold", "game_detection": [ @@ -31503,6 +33601,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Evolution RTS", "game_detection": [ @@ -31517,6 +33616,7 @@ ] }, { + "force_display_capture": false, "region": "BR", "title": "CrossFire", "game_detection": [ @@ -31531,6 +33631,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GunZ 2", "game_detection": [ @@ -31545,6 +33646,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BAJA: Edge of Control HD", "game_detection": [ @@ -31559,6 +33661,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "VR: Vacate the Room", "game_detection": [ @@ -31574,6 +33677,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stardew Valley", "game_detection": [ @@ -31593,6 +33697,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Need for Speed: Undercover", "game_detection": [ @@ -31612,6 +33717,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Portal 2", "game_detection": [ @@ -31626,6 +33732,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wake Up", "game_detection": [ @@ -31641,6 +33748,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dirt 3", "game_detection": [ @@ -31661,6 +33769,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Infested Planet", "game_detection": [ @@ -31680,6 +33789,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Dawn of War: Dark Crusade", "game_detection": [ @@ -31699,6 +33809,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ignite", "game_detection": [ @@ -31713,6 +33824,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "Blade & Soul", "game_detection": [ @@ -31726,6 +33838,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Satellite Reign", "game_detection": [ @@ -31745,6 +33858,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Scary Girl", "game_detection": [ @@ -31759,6 +33873,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "EVE Online", "game_detection": [ @@ -31794,6 +33909,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Earth Defense Force 4.1: The Shadow of New Despair", "game_detection": [ @@ -31808,6 +33924,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Marine Sharpshooter II", "game_detection": [ @@ -31822,6 +33939,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Carmageddon: Reincarnation", "game_detection": [ @@ -31836,6 +33954,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Has-Been Heroes", "game_detection": [ @@ -31850,6 +33969,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Flame in the Flood", "game_detection": [ @@ -31864,6 +33984,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Grotesque Tactics: Evil Heroes", "game_detection": [ @@ -31878,6 +33999,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Toca Race Driver 2", "game_detection": [ @@ -31889,6 +34011,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Miasmata", "game_detection": [ @@ -31903,6 +34026,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeon Party", "game_detection": [ @@ -31917,6 +34041,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Yosumin!", "game_detection": [ @@ -31931,6 +34056,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims 2: Kitchen & Bath Interior Design Stuff", "game_detection": [ @@ -31944,6 +34070,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Lord Of The Rings Online", "game_detection": [ @@ -31981,6 +34108,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "PixelJunk Eden", "game_detection": [ @@ -31995,6 +34123,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Urban Trial Freestyle", "game_detection": [ @@ -32009,6 +34138,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Valley", "game_detection": [ @@ -32023,6 +34153,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Turba", "game_detection": [ @@ -32037,6 +34168,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cinders", "game_detection": [ @@ -32056,6 +34188,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "Blade & Soul", "game_detection": [ @@ -32069,6 +34202,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bean's Quest", "game_detection": [ @@ -32080,6 +34214,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Need for Speed: The Run", "game_detection": [ @@ -32091,6 +34226,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Immortal Empire", "game_detection": [ @@ -32105,6 +34241,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Punisher", "game_detection": [ @@ -32118,6 +34255,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fernbus Simulator", "game_detection": [ @@ -32132,6 +34270,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jazzpunk", "game_detection": [ @@ -32151,6 +34290,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tales of Monkey Island 3: Lair of the Leviathan", "game_detection": [ @@ -32170,6 +34310,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Starpoint Gemini Warlords", "game_detection": [ @@ -32184,6 +34325,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dwarfs!? Free-2-Play", "game_detection": [ @@ -32198,6 +34340,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zombie Panic! Source", "game_detection": [ @@ -32212,6 +34355,7 @@ ] }, { + "force_display_capture": false, "region": "UK", "title": "Tom Clancy’s Splinter Cell: Blacklist", "game_detection": [ @@ -32228,6 +34372,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Half-Life 2: Sourceforts", "game_detection": [ @@ -32254,6 +34399,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Penguins Arena: Sedna's World", "game_detection": [ @@ -32268,6 +34414,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sphere III", "game_detection": [ @@ -32289,6 +34436,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Wars Battlefront II", "game_detection": [ @@ -32311,6 +34459,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Civilization III: Play the World", "game_detection": [ @@ -32322,6 +34471,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spelunx and the Caves of Mr. Seudo", "game_detection": [ @@ -32336,6 +34486,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Medal of Honor: Allied Assault: Breakthrough", "game_detection": [ @@ -32348,6 +34499,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lost Planet 3", "game_detection": [ @@ -32362,6 +34514,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "River City Super Sports Challenge ~All Stars Special~", "game_detection": [ @@ -32376,6 +34529,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark Souls II: Scholar of the First Sin", "game_detection": [ @@ -32390,6 +34544,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Convoy", "game_detection": [ @@ -32404,6 +34559,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Theatre of War 3 Korea", "game_detection": [ @@ -32418,6 +34574,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Saints Row: Gat Out of Hell", "game_detection": [ @@ -32432,6 +34589,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Geneforge 3", "game_detection": [ @@ -32446,6 +34604,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ThunderWheels Demo", "game_detection": [ @@ -32460,6 +34619,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Pirate: Caribbean Hunt", "game_detection": [ @@ -32474,6 +34634,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Silent Hunter: Wolves of the Pacific", "game_detection": [ @@ -32486,6 +34647,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Last Word", "game_detection": [ @@ -32500,6 +34662,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Party Hard 2", "game_detection": [ @@ -32510,6 +34673,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead Island Definitive Edition", "game_detection": [ @@ -32524,6 +34688,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Risk II", "game_detection": [ @@ -32543,6 +34708,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Midair", "game_detection": [ @@ -32557,6 +34723,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Farming Simulator 17", "game_detection": [ @@ -32575,6 +34742,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Bunker", "game_detection": [ @@ -32589,6 +34757,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "TrackMania United Forever", "game_detection": [ @@ -32609,6 +34778,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "New Gundam Breaker", "game_detection": [ @@ -32619,6 +34789,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Judge Dredd: Dredd VS Death", "game_detection": [ @@ -32633,6 +34804,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Driver: San Francisco", "game_detection": [ @@ -32652,6 +34824,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Anno Online", "game_detection": [ @@ -32666,6 +34839,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Indiana Jones and the Emperor's Tomb", "game_detection": [ @@ -32678,6 +34852,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Final Fantasy XIII", "game_detection": [ @@ -32693,6 +34868,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crysis Wars", "game_detection": [ @@ -32714,6 +34890,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Anachronox", "game_detection": [ @@ -32728,6 +34905,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Incredipede", "game_detection": [ @@ -32747,6 +34925,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tom Clancy's H.A.W.X.", "game_detection": [ @@ -32773,6 +34952,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Torchlight", "game_detection": [ @@ -32792,6 +34972,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BATTLETECH", "game_detection": [ @@ -32805,6 +34986,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Wars: Jedi Knight: Jedi Academy", "game_detection": [ @@ -32839,6 +35021,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The LEGO Movie Videogame", "game_detection": [ @@ -32861,6 +35044,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Airline Tycoon 2", "game_detection": [ @@ -32875,6 +35059,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Path of Exile", "game_detection": [ @@ -32895,6 +35080,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Procyon", "game_detection": [ @@ -32909,6 +35095,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Hat Man: Shadow Ward", "game_detection": [ @@ -32923,6 +35110,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Europa Universalis IV", "game_detection": [ @@ -32937,6 +35125,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "War Selection", "game_detection": [ @@ -32947,6 +35136,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crystals of Time", "game_detection": [ @@ -32961,6 +35151,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blockland", "game_detection": [ @@ -32980,6 +35171,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Need for Speed Heat", "game_detection": [ @@ -32994,6 +35186,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Adventures of Pip", "game_detection": [ @@ -33008,6 +35201,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Echo of the Wilds", "game_detection": [ @@ -33022,6 +35216,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NHL 07", "game_detection": [ @@ -33033,6 +35228,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hoard", "game_detection": [ @@ -33052,6 +35248,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fieldrunners", "game_detection": [ @@ -33071,6 +35268,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lantern Forge", "game_detection": [ @@ -33085,6 +35283,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Q.U.B.E.", "game_detection": [ @@ -33106,6 +35305,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rustbucket Rumble", "game_detection": [ @@ -33120,6 +35320,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hedgewars", "game_detection": [ @@ -33131,6 +35332,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Medieval II: Total War Kingdoms", "game_detection": [ @@ -33151,6 +35353,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sentinel 3: Homeworld", "game_detection": [ @@ -33165,6 +35368,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "stratO", "game_detection": [ @@ -33179,6 +35383,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Icewind Dale: Heart of Winter", "game_detection": [ @@ -33190,6 +35395,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shining Resonance Refrain", "game_detection": [ @@ -33203,6 +35409,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vortex: The Gateway", "game_detection": [ @@ -33217,6 +35424,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Panda Adventures", "game_detection": [ @@ -33231,6 +35439,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "In Verbis Virtus", "game_detection": [ @@ -33245,6 +35454,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "X: Beyond the Frontier", "game_detection": [ @@ -33259,6 +35469,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Luminary", "game_detection": [ @@ -33284,6 +35495,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rugby League Live 3", "game_detection": [ @@ -33298,6 +35510,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hexcells Infinite", "game_detection": [ @@ -33312,6 +35525,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cogs", "game_detection": [ @@ -33336,6 +35550,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LEGO The Incredibles", "game_detection": [ @@ -33346,6 +35561,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "3079", "game_detection": [ @@ -33358,6 +35574,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sid Meier's Civilization III: Conquests", "game_detection": [ @@ -33369,6 +35586,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Memento Mori 2", "game_detection": [ @@ -33383,6 +35601,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeon Dashers", "game_detection": [ @@ -33402,6 +35621,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Legend of Mir 3", "game_detection": [ @@ -33420,6 +35640,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Making History II: The War of the World", "game_detection": [ @@ -33439,6 +35660,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Abyss Odyssey", "game_detection": [ @@ -33453,6 +35675,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Narcissu 10th Anniversary Anthology Project", "game_detection": [ @@ -33467,6 +35690,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Big Kahuna Reef 2", "game_detection": [ @@ -33478,6 +35702,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nitro Stunt Racing", "game_detection": [ @@ -33490,6 +35715,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gigantic Army", "game_detection": [ @@ -33509,6 +35735,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eryi's Action", "game_detection": [ @@ -33528,6 +35755,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zoo Park", "game_detection": [ @@ -33542,6 +35770,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Counter-Strike Nexon: Zombies", "game_detection": [ @@ -33556,6 +35785,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "South Park: The Fractured But Whole", "game_detection": [ @@ -33578,6 +35808,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chuzzle Deluxe", "game_detection": [ @@ -33597,6 +35828,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MiG-29 Fulcrum", "game_detection": [ @@ -33611,6 +35843,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Holy Avatar vs. Maidens of the Dead", "game_detection": [ @@ -33625,6 +35858,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "XERA: Survival", "game_detection": [ @@ -33635,6 +35869,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Audition", "game_detection": [ @@ -33661,6 +35896,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Silent Hill 3", "game_detection": [ @@ -33672,6 +35908,7 @@ ] }, { + "force_display_capture": false, "region": "RU", "title": "Syndicates of Arkon", "game_detection": [ @@ -33683,6 +35920,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Blackwell Legacy", "game_detection": [ @@ -33707,6 +35945,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Traverser", "game_detection": [ @@ -33721,6 +35960,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Indigo Prophecy", "game_detection": [ @@ -33740,6 +35980,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cursed Mountain", "game_detection": [ @@ -33751,6 +35992,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stealth Bastard", "game_detection": [ @@ -33762,6 +36004,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rose and Time", "game_detection": [ @@ -33773,6 +36016,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Raiders", "game_detection": [ @@ -33787,6 +36031,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Lost Cases of Sherlock Holmes, Vol. 2", "game_detection": [ @@ -33799,6 +36044,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Knight Online", "game_detection": [ @@ -33826,6 +36072,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vampire Mansion: A Linda Hyde Mystery", "game_detection": [ @@ -33842,6 +36089,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Clean'Em Up", "game_detection": [ @@ -33856,6 +36104,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Grand Fantasia", "game_detection": [ @@ -33869,6 +36118,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Assassin's Creed", "game_detection": [ @@ -33889,6 +36139,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Settlers 7: Paths to a Kingdom", "game_detection": [ @@ -33909,6 +36160,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Raycatcher", "game_detection": [ @@ -33923,6 +36175,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heat", "game_detection": [ @@ -33933,6 +36186,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Boundless", "game_detection": [ @@ -33946,6 +36200,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Soul Gambler", "game_detection": [ @@ -33965,6 +36220,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blade & Soul", "game_detection": [ @@ -33979,6 +36235,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chronicles of Mystery: The Scorpio Ritual", "game_detection": [ @@ -33993,6 +36250,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Strike Suit Infinity", "game_detection": [ @@ -34007,6 +36265,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Steam Marines", "game_detection": [ @@ -34026,6 +36285,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Secret Files: Tunguska", "game_detection": [ @@ -34040,6 +36300,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SECRETS OF RÆTIKON", "game_detection": [ @@ -34060,6 +36321,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eldevin", "game_detection": [ @@ -34074,6 +36336,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bardbarian", "game_detection": [ @@ -34093,6 +36356,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mall Tycoon 2", "game_detection": [ @@ -34109,6 +36373,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mythos", "game_detection": [ @@ -34126,6 +36391,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fishing Planet", "game_detection": [ @@ -34140,6 +36406,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sacred Gold", "game_detection": [ @@ -34154,6 +36421,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Into the Dark", "game_detection": [ @@ -34168,6 +36436,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pi Story", "game_detection": [ @@ -34180,6 +36449,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Strategic Command: European Theater", "game_detection": [ @@ -34191,6 +36461,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wartune", "game_detection": [ @@ -34210,6 +36481,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Advent Rising", "game_detection": [ @@ -34236,6 +36508,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tropico 3", "game_detection": [ @@ -34255,6 +36528,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Project of Planets", "game_detection": [ @@ -34267,6 +36541,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blocks That Matter", "game_detection": [ @@ -34281,6 +36556,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "18 Wheels of Steel: Haulin'", "game_detection": [ @@ -34294,6 +36570,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blockstorm", "game_detection": [ @@ -34308,6 +36585,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GRAV", "game_detection": [ @@ -34322,6 +36600,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Penumbra: Black Plague", "game_detection": [ @@ -34342,6 +36621,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bob Came in Pieces", "game_detection": [ @@ -34361,6 +36641,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Clive Barker's Undying", "game_detection": [ @@ -34372,6 +36653,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pan-Pan", "game_detection": [ @@ -34386,6 +36668,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Virtua Tennis 4", "game_detection": [ @@ -34400,6 +36683,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Evil Genius", "game_detection": [ @@ -34420,6 +36704,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Europa 1400: The Guild", "game_detection": [ @@ -34438,6 +36723,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MDK 2 HD", "game_detection": [ @@ -34452,6 +36738,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Microsoft Flight Simulator X", "game_detection": [ @@ -34483,6 +36770,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cho Dengeki Stryker", "game_detection": [ @@ -34497,6 +36785,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Victory At Sea", "game_detection": [ @@ -34511,6 +36800,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "STAR WARS: The Old Republic", "game_detection": [ @@ -34523,6 +36813,7 @@ ] }, { + "force_display_capture": false, "region": "TH", "title": "Chaos Online", "game_detection": [ @@ -34535,6 +36826,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SHENZHEN I/O", "game_detection": [ @@ -34549,6 +36841,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crystal Catacombs", "game_detection": [ @@ -34560,6 +36853,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bloodsports.TV", "game_detection": [ @@ -34574,6 +36868,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Google Earth VR", "game_detection": [ @@ -34589,6 +36884,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "theHunter: Call of the Wild", "game_detection": [ @@ -34603,6 +36899,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Strange Brigade", "game_detection": [ @@ -34616,6 +36913,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Divinity: Original Sin", "game_detection": [ @@ -34640,6 +36938,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sid Meier's Civilization IV: Beyond the Sword", "game_detection": [ @@ -34665,6 +36964,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Grand Theft Auto: San Andreas", "game_detection": [ @@ -34685,6 +36985,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gal*Gun 2", "game_detection": [ @@ -34698,6 +36999,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shelter 2", "game_detection": [ @@ -34717,6 +37019,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Book of Legends", "game_detection": [ @@ -34731,6 +37034,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "My Pet Hotel", "game_detection": [ @@ -34745,6 +37049,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Duelyst", "game_detection": [ @@ -34759,6 +37064,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "I am Setsuna", "game_detection": [ @@ -34773,6 +37079,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chess Titans", "game_detection": [ @@ -34791,6 +37098,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dragon Ball Xenoverse 2", "game_detection": [ @@ -34805,6 +37113,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "Yu Long Zai Tian", "game_detection": [ @@ -34818,6 +37127,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Orcs Must Die! Unchained", "game_detection": [ @@ -34839,6 +37149,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Might & Magic: Clash of Heroes", "game_detection": [ @@ -34853,6 +37164,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Graal Online", "game_detection": [ @@ -34864,6 +37176,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "CSI: NY - The Game", "game_detection": [ @@ -34876,6 +37189,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eversion", "game_detection": [ @@ -34895,6 +37209,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Velocibox", "game_detection": [ @@ -34909,6 +37224,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Avadon 2: The Corruption", "game_detection": [ @@ -34923,6 +37239,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ZOMBI", "game_detection": [ @@ -34937,6 +37254,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ship Simulator Extremes", "game_detection": [ @@ -34951,6 +37269,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Beast of Lycan Isle", "game_detection": [ @@ -34965,6 +37284,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Men of War: Assault Squad 2", "game_detection": [ @@ -34979,6 +37299,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ascendant", "game_detection": [ @@ -34993,6 +37314,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Black & White Bushido", "game_detection": [ @@ -35007,6 +37329,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Trine", "game_detection": [ @@ -35045,6 +37368,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cosmic Trip", "game_detection": [ @@ -35060,6 +37384,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "War Front: Turning Point", "game_detection": [ @@ -35072,6 +37397,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stained", "game_detection": [ @@ -35086,6 +37412,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Amihailu in Dreamland", "game_detection": [ @@ -35100,6 +37427,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battlerite", "game_detection": [ @@ -35114,6 +37442,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jagged Alliance Online", "game_detection": [ @@ -35128,6 +37457,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Disney Infinity", "game_detection": [ @@ -35144,6 +37474,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blood Bowl II", "game_detection": [ @@ -35158,6 +37489,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mother Russia Bleeds", "game_detection": [ @@ -35172,6 +37504,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "PolyDome", "game_detection": [ @@ -35187,6 +37520,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bloop", "game_detection": [ @@ -35207,6 +37541,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2011", "game_detection": [ @@ -35218,6 +37553,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Everspace", "game_detection": [ @@ -35232,6 +37568,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Transcripted", "game_detection": [ @@ -35246,6 +37583,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tiny Troopers", "game_detection": [ @@ -35260,6 +37598,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lunnye Devitsy", "game_detection": [ @@ -35274,6 +37613,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Enemy Territory: Quake Wars", "game_detection": [ @@ -35293,6 +37633,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Archlord", "game_detection": [ @@ -35305,6 +37646,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cranky Cat", "game_detection": [ @@ -35319,6 +37661,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Racecar.io", "game_detection": [ @@ -35333,6 +37676,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Universal Combat", "game_detection": [ @@ -35365,6 +37709,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Commandos 3: Destination Berlin", "game_detection": [ @@ -35392,6 +37737,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Code of Princess", "game_detection": [ @@ -35406,6 +37752,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Half-Life: Blue Shift", "game_detection": [ @@ -35428,6 +37775,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Trainz Simulator 12", "game_detection": [ @@ -35442,6 +37790,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Limberjack", "game_detection": [ @@ -35457,6 +37806,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Niche: a genetics survival game", "game_detection": [ @@ -35471,6 +37821,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Purring Quest", "game_detection": [ @@ -35485,6 +37836,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Braid", "game_detection": [ @@ -35504,6 +37856,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "London Underground Simulator: World of Subways 3", "game_detection": [ @@ -35518,6 +37871,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Edge of Eternity", "game_detection": [ @@ -35528,6 +37882,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Blackwell Epiphany", "game_detection": [ @@ -35542,6 +37897,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Story of Legends", "game_detection": [ @@ -35553,6 +37909,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Core Masters", "game_detection": [ @@ -35566,6 +37923,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dominions 3", "game_detection": [ @@ -35580,6 +37938,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Munin", "game_detection": [ @@ -35594,6 +37953,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Clive Barker's Jericho", "game_detection": [ @@ -35614,6 +37974,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Afterfall: InSanity", "game_detection": [ @@ -35625,6 +37986,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stronghold 2", "game_detection": [ @@ -35644,6 +38006,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Waking Mars", "game_detection": [ @@ -35669,6 +38032,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Stanley Parable", "game_detection": [ @@ -35683,6 +38047,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Total Overdose: A Gunslingers Tale in Mexico", "game_detection": [ @@ -35694,6 +38059,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ice Age: Continental Drift - Arctic Games", "game_detection": [ @@ -35713,6 +38079,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Northgard", "game_detection": [ @@ -35727,6 +38094,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer: End Times - Vermintide", "game_detection": [ @@ -35749,6 +38117,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MTG Arena", "game_detection": [ @@ -35759,6 +38128,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Winning Putt", "game_detection": [ @@ -35780,6 +38150,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spellstone", "game_detection": [ @@ -35794,6 +38165,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dream", "game_detection": [ @@ -35808,6 +38180,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pirates of the Caribbean Online", "game_detection": [ @@ -35821,6 +38194,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RaceRoom Racing Experience", "game_detection": [ @@ -35839,6 +38213,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Time Gentlemen, Please!", "game_detection": [ @@ -35853,6 +38228,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The VR Museum of Fine Art", "game_detection": [ @@ -35868,6 +38244,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "City of Brass", "game_detection": [ @@ -35885,6 +38262,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cargo Commander", "game_detection": [ @@ -35899,6 +38277,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Circuits", "game_detection": [ @@ -35913,6 +38292,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zombie Bowl-O-Rama", "game_detection": [ @@ -35927,6 +38307,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fantasy Westward Journey 2", "game_detection": [ @@ -35940,6 +38321,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bloons TD 6", "game_detection": [ @@ -35950,6 +38332,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shutshimi", "game_detection": [ @@ -35964,6 +38347,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Big Bang Empire", "game_detection": [ @@ -35978,6 +38362,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mystery Case Files: Ravenhearst", "game_detection": [ @@ -35998,6 +38383,7 @@ ] }, { + "force_display_capture": false, "region": "FR", "title": "Dragomon Hunter", "game_detection": [ @@ -36011,6 +38397,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Beowulf", "game_detection": [ @@ -36023,6 +38410,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FlatOut 3", "game_detection": [ @@ -36037,6 +38425,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Wars: Rogue Squadron", "game_detection": [ @@ -36048,6 +38437,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Type: Rider", "game_detection": [ @@ -36067,6 +38457,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tales From The Dragon Mountain 2: The Lair", "game_detection": [ @@ -36081,6 +38472,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "1954 Alcatraz", "game_detection": [ @@ -36095,6 +38487,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SAMOLIOTIK", "game_detection": [ @@ -36109,6 +38502,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Barbie Dreamhouse Party", "game_detection": [ @@ -36123,6 +38517,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dracula: Love Kills", "game_detection": [ @@ -36137,6 +38532,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Workers & Resources: Soviet Republic", "game_detection": [ @@ -36147,6 +38543,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Full Spectrum Warrior: Ten Hammers", "game_detection": [ @@ -36166,6 +38563,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Swords of Ditto", "game_detection": [ @@ -36179,6 +38577,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Last Knight", "game_detection": [ @@ -36199,6 +38598,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Organ Quarter", "game_detection": [ @@ -36214,6 +38614,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Granado Espada", "game_detection": [ @@ -36234,6 +38635,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Brigador", "game_detection": [ @@ -36248,6 +38650,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Defence Alliance 2", "game_detection": [ @@ -36264,6 +38667,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Prison Tycoon 2: Maximum Security", "game_detection": [ @@ -36276,6 +38680,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Assassin's Creed III", "game_detection": [ @@ -36297,6 +38702,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Age of Cavemen", "game_detection": [ @@ -36311,6 +38717,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Happy Wars", "game_detection": [ @@ -36325,6 +38732,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tinertia", "game_detection": [ @@ -36339,6 +38747,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims Carnival: BumperBlast", "game_detection": [ @@ -36350,6 +38759,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "World of Tanks", "game_detection": [ @@ -36363,6 +38773,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alekhine's Gun", "game_detection": [ @@ -36377,6 +38788,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Second Sight", "game_detection": [ @@ -36395,6 +38807,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chaser", "game_detection": [ @@ -36414,6 +38827,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lara Croft and the Guardian of Light", "game_detection": [ @@ -36428,6 +38842,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crime Life: Gang Wars", "game_detection": [ @@ -36439,6 +38854,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "CLANNAD Side Stories", "game_detection": [ @@ -36453,6 +38869,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Conqueror's Blade", "game_detection": [ @@ -36463,6 +38880,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Haunted: Hells Reach", "game_detection": [ @@ -36477,6 +38895,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Walking Dead: A New Frontier", "game_detection": [ @@ -36491,6 +38910,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "I Shall Remain", "game_detection": [ @@ -36510,6 +38930,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rome Total War: Barbarian Invasion", "game_detection": [ @@ -36521,6 +38942,7 @@ ] }, { + "force_display_capture": false, "region": "RU", "title": "PlanetSide 2", "game_detection": [ @@ -36533,6 +38955,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Q*bert: Rebooted", "game_detection": [ @@ -36547,6 +38970,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Critter Crunch", "game_detection": [ @@ -36561,6 +38985,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "World of Final Fantasy", "game_detection": [ @@ -36575,6 +39000,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Castle of Illusion", "game_detection": [ @@ -36589,6 +39015,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hand of the Gods", "game_detection": [ @@ -36602,6 +39029,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Toontown Online", "game_detection": [ @@ -36625,6 +39053,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Tom Clancy's Ghost Recon: Future Soldier", "game_detection": [ @@ -36638,6 +39067,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shattered Galaxy", "game_detection": [ @@ -36649,6 +39079,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Doorways", "game_detection": [ @@ -36668,6 +39099,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Closers", "game_detection": [ @@ -36682,6 +39114,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead Man's Draw", "game_detection": [ @@ -36696,6 +39129,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Empire Earth 2: The Art of Supremacy", "game_detection": [ @@ -36707,6 +39141,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wayward Manor", "game_detection": [ @@ -36721,6 +39156,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Breed", "game_detection": [ @@ -36733,6 +39169,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Aarklash: Legacy", "game_detection": [ @@ -36747,6 +39184,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "UFO: Aftermath", "game_detection": [ @@ -36766,6 +39204,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Legend of Edda", "game_detection": [ @@ -36780,6 +39219,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DOOM 3 BFG Edition", "game_detection": [ @@ -36794,6 +39234,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Evolution VR", "game_detection": [ @@ -36809,6 +39250,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ashes Cricket 2013", "game_detection": [ @@ -36823,6 +39265,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Science Girls!", "game_detection": [ @@ -36837,6 +39280,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Descent 2", "game_detection": [ @@ -36856,6 +39300,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Freddi Fish and Luther's Maze Madness", "game_detection": [ @@ -36870,6 +39315,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Magic The Gathering Online", "game_detection": [ @@ -36887,6 +39333,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "F1 Race Stars", "game_detection": [ @@ -36901,6 +39348,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Countless Rooms of Death", "game_detection": [ @@ -36913,6 +39361,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Madden NFL 2004", "game_detection": [ @@ -36925,6 +39374,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SurrealVR", "game_detection": [ @@ -36940,6 +39390,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "JASF: Janes Advanced Strike Fighters", "game_detection": [ @@ -36960,6 +39411,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Luxor Evolved", "game_detection": [ @@ -36974,6 +39426,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ultimate Chicken Horse", "game_detection": [ @@ -36988,6 +39441,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lovers of Aether", "game_detection": [ @@ -37002,6 +39456,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Remnant: From the Ashes", "game_detection": [ @@ -37020,6 +39475,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Aura Kingdom", "game_detection": [ @@ -37043,6 +39499,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Runespell: Overture", "game_detection": [ @@ -37062,6 +39519,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "Digimon Masters Online", "game_detection": [ @@ -37074,6 +39532,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Scrap Mechanic", "game_detection": [ @@ -37088,6 +39547,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Divinity II: Developer's Cut", "game_detection": [ @@ -37108,6 +39568,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hack, Slash, Loot", "game_detection": [ @@ -37127,6 +39588,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Need for Speed Most Wanted", "game_detection": [ @@ -37138,6 +39600,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Onward", "game_detection": [ @@ -37152,6 +39615,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Hunter", "game_detection": [ @@ -37163,6 +39627,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nancy Drew: Danger on Deception Island", "game_detection": [ @@ -37177,6 +39642,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rulers of Nations", "game_detection": [ @@ -37188,6 +39654,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "J.U.L.I.A.: Among the Stars", "game_detection": [ @@ -37203,6 +39670,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Venice Deluxe", "game_detection": [ @@ -37223,6 +39691,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jump Force", "game_detection": [ @@ -37233,6 +39702,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tachyon: The Fringe", "game_detection": [ @@ -37247,6 +39717,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "it's always monday", "game_detection": [ @@ -37261,6 +39732,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bulletstorm: Full Clip Edition", "game_detection": [ @@ -37275,6 +39747,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Strife", "game_detection": [ @@ -37303,6 +39776,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Six Feet Under", "game_detection": [ @@ -37318,6 +39792,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wrestling MPire 2008: Career Edition", "game_detection": [ @@ -37330,6 +39805,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sacred 2: Fallen Angel", "game_detection": [ @@ -37349,6 +39825,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Din's Curse", "game_detection": [ @@ -37368,6 +39845,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Myst V: End of Ages", "game_detection": [ @@ -37393,6 +39871,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Prison Tycoon 3: Lockdown", "game_detection": [ @@ -37413,6 +39892,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Victoria: An Empire Under the Sun", "game_detection": [ @@ -37424,6 +39904,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "In Case of Emergency, Release Raptor", "game_detection": [ @@ -37438,6 +39919,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jack Nicklaus Perfect Golf", "game_detection": [ @@ -37452,6 +39934,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Brothers in Arms: Earned in Blood Demo", "game_detection": [ @@ -37465,6 +39948,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Strategic War in Europe", "game_detection": [ @@ -37484,6 +39968,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Cycle", "game_detection": [ @@ -37498,6 +39983,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stacking", "game_detection": [ @@ -37517,6 +40003,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Secret of Monkey Island: Special Edition", "game_detection": [ @@ -37531,6 +40018,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tactical Ops: Assault on Terror", "game_detection": [ @@ -37542,6 +40030,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Night of the Rabbit", "game_detection": [ @@ -37556,6 +40045,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Armageddon", "game_detection": [ @@ -37570,6 +40060,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Thinking with Time Machine", "game_detection": [ @@ -37584,6 +40075,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SteamHammerVR", "game_detection": [ @@ -37599,6 +40091,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "WonderKing", "game_detection": [ @@ -37617,6 +40110,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Band of Bugs", "game_detection": [ @@ -37628,6 +40122,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Westport Independent", "game_detection": [ @@ -37642,6 +40137,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bioshock 2 Remastered", "game_detection": [ @@ -37656,6 +40152,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Honor in Vengeance II", "game_detection": [ @@ -37667,6 +40164,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Maplestory 2", "game_detection": [ @@ -37681,6 +40179,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Maelstrom", "game_detection": [ @@ -37692,6 +40191,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Naruto Shippuden: Ultimate Ninja Storm Revolution", "game_detection": [ @@ -37706,6 +40206,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Silverfall", "game_detection": [ @@ -37725,6 +40226,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Garshasp: Temple of the Dragon", "game_detection": [ @@ -37739,6 +40241,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Flywrench", "game_detection": [ @@ -37753,6 +40256,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Krazy Aces", "game_detection": [ @@ -37764,6 +40268,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battlefield 2", "game_detection": [ @@ -37784,6 +40289,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nancy Drew: Curse of Blackmoor Manor", "game_detection": [ @@ -37798,6 +40304,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Steamalot: Epoch's Journey", "game_detection": [ @@ -37809,6 +40316,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark Horizons: Mechanized Corps", "game_detection": [ @@ -37823,6 +40331,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wasteland Angel", "game_detection": [ @@ -37837,6 +40346,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FAR: Lone Sails", "game_detection": [ @@ -37850,6 +40360,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Forest", "game_detection": [ @@ -37871,6 +40382,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Midnight Mysteries 3: Devil on the Mississippi", "game_detection": [ @@ -37885,6 +40397,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead Mountaineer's Hotel", "game_detection": [ @@ -37899,6 +40412,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Summoner", "game_detection": [ @@ -37913,6 +40427,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Theme Park Studio", "game_detection": [ @@ -37927,6 +40442,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Doodle God", "game_detection": [ @@ -37941,6 +40457,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "TrackMania Nations Forever", "game_detection": [ @@ -37961,6 +40478,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Disorder", "game_detection": [ @@ -37975,6 +40493,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FIST OF AWESOME", "game_detection": [ @@ -37994,6 +40513,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Multiwinia", "game_detection": [ @@ -38014,6 +40534,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Towtruck Simulator 2015", "game_detection": [ @@ -38028,6 +40549,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Powerboat Racing: Pure Power & Whiplash", "game_detection": [ @@ -38039,6 +40561,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pivvot", "game_detection": [ @@ -38053,6 +40576,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Simplz Zoo", "game_detection": [ @@ -38067,6 +40591,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Defender’s Quest", "game_detection": [ @@ -38081,6 +40606,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RIP 2: Strike Back", "game_detection": [ @@ -38095,6 +40621,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chester", "game_detection": [ @@ -38106,6 +40633,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Glest", "game_detection": [ @@ -38117,6 +40645,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RIDE 3", "game_detection": [ @@ -38127,6 +40656,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Worms: World Party", "game_detection": [ @@ -38138,6 +40668,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Putt-Putt Joins the Circus", "game_detection": [ @@ -38152,6 +40683,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Flyff: Fly for Fun!", "game_detection": [ @@ -38184,6 +40716,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shiftlings", "game_detection": [ @@ -38198,6 +40731,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Senko no Ronde 2", "game_detection": [ @@ -38212,6 +40746,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sniper Ghost Warrior 3", "game_detection": [ @@ -38226,6 +40761,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Aika Online", "game_detection": [ @@ -38244,6 +40780,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The SKIES", "game_detection": [ @@ -38258,6 +40795,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kynseed", "game_detection": [ @@ -38268,6 +40806,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lifeless Planet", "game_detection": [ @@ -38287,6 +40826,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "X4: Foundations", "game_detection": [ @@ -38297,6 +40837,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kaptain Brawe: A Brawe New World", "game_detection": [ @@ -38311,6 +40852,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Them's Fightin' Herds", "game_detection": [ @@ -38324,6 +40866,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cave Story Plus", "game_detection": [ @@ -38343,6 +40886,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Perfect World", "game_detection": [ @@ -38355,6 +40899,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pressure Demo", "game_detection": [ @@ -38366,6 +40911,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Doki Doki Literature Club!", "game_detection": [ @@ -38380,6 +40926,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gardens Inc. 2: The Road to Fame", "game_detection": [ @@ -38394,6 +40941,7 @@ ] }, { + "force_display_capture": false, "region": "BR", "title": "Warface", "game_detection": [ @@ -38407,6 +40955,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeon Warfare", "game_detection": [ @@ -38421,6 +40970,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "AquaNox 2: Revelation", "game_detection": [ @@ -38435,6 +40985,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Banished", "game_detection": [ @@ -38471,6 +41022,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Major/Minor", "game_detection": [ @@ -38485,6 +41037,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Darkout", "game_detection": [ @@ -38499,6 +41052,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Out There: Ω Edition", "game_detection": [ @@ -38513,6 +41067,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vintage Year", "game_detection": [ @@ -38527,6 +41082,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Agatha Christie: And Then There Were None", "game_detection": [ @@ -38541,6 +41097,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "WARSHIFT", "game_detection": [ @@ -38555,6 +41112,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alpha Zylon", "game_detection": [ @@ -38569,6 +41127,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Magical Battle Festa", "game_detection": [ @@ -38583,6 +41142,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Golf It!", "game_detection": [ @@ -38596,6 +41156,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "World of Battles", "game_detection": [ @@ -38609,6 +41170,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2018", "game_detection": [ @@ -38629,6 +41191,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dream of Mirror Online", "game_detection": [ @@ -38656,6 +41219,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Knight & Damsel", "game_detection": [ @@ -38670,6 +41234,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Duke Nukem Forever Demo", "game_detection": [ @@ -38684,6 +41249,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Life is Feudal: Your Own", "game_detection": [ @@ -38698,6 +41264,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nosferatu: The Wrath of Malachi", "game_detection": [ @@ -38712,6 +41279,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pinball Arcade", "game_detection": [ @@ -38726,6 +41294,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Assassin's Creed: Rogue", "game_detection": [ @@ -38747,6 +41316,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Catz 2", "game_detection": [ @@ -38758,6 +41328,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Audiosurf 2", "game_detection": [ @@ -38772,6 +41343,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Time Leap Paradise SUPER LIVE!", "game_detection": [ @@ -38787,6 +41359,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "You Are Empty", "game_detection": [ @@ -38798,6 +41371,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bad Hotel", "game_detection": [ @@ -38817,6 +41391,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shadowgate", "game_detection": [ @@ -38831,6 +41406,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Age of Pirates 2: City of Abandoned Ships", "game_detection": [ @@ -38842,6 +41418,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Colin Mcrae Rally 3", "game_detection": [ @@ -38853,6 +41430,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Red Bull X-Fighters", "game_detection": [ @@ -38867,6 +41445,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sacred 2 Gold", "game_detection": [ @@ -38881,6 +41460,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ku: Shroud of the Morrigan", "game_detection": [ @@ -38895,6 +41475,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Age of Empires III: Complete Collection", "game_detection": [ @@ -38925,6 +41506,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lunia Chronicles", "game_detection": [ @@ -38939,6 +41521,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Retro City Rampage", "game_detection": [ @@ -38958,6 +41541,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pixel Puzzles: Japan", "game_detection": [ @@ -38972,6 +41556,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alone in the Dark: The New Nightmare", "game_detection": [ @@ -38986,6 +41571,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Into The Unknown", "game_detection": [ @@ -39000,6 +41586,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Coldfire Keep", "game_detection": [ @@ -39014,6 +41601,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Worlds Adrift Island Creator", "game_detection": [ @@ -39028,6 +41616,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Organ Trail: Director's Cut", "game_detection": [ @@ -39047,6 +41636,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "1000 Amps", "game_detection": [ @@ -39061,6 +41651,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Samurai Warriors 4-II", "game_detection": [ @@ -39075,6 +41666,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Age of Empires: The Rise of Rome", "game_detection": [ @@ -39091,6 +41683,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shufflepuck Cantina Deluxe", "game_detection": [ @@ -39110,6 +41703,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DogFighter", "game_detection": [ @@ -39124,6 +41718,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Crossfire", "game_detection": [ @@ -39136,6 +41731,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stranded II", "game_detection": [ @@ -39147,6 +41743,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Prospekt", "game_detection": [ @@ -39161,6 +41758,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Major League Baseball 2K11", "game_detection": [ @@ -39180,6 +41778,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crown and Council", "game_detection": [ @@ -39194,6 +41793,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Birth of America", "game_detection": [ @@ -39205,6 +41805,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "7D Game", "game_detection": [ @@ -39220,6 +41821,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ascension", "game_detection": [ @@ -39231,6 +41833,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heroes & Generals", "game_detection": [ @@ -39245,6 +41848,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chicken Shoot 2", "game_detection": [ @@ -39259,6 +41863,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Everest Poker", "game_detection": [ @@ -39272,6 +41877,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Descent: Road to Legend", "game_detection": [ @@ -39286,6 +41892,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Harry Potter and the Deathly Hallows: Part 1", "game_detection": [ @@ -39298,6 +41905,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Humanity Asset", "game_detection": [ @@ -39312,6 +41920,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Killing Floor", "game_detection": [ @@ -39326,6 +41935,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eets", "game_detection": [ @@ -39346,6 +41956,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead Horde", "game_detection": [ @@ -39360,6 +41971,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "STAR WARS Jedi: Fallen Order™", "game_detection": [ @@ -39370,6 +41982,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Digger Online", "game_detection": [ @@ -39383,6 +41996,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Armello", "game_detection": [ @@ -39397,6 +42011,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rhiannon: Curse of the Four Branches", "game_detection": [ @@ -39418,6 +42033,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Last Man Standing", "game_detection": [ @@ -39432,6 +42048,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Holy Potatoes! A Spy Story?!", "game_detection": [ @@ -39442,6 +42059,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warframe", "game_detection": [ @@ -39482,6 +42100,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ninja Reflex: Steamworks Edition", "game_detection": [ @@ -39497,6 +42116,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Orcs Must Die! 2", "game_detection": [ @@ -39511,6 +42131,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Karateka", "game_detection": [ @@ -39525,6 +42146,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Dragon's Prophet", "game_detection": [ @@ -39538,6 +42160,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Homeworld", "game_detection": [ @@ -39554,6 +42177,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hello Neighbor", "game_detection": [ @@ -39576,6 +42200,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungelot: Shattered Lands", "game_detection": [ @@ -39590,6 +42215,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Arma Tactics", "game_detection": [ @@ -39604,6 +42230,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "STARWHAL: Just the Tip", "game_detection": [ @@ -39618,6 +42245,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dreadnought", "game_detection": [ @@ -39628,6 +42256,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Touhou Luna Nights", "game_detection": [ @@ -39638,6 +42267,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vertiginous Golf", "game_detection": [ @@ -39652,6 +42282,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "World War 3", "game_detection": [ @@ -39662,6 +42293,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Whispered World: Special Edition", "game_detection": [ @@ -39681,6 +42313,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NBA 2K14", "game_detection": [ @@ -39695,6 +42328,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dicey Dungeons", "game_detection": [ @@ -39705,6 +42339,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Penny Arcade Adventures: On the Rain-Slick Precipice of Darkness Episode Two", "game_detection": [ @@ -39716,6 +42351,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cradle of Persia", "game_detection": [ @@ -39730,6 +42366,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pineapple Smash Crew", "game_detection": [ @@ -39744,6 +42381,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cake Mania 2: Jill's Next Adventure!", "game_detection": [ @@ -39758,6 +42396,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Space Ace", "game_detection": [ @@ -39772,6 +42411,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nuclear Unicorn Force", "game_detection": [ @@ -39783,6 +42423,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Reverse Crawl", "game_detection": [ @@ -39797,6 +42438,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Unearthed", "game_detection": [ @@ -39811,6 +42453,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Yomawari: Night Alone", "game_detection": [ @@ -39825,6 +42468,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Call of Duty: World at War Beta", "game_detection": [ @@ -39836,6 +42480,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Waren Story", "game_detection": [ @@ -39850,6 +42495,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tom Clancy's Rainbow Six: Rogue Spear", "game_detection": [ @@ -39861,6 +42507,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Front Mission Evolved", "game_detection": [ @@ -39875,6 +42522,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "King Arthur: The Role-Playing Wargame", "game_detection": [ @@ -39889,6 +42537,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "How to Survive", "game_detection": [ @@ -39903,6 +42552,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Demolition Master 3D", "game_detection": [ @@ -39917,6 +42567,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wasteland Survival", "game_detection": [ @@ -39927,6 +42578,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark Age of Camelot: Labyrinth of the Minotaur", "game_detection": [ @@ -39939,6 +42591,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DinerTown Detective Agency", "game_detection": [ @@ -39953,6 +42606,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Unworthy", "game_detection": [ @@ -39966,6 +42620,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MAGIX Samplitude Music Studio 2014", "game_detection": [ @@ -39980,6 +42635,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sam & Max: The Devil's Playhouse - The Penal Zone", "game_detection": [ @@ -39994,6 +42650,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Revenge of the Titans", "game_detection": [ @@ -40013,6 +42670,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Line of Sight", "game_detection": [ @@ -40027,6 +42685,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deponia: The Complete Journey", "game_detection": [ @@ -40041,6 +42700,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hedone", "game_detection": [ @@ -40054,6 +42714,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Atooms to Moolecules Demo", "game_detection": [ @@ -40068,6 +42729,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cognition: Episode 1 - The Hangman", "game_detection": [ @@ -40079,6 +42741,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shop Heroes", "game_detection": [ @@ -40093,6 +42756,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Full Mojo Rampage", "game_detection": [ @@ -40113,6 +42777,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Epigenesis", "game_detection": [ @@ -40128,6 +42793,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Great Art Race", "game_detection": [ @@ -40142,6 +42808,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Toren", "game_detection": [ @@ -40156,6 +42823,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Ship", "game_detection": [ @@ -40170,6 +42838,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nobunaga's Ambition: Sphere of Influence", "game_detection": [ @@ -40184,6 +42853,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sun Will Rise", "game_detection": [ @@ -40198,6 +42868,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Silverfall: Earth Awakening", "game_detection": [ @@ -40212,6 +42883,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Princess Isabella: Return of the Curse", "game_detection": [ @@ -40226,6 +42898,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Oddworld: Stranger's Wrath", "game_detection": [ @@ -40252,6 +42925,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Legend of Dungeon", "game_detection": [ @@ -40271,6 +42945,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vagante", "game_detection": [ @@ -40285,6 +42960,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Wars Jedi Knight II: Jedi Outcast", "game_detection": [ @@ -40333,6 +43009,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sins of a Solar Empire: Trinity", "game_detection": [ @@ -40347,6 +43024,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battle: Los Angeles", "game_detection": [ @@ -40361,6 +43039,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tricky Towers", "game_detection": [ @@ -40374,6 +43053,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Numba", "game_detection": [ @@ -40388,6 +43068,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Diadra Empty", "game_detection": [ @@ -40402,6 +43083,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Color Symphony 2", "game_detection": [ @@ -40416,6 +43098,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Call of Duty: Ghosts", "game_detection": [ @@ -40438,6 +43121,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jewel Quest Solitaire 2", "game_detection": [ @@ -40449,6 +43133,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeon of the Endless", "game_detection": [ @@ -40463,6 +43148,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cube & Star: An Arbitrary Love", "game_detection": [ @@ -40489,6 +43175,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Passing Pineview Forest", "game_detection": [ @@ -40503,6 +43190,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Galacide", "game_detection": [ @@ -40517,6 +43205,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shaolin vs Wutang", "game_detection": [ @@ -40530,6 +43219,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vector Thrust", "game_detection": [ @@ -40549,6 +43239,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Starjack Online", "game_detection": [ @@ -40561,6 +43252,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "sZone Online", "game_detection": [ @@ -40575,6 +43267,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Monster Loves You!", "game_detection": [ @@ -40589,6 +43282,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "iBomber Defense", "game_detection": [ @@ -40603,6 +43297,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NASCAR The Game: 2013", "game_detection": [ @@ -40617,6 +43312,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Minesweeper", "game_detection": [ @@ -40647,6 +43343,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Half-Life: Deathmatch Source", "game_detection": [ @@ -40661,6 +43358,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LEGO Jurassic World", "game_detection": [ @@ -40675,6 +43373,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Arcane Worlds", "game_detection": [ @@ -40689,6 +43388,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Man Of Prey", "game_detection": [ @@ -40703,6 +43403,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shoppe Keep", "game_detection": [ @@ -40717,6 +43418,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DUSK", "game_detection": [ @@ -40730,6 +43432,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RaiderZ", "game_detection": [ @@ -40756,6 +43459,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "My Riding Stables: Life with Horses", "game_detection": [ @@ -40770,6 +43474,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crimsonland", "game_detection": [ @@ -40789,6 +43494,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shocking Void", "game_detection": [ @@ -40800,6 +43506,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims 2", "game_detection": [ @@ -40811,6 +43518,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nyctophilia", "game_detection": [ @@ -40825,6 +43533,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Machinarium", "game_detection": [ @@ -40856,6 +43565,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2019 Lite", "game_detection": [ @@ -40866,6 +43576,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mercenaries 2: World in Flames", "game_detection": [ @@ -40877,6 +43588,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spaceforce Homeworld", "game_detection": [ @@ -40891,6 +43603,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hired Guns: The Jagged Edge", "game_detection": [ @@ -40905,6 +43618,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "New Star Soccer 5", "game_detection": [ @@ -40924,6 +43638,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wizard of Legend", "game_detection": [ @@ -40937,6 +43652,7 @@ ] }, { + "force_display_capture": false, "region": "BR", "title": "Forsaken", "game_detection": [ @@ -40951,6 +43667,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Giana Sisters: Twisted Dreams", "game_detection": [ @@ -40972,6 +43689,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Imperial Glory", "game_detection": [ @@ -40991,6 +43709,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nuclear Unicorn Force Demo", "game_detection": [ @@ -41002,6 +43721,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Camera Obscura", "game_detection": [ @@ -41016,6 +43736,7 @@ ] }, { + "force_display_capture": false, "region": "RU", "title": "WarSide", "game_detection": [ @@ -41030,6 +43751,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Law & Order: Legacies", "game_detection": [ @@ -41044,6 +43766,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Elven Legacy: Siege", "game_detection": [ @@ -41058,6 +43781,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Call of Duty: Advanced Warfare", "game_detection": [ @@ -41080,6 +43804,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Will Fight for Food", "game_detection": [ @@ -41091,6 +43816,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Holy Potatoes! We’re in Space?!", "game_detection": [ @@ -41105,6 +43831,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "Legend of Darkness", "game_detection": [ @@ -41117,6 +43844,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MotoGP 2", "game_detection": [ @@ -41128,6 +43856,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Grandia II", "game_detection": [ @@ -41139,6 +43868,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Worms Blast", "game_detection": [ @@ -41153,6 +43883,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nancy Drew: Warnings at Waverly Academy", "game_detection": [ @@ -41167,6 +43898,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Luxor 2 HD", "game_detection": [ @@ -41181,6 +43913,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fish Tycoon", "game_detection": [ @@ -41195,6 +43928,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heroes of the Storm", "game_detection": [ @@ -41214,6 +43948,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Opus Magnum", "game_detection": [ @@ -41227,6 +43962,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warsow", "game_detection": [ @@ -41238,6 +43974,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chip", "game_detection": [ @@ -41252,6 +43989,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "TalesWeaver", "game_detection": [ @@ -41264,6 +44002,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Scratches: Directors Cut", "game_detection": [ @@ -41278,6 +44017,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Indiana Jones and the Infernal Machine", "game_detection": [ @@ -41290,6 +44030,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Age of Magic", "game_detection": [ @@ -41304,6 +44045,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MOBIUS FINAL FANTASY", "game_detection": [ @@ -41318,6 +44060,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FIFA Soccer 06", "game_detection": [ @@ -41329,6 +44072,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Flesh Eaters", "game_detection": [ @@ -41343,6 +44087,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Insurgency: Modern Infantry Combat", "game_detection": [ @@ -41357,6 +44102,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Everyday Genius SquareLogic", "game_detection": [ @@ -41376,6 +44122,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FIFA 18", "game_detection": [ @@ -41387,6 +44134,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hacker Evolution Duality", "game_detection": [ @@ -41401,6 +44149,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bus Driver", "game_detection": [ @@ -41422,6 +44171,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Influent", "game_detection": [ @@ -41441,6 +44191,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Storm of Spears", "game_detection": [ @@ -41455,6 +44206,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Color Symphony", "game_detection": [ @@ -41469,6 +44221,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Puzzle Platformer Deluxe", "game_detection": [ @@ -41483,6 +44236,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "Freestyle2: Street Basketball", "game_detection": [ @@ -41495,6 +44249,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Reigns", "game_detection": [ @@ -41509,6 +44264,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Planescape: Torment", "game_detection": [ @@ -41520,6 +44276,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "How To Survive: Third Person", "game_detection": [ @@ -41534,6 +44291,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GRID", "game_detection": [ @@ -41553,6 +44311,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "eXceed 3rd – Jade Penetrate Black Package", "game_detection": [ @@ -41573,6 +44332,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Edna and Harvey: The Breakout", "game_detection": [ @@ -41597,6 +44357,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cyto", "game_detection": [ @@ -41611,6 +44372,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Runaway: A Twist of Fate", "game_detection": [ @@ -41625,6 +44387,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pirate Galaxy", "game_detection": [ @@ -41638,6 +44401,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Faces of War", "game_detection": [ @@ -41657,6 +44421,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Galactic Civilizations II: Twilight of the Arnor", "game_detection": [ @@ -41669,6 +44434,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Skylanders: Spyro's Adventure", "game_detection": [ @@ -41680,6 +44446,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Silence", "game_detection": [ @@ -41694,6 +44461,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Grass Simulator", "game_detection": [ @@ -41708,6 +44476,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Recruits", "game_detection": [ @@ -41719,6 +44488,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dyscourse", "game_detection": [ @@ -41733,6 +44503,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Majesty", "game_detection": [ @@ -41745,6 +44516,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BZFlag", "game_detection": [ @@ -41757,6 +44529,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Theatre Of The Absurd", "game_detection": [ @@ -41771,6 +44544,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Warlords", "game_detection": [ @@ -41783,6 +44557,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Riders of Icarus", "game_detection": [ @@ -41797,6 +44572,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FIFA Manager 12", "game_detection": [ @@ -41808,6 +44584,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Trace Vector", "game_detection": [ @@ -41822,6 +44599,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "The Elder Scrolls Online", "game_detection": [ @@ -41835,6 +44613,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SpeedRunners", "game_detection": [ @@ -41849,6 +44628,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hades", "game_detection": [ @@ -41863,6 +44643,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jotun", "game_detection": [ @@ -41877,6 +44658,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chroma", "game_detection": [ @@ -41891,6 +44673,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Found", "game_detection": [ @@ -41906,6 +44689,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Bridge", "game_detection": [ @@ -41925,6 +44709,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "1... 2... 3... Kick It!", "game_detection": [ @@ -41939,6 +44724,7 @@ ] }, { + "force_display_capture": false, "region": "BR", "title": "Combat Arms", "game_detection": [ @@ -41952,6 +44738,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SWIFT☆STITCH", "game_detection": [ @@ -41963,6 +44750,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shadow Ops: Red Mercury", "game_detection": [ @@ -41977,6 +44765,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tom Clancy’s EndWar Online", "game_detection": [ @@ -41991,6 +44780,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Divinity: Dragon Commander", "game_detection": [ @@ -42010,6 +44800,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "UTOPIA 9", "game_detection": [ @@ -42024,6 +44815,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heileen 2: The Hands of Fate", "game_detection": [ @@ -42038,6 +44830,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Exile's End", "game_detection": [ @@ -42052,6 +44845,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "James Bond 007: Nightfire", "game_detection": [ @@ -42063,6 +44857,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dawn of Man", "game_detection": [ @@ -42074,6 +44869,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Asteria", "game_detection": [ @@ -42088,6 +44884,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dragon's Lair II: Time Warp", "game_detection": [ @@ -42102,6 +44899,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "StarDrive", "game_detection": [ @@ -42116,6 +44914,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A Walk in the Dark", "game_detection": [ @@ -42135,6 +44934,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cosmochoria", "game_detection": [ @@ -42150,6 +44950,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eximius: Seize the Frontline", "game_detection": [ @@ -42160,6 +44961,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ms. Splosion Man", "game_detection": [ @@ -42174,6 +44976,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Metal Gear Solid V: The Phantom Pain", "game_detection": [ @@ -42188,6 +44991,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fibrillation", "game_detection": [ @@ -42201,6 +45005,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro Cycling Manager 2014", "game_detection": [ @@ -42215,6 +45020,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Monaco: What's Yours is Mine", "game_detection": [ @@ -42234,6 +45040,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sonic Lost World", "game_detection": [ @@ -42248,6 +45055,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zombie Army Trilogy", "game_detection": [ @@ -42262,6 +45070,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Colin McRae Rally 04", "game_detection": [ @@ -42273,6 +45082,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wargame: European Escalation", "game_detection": [ @@ -42287,6 +45097,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "TesserAct", "game_detection": [ @@ -42301,6 +45112,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Obduction", "game_detection": [ @@ -42315,6 +45127,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NASCAR Racing 3", "game_detection": [ @@ -42326,6 +45139,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Floating Point", "game_detection": [ @@ -42345,6 +45159,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Everlight of Magic & Power", "game_detection": [ @@ -42357,6 +45172,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Binding of Isaac", "game_detection": [ @@ -42381,6 +45197,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Magic Workstation", "game_detection": [ @@ -42392,6 +45209,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nancy Drew: Ransom of the Seven Ships", "game_detection": [ @@ -42406,6 +45224,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead Space 3", "game_detection": [ @@ -42417,6 +45236,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Check vs Mate", "game_detection": [ @@ -42439,6 +45259,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tiny and Big: Grandpa's Leftovers", "game_detection": [ @@ -42459,6 +45280,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Castle Doctrine", "game_detection": [ @@ -42473,6 +45295,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rocket Mania Deluxe", "game_detection": [ @@ -42494,6 +45317,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fallout 2", "game_detection": [ @@ -42513,6 +45337,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NieR: Automata", "game_detection": [ @@ -42527,6 +45352,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "School Bus Fun", "game_detection": [ @@ -42541,6 +45367,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DEADBOLT", "game_detection": [ @@ -42555,6 +45382,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Elements", "game_detection": [ @@ -42567,6 +45395,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2019", "game_detection": [ @@ -42577,6 +45406,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LawBreakers", "game_detection": [ @@ -42591,6 +45421,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ironclads: High Seas", "game_detection": [ @@ -42605,6 +45436,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Outpost 13", "game_detection": [ @@ -42619,6 +45451,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Worms 4: Mayhem", "game_detection": [ @@ -42631,6 +45464,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Concursion", "game_detection": [ @@ -42645,6 +45479,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battlerite Royale", "game_detection": [ @@ -42655,6 +45490,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Enter the Gungeon", "game_detection": [ @@ -42669,6 +45505,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Laser Racer", "game_detection": [ @@ -42683,6 +45520,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heroine Anthem Zero", "game_detection": [ @@ -42697,6 +45535,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BlazBlue: Continuum Shift Extend", "game_detection": [ @@ -42711,6 +45550,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Aliens Versus Predator 2", "game_detection": [ @@ -42724,6 +45564,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shot In The Dark", "game_detection": [ @@ -42738,6 +45579,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gomo", "game_detection": [ @@ -42757,6 +45599,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "Age of Wushu", "game_detection": [ @@ -42770,6 +45613,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heroes of Steel", "game_detection": [ @@ -42784,6 +45628,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "TDP5 Arena 3D", "game_detection": [ @@ -42798,6 +45643,7 @@ ] }, { + "force_display_capture": false, "region": "JP", "title": "SEGA NET Mahjong MJ", "game_detection": [ @@ -42811,6 +45657,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gates of Andaron", "game_detection": [ @@ -42823,6 +45670,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Resident Evil: Operation Raccoon City", "game_detection": [ @@ -42837,6 +45685,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "System Shock 2", "game_detection": [ @@ -42866,6 +45715,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fortune Summoners", "game_detection": [ @@ -42880,6 +45730,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lost Marbles", "game_detection": [ @@ -42894,6 +45745,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Galactic Bowling", "game_detection": [ @@ -42908,6 +45760,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cold Fear", "game_detection": [ @@ -42919,6 +45772,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Amazing Adventures Around the World", "game_detection": [ @@ -42933,6 +45787,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fingerbones", "game_detection": [ @@ -42947,6 +45802,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dishonored", "game_detection": [ @@ -42961,6 +45817,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Littlest Pet Shop", "game_detection": [ @@ -42972,6 +45829,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shower With Your Dad Simulator 2015: Do You Still Shower With Your Dad", "game_detection": [ @@ -42986,6 +45844,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Diablo III", "game_detection": [ @@ -43005,6 +45864,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Division 2", "game_detection": [ @@ -43016,6 +45876,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "F1 2015", "game_detection": [ @@ -43030,6 +45891,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ZAMB! Biomutant Extermination", "game_detection": [ @@ -43044,6 +45906,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "My Summer Car", "game_detection": [ @@ -43062,6 +45925,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Galactic Civilizations III", "game_detection": [ @@ -43076,6 +45940,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sakura Angels", "game_detection": [ @@ -43090,6 +45955,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Inferno 2", "game_detection": [ @@ -43104,6 +45970,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mount & Blade", "game_detection": [ @@ -43129,6 +45996,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tortuga: Two Treasures", "game_detection": [ @@ -43141,6 +46009,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rack N Ruin", "game_detection": [ @@ -43155,6 +46024,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cloudy with a Chance of Meatballs", "game_detection": [ @@ -43174,6 +46044,7 @@ ] }, { + "force_display_capture": false, "region": "RU", "title": "Atlantica Online", "game_detection": [ @@ -43186,6 +46057,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cannon Brawl", "game_detection": [ @@ -43200,6 +46072,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hatred", "game_detection": [ @@ -43214,6 +46087,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Randal's Monday", "game_detection": [ @@ -43228,6 +46102,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeon Punks", "game_detection": [ @@ -43242,6 +46117,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dragon Oath", "game_detection": [ @@ -43255,6 +46131,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rambo: The Video Game", "game_detection": [ @@ -43269,6 +46146,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DeathSpank: Thongs of Virtue", "game_detection": [ @@ -43283,6 +46161,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The House of the Dead 3", "game_detection": [ @@ -43295,6 +46174,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tony Hawk's Pro Skater HD", "game_detection": [ @@ -43309,6 +46189,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "TrackMania", "game_detection": [ @@ -43329,6 +46210,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Champions Online", "game_detection": [ @@ -43362,6 +46244,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gwent: The Witcher Card Game", "game_detection": [ @@ -43374,6 +46257,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Empress Of The Deep", "game_detection": [ @@ -43388,6 +46272,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ROCKETSROCKETSROCKETS", "game_detection": [ @@ -43402,6 +46287,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Silver Creek Falls: Chapter 1", "game_detection": [ @@ -43416,6 +46302,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fantasy Blacksmith", "game_detection": [ @@ -43426,6 +46313,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Linkrealms", "game_detection": [ @@ -43440,6 +46328,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Strike Vector", "game_detection": [ @@ -43454,6 +46343,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Still Life 2", "game_detection": [ @@ -43473,6 +46363,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mega Coin Squad", "game_detection": [ @@ -43487,6 +46378,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dev Guy", "game_detection": [ @@ -43501,6 +46393,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stronghold Crusader Extreme", "game_detection": [ @@ -43520,6 +46413,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark Age of Camelot: Darkness Rising", "game_detection": [ @@ -43539,6 +46433,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sanctum", "game_detection": [ @@ -43553,6 +46448,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Driftmoon", "game_detection": [ @@ -43567,6 +46463,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark Sector", "game_detection": [ @@ -43586,6 +46483,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Day of the Tentacle Remastered", "game_detection": [ @@ -43600,6 +46498,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Serious Sam: The Random Encounter", "game_detection": [ @@ -43625,6 +46524,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Rayman Legends", "game_detection": [ @@ -43638,6 +46538,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fortix", "game_detection": [ @@ -43652,6 +46553,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "StepMania 5", "game_detection": [ @@ -43665,6 +46567,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Waveform", "game_detection": [ @@ -43684,6 +46587,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sunset's Ashes", "game_detection": [ @@ -43698,6 +46602,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Clans", "game_detection": [ @@ -43712,6 +46617,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Delta Force: Black Hawk Down", "game_detection": [ @@ -43731,6 +46637,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "I Wanna Be The Guy: Gaiden", "game_detection": [ @@ -43742,6 +46649,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ragnarok Online 2", "game_detection": [ @@ -43769,6 +46677,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dragon Raja", "game_detection": [ @@ -43782,6 +46691,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "TRON 2.0", "game_detection": [ @@ -43794,6 +46704,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ring Runner: Flight of the Sages", "game_detection": [ @@ -43808,6 +46719,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mystery P.I.: The Vegas Heist", "game_detection": [ @@ -43822,6 +46734,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Breach & Clear: Deadline", "game_detection": [ @@ -43836,6 +46749,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dauntless", "game_detection": [ @@ -43854,6 +46768,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mahjong Quest", "game_detection": [ @@ -43868,6 +46783,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Scions of Fate", "game_detection": [ @@ -43880,6 +46796,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fallout 4", "game_detection": [ @@ -43901,6 +46818,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cart Life", "game_detection": [ @@ -43920,6 +46838,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Flora's Fruit Farm", "game_detection": [ @@ -43934,6 +46853,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sacra Terra: Angelic Night", "game_detection": [ @@ -43946,6 +46866,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Space Hulk: Deathwing", "game_detection": [ @@ -43960,6 +46881,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Re-Volt", "game_detection": [ @@ -43971,6 +46893,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pajama Sam's Sock Works", "game_detection": [ @@ -43985,6 +46908,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Football Manager 2007", "game_detection": [ @@ -43996,6 +46920,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Unity of Command", "game_detection": [ @@ -44010,6 +46935,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Huxley: The Dystopia", "game_detection": [ @@ -44022,6 +46948,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shift Happens", "game_detection": [ @@ -44036,6 +46963,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeon of Elements", "game_detection": [ @@ -44055,6 +46983,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lost: Via Domus", "game_detection": [ @@ -44067,6 +46996,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rugby Challenge 2", "game_detection": [ @@ -44081,6 +47011,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cities XL Platinum", "game_detection": [ @@ -44095,6 +47026,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MX vs. ATV Unleashed Demo", "game_detection": [ @@ -44108,6 +47040,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "TerraTech", "game_detection": [ @@ -44126,6 +47059,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Space Hulk", "game_detection": [ @@ -44140,6 +47074,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Spiderwick Chronicles", "game_detection": [ @@ -44151,6 +47086,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead Rising 2: Off the Record", "game_detection": [ @@ -44170,6 +47106,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "EMERGENCY 4 Deluxe", "game_detection": [ @@ -44180,6 +47117,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "Seal Online", "game_detection": [ @@ -44193,6 +47131,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Amnesia: A Machine for Pigs", "game_detection": [ @@ -44214,6 +47153,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DiRT Showdown", "game_detection": [ @@ -44228,6 +47168,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Major League Baseball 2K10", "game_detection": [ @@ -44239,6 +47180,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Frankenstein: Master of Death", "game_detection": [ @@ -44253,6 +47195,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Starlight Inception", "game_detection": [ @@ -44267,6 +47210,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Elder Scrolls V: Skyrim Special Edition", "game_detection": [ @@ -44281,6 +47225,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Balls of Steel Demo", "game_detection": [ @@ -44292,6 +47237,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Blackwell Deception", "game_detection": [ @@ -44316,6 +47262,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hyperdimension Neptunia U: Action Unleashed", "game_detection": [ @@ -44330,6 +47277,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Etherlords II", "game_detection": [ @@ -44344,6 +47292,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eternal Silence", "game_detection": [ @@ -44358,6 +47307,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jump King", "game_detection": [ @@ -44368,6 +47318,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Chaos Engine", "game_detection": [ @@ -44382,6 +47333,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Azzura Avventura", "game_detection": [ @@ -44393,6 +47345,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Harvester", "game_detection": [ @@ -44407,6 +47360,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FIFA Soccer 13", "game_detection": [ @@ -44420,6 +47374,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Miner Wars 2081", "game_detection": [ @@ -44434,6 +47389,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gotham City Impostors", "game_detection": [ @@ -44454,6 +47410,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "N.E.O. Online", "game_detection": [ @@ -44468,6 +47425,7 @@ ] }, { + "force_display_capture": false, "region": "DE", "title": "Gunblade Saga", "game_detection": [ @@ -44480,6 +47438,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Space Channel 5: Part 2", "game_detection": [ @@ -44494,6 +47453,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GTR: FIA GT Racing Game", "game_detection": [ @@ -44513,6 +47473,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "One Finger Death Punch 2", "game_detection": [ @@ -44523,6 +47484,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Seven Seas Deluxe", "game_detection": [ @@ -44535,6 +47497,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Take On Mars", "game_detection": [ @@ -44549,6 +47512,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Conan Exiles", "game_detection": [ @@ -44563,6 +47527,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Okami HD", "game_detection": [ @@ -44577,6 +47542,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Aerofly FS 2 Flight Simulator", "game_detection": [ @@ -44591,6 +47557,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "A.I.M. Racing", "game_detection": [ @@ -44605,6 +47572,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Farming Simulator 2013", "game_detection": [ @@ -44619,6 +47587,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wolfenstein: The Old Blood", "game_detection": [ @@ -44633,6 +47602,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Drakensang Online", "game_detection": [ @@ -44646,6 +47616,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Trials 2: Second Edition", "game_detection": [ @@ -44660,6 +47631,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chainz 2: Relinked", "game_detection": [ @@ -44674,6 +47646,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Grand Ages: Rome", "game_detection": [ @@ -44693,6 +47666,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rock Zombie", "game_detection": [ @@ -44707,6 +47681,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blackshot", "game_detection": [ @@ -44728,6 +47703,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Horsez", "game_detection": [ @@ -44744,6 +47720,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "One Way Heroics", "game_detection": [ @@ -44758,6 +47735,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Naval Action", "game_detection": [ @@ -44784,6 +47762,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeon Defenders II", "game_detection": [ @@ -44798,6 +47777,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ancient Wars: Sparta", "game_detection": [ @@ -44809,6 +47789,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Putt-Putt Joins the Parade", "game_detection": [ @@ -44823,6 +47804,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shenmue 2", "game_detection": [ @@ -44836,6 +47818,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Space Run Galaxy", "game_detection": [ @@ -44850,6 +47833,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Monster Energy Supercross The Official Videogame 2", "game_detection": [ @@ -44860,6 +47844,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Terra: Battle for the Outlands", "game_detection": [ @@ -44872,6 +47857,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Singularity", "game_detection": [ @@ -44892,6 +47878,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shaq Fu: A Legend Reborn", "game_detection": [ @@ -44905,6 +47892,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeons", "game_detection": [ @@ -44925,6 +47913,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Humans Must Answer", "game_detection": [ @@ -44939,6 +47928,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SWAT 3: Close Quarters Battle", "game_detection": [ @@ -44951,6 +47941,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Railroad Tycoon 3", "game_detection": [ @@ -44962,6 +47953,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Astebreed", "game_detection": [ @@ -44981,6 +47973,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Risen 3: Titan Lords", "game_detection": [ @@ -44995,6 +47988,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Art of Murder: Cards of Destiny", "game_detection": [ @@ -45007,6 +48001,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Qbeh-1: The Atlas Cube", "game_detection": [ @@ -45021,6 +48016,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Scribblenauts Unlimited", "game_detection": [ @@ -45035,6 +48031,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ice Age 3: Dawn of the Dinosaurs", "game_detection": [ @@ -45046,6 +48043,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Dwarves", "game_detection": [ @@ -45060,6 +48058,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Whispered Legends: Tales of Middleport", "game_detection": [ @@ -45074,6 +48073,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Outlaws of the Old West", "game_detection": [ @@ -45084,6 +48084,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "7 Wonders: Ancient Alien Makeover", "game_detection": [ @@ -45098,6 +48099,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spooky's House of Jump Scares", "game_detection": [ @@ -45112,6 +48114,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lylian: Episode One: Paranoid Friendship", "game_detection": [ @@ -45124,6 +48127,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Racer 8", "game_detection": [ @@ -45138,6 +48142,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "EvilQuest", "game_detection": [ @@ -45152,6 +48157,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fallen Enchantress: Legendary Heroes", "game_detection": [ @@ -45166,6 +48172,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hotline Miami", "game_detection": [ @@ -45197,6 +48204,7 @@ ] }, { + "force_display_capture": false, "region": "FR", "title": "Forsaken World", "game_detection": [ @@ -45210,6 +48218,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "S.T.A.L.K.E.R. Call of Pripyat", "game_detection": [ @@ -45230,6 +48239,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bejeweled 2 Deluxe", "game_detection": [ @@ -45250,6 +48260,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Requiem: Memento Mori", "game_detection": [ @@ -45270,6 +48281,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Night Shift", "game_detection": [ @@ -45284,6 +48296,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Pro Cycling Manager Season 2012", "game_detection": [ @@ -45298,6 +48311,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Survivor Squad", "game_detection": [ @@ -45317,6 +48331,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dynasty Warriors 6", "game_detection": [ @@ -45328,6 +48343,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "You Must Build A Boat", "game_detection": [ @@ -45342,6 +48358,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Masquerada: Songs and Shadows", "game_detection": [ @@ -45356,6 +48373,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LEGO Star Wars: The Complete Saga", "game_detection": [ @@ -45375,6 +48393,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SMASH+GRAB", "game_detection": [ @@ -45389,6 +48408,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blazing Angels 2: Secret Missions of WWII", "game_detection": [ @@ -45408,6 +48428,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Grim Dawn", "game_detection": [ @@ -45426,6 +48447,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SmashMuck Champions", "game_detection": [ @@ -45446,6 +48468,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heroes Rise: The Hero Project", "game_detection": [ @@ -45460,6 +48483,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "GunZ 2", "game_detection": [ @@ -45473,6 +48497,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bloodline Champions", "game_detection": [ @@ -45493,6 +48518,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shantae and the Pirate's Curse", "game_detection": [ @@ -45506,6 +48532,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Princess Isabella: A Witch's Curse", "game_detection": [ @@ -45520,6 +48547,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Risk", "game_detection": [ @@ -45539,6 +48567,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "hack_me", "game_detection": [ @@ -45553,6 +48582,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Meridian 59", "game_detection": [ @@ -45564,6 +48594,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "JX Online 3", "game_detection": [ @@ -45584,6 +48615,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warlock: Master of the Arcane", "game_detection": [ @@ -45598,6 +48630,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Radiant Defense", "game_detection": [ @@ -45612,6 +48645,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Lion's Song: Episode 1 - Silence", "game_detection": [ @@ -45626,6 +48660,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Machine Learning: Episode I", "game_detection": [ @@ -45641,6 +48676,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Adventure Time: Finn and Jake Investigations", "game_detection": [ @@ -45655,6 +48691,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Atlas", "game_detection": [ @@ -45665,6 +48702,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wings of Prey", "game_detection": [ @@ -45685,6 +48723,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Legends of Aethereus", "game_detection": [ @@ -45699,6 +48738,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "OBEY", "game_detection": [ @@ -45718,6 +48758,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Scarface: The World Is Yours", "game_detection": [ @@ -45729,6 +48770,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Koikatsu Party", "game_detection": [ @@ -45739,6 +48781,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Worldwide Soccer Manager 2008", "game_detection": [ @@ -45750,6 +48793,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Republique Remastered", "game_detection": [ @@ -45769,6 +48813,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Brütal Legend", "game_detection": [ @@ -45788,6 +48833,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Guild of Dungeoneering", "game_detection": [ @@ -45802,6 +48848,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sonic Generations", "game_detection": [ @@ -45816,6 +48863,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sam & Max Episode 205: What's New, Beelzebub?", "game_detection": [ @@ -45835,6 +48883,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Death to Spies", "game_detection": [ @@ -45846,6 +48895,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Secret of the Solstice", "game_detection": [ @@ -45885,6 +48935,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Halo Wars: Definitive Edition", "game_detection": [ @@ -45899,6 +48950,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Akiba's Trip: Undead & Undressed", "game_detection": [ @@ -45913,6 +48965,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Etch A Sketch", "game_detection": [ @@ -45927,6 +48980,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gas Guzzlers Extreme", "game_detection": [ @@ -45941,6 +48995,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Behind The Reflection", "game_detection": [ @@ -45953,6 +49008,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tomb Raider 3", "game_detection": [ @@ -45967,6 +49023,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "World War Z", "game_detection": [ @@ -45981,6 +49038,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LaserCat", "game_detection": [ @@ -45992,6 +49050,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "CSI: Deadly Intent", "game_detection": [ @@ -46004,6 +49063,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Trek: Bridge Commander", "game_detection": [ @@ -46015,6 +49075,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A New Beginning", "game_detection": [ @@ -46034,6 +49095,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bullet Candy", "game_detection": [ @@ -46048,6 +49110,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sins of a Dark Age", "game_detection": [ @@ -46060,6 +49123,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "HeroClix Online", "game_detection": [ @@ -46072,6 +49136,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pink Hour", "game_detection": [ @@ -46086,6 +49151,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "System Protocol One", "game_detection": [ @@ -46100,6 +49166,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tom Clancy's Splinter Cell", "game_detection": [ @@ -46119,6 +49186,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BorderZone", "game_detection": [ @@ -46133,6 +49201,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Regions of Ruin", "game_detection": [ @@ -46147,6 +49216,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DieselStormers", "game_detection": [ @@ -46161,6 +49231,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Epic Battle Fantasy 4", "game_detection": [ @@ -46175,6 +49246,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "They Breathe", "game_detection": [ @@ -46189,6 +49261,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Infinite Black", "game_detection": [ @@ -46203,6 +49276,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ascend: Hand of Kul", "game_detection": [ @@ -46217,6 +49291,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fading Hearts", "game_detection": [ @@ -46231,6 +49306,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DISSIDIA FINAL FANTASY NT Free Edition", "game_detection": [ @@ -46241,6 +49317,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Level R", "game_detection": [ @@ -46253,6 +49330,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shovel Knight: Specter of Torment", "game_detection": [ @@ -46268,6 +49346,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Defense Grid: The Awakening", "game_detection": [ @@ -46287,6 +49366,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hello Kitty Online", "game_detection": [ @@ -46299,6 +49379,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Frozen Synapse", "game_detection": [ @@ -46322,6 +49403,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mystery Case Files: Prime Suspects", "game_detection": [ @@ -46336,6 +49418,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rail Simulator", "game_detection": [ @@ -46347,6 +49430,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Elite: Dangerous", "game_detection": [ @@ -46365,6 +49449,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "XEvil", "game_detection": [ @@ -46376,6 +49461,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Armies of Exigo", "game_detection": [ @@ -46387,6 +49473,7 @@ ] }, { + "force_display_capture": false, "region": "RU", "title": "Blood and Soul", "game_detection": [ @@ -46401,6 +49488,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pirates of the Burning Sea", "game_detection": [ @@ -46447,6 +49535,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spiral Knights", "game_detection": [ @@ -46461,6 +49550,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Children of the Nile: Alexandria", "game_detection": [ @@ -46475,6 +49565,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Helbreath", "game_detection": [ @@ -46488,6 +49579,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Astro Tripper", "game_detection": [ @@ -46508,6 +49600,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Timelines: Assault on America", "game_detection": [ @@ -46522,6 +49615,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jagged Alliance: Back in Action", "game_detection": [ @@ -46536,6 +49630,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tesla VR", "game_detection": [ @@ -46551,6 +49646,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "Asgard", "game_detection": [ @@ -46563,6 +49659,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Escape Rosecliff Island", "game_detection": [ @@ -46577,6 +49674,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FIFA Soccer 08", "game_detection": [ @@ -46588,6 +49686,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dovetail Games Fishing", "game_detection": [ @@ -46602,6 +49701,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rokh", "game_detection": [ @@ -46616,6 +49716,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Area 51", "game_detection": [ @@ -46634,6 +49735,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pac-Man and the Ghostly Adventures", "game_detection": [ @@ -46648,6 +49750,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Viridi", "game_detection": [ @@ -46662,6 +49765,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crash Bandicoot N. Sane Trilogy", "game_detection": [ @@ -46675,6 +49779,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Night in the Woods", "game_detection": [ @@ -46689,6 +49794,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rayman Raving Rabbids", "game_detection": [ @@ -46701,6 +49807,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Discovery!: A Seek and Find Adventure", "game_detection": [ @@ -46715,6 +49822,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bird Assassin", "game_detection": [ @@ -46729,6 +49837,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Never Alone", "game_detection": [ @@ -46743,6 +49852,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Penny Arcade Adventures: On the Rain-Slick Precipice of Darkness: Episode One", "game_detection": [ @@ -46762,6 +49872,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rocket League", "game_detection": [ @@ -46776,6 +49887,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ChronoClock", "game_detection": [ @@ -46790,6 +49902,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Affected Zone Tactics", "game_detection": [ @@ -46804,6 +49917,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Battle of Sol", "game_detection": [ @@ -46818,6 +49932,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Titanfall 2", "game_detection": [ @@ -46829,6 +49944,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Aqua Kitty: Milk Mine Defender", "game_detection": [ @@ -46848,6 +49964,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Redshirt", "game_detection": [ @@ -46867,6 +49984,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Reflex", "game_detection": [ @@ -46881,6 +49999,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "I Am Vegend: Zombiegeddon", "game_detection": [ @@ -46895,6 +50014,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Production Line", "game_detection": [ @@ -46905,6 +50025,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wolfenstein II: The New Colossus", "game_detection": [ @@ -46919,6 +50040,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Explodemon!", "game_detection": [ @@ -46938,6 +50060,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heritage of Kings: The Settlers", "game_detection": [ @@ -46950,6 +50073,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Transference", "game_detection": [ @@ -46964,6 +50088,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Loki: Heroes of Mythology", "game_detection": [ @@ -46984,6 +50109,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "TDP4: Team Battle", "game_detection": [ @@ -46998,6 +50124,7 @@ ] }, { + "force_display_capture": false, "region": "BR", "title": "Smite", "game_detection": [ @@ -47020,6 +50147,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SUGURI Perfect Edition", "game_detection": [ @@ -47034,6 +50162,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LEGO Worlds", "game_detection": [ @@ -47048,6 +50177,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NASCAR Racing 2002 Season", "game_detection": [ @@ -47059,6 +50189,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Virtual Villagers 3: The Secret City", "game_detection": [ @@ -47073,6 +50204,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A dead world's dream", "game_detection": [ @@ -47087,6 +50219,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Guild Wars 2", "game_detection": [ @@ -47108,6 +50241,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alien Shooter: Vengeance", "game_detection": [ @@ -47119,6 +50253,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Coloring Pixels", "game_detection": [ @@ -47129,6 +50264,7 @@ ] }, { + "force_display_capture": false, "region": "ES", "title": "Cerdocornio", "game_detection": [ @@ -47143,6 +50279,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cabela's African Adventures", "game_detection": [ @@ -47157,6 +50294,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ryzom", "game_detection": [ @@ -47176,6 +50314,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Call of Duty: United Offensive", "game_detection": [ @@ -47210,6 +50349,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Insaniquarium Deluxe", "game_detection": [ @@ -47230,6 +50370,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "URU: Complete Chronicles", "game_detection": [ @@ -47244,6 +50385,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Panzer Corps", "game_detection": [ @@ -47258,6 +50400,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Midtown Madness", "game_detection": [ @@ -47269,6 +50412,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead Space 2", "game_detection": [ @@ -47288,6 +50432,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mojo Master", "game_detection": [ @@ -47322,6 +50467,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gods & Heroes: Rome Rising", "game_detection": [ @@ -47341,6 +50487,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kitsu Saga", "game_detection": [ @@ -47355,6 +50502,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pulstar", "game_detection": [ @@ -47374,6 +50522,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gravity Badgers", "game_detection": [ @@ -47388,6 +50537,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cook, Serve, Delicious! 2!!", "game_detection": [ @@ -47402,6 +50552,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Epic Space Online", "game_detection": [ @@ -47416,6 +50567,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Dream Machine", "game_detection": [ @@ -47430,6 +50582,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Light of Altair", "game_detection": [ @@ -47444,6 +50597,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Guise of the Wolf", "game_detection": [ @@ -47458,6 +50612,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "rFactor 2", "game_detection": [ @@ -47470,6 +50625,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zodiac Online", "game_detection": [ @@ -47483,6 +50639,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NBA 2K13", "game_detection": [ @@ -47502,6 +50659,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Prince of Persia: The Two Thrones", "game_detection": [ @@ -47515,6 +50673,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alone in the Dark: Illumination", "game_detection": [ @@ -47529,6 +50688,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NetGammon", "game_detection": [ @@ -47540,6 +50700,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nekopara Vol. 0", "game_detection": [ @@ -47554,6 +50715,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tadpole Treble", "game_detection": [ @@ -47568,6 +50730,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Storm Over the Pacific", "game_detection": [ @@ -47582,6 +50745,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GASP", "game_detection": [ @@ -47596,6 +50760,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alex Hunter: Lord of the Mind", "game_detection": [ @@ -47610,6 +50775,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sky Break", "game_detection": [ @@ -47624,6 +50790,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Iron Front: Liberation 1944", "game_detection": [ @@ -47637,6 +50804,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeon Defenders", "game_detection": [ @@ -47656,6 +50824,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jagged Alliance: Gold Edition", "game_detection": [ @@ -47670,6 +50839,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sakura Dungeon", "game_detection": [ @@ -47684,6 +50854,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gravi", "game_detection": [ @@ -47698,6 +50869,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Monkey Island 2: Special Edition LeChucks Revenge", "game_detection": [ @@ -47712,6 +50884,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "PAC-MAN Championship Edition DX+", "game_detection": [ @@ -47726,6 +50899,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark Souls: Prepare to Die Edition", "game_detection": [ @@ -47740,6 +50914,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Call of Duty: World at War", "game_detection": [ @@ -47774,6 +50949,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NASCAR '15", "game_detection": [ @@ -47788,6 +50964,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nancy Drew: Ghost of Thornton Hall", "game_detection": [ @@ -47802,6 +50979,7 @@ ] }, { + "force_display_capture": false, "region": "RU", "title": "Perfect World", "game_detection": [ @@ -47817,6 +50995,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Commandos: Beyond the Call of Duty", "game_detection": [ @@ -47838,6 +51017,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Assassin's Creed: Unity", "game_detection": [ @@ -47857,6 +51037,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Under Night In-Birth Exe:Late", "game_detection": [ @@ -47871,6 +51052,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Space Engineers", "game_detection": [ @@ -47885,6 +51067,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Clustertruck", "game_detection": [ @@ -47903,6 +51086,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Celestian Tales: Old North", "game_detection": [ @@ -47917,6 +51101,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jamestown: Legend of the Lost Colony", "game_detection": [ @@ -47936,6 +51121,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wheelman", "game_detection": [ @@ -47956,6 +51142,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 4", "game_detection": [ @@ -47967,6 +51154,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "PsychoToxic", "game_detection": [ @@ -47979,6 +51167,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ride", "game_detection": [ @@ -47993,6 +51182,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rogue Trooper", "game_detection": [ @@ -48012,6 +51202,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Evil Genome", "game_detection": [ @@ -48026,6 +51217,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Saints Row IV", "game_detection": [ @@ -48044,6 +51236,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Walking Dead: Michonne", "game_detection": [ @@ -48058,6 +51251,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Helldivers", "game_detection": [ @@ -48072,6 +51266,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Polychromatic Funk Monkey", "game_detection": [ @@ -48083,6 +51278,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heroes Rise: HeroFall", "game_detection": [ @@ -48097,6 +51293,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Phantasy Star Universe", "game_detection": [ @@ -48111,6 +51308,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Osiris: New Dawn", "game_detection": [ @@ -48125,6 +51323,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cities in Motion 2", "game_detection": [ @@ -48139,6 +51338,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Split/Second Demo", "game_detection": [ @@ -48150,6 +51350,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MotoGP 15", "game_detection": [ @@ -48164,6 +51365,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Professional Farmer 2014", "game_detection": [ @@ -48178,6 +51380,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Raw Data", "game_detection": [ @@ -48193,6 +51396,7 @@ ] }, { + "force_display_capture": false, "region": "UK", "title": "Hex: Shards of Fate", "game_detection": [ @@ -48206,6 +51410,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bit.Trip Fate", "game_detection": [ @@ -48220,6 +51425,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dota Underlords", "game_detection": [ @@ -48230,6 +51436,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "MapleStory", "game_detection": [ @@ -48243,6 +51450,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sid Meier's Starships", "game_detection": [ @@ -48257,6 +51465,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Punch Club", "game_detection": [ @@ -48271,6 +51480,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "X2: The Threat", "game_detection": [ @@ -48282,6 +51492,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "God Eater Resurrection", "game_detection": [ @@ -48296,6 +51507,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "PLATFORMANCE: Temple Death", "game_detection": [ @@ -48308,6 +51520,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Farming Simulator 15", "game_detection": [ @@ -48321,6 +51534,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "No One Lives Forever", "game_detection": [ @@ -48334,6 +51548,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Imperium Romanum", "game_detection": [ @@ -48354,6 +51569,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "REALITY", "game_detection": [ @@ -48368,6 +51584,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Endless Space 2", "game_detection": [ @@ -48382,6 +51599,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "PooShooter: Toilet Invaders", "game_detection": [ @@ -48396,6 +51614,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Serious Sam: The Greek Encounter", "game_detection": [ @@ -48413,6 +51632,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Castlevania: Lords of Shadow - Mirror of Fate HD", "game_detection": [ @@ -48427,6 +51647,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Evochron Mercenary", "game_detection": [ @@ -48441,6 +51662,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Job Simulator", "game_detection": [ @@ -48456,6 +51678,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fallout 3", "game_detection": [ @@ -48491,6 +51714,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sunset Overdrive", "game_detection": [ @@ -48501,6 +51725,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hammerfight", "game_detection": [ @@ -48515,6 +51740,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alone in the Dark", "game_detection": [ @@ -48534,6 +51760,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Block N Load", "game_detection": [ @@ -48548,6 +51775,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Batman: Arkham City", "game_detection": [ @@ -48575,6 +51803,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deponia Doomsday", "game_detection": [ @@ -48589,6 +51818,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gothic 3: Forsaken Gods", "game_detection": [ @@ -48610,6 +51840,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "1931: Scheherazade at the Library of Pergamum", "game_detection": [ @@ -48622,6 +51853,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Glare", "game_detection": [ @@ -48641,6 +51873,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Duke Nukem", "game_detection": [ @@ -48655,6 +51888,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Grandia II Anniversary Edition", "game_detection": [ @@ -48669,6 +51903,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Swag and Sorcery", "game_detection": [ @@ -48679,6 +51914,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eterium", "game_detection": [ @@ -48693,6 +51929,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lamia Must Die", "game_detection": [ @@ -48707,6 +51944,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zavix Tower", "game_detection": [ @@ -48721,6 +51959,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Forts", "game_detection": [ @@ -48735,6 +51974,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pet Vet: 3D: Animal Hospital", "game_detection": [ @@ -48746,6 +51986,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ultima Online: Kingdom Reborn", "game_detection": [ @@ -48758,6 +51999,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Peter Jackson's King Kong", "game_detection": [ @@ -48778,6 +52020,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Fahrenheit", "game_detection": [ @@ -48789,6 +52032,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Disciples: Sacred Lands", "game_detection": [ @@ -48800,6 +52044,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tribloos 2", "game_detection": [ @@ -48814,6 +52059,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mafia", "game_detection": [ @@ -48828,6 +52074,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mage Knight: Apocalypse", "game_detection": [ @@ -48839,6 +52086,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fallen City", "game_detection": [ @@ -48850,6 +52098,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Harry Potter and the Order of the Phoenix", "game_detection": [ @@ -48861,6 +52110,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Youtubers Life", "game_detection": [ @@ -48875,6 +52125,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pandora Saga", "game_detection": [ @@ -48896,6 +52147,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ephemerid: A Musical Adventure", "game_detection": [ @@ -48910,6 +52162,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dragon Saga", "game_detection": [ @@ -48930,6 +52183,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Business Tour", "game_detection": [ @@ -48943,6 +52197,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ticket to Ride", "game_detection": [ @@ -48962,6 +52217,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Command & Conquer 3: Tiberium Wars Demo", "game_detection": [ @@ -48975,6 +52231,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BioShock Infinite", "game_detection": [ @@ -48989,6 +52246,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeon Siege: Legends of Aranna", "game_detection": [ @@ -49000,6 +52258,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Europa Universalis IV Demo", "game_detection": [ @@ -49014,6 +52273,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Elder Scrolls 4: Oblivion", "game_detection": [ @@ -49035,6 +52295,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Holy Potatoes! A Weapon Shop?!", "game_detection": [ @@ -49049,6 +52310,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Back to Dinosaur Island Part 2", "game_detection": [ @@ -49064,6 +52326,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Panda Rampage", "game_detection": [ @@ -49076,6 +52339,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Walkover", "game_detection": [ @@ -49090,6 +52354,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cosmic DJ", "game_detection": [ @@ -49109,6 +52374,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NARUTO SHIPPUDEN: Ultimate Ninja STORM 2", "game_detection": [ @@ -49123,6 +52389,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Panzar", "game_detection": [ @@ -49136,6 +52403,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Operation Flashpoint: Red River", "game_detection": [ @@ -49156,6 +52424,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RPG Maker VX Ace", "game_detection": [ @@ -49175,6 +52444,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SNOW", "game_detection": [ @@ -49189,6 +52459,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bridge Constructor Playground", "game_detection": [ @@ -49203,6 +52474,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Martial Arts: Capoeira", "game_detection": [ @@ -49217,6 +52489,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lumino City", "game_detection": [ @@ -49231,6 +52504,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims 2: Family Fun Stuff", "game_detection": [ @@ -49242,6 +52516,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Grey's Anatomy: The Video Game", "game_detection": [ @@ -49253,6 +52528,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Geneforge", "game_detection": [ @@ -49267,6 +52543,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Final Fantasy XIII-2", "game_detection": [ @@ -49281,6 +52558,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MouseCraft", "game_detection": [ @@ -49295,6 +52573,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hellblade: Senua's Sacrifice", "game_detection": [ @@ -49309,6 +52588,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Final Doom", "game_detection": [ @@ -49323,6 +52603,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dreamlords: The Reawakening", "game_detection": [ @@ -49334,6 +52615,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cid the Dummy", "game_detection": [ @@ -49348,6 +52630,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deadly Sin 2", "game_detection": [ @@ -49362,6 +52645,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Signs of Life", "game_detection": [ @@ -49381,6 +52665,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ghost Master", "game_detection": [ @@ -49395,6 +52680,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LA Cops", "game_detection": [ @@ -49409,6 +52695,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "AdventureQuest 3D", "game_detection": [ @@ -49423,6 +52710,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NEStalgia", "game_detection": [ @@ -49437,6 +52725,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Legends", "game_detection": [ @@ -49450,6 +52739,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ORION: Dino Beatdown", "game_detection": [ @@ -49464,6 +52754,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Last Year The Nightmare", "game_detection": [ @@ -49475,6 +52766,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ShotForge", "game_detection": [ @@ -49490,6 +52782,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tactical Craft Online", "game_detection": [ @@ -49504,6 +52797,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Day of Defeat: Source", "game_detection": [ @@ -49525,6 +52819,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Evil Within 2", "game_detection": [ @@ -49539,6 +52834,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SEGA Genesis & Mega Drive Classics", "game_detection": [ @@ -49559,6 +52855,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deus Ex", "game_detection": [ @@ -49578,6 +52875,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hexodius", "game_detection": [ @@ -49592,6 +52890,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Age of Wonders II: The Wizard's Throne", "game_detection": [ @@ -49612,6 +52911,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GunMetal", "game_detection": [ @@ -49626,6 +52926,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Salammbo: Battle for Carthage", "game_detection": [ @@ -49640,6 +52941,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Folk Tale", "game_detection": [ @@ -49654,6 +52956,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Run and Fire", "game_detection": [ @@ -49668,6 +52971,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eschatos", "game_detection": [ @@ -49682,6 +52986,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Edna & Harvey: Harvey's New Eyes", "game_detection": [ @@ -49701,6 +53006,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Assassin's Creed Chronicles: China", "game_detection": [ @@ -49722,6 +53028,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Soldier Front 2", "game_detection": [ @@ -49744,6 +53051,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "4x4 Evo 2", "game_detection": [ @@ -49755,6 +53063,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "One Piece Pirate Warriors 3", "game_detection": [ @@ -49769,6 +53078,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Karos Returns", "game_detection": [ @@ -49790,6 +53100,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spellforce: The Order of Dawn", "game_detection": [ @@ -49801,6 +53112,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stray Souls: Dollhouse Story", "game_detection": [ @@ -49813,6 +53125,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Quake 2", "game_detection": [ @@ -49843,6 +53156,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Atelier Firis: The Alchemist and the Mysterious Journey", "game_detection": [ @@ -49857,6 +53171,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Crew 2", "game_detection": [ @@ -49880,6 +53195,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Park", "game_detection": [ @@ -49894,6 +53210,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FACTIONS: Origins of Malu", "game_detection": [ @@ -49909,6 +53226,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Reveal The Deep", "game_detection": [ @@ -49923,6 +53241,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Party Of Sin", "game_detection": [ @@ -49937,6 +53256,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Football Manager 2016", "game_detection": [ @@ -49951,6 +53271,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lost Sector", "game_detection": [ @@ -49963,6 +53284,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LEGO Marvel Super Heroes 2", "game_detection": [ @@ -49976,6 +53298,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Prius Online", "game_detection": [ @@ -49988,6 +53311,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Empire Earth II", "game_detection": [ @@ -50004,6 +53328,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chivalry: Medieval Warfare", "game_detection": [ @@ -50018,6 +53343,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fate: The Traitor Soul", "game_detection": [ @@ -50030,6 +53356,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Test Drive Unlimited", "game_detection": [ @@ -50041,6 +53368,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Protocell", "game_detection": [ @@ -50055,6 +53383,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SOMA", "game_detection": [ @@ -50069,6 +53398,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "L.A.W – Living After War", "game_detection": [ @@ -50081,6 +53411,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Signal Ops", "game_detection": [ @@ -50098,6 +53429,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sam & Max: The Devil's Playhouse - The City that Dares Not Sleep", "game_detection": [ @@ -50112,6 +53444,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battlestations: Pacific", "game_detection": [ @@ -50132,6 +53465,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Valdis Story: Abyssal City", "game_detection": [ @@ -50152,6 +53486,7 @@ ] }, { + "force_display_capture": false, "region": "RU", "title": "R2 Online", "game_detection": [ @@ -50164,6 +53499,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Clicker Heroes", "game_detection": [ @@ -50178,6 +53514,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fire", "game_detection": [ @@ -50192,6 +53529,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "UEFA Champions League 2006-2007", "game_detection": [ @@ -50203,6 +53541,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "M.U.D. TV", "game_detection": [ @@ -50217,6 +53556,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battlefield 3 Open Beta", "game_detection": [ @@ -50229,6 +53569,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "QPlay", "game_detection": [ @@ -50241,6 +53582,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Emily is Away", "game_detection": [ @@ -50255,6 +53597,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "PlanetSide Arena", "game_detection": [ @@ -50265,6 +53608,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tomb Raider", "game_detection": [ @@ -50279,6 +53623,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Infection: Humanity's Last Gasp", "game_detection": [ @@ -50293,6 +53638,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gangland", "game_detection": [ @@ -50305,6 +53651,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Necronomicon: The Dawning of Darkness", "game_detection": [ @@ -50319,6 +53666,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DARIUSBURST Chronicle Saviours", "game_detection": [ @@ -50333,6 +53681,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Plan of Attack", "game_detection": [ @@ -50348,6 +53697,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "IS Defense", "game_detection": [ @@ -50362,6 +53712,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Not The Robots", "game_detection": [ @@ -50381,6 +53732,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DeadCore", "game_detection": [ @@ -50395,6 +53747,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Geneforge 5: Overthrow", "game_detection": [ @@ -50409,6 +53762,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Worms 2", "game_detection": [ @@ -50421,6 +53775,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zup!", "game_detection": [ @@ -50435,6 +53790,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Postmortem: one must die", "game_detection": [ @@ -50449,6 +53805,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Five Nights at Freddy's", "game_detection": [ @@ -50463,6 +53820,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Samaritan Paradox", "game_detection": [ @@ -50477,6 +53835,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Valdis Story", "game_detection": [ @@ -50488,6 +53847,7 @@ ] }, { + "force_display_capture": false, "region": "PT", "title": "Grand Fantasia", "game_detection": [ @@ -50501,6 +53861,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Prime World: Defenders", "game_detection": [ @@ -50515,6 +53876,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "UFO: Extraterrestrials", "game_detection": [ @@ -50526,6 +53888,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Please, Don't Touch Anything", "game_detection": [ @@ -50537,6 +53900,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Detective Case and Clown Bot in: Murder in the Hotel Lisbon", "game_detection": [ @@ -50551,6 +53915,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Over 9000 Zombies!", "game_detection": [ @@ -50565,6 +53930,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Big Brain Wolf", "game_detection": [ @@ -50579,6 +53945,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Go Home Dinosaurs", "game_detection": [ @@ -50593,6 +53960,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Purino Party", "game_detection": [ @@ -50607,6 +53975,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tabula Rasa", "game_detection": [ @@ -50618,6 +53987,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Perimeter: Emperor's Testament", "game_detection": [ @@ -50637,6 +54007,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Yakuza Kiwami", "game_detection": [ @@ -50648,6 +54019,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Farming Simulator 2019", "game_detection": [ @@ -50658,6 +54030,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Old Tree", "game_detection": [ @@ -50672,6 +54045,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Microsoft Combat Flight Simulator 3: Battle for Europe", "game_detection": [ @@ -50683,6 +54057,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FIFA Soccer 10", "game_detection": [ @@ -50694,6 +54069,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dragon Age II", "game_detection": [ @@ -50713,6 +54089,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Steam Bandits: Outpost", "game_detection": [ @@ -50727,6 +54104,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Transformers: War for Cybertron", "game_detection": [ @@ -50747,6 +54125,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mass Effect: Andromeda", "game_detection": [ @@ -50759,6 +54138,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "CreaVures", "game_detection": [ @@ -50773,6 +54153,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Triad Wars", "game_detection": [ @@ -50785,6 +54166,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Soldier of Fortune", "game_detection": [ @@ -50796,6 +54178,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Breach & Clear", "game_detection": [ @@ -50815,6 +54198,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RefleX", "game_detection": [ @@ -50829,6 +54213,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NOT A HERO", "game_detection": [ @@ -50843,6 +54228,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Aliens Versus Predator: Gold Edition", "game_detection": [ @@ -50854,6 +54240,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "When the Darkness comes", "game_detection": [ @@ -50864,6 +54251,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Magical Otoge Ciel", "game_detection": [ @@ -50878,6 +54266,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "7 Grand Steps", "game_detection": [ @@ -50897,6 +54286,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A Vampyre Story", "game_detection": [ @@ -50908,6 +54298,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Arena Wars 2", "game_detection": [ @@ -50922,6 +54313,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Carpe Diem", "game_detection": [ @@ -50936,6 +54328,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Legendary", "game_detection": [ @@ -50950,6 +54343,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Descent: Freespace - The Great War", "game_detection": [ @@ -50970,6 +54364,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Dark Eye: Demonicon", "game_detection": [ @@ -50984,6 +54379,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RollerCoaster Tycoon 3: Soaked!", "game_detection": [ @@ -50995,6 +54391,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tale of Wuxia", "game_detection": [ @@ -51009,6 +54406,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chameleon Gems", "game_detection": [ @@ -51023,6 +54421,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Medusa's Labyrinth", "game_detection": [ @@ -51037,6 +54436,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark Souls III", "game_detection": [ @@ -51051,6 +54451,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kaiju-A-GoGo", "game_detection": [ @@ -51065,6 +54466,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Red Orchestra 2: Heroes of Stalingrad Multiplayer", "game_detection": [ @@ -51079,6 +54481,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Age of Empires III: The Asian Dynasties", "game_detection": [ @@ -51090,6 +54493,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Commandos 2: Men of Courage", "game_detection": [ @@ -51111,6 +54515,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SolForge", "game_detection": [ @@ -51125,6 +54530,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dishonored: Death of the Outsider", "game_detection": [ @@ -51139,6 +54545,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Defense Zone 2", "game_detection": [ @@ -51153,6 +54560,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shakes and Fidget", "game_detection": [ @@ -51167,6 +54575,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Beyond Good and Evil", "game_detection": [ @@ -51179,6 +54588,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Skater XL", "game_detection": [ @@ -51189,6 +54599,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Steins;Gate 0", "game_detection": [ @@ -51202,6 +54613,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeon Crawl Stone Soup", "game_detection": [ @@ -51214,6 +54626,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Oxenfree", "game_detection": [ @@ -51232,6 +54645,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Primal Carnage: Extinction", "game_detection": [ @@ -51246,6 +54660,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Platformines", "game_detection": [ @@ -51260,6 +54675,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Richard & Alice", "game_detection": [ @@ -51289,6 +54705,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tom Clancy's Splinter Cell: Conviction", "game_detection": [ @@ -51310,6 +54727,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Motte Island", "game_detection": [ @@ -51324,6 +54742,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cyberdimension Neptunia: 4 Goddesses Online", "game_detection": [ @@ -51337,6 +54756,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Peggle Extreme", "game_detection": [ @@ -51351,6 +54771,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "WWE 2K16", "game_detection": [ @@ -51365,6 +54786,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jewel Quest Mysteries", "game_detection": [ @@ -51379,6 +54801,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Madden NFL 2005", "game_detection": [ @@ -51391,6 +54814,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Woody Two-Legs Attack of the Zombie Pirates", "game_detection": [ @@ -51405,6 +54829,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gryphon Knight Epic", "game_detection": [ @@ -51419,6 +54844,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lost Saga", "game_detection": [ @@ -51439,6 +54865,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Assetto Corsa Competizio", "game_detection": [ @@ -51452,6 +54879,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "F1 2013", "game_detection": [ @@ -51466,6 +54894,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mirror's Edge: Catalyst", "game_detection": [ @@ -51477,6 +54906,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shadow Warrior", "game_detection": [ @@ -51491,6 +54921,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wanderland", "game_detection": [ @@ -51505,6 +54936,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pirates of the Caribbean: The Legend of Jack Sparrow", "game_detection": [ @@ -51516,6 +54948,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Millennium 3: Cry Wolf", "game_detection": [ @@ -51530,6 +54963,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Planet Alpha", "game_detection": [ @@ -51543,6 +54977,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "D.I.R.T.: Origin of the Species", "game_detection": [ @@ -51554,6 +54989,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Lab", "game_detection": [ @@ -51569,6 +55005,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crimes & Punishments: Sherlock Holmes", "game_detection": [ @@ -51583,6 +55020,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "8Bit Fiesta", "game_detection": [ @@ -51597,6 +55035,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Clannad", "game_detection": [ @@ -51611,6 +55050,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mana Crusher", "game_detection": [ @@ -51625,6 +55065,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "Crazy Arcade", "game_detection": [ @@ -51637,6 +55078,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Attractio", "game_detection": [ @@ -51651,6 +55093,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sonic Mania", "game_detection": [ @@ -51665,6 +55108,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "This Is the Police", "game_detection": [ @@ -51679,6 +55123,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Emergency 2013", "game_detection": [ @@ -51693,6 +55138,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Devil's Dare", "game_detection": [ @@ -51707,6 +55153,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Regeria Hope: Episode 1", "game_detection": [ @@ -51721,6 +55168,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vancouver 2010", "game_detection": [ @@ -51735,6 +55183,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dragon Quest Heroes: Slime Edition", "game_detection": [ @@ -51749,6 +55198,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Alpha Polaris", "game_detection": [ @@ -51760,6 +55210,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Middle-Earth: Shadow of War", "game_detection": [ @@ -51778,6 +55229,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Totally Reliable Delivery Service", "game_detection": [ @@ -51788,6 +55240,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Black Forest", "game_detection": [ @@ -51802,6 +55255,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lucidity", "game_detection": [ @@ -51816,6 +55270,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "PartyPoker", "game_detection": [ @@ -51828,6 +55283,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dracula 2: The Last Sanctuary", "game_detection": [ @@ -51842,6 +55298,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Slime Rancher", "game_detection": [ @@ -51861,6 +55318,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Smooth Operators", "game_detection": [ @@ -51875,6 +55333,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "HALP!", "game_detection": [ @@ -51890,6 +55349,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FIFA Manager 08", "game_detection": [ @@ -51901,6 +55361,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hob", "game_detection": [ @@ -51915,6 +55376,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Prominence Poker", "game_detection": [ @@ -51929,6 +55391,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Space Farmers", "game_detection": [ @@ -51943,6 +55406,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cars 2", "game_detection": [ @@ -51954,6 +55418,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fairway Solitaire", "game_detection": [ @@ -51968,6 +55433,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Guardians of Graxia", "game_detection": [ @@ -51982,6 +55448,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Oddworld: Munch's Oddysee", "game_detection": [ @@ -51996,6 +55463,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Let Hawaii Happen VR", "game_detection": [ @@ -52011,6 +55479,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kingpin: Life of Crime", "game_detection": [ @@ -52036,6 +55505,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Painkiller", "game_detection": [ @@ -52062,6 +55532,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Assassin’s Creed Chronicles: Russia", "game_detection": [ @@ -52076,6 +55547,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jack Orlando", "game_detection": [ @@ -52090,6 +55562,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Defenders of Ardania", "game_detection": [ @@ -52104,6 +55577,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Plants vs. Zombies: Garden Warfare", "game_detection": [ @@ -52115,6 +55589,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Starpoint Gemini 2", "game_detection": [ @@ -52129,6 +55604,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "/N.P.P.D. RUSH/- The milk of Ultraviolet", "game_detection": [ @@ -52143,6 +55619,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heroes of Might & Magic IV", "game_detection": [ @@ -52160,6 +55637,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tree of Life", "game_detection": [ @@ -52174,6 +55652,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "CastleMiner Z", "game_detection": [ @@ -52188,6 +55667,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "TERA: Rising", "game_detection": [ @@ -52216,6 +55696,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Iron Fisticle", "game_detection": [ @@ -52230,6 +55711,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nancy Drew: The Haunting of Castle Malloy", "game_detection": [ @@ -52244,6 +55726,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "NBA2K Online", "game_detection": [ @@ -52257,6 +55740,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tiger Woods PGA Tour 12: The Masters", "game_detection": [ @@ -52269,6 +55753,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "You Have to Win the Game", "game_detection": [ @@ -52288,6 +55773,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Need for Speed: Carbon Demo", "game_detection": [ @@ -52300,6 +55786,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "King's Quest: Mask of Eternity", "game_detection": [ @@ -52317,6 +55804,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gravel", "game_detection": [ @@ -52330,6 +55818,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Everlasting Summer", "game_detection": [ @@ -52344,6 +55833,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Blood Hockey", "game_detection": [ @@ -52358,6 +55848,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims 2 Apartment Life", "game_detection": [ @@ -52371,6 +55862,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wizardry Online", "game_detection": [ @@ -52392,6 +55884,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Furi", "game_detection": [ @@ -52406,6 +55899,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Company of Heroes 2", "game_detection": [ @@ -52420,6 +55914,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hearts of Iron 2", "game_detection": [ @@ -52431,6 +55926,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vertex Dispenser", "game_detection": [ @@ -52445,6 +55941,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 5", "game_detection": [ @@ -52456,6 +55953,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Death Road to Canada", "game_detection": [ @@ -52470,6 +55968,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Real Warfare II: Northern Crusades", "game_detection": [ @@ -52484,6 +55983,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Earth 2150: Lost Souls", "game_detection": [ @@ -52498,6 +55998,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Overcooked! 2", "game_detection": [ @@ -52511,6 +56012,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Operation Flashpoint: Cold War Crisis", "game_detection": [ @@ -52522,6 +56024,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rayman Origins", "game_detection": [ @@ -52542,6 +56045,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Styx: Master of Shadows", "game_detection": [ @@ -52556,6 +56060,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "QQ Black Jack", "game_detection": [ @@ -52568,6 +56073,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Divinity II: The Dragon Knight Saga", "game_detection": [ @@ -52588,6 +56094,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Age Of Empires III", "game_detection": [ @@ -52600,6 +56107,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tekken 7", "game_detection": [ @@ -52614,6 +56122,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Brookhaven Experiment", "game_detection": [ @@ -52629,6 +56138,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sang-Froid: Tales of Werewolves", "game_detection": [ @@ -52648,6 +56158,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zombie Solitaire", "game_detection": [ @@ -52662,6 +56173,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro Cycling Manager 2016", "game_detection": [ @@ -52676,6 +56188,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shadow Harvest: Phantom Ops", "game_detection": [ @@ -52690,6 +56203,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "InMind VR", "game_detection": [ @@ -52704,6 +56218,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Accounting", "game_detection": [ @@ -52719,6 +56234,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Avernum 5", "game_detection": [ @@ -52733,6 +56249,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "20XX", "game_detection": [ @@ -52747,6 +56264,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cthulhu Saves the World", "game_detection": [ @@ -52766,6 +56284,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Monster Challenge Circus", "game_detection": [ @@ -52780,6 +56299,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Borderlands", "game_detection": [ @@ -52799,6 +56319,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FiveM", "game_detection": [ @@ -52813,20 +56334,33 @@ ] }, { + "force_display_capture": true, + "region": null, + "title": "Counter-Strike 2", + "game_detection": [ + { + "gameexe": "cs2\\.exe$", + "launchexe": "/steam\\.exe", + "launchflags": "-applaunch 730", + "regkey": "HKEY_LOCAL_MACHINE/SOFTWARE/Valve/Steam/InstallPath", + "longname": "Counter-Strike 2 -Steam", + "edition": "(Steam)" + } + ] + }, + { + "force_display_capture": false, "region": null, "title": "RedM", "game_detection": [ { "gameexe": "/RedM_b.*_GTAProcess\\.exe|/RedM.app/cache/subprocess/RedM_GTAProcess\\.exe", "longname": "RedM" - }, - { - "gameexe": "/cache/subprocess/RedM_GTAProcess\\.exe", - "longname": "RedM" } ] }, { + "force_display_capture": false, "region": null, "title": "Crysis 3 Multiplayer Beta", "game_detection": [ @@ -52838,6 +56372,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Magicians & Looters", "game_detection": [ @@ -52852,6 +56387,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Elf Bowling: Hawaiian Vacation", "game_detection": [ @@ -52866,6 +56402,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Agarest: Generations of War", "game_detection": [ @@ -52880,6 +56417,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Out There Somewhere", "game_detection": [ @@ -52894,6 +56432,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "Rescue the Great Demon 2", "game_detection": [ @@ -52908,6 +56447,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mass Effect", "game_detection": [ @@ -52928,6 +56468,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Acan's Call: Act 1", "game_detection": [ @@ -52943,6 +56484,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Uncrowded", "game_detection": [ @@ -52957,6 +56499,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Omega Quintet", "game_detection": [ @@ -52971,6 +56514,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fly'N", "game_detection": [ @@ -52985,6 +56529,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Party Hard Tycoon", "game_detection": [ @@ -52999,6 +56544,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sengoku", "game_detection": [ @@ -53019,6 +56565,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Written in the Sky", "game_detection": [ @@ -53033,6 +56580,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Counter-Strike: Source", "game_detection": [ @@ -53048,6 +56596,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heroes of Might and Magic V: Hammers of Fate", "game_detection": [ @@ -53074,6 +56623,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "VALKYRIE DRIVE -BHIKKHUNI-", "game_detection": [ @@ -53088,6 +56638,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hurtworld", "game_detection": [ @@ -53106,6 +56657,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Border Officer", "game_detection": [ @@ -53116,6 +56668,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Elminage Gothic", "game_detection": [ @@ -53130,6 +56683,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nancy Drew Dossier: Lights, Camera, Curses!", "game_detection": [ @@ -53144,6 +56698,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NBA Live 2005", "game_detection": [ @@ -53155,6 +56710,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Conflict: Denied Ops", "game_detection": [ @@ -53174,6 +56730,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Madden NFL 19", "game_detection": [ @@ -53185,6 +56742,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cut the Rope", "game_detection": [ @@ -53199,6 +56757,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mortal Kombat 11", "game_detection": [ @@ -53213,6 +56772,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Flight Unlimited: Las Vegas", "game_detection": [ @@ -53227,6 +56787,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 6", "game_detection": [ @@ -53238,6 +56799,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fairy Bloom Freesia", "game_detection": [ @@ -53252,6 +56814,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "White Night", "game_detection": [ @@ -53266,6 +56829,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Farm Frenzy 4", "game_detection": [ @@ -53280,6 +56844,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spirit Tales", "game_detection": [ @@ -53293,6 +56858,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Holdfast: Nations At War", "game_detection": [ @@ -53307,6 +56873,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Twilight Struggle", "game_detection": [ @@ -53321,6 +56888,7 @@ ] }, { + "force_display_capture": false, "region": "JP", "title": "Chaos Heroes Online", "game_detection": [ @@ -53334,6 +56902,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BeamNG.drive", "game_detection": [ @@ -53348,6 +56917,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Legend of Heroes: Trails in the Sky SC", "game_detection": [ @@ -53362,6 +56932,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Anarcute", "game_detection": [ @@ -53376,6 +56947,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "World of Warcraft", "game_detection": [ @@ -53431,6 +57003,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Marvel's Guardians of the Galaxy: The Telltale Series", "game_detection": [ @@ -53445,6 +57018,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zigfrak", "game_detection": [ @@ -53459,6 +57033,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Void Bastards", "game_detection": [ @@ -53469,6 +57044,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The King of Fighters XIII: Steam Edition", "game_detection": [ @@ -53483,6 +57059,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Watchmen: The End Is Nigh Part 2", "game_detection": [ @@ -53497,6 +57074,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Slip", "game_detection": [ @@ -53517,6 +57095,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Edge Of Space", "game_detection": [ @@ -53531,6 +57110,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nancy Drew: Secrets Can Kill 2010", "game_detection": [ @@ -53545,6 +57125,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ossuary", "game_detection": [ @@ -53556,6 +57137,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ghost Recon Phantoms", "game_detection": [ @@ -53590,6 +57172,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bioshock", "game_detection": [ @@ -53610,6 +57193,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mount Your Friends 3D: A Hard Man Is Good To Climb", "game_detection": [ @@ -53623,6 +57207,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Company of Heroes Demo", "game_detection": [ @@ -53635,6 +57220,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Continuum", "game_detection": [ @@ -53646,6 +57232,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Red Crow Mysteries: Legion", "game_detection": [ @@ -53658,6 +57245,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Patriots: A Nation Under Fire", "game_detection": [ @@ -53670,6 +57258,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ravensword: Shadowlands", "game_detection": [ @@ -53689,6 +57278,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mooch", "game_detection": [ @@ -53703,6 +57293,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Quantum Break", "game_detection": [ @@ -53717,6 +57308,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "VEGA Conflict", "game_detection": [ @@ -53731,6 +57323,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sid Meier's Railroads!", "game_detection": [ @@ -53750,6 +57343,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Long Night", "game_detection": [ @@ -53764,6 +57358,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hearts of Iron IV", "game_detection": [ @@ -53782,6 +57377,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Far Cry 3: Blood Dragon", "game_detection": [ @@ -53803,6 +57399,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Governor of Poker 3", "game_detection": [ @@ -53817,6 +57414,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Carnivores: Dinosaur Hunter Reborn", "game_detection": [ @@ -53831,6 +57429,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Teeworlds", "game_detection": [ @@ -53850,6 +57449,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zeno Clash II", "game_detection": [ @@ -53864,6 +57464,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Old Man's Journey", "game_detection": [ @@ -53874,6 +57475,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Block'hood", "game_detection": [ @@ -53888,6 +57490,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Krunch", "game_detection": [ @@ -53907,6 +57510,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Puppet Master", "game_detection": [ @@ -53921,6 +57525,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tomb Raider: Underworld", "game_detection": [ @@ -53941,6 +57546,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bomberman Online", "game_detection": [ @@ -53953,6 +57559,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Painkiller: Hell & Damnation", "game_detection": [ @@ -53967,6 +57574,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zombies Monsters Robots", "game_detection": [ @@ -53988,6 +57596,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Adventure Chronicles: The Search For Lost Treasure", "game_detection": [ @@ -54002,6 +57611,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Mechanicus", "game_detection": [ @@ -54012,6 +57622,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Culling", "game_detection": [ @@ -54026,6 +57637,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MotoGP 3", "game_detection": [ @@ -54037,6 +57649,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Assassin's Creed II", "game_detection": [ @@ -54057,6 +57670,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pony Island", "game_detection": [ @@ -54071,6 +57685,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BossConstructor", "game_detection": [ @@ -54085,6 +57700,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Family Feud II", "game_detection": [ @@ -54099,6 +57715,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rigs of Rods", "game_detection": [ @@ -54119,6 +57736,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark Scavenger", "game_detection": [ @@ -54133,6 +57751,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Doom 3", "game_detection": [ @@ -54154,6 +57773,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Night Cafe", "game_detection": [ @@ -54168,6 +57788,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Action Henk", "game_detection": [ @@ -54182,6 +57803,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Better Late Than DEAD", "game_detection": [ @@ -54196,6 +57818,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "My Best Friends: Cats & Dogs", "game_detection": [ @@ -54210,6 +57833,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Adventurer Manager", "game_detection": [ @@ -54224,6 +57848,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Mysterious Cities of Gold", "game_detection": [ @@ -54238,6 +57863,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Defense Technica", "game_detection": [ @@ -54252,6 +57878,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Get Off My Lawn!", "game_detection": [ @@ -54266,6 +57893,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Planetary Annihilation", "game_detection": [ @@ -54287,6 +57915,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Far Cry", "game_detection": [ @@ -54306,6 +57935,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "WWE 2K15", "game_detection": [ @@ -54320,6 +57950,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Steven Universe: Save the Light", "game_detection": [ @@ -54333,6 +57964,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Naval Warfare", "game_detection": [ @@ -54347,6 +57979,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Batla", "game_detection": [ @@ -54361,6 +57994,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Divide by Sheep", "game_detection": [ @@ -54375,6 +58009,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LEGO Batman 3: Beyond Gotham", "game_detection": [ @@ -54393,6 +58028,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wings Over Europe: Cold War Gone Hot", "game_detection": [ @@ -54418,6 +58054,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Elizabeth Find MD: Diagnosis Mystery - Season 2", "game_detection": [ @@ -54432,6 +58069,7 @@ ] }, { + "force_display_capture": false, "region": "UK", "title": "Sudeki", "game_detection": [ @@ -54452,6 +58090,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Conflict: Desert Storm", "game_detection": [ @@ -54465,6 +58104,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Atom Zombie Smasher", "game_detection": [ @@ -54485,6 +58125,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Supernova", "game_detection": [ @@ -54498,6 +58139,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gemini Rue", "game_detection": [ @@ -54517,6 +58159,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Final Rush", "game_detection": [ @@ -54531,6 +58174,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Starseed Pilgrim", "game_detection": [ @@ -54550,6 +58194,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims Life Stories", "game_detection": [ @@ -54562,6 +58207,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeons & Dragons: Daggerdale", "game_detection": [ @@ -54576,6 +58222,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Assassin's Creed: Revelations", "game_detection": [ @@ -54596,6 +58243,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Putt-Putt and Fatty Bear's Activity Pack", "game_detection": [ @@ -54610,6 +58258,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gary the Gull", "game_detection": [ @@ -54625,6 +58274,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Roller Coaster Rampage", "game_detection": [ @@ -54639,6 +58289,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hyperspace Invaders II: Pixel Edition", "game_detection": [ @@ -54653,6 +58304,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crouching Pony Hidden Dragon", "game_detection": [ @@ -54667,6 +58319,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Beijing Olympics 2008", "game_detection": [ @@ -54678,6 +58331,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Starsiege: Tribes", "game_detection": [ @@ -54689,6 +58343,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Geometry Dash", "game_detection": [ @@ -54703,6 +58358,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "fault milestone one", "game_detection": [ @@ -54717,6 +58373,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rogue Shooter: The FPS Roguelike", "game_detection": [ @@ -54731,6 +58388,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Off-Road Drive", "game_detection": [ @@ -54745,6 +58403,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Neighbors From Hell: On Vacation", "game_detection": [ @@ -54765,6 +58424,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead Sky", "game_detection": [ @@ -54779,6 +58439,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The First Templar", "game_detection": [ @@ -54799,6 +58460,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rez Infinite", "game_detection": [ @@ -54813,6 +58475,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Project Torque", "game_detection": [ @@ -54825,6 +58488,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MINERVA", "game_detection": [ @@ -54839,6 +58503,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer Online: Age of Reckoning", "game_detection": [ @@ -54900,6 +58565,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bonnie's Bookstore Deluxe", "game_detection": [ @@ -54913,6 +58579,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Raiden IV: OverKill", "game_detection": [ @@ -54927,6 +58594,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Skyforge", "game_detection": [ @@ -54939,6 +58607,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "StarCraft Remastered", "game_detection": [ @@ -54952,6 +58621,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Depths of Peril", "game_detection": [ @@ -54971,6 +58641,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Recettear: An Item Shop's Tale", "game_detection": [ @@ -54990,6 +58661,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Viking Brothers", "game_detection": [ @@ -55004,6 +58676,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zombie Driver", "game_detection": [ @@ -55018,6 +58691,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spider Solitaire", "game_detection": [ @@ -55048,6 +58722,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Postal", "game_detection": [ @@ -55073,6 +58748,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warface", "game_detection": [ @@ -55101,6 +58777,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Empire Earth", "game_detection": [ @@ -55112,6 +58789,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Krater", "game_detection": [ @@ -55126,6 +58804,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Freddi Fish and Luther's Water Worries", "game_detection": [ @@ -55140,6 +58819,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Boss Monster", "game_detection": [ @@ -55154,6 +58834,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cubetractor", "game_detection": [ @@ -55175,6 +58856,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sakura Santa", "game_detection": [ @@ -55189,6 +58871,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Creature", "game_detection": [ @@ -55200,6 +58883,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Flock", "game_detection": [ @@ -55214,6 +58898,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Watchmen: The End Is Nigh", "game_detection": [ @@ -55228,6 +58913,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MSI Electric City", "game_detection": [ @@ -55243,6 +58929,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DCS World", "game_detection": [ @@ -55257,6 +58944,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mega Man X Legacy Collection", "game_detection": [ @@ -55270,6 +58958,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Angeldust", "game_detection": [ @@ -55284,6 +58973,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hollywood Mogul 3", "game_detection": [ @@ -55295,6 +58985,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Surgeon Simulator 2013", "game_detection": [ @@ -55314,6 +59005,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DarkStar One", "game_detection": [ @@ -55333,6 +59025,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims Carnival: SnapCity", "game_detection": [ @@ -55344,6 +59037,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dawn of Discovery: Venice", "game_detection": [ @@ -55355,6 +59049,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro Cycling Manager Season 2008", "game_detection": [ @@ -55374,6 +59069,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Special Forces: Team X", "game_detection": [ @@ -55388,6 +59084,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Harry Potter and the Sorcerer's Stone", "game_detection": [ @@ -55401,6 +59098,7 @@ ] }, { + "force_display_capture": false, "region": "BR", "title": "Eligium", "game_detection": [ @@ -55414,6 +59112,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ANNO 2070", "game_detection": [ @@ -55434,6 +59133,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Twin Sector", "game_detection": [ @@ -55448,6 +59148,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Binary Domain", "game_detection": [ @@ -55461,6 +59162,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Terrian Saga: KR-17", "game_detection": [ @@ -55475,6 +59177,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Castlevania: Lords of Shadow 2", "game_detection": [ @@ -55489,6 +59192,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Factorio", "game_detection": [ @@ -55503,6 +59207,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark Void", "game_detection": [ @@ -55517,6 +59222,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Treasure Adventure Game", "game_detection": [ @@ -55528,6 +59234,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Party Jousting", "game_detection": [ @@ -55542,6 +59249,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sword of the Stars II: Enhanced Edition", "game_detection": [ @@ -55556,6 +59264,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Book of Legends", "game_detection": [ @@ -55570,6 +59279,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Amazing Princess Sarah", "game_detection": [ @@ -55584,6 +59294,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "X-Plane 10", "game_detection": [ @@ -55598,6 +59309,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battle Islands", "game_detection": [ @@ -55612,6 +59324,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "War of the Immortals", "game_detection": [ @@ -55638,6 +59351,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pets Fun House", "game_detection": [ @@ -55652,6 +59366,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rooms: The Unsolvable Puzzle", "game_detection": [ @@ -55666,6 +59381,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Steep", "game_detection": [ @@ -55694,6 +59410,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mutant Mudds Deluxe", "game_detection": [ @@ -55708,6 +59425,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mystic Destinies: Serendipity of Aeons", "game_detection": [ @@ -55722,6 +59440,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bloodwood Reload", "game_detection": [ @@ -55736,6 +59455,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bodog Poker", "game_detection": [ @@ -55747,6 +59467,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Just Cause 4", "game_detection": [ @@ -55757,6 +59478,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Geometry Wars 3: Dimensions", "game_detection": [ @@ -55771,6 +59493,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mutant Football League", "game_detection": [ @@ -55784,6 +59507,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "CAGE", "game_detection": [ @@ -55798,6 +59522,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark Matter", "game_detection": [ @@ -55812,6 +59537,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GGPO", "game_detection": [ @@ -55824,6 +59550,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Saira", "game_detection": [ @@ -55838,6 +59565,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Real Horror Stories Ultimate Edition", "game_detection": [ @@ -55852,6 +59580,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DarkEden", "game_detection": [ @@ -55873,6 +59602,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Lost Crown: A Ghosthunting Adventure", "game_detection": [ @@ -55887,6 +59617,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "PixelJunk Monsters Ultimate", "game_detection": [ @@ -55906,6 +59637,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Call of Juarez: Bound in Blood", "game_detection": [ @@ -55925,6 +59657,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Seven: The Days Long Gone", "game_detection": [ @@ -55939,6 +59672,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Army of Earth", "game_detection": [ @@ -55950,6 +59684,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Fleets of Sol", "game_detection": [ @@ -55964,6 +59699,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Planet of the Eyes", "game_detection": [ @@ -55978,6 +59714,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tomb Raider: The Angel of Darkness", "game_detection": [ @@ -55990,6 +59727,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pixelus Deluxe", "game_detection": [ @@ -56003,6 +59741,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mechwarrior 3", "game_detection": [ @@ -56014,6 +59753,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BLOCKADE 3D", "game_detection": [ @@ -56028,6 +59768,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hammerwatch", "game_detection": [ @@ -56047,6 +59788,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heroes of Annihilated Empires", "game_detection": [ @@ -56058,6 +59800,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pillars of Eternity II: Deadfire", "game_detection": [ @@ -56071,6 +59814,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Chronicles of Spellborn", "game_detection": [ @@ -56084,6 +59828,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eleven: Table Tennis VR", "game_detection": [ @@ -56099,6 +59844,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zentia", "game_detection": [ @@ -56112,6 +59858,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Project Genom", "game_detection": [ @@ -56126,6 +59873,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Pandora Directive", "game_detection": [ @@ -56140,6 +59888,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Potioneer: The VR Gardening Simulator", "game_detection": [ @@ -56155,6 +59904,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nandeyanen!? - The 1st Sûtra", "game_detection": [ @@ -56169,6 +59919,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "CRIMSON ROOM: DECADE", "game_detection": [ @@ -56183,6 +59934,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Knights of Honor", "game_detection": [ @@ -56197,6 +59949,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Black Rainbow", "game_detection": [ @@ -56211,6 +59964,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The King Of Fighters '97 Global Match", "game_detection": [ @@ -56224,6 +59978,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Robin's Quest", "game_detection": [ @@ -56238,6 +59993,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Corpse of Discovery", "game_detection": [ @@ -56252,6 +60008,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tom Clancy's Rainbow Six 3 Gold Edition", "game_detection": [ @@ -56266,6 +60023,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mist Survival", "game_detection": [ @@ -56276,6 +60034,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "4PM", "game_detection": [ @@ -56290,6 +60049,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Garshasp: The Monster Slayer", "game_detection": [ @@ -56304,6 +60064,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Skeet: VR Target Shooting", "game_detection": [ @@ -56319,6 +60080,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Project CARS 2", "game_detection": [ @@ -56333,6 +60095,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ys: Memories of Celceta", "game_detection": [ @@ -56346,6 +60109,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tom Clancy's Splinter Cell: Chaos Theory", "game_detection": [ @@ -56376,6 +60140,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gunnheim", "game_detection": [ @@ -56390,6 +60155,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LEGO The Hobbit", "game_detection": [ @@ -56404,6 +60170,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Post Scriptum", "game_detection": [ @@ -56417,6 +60184,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Catch Me", "game_detection": [ @@ -56431,6 +60199,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Replay: VHS is not dead", "game_detection": [ @@ -56445,6 +60214,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Portal", "game_detection": [ @@ -56459,6 +60229,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pariah", "game_detection": [ @@ -56471,6 +60242,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nancy Drew: Ghost Dogs of Moon Lake", "game_detection": [ @@ -56485,6 +60257,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Faeria", "game_detection": [ @@ -56499,6 +60272,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Real Myst", "game_detection": [ @@ -56513,6 +60287,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Clones", "game_detection": [ @@ -56527,6 +60302,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A.R.E.S.: Extinction Agenda", "game_detection": [ @@ -56541,6 +60317,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Injustice: Gods Among Us", "game_detection": [ @@ -56555,6 +60332,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "7 Days to Die", "game_detection": [ @@ -56570,6 +60348,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead Island: Epidemic", "game_detection": [ @@ -56584,6 +60363,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Harvest Moon: Light of Hope", "game_detection": [ @@ -56598,6 +60378,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bejeweled Deluxe", "game_detection": [ @@ -56618,6 +60399,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "East India Company: Pirate Bay", "game_detection": [ @@ -56632,6 +60414,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FIFA Manager 10", "game_detection": [ @@ -56646,6 +60429,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Galactic Civilizations: Altarian Prophecy", "game_detection": [ @@ -56659,6 +60443,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Doom II", "game_detection": [ @@ -56673,6 +60458,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nethergate: Resurrection", "game_detection": [ @@ -56687,6 +60473,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Delta Force: Black Hawk Down Team Sabre", "game_detection": [ @@ -56701,6 +60488,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Brick-Force", "game_detection": [ @@ -56720,6 +60508,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hailan Rising", "game_detection": [ @@ -56731,6 +60520,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "WWII Battle Tanks: T-34 vs. Tiger", "game_detection": [ @@ -56742,6 +60532,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Metal Gear Solid", "game_detection": [ @@ -56754,6 +60545,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rebel Galaxy", "game_detection": [ @@ -56772,6 +60564,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Screencheat", "game_detection": [ @@ -56786,6 +60579,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kopanito All-Stars Soccer", "game_detection": [ @@ -56801,6 +60595,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Campaign Clicker", "game_detection": [ @@ -56815,6 +60610,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Magicka", "game_detection": [ @@ -56829,6 +60625,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Avadon: The Black Fortress", "game_detection": [ @@ -56853,6 +60650,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dropsy", "game_detection": [ @@ -56867,6 +60665,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lost Orbit", "game_detection": [ @@ -56881,6 +60680,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Darwinia", "game_detection": [ @@ -56905,6 +60705,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wooden Sen'SeY", "game_detection": [ @@ -56919,6 +60720,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Total War: WARHAMMER", "game_detection": [ @@ -56933,6 +60735,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Luvinia", "game_detection": [ @@ -56945,6 +60748,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Forgotten Ones", "game_detection": [ @@ -56959,6 +60763,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Longest Journey", "game_detection": [ @@ -56973,6 +60778,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Culpa Innata", "game_detection": [ @@ -56987,6 +60793,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crazy Killer", "game_detection": [ @@ -57001,6 +60808,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome", "game_detection": [ @@ -57020,6 +60828,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungelot", "game_detection": [ @@ -57031,6 +60840,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Painkiller: Black Edition", "game_detection": [ @@ -57045,6 +60855,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Wars Empire At War - Forces Of Corruption", "game_detection": [ @@ -57056,6 +60867,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Legacy of Kain: Soul Reaver", "game_detection": [ @@ -57075,6 +60887,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Clickr", "game_detection": [ @@ -57089,6 +60902,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Subnautica", "game_detection": [ @@ -57103,6 +60917,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Serious Sam HD: The First Encounter", "game_detection": [ @@ -57117,6 +60932,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crysis Warhead", "game_detection": [ @@ -57138,6 +60954,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Codename: Rogue Fleet", "game_detection": [ @@ -57152,6 +60969,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "eden*", "game_detection": [ @@ -57166,6 +60984,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ROD: Revolt Of Defense", "game_detection": [ @@ -57180,6 +60999,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FIFA Soccer 09 Demo", "game_detection": [ @@ -57191,6 +61011,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hatoful Boyfriend: Holiday Star", "game_detection": [ @@ -57205,6 +61026,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Codename: Panzers Phase 1", "game_detection": [ @@ -57223,6 +61045,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Secret of Tremendous Corporation", "game_detection": [ @@ -57237,6 +61060,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Mega Baseball: Extra Innings", "game_detection": [ @@ -57251,6 +61075,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Swarm Arena", "game_detection": [ @@ -57265,6 +61090,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battle Chef Brigade", "game_detection": [ @@ -57279,6 +61105,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "King's Bounty: Dark Side", "game_detection": [ @@ -57293,6 +61120,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "StarCraft II: Heart of the Swarm", "game_detection": [ @@ -57306,6 +61134,7 @@ ] }, { + "force_display_capture": false, "region": "TR", "title": "ZombiRock", "game_detection": [ @@ -57319,6 +61148,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Who's That Flying?!", "game_detection": [ @@ -57333,6 +61163,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Drox Operative", "game_detection": [ @@ -57352,6 +61183,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "XIII Century Gold Edition", "game_detection": [ @@ -57366,6 +61198,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Full Tilt Poker", "game_detection": [ @@ -57385,6 +61218,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hide and Shriek", "game_detection": [ @@ -57399,6 +61233,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rise of the Triad", "game_detection": [ @@ -57413,6 +61248,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Finn and Jake's Epic Quest", "game_detection": [ @@ -57427,6 +61263,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ground Control 2", "game_detection": [ @@ -57438,6 +61275,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Atom Universe", "game_detection": [ @@ -57452,6 +61290,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tradewinds Caravans", "game_detection": [ @@ -57466,6 +61305,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Black Squad", "game_detection": [ @@ -57484,6 +61324,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ceres", "game_detection": [ @@ -57498,6 +61339,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "James Bond: 007 Legends", "game_detection": [ @@ -57512,6 +61354,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Afterfall: InSanity Extended Edition", "game_detection": [ @@ -57526,6 +61369,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Golf Club VR", "game_detection": [ @@ -57541,6 +61385,7 @@ ] }, { + "force_display_capture": false, "region": "RU", "title": "Planet Alcatraz", "game_detection": [ @@ -57555,6 +61400,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cabela's Hunting Expeditions", "game_detection": [ @@ -57569,6 +61415,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pirates of Black Cove", "game_detection": [ @@ -57583,6 +61430,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Darkfall Online", "game_detection": [ @@ -57605,6 +61453,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Noah's Ark Deluxe", "game_detection": [ @@ -57618,6 +61467,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lords Mobile", "game_detection": [ @@ -57628,6 +61478,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Magnetic By Nature", "game_detection": [ @@ -57647,6 +61498,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FIFA World", "game_detection": [ @@ -57658,6 +61510,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mass Effect 3", "game_detection": [ @@ -57670,6 +61523,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Transistor", "game_detection": [ @@ -57684,6 +61538,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Age of Mythology: The Titans", "game_detection": [ @@ -57695,6 +61550,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Panty Party", "game_detection": [ @@ -57709,6 +61565,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Karos Online", "game_detection": [ @@ -57730,6 +61587,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Phun", "game_detection": [ @@ -57741,6 +61599,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Monster Prom", "game_detection": [ @@ -57754,6 +61613,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Loong Online", "game_detection": [ @@ -57766,6 +61626,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Don't Starve", "game_detection": [ @@ -57785,6 +61646,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "World in Conflict", "game_detection": [ @@ -57811,6 +61673,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LEGO Lord of the Rings", "game_detection": [ @@ -57830,6 +61693,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tony Hawk's Pro Skater 4", "game_detection": [ @@ -57842,6 +61706,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Motherload", "game_detection": [ @@ -57856,6 +61721,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Guild Wars", "game_detection": [ @@ -57876,6 +61742,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Into The Breach", "game_detection": [ @@ -57889,6 +61756,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Millionaire Manor", "game_detection": [ @@ -57903,6 +61771,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Trek: Legacy", "game_detection": [ @@ -57914,6 +61783,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Project Freedom", "game_detection": [ @@ -57928,6 +61798,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Corporate Lifestyle Simulator", "game_detection": [ @@ -57942,6 +61813,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chris Sawyer's: Locomotion", "game_detection": [ @@ -57953,6 +61825,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Cane Magic ZERO", "game_detection": [ @@ -57967,6 +61840,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Claire", "game_detection": [ @@ -57981,6 +61855,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MXGP - The Official Motocross Videogame", "game_detection": [ @@ -57995,6 +61870,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SoulCalibur VI", "game_detection": [ @@ -58005,6 +61881,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Life is Feudal MMO", "game_detection": [ @@ -58015,6 +61892,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Hipster Lumberjack", "game_detection": [ @@ -58029,6 +61907,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Melody's Escape", "game_detection": [ @@ -58043,6 +61922,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shadow of Kingdoms", "game_detection": [ @@ -58057,6 +61937,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Unearthed Inc: The Lost Temple", "game_detection": [ @@ -58071,6 +61952,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Akane the Kunoichi", "game_detection": [ @@ -58085,6 +61967,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spartans Vs Zombies Defense", "game_detection": [ @@ -58099,6 +61982,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Subsistence", "game_detection": [ @@ -58113,6 +61997,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FRACT OSC", "game_detection": [ @@ -58132,6 +62017,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Proun", "game_detection": [ @@ -58144,6 +62030,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Impire", "game_detection": [ @@ -58158,6 +62045,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Toybox Turbos", "game_detection": [ @@ -58172,6 +62060,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Binding of Isaac: Rebirth", "game_detection": [ @@ -58186,6 +62075,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spellweaver", "game_detection": [ @@ -58205,6 +62095,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Combat Monsters", "game_detection": [ @@ -58219,6 +62110,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Moonrise", "game_detection": [ @@ -58233,6 +62125,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shank", "game_detection": [ @@ -58252,6 +62145,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Afterfall: Insanity - Dirty Arena Edition", "game_detection": [ @@ -58266,6 +62160,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spacewar!", "game_detection": [ @@ -58280,6 +62175,7 @@ ] }, { + "force_display_capture": false, "region": "BR", "title": "Elsword", "game_detection": [ @@ -58294,6 +62190,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "X-COM: Apocalypse", "game_detection": [ @@ -58308,6 +62205,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hunt: Showdown", "game_detection": [ @@ -58329,6 +62227,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cosmonautica", "game_detection": [ @@ -58343,6 +62242,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Duke Nukem 3D: 20th Anniversary World Tour", "game_detection": [ @@ -58358,6 +62258,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Amphora", "game_detection": [ @@ -58377,6 +62278,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sho Online", "game_detection": [ @@ -58389,6 +62291,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Taito Legends", "game_detection": [ @@ -58400,6 +62303,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Forgotton Anne", "game_detection": [ @@ -58413,6 +62317,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kingdoms and Castles", "game_detection": [ @@ -58427,6 +62332,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Conquest of Champions", "game_detection": [ @@ -58441,6 +62347,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eador: Masters of the Broken World", "game_detection": [ @@ -58472,6 +62379,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Age of Empires", "game_detection": [ @@ -58483,6 +62391,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The White Birch", "game_detection": [ @@ -58502,6 +62411,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Port Royale 2", "game_detection": [ @@ -58522,6 +62432,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Agricultural Simulator: Historical Farming", "game_detection": [ @@ -58536,6 +62447,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "InFlux", "game_detection": [ @@ -58550,6 +62462,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ItzaZoo", "game_detection": [ @@ -58564,6 +62477,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Air Conflicts: Vietnam", "game_detection": [ @@ -58578,6 +62492,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Underhero", "game_detection": [ @@ -58588,6 +62503,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "99 Levels To Hell", "game_detection": [ @@ -58602,6 +62518,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Bomberman R", "game_detection": [ @@ -58612,6 +62529,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Lemonade Factory", "game_detection": [ @@ -58626,6 +62544,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Qvadriga", "game_detection": [ @@ -58640,6 +62559,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Trino", "game_detection": [ @@ -58654,6 +62574,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Satazius", "game_detection": [ @@ -58668,6 +62589,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Elder Sign: Omens", "game_detection": [ @@ -58682,6 +62604,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Children of Zodiarcs", "game_detection": [ @@ -58696,6 +62619,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Aperture Tag", "game_detection": [ @@ -58710,6 +62634,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cesar Millan's Dog Whisperer", "game_detection": [ @@ -58721,6 +62646,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Need For Speed 3: Hot Pursuit", "game_detection": [ @@ -58732,6 +62658,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Aggression: Europe Under Fire", "game_detection": [ @@ -58746,6 +62673,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Assassin's Creed Origins", "game_detection": [ @@ -58768,6 +62696,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2008", "game_detection": [ @@ -58779,6 +62708,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battleline: Steel Warfare", "game_detection": [ @@ -58791,6 +62721,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Homeworld: Deserts of Kharak", "game_detection": [ @@ -58805,6 +62736,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Achtung Panzer: Kharkov 1943", "game_detection": [ @@ -58816,6 +62748,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Light Bearers", "game_detection": [ @@ -58826,6 +62759,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crossing Souls", "game_detection": [ @@ -58839,6 +62773,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims 4", "game_detection": [ @@ -58855,6 +62790,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lost Horizon", "game_detection": [ @@ -58874,6 +62810,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Inversion", "game_detection": [ @@ -58888,6 +62825,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Virtual Families", "game_detection": [ @@ -58902,6 +62840,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Future Wars", "game_detection": [ @@ -58916,6 +62855,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Anthem", "game_detection": [ @@ -58930,6 +62870,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Harry Potter and the Deathly Hallows: Part 2", "game_detection": [ @@ -58941,6 +62882,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MySims", "game_detection": [ @@ -58953,6 +62895,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Roaming Fortress", "game_detection": [ @@ -58972,6 +62915,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Interstate '76", "game_detection": [ @@ -58983,6 +62927,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Five Nights at Freddy's 4", "game_detection": [ @@ -58997,6 +62942,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Splash Fighters", "game_detection": [ @@ -59009,6 +62955,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dustwind", "game_detection": [ @@ -59022,6 +62969,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Brian Lara International Cricket 2007", "game_detection": [ @@ -59033,6 +62981,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Luxor 3", "game_detection": [ @@ -59047,6 +62996,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shadowrun Returns", "game_detection": [ @@ -59072,6 +63022,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cook, Serve, Delicious!", "game_detection": [ @@ -59092,6 +63043,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lethal Tactics", "game_detection": [ @@ -59106,6 +63058,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battlefield 2142 Demo", "game_detection": [ @@ -59120,6 +63073,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Light", "game_detection": [ @@ -59134,6 +63088,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Clicker Guild", "game_detection": [ @@ -59148,6 +63103,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Portal 2: Sixense Perceptual Pack", "game_detection": [ @@ -59162,6 +63118,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Toy Soldiers: War Chest", "game_detection": [ @@ -59176,6 +63133,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Steel Legions", "game_detection": [ @@ -59190,6 +63148,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Temporal", "game_detection": [ @@ -59201,6 +63160,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "James Cameron's Avatar: The Game", "game_detection": [ @@ -59215,6 +63175,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "CrossFire", "game_detection": [ @@ -59229,6 +63190,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kairo", "game_detection": [ @@ -59243,6 +63205,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "O.R.B.", "game_detection": [ @@ -59257,6 +63220,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Strata", "game_detection": [ @@ -59271,6 +63235,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lost girl`s [diary]", "game_detection": [ @@ -59285,6 +63250,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sine Mora", "game_detection": [ @@ -59299,6 +63265,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stonehearth", "game_detection": [ @@ -59312,6 +63279,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Model Train 3D", "game_detection": [ @@ -59323,6 +63291,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tom Clancy's Rainbow Six Rogue Spear: Urban Operations", "game_detection": [ @@ -59334,6 +63303,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "UFO: Extraterrestrials Gold Edition", "game_detection": [ @@ -59348,6 +63318,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A.R.E.S. Extinction Agenda EX", "game_detection": [ @@ -59363,6 +63334,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hearts of Iron 2: Doomsday", "game_detection": [ @@ -59383,6 +63355,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Desperate Housewives", "game_detection": [ @@ -59394,6 +63367,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fist Puncher", "game_detection": [ @@ -59408,6 +63382,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shadowgrounds Survivor", "game_detection": [ @@ -59428,6 +63403,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Insecticide", "game_detection": [ @@ -59442,6 +63418,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "World War 3: Black Gold", "game_detection": [ @@ -59456,6 +63433,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Flanker 2.5", "game_detection": [ @@ -59467,6 +63445,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MechWarrior Online", "game_detection": [ @@ -59501,6 +63480,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rugby 15", "game_detection": [ @@ -59515,6 +63495,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hotline Miami 2: Wrong Number", "game_detection": [ @@ -59534,6 +63515,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "Tales Runner", "game_detection": [ @@ -59551,6 +63533,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blitz1941", "game_detection": [ @@ -59563,6 +63546,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeonland", "game_detection": [ @@ -59577,6 +63561,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Payday: The Heist", "game_detection": [ @@ -59591,6 +63576,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mugen Souls", "game_detection": [ @@ -59605,6 +63591,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Urban Terror", "game_detection": [ @@ -59630,6 +63617,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeonmans", "game_detection": [ @@ -59644,6 +63632,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Disgaea PC", "game_detection": [ @@ -59658,6 +63647,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hide & Spook: The Haunted Alchemist", "game_detection": [ @@ -59672,6 +63662,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Omerta: City of Gangsters", "game_detection": [ @@ -59686,6 +63677,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ashes of the Singularity", "game_detection": [ @@ -59701,6 +63693,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Trucks & Trailers", "game_detection": [ @@ -59715,6 +63708,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FIFA 16", "game_detection": [ @@ -59726,6 +63720,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Master Reboot", "game_detection": [ @@ -59740,6 +63735,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Madden NFL 07", "game_detection": [ @@ -59758,6 +63754,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Demolition Company Gold", "game_detection": [ @@ -59772,6 +63769,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Watch Dogs", "game_detection": [ @@ -59793,6 +63791,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Golden Compass", "game_detection": [ @@ -59805,6 +63804,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Settlers III", "game_detection": [ @@ -59816,6 +63816,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LEGO Batman: The Videogame", "game_detection": [ @@ -59835,6 +63836,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dystopia", "game_detection": [ @@ -59849,6 +63851,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ARMA: Cold War Assault", "game_detection": [ @@ -59863,6 +63866,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Trainz Simulator 2009: World Builder Edition", "game_detection": [ @@ -59884,6 +63888,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mitsurugi Kamui Hikae", "game_detection": [ @@ -59903,6 +63908,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ARAYA", "game_detection": [ @@ -59917,6 +63923,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Section 8: Prejudice", "game_detection": [ @@ -59937,6 +63944,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Victoria: Revolutions", "game_detection": [ @@ -59951,6 +63959,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Azure Striker Gunvolt", "game_detection": [ @@ -59965,6 +63974,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "World of Warships", "game_detection": [ @@ -59993,6 +64003,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Transcendence", "game_detection": [ @@ -60004,6 +64015,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Farming Giant", "game_detection": [ @@ -60018,6 +64030,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cobi Treasure Deluxe", "game_detection": [ @@ -60032,6 +64045,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Unravel", "game_detection": [ @@ -60044,6 +64058,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Serious Sam Double D", "game_detection": [ @@ -60069,6 +64084,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kenshi", "game_detection": [ @@ -60093,6 +64109,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zero Time Dilemma", "game_detection": [ @@ -60107,6 +64124,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sea Will Claim Everything", "game_detection": [ @@ -60119,6 +64137,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bloop Reloaded", "game_detection": [ @@ -60133,6 +64152,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tribes 2", "game_detection": [ @@ -60146,6 +64166,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MORDHAU", "game_detection": [ @@ -60164,6 +64185,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LEVEL 22", "game_detection": [ @@ -60178,6 +64200,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Iconoclasts", "game_detection": [ @@ -60196,6 +64219,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shadow Man", "game_detection": [ @@ -60210,6 +64234,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Knight Age", "game_detection": [ @@ -60222,6 +64247,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Soldier of Fortune: Payback", "game_detection": [ @@ -60233,6 +64259,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SD Gundam Capsule Fighter", "game_detection": [ @@ -60247,6 +64274,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Insanely Twisted Shadow Planet", "game_detection": [ @@ -60266,6 +64294,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Teleglitch", "game_detection": [ @@ -60285,6 +64314,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Piercing Blow", "game_detection": [ @@ -60313,6 +64343,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Plane Mechanic Simulator", "game_detection": [ @@ -60323,6 +64354,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "King Arthur: Fallen Champions", "game_detection": [ @@ -60337,6 +64369,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Missing Translation", "game_detection": [ @@ -60351,6 +64384,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nancy Drew Dossier: Resorting to Danger", "game_detection": [ @@ -60365,6 +64399,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Stomping Land", "game_detection": [ @@ -60379,6 +64414,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Galactic Arms Race", "game_detection": [ @@ -60398,6 +64434,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FLASHOUT 2", "game_detection": [ @@ -60412,6 +64449,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vault Cracker", "game_detection": [ @@ -60426,6 +64464,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Creeper World III: Arc Eternal", "game_detection": [ @@ -60440,6 +64479,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sword of the Stars: Born of Blood", "game_detection": [ @@ -60451,6 +64491,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Eternal Crusade", "game_detection": [ @@ -60465,6 +64506,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The King of Fighters XIV", "game_detection": [ @@ -60487,6 +64529,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nidhogg", "game_detection": [ @@ -60501,6 +64544,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A Bird Story", "game_detection": [ @@ -60520,6 +64564,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Transport Fever", "game_detection": [ @@ -60534,6 +64579,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Senran Kagura: Bon Appetit! - Full Course", "game_detection": [ @@ -60548,6 +64594,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Frederic: Resurrection of Music", "game_detection": [ @@ -60562,6 +64609,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Smoke and Sacrifice", "game_detection": [ @@ -60575,6 +64623,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Putt-Putt and Pep's Balloon-o-Rama", "game_detection": [ @@ -60589,6 +64638,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Attack Heroes", "game_detection": [ @@ -60603,6 +64653,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ys I Chronicles+", "game_detection": [ @@ -60617,6 +64668,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tooth and Tail", "game_detection": [ @@ -60631,6 +64683,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "There's Poop In My Soup", "game_detection": [ @@ -60645,6 +64698,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tokyo 42", "game_detection": [ @@ -60659,6 +64713,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Wonderful End of the World", "game_detection": [ @@ -60673,6 +64728,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Omerta: City of Gangsters", "game_detection": [ @@ -60684,6 +64740,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Treasures Of Montezuma 2", "game_detection": [ @@ -60696,6 +64753,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "US and THEM", "game_detection": [ @@ -60710,6 +64768,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battle Academy", "game_detection": [ @@ -60724,6 +64783,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alien Hallway", "game_detection": [ @@ -60738,6 +64798,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Berserk Online", "game_detection": [ @@ -60749,6 +64810,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wallace & Gromit's Grand Adventures, Episode 1: Fright of the Bumblebees", "game_detection": [ @@ -60763,6 +64825,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battle Islands: Commanders", "game_detection": [ @@ -60777,6 +64840,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Soccer Manager 2016", "game_detection": [ @@ -60791,6 +64855,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Soccer Manager", "game_detection": [ @@ -60805,6 +64870,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "inSynch", "game_detection": [ @@ -60819,6 +64885,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tom Clancy's Rainbow Six: Vegas", "game_detection": [ @@ -60839,6 +64906,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blueprint Tycoon", "game_detection": [ @@ -60853,6 +64921,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Infestation: The New Z", "game_detection": [ @@ -60867,6 +64936,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pirates: Treasure Hunters", "game_detection": [ @@ -60881,6 +64951,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Among The Sleep", "game_detection": [ @@ -60900,6 +64971,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alien Shooter 2 - Reloaded", "game_detection": [ @@ -60914,6 +64986,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Baseball Mogul 2008", "game_detection": [ @@ -60925,6 +64998,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Destiny of Ancient Kingdoms", "game_detection": [ @@ -60939,6 +65013,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Navy Field", "game_detection": [ @@ -60968,6 +65043,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rush for Glory", "game_detection": [ @@ -60982,6 +65058,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "World of Tanks", "game_detection": [ @@ -60995,6 +65072,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Furcadia", "game_detection": [ @@ -61006,6 +65084,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Savage Lands", "game_detection": [ @@ -61020,6 +65099,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer: Vermintide VR", "game_detection": [ @@ -61035,6 +65115,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Death Rally", "game_detection": [ @@ -61049,6 +65130,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Surviving Mars", "game_detection": [ @@ -61062,6 +65144,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Supreme Commander: Forged Alliance", "game_detection": [ @@ -61082,6 +65165,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Anima Gate of Memories: The Nameless Chronicles", "game_detection": [ @@ -61095,6 +65179,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spy Chameleon - RGB Agent", "game_detection": [ @@ -61109,6 +65194,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rain Blood Chronicles: Mirage", "game_detection": [ @@ -61123,6 +65209,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Loadout", "game_detection": [ @@ -61137,6 +65224,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Conflicks: Revolutionary Space Battles", "game_detection": [ @@ -61151,6 +65239,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Emily Wants To Play", "game_detection": [ @@ -61165,6 +65254,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dex", "game_detection": [ @@ -61184,6 +65274,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "CSI: Hard Evidence", "game_detection": [ @@ -61196,6 +65287,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nancy Drew: The Phantom of Venice", "game_detection": [ @@ -61210,6 +65302,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ultimate Marvel Vs. Capcom 3", "game_detection": [ @@ -61224,6 +65317,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ori and the Blind Forest: Definitive Edition", "game_detection": [ @@ -61242,6 +65336,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Monster Mash", "game_detection": [ @@ -61256,6 +65351,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fable: The Lost Chapters", "game_detection": [ @@ -61275,6 +65371,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LEGO Star Wars: The Force Awakens", "game_detection": [ @@ -61289,6 +65386,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Samantha Swift and the Hidden Roses of Athena", "game_detection": [ @@ -61303,6 +65401,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Age of Empires: Online", "game_detection": [ @@ -61330,6 +65429,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Firefall", "game_detection": [ @@ -61351,6 +65451,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Carmageddon 2: Carpocalypse Now", "game_detection": [ @@ -61363,6 +65464,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Indiana Jones and the Fate of Atlantis", "game_detection": [ @@ -61377,6 +65479,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Absolute Drift", "game_detection": [ @@ -61391,6 +65494,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "F1 2018", "game_detection": [ @@ -61401,6 +65505,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pressure", "game_detection": [ @@ -61415,6 +65520,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Professional Lumberjack 2015", "game_detection": [ @@ -61429,6 +65535,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bus-Simulator 2012", "game_detection": [ @@ -61443,6 +65550,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sword Art Online: Fatal Bullet", "game_detection": [ @@ -61456,6 +65564,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rising Angels: Reborn", "game_detection": [ @@ -61470,6 +65579,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Escape the Museum", "game_detection": [ @@ -61484,6 +65594,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hammer Heads Deluxe", "game_detection": [ @@ -61504,6 +65615,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sisyphus Reborn", "game_detection": [ @@ -61518,6 +65630,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Command & Conquer", "game_detection": [ @@ -61537,6 +65650,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Command & Conquer: Yuri's Revenge", "game_detection": [ @@ -61550,6 +65664,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DLC Quest", "game_detection": [ @@ -61569,6 +65684,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Asheron's Call 2", "game_detection": [ @@ -61580,6 +65696,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pokémon: Dawn of Darkness", "game_detection": [ @@ -61591,6 +65708,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cheap Amateur Film in Space", "game_detection": [ @@ -61602,6 +65720,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Delta Force", "game_detection": [ @@ -61622,6 +65741,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Luxor Mahjong", "game_detection": [ @@ -61636,6 +65756,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Text Twist", "game_detection": [ @@ -61648,6 +65769,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hot Wheels: World's Best Driver", "game_detection": [ @@ -61662,6 +65784,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Toy Story 3", "game_detection": [ @@ -61673,6 +65796,7 @@ ] }, { + "force_display_capture": false, "region": "RU", "title": "Point Blank", "game_detection": [ @@ -61685,6 +65809,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rampage Knights", "game_detection": [ @@ -61699,6 +65824,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stronghold Crusader HD", "game_detection": [ @@ -61718,6 +65844,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tower Alliance Online", "game_detection": [ @@ -61729,6 +65856,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Albert & Otto", "game_detection": [ @@ -61743,6 +65871,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Line Of Defense Tactics", "game_detection": [ @@ -61757,6 +65886,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "America's Army", "game_detection": [ @@ -61768,6 +65898,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Yet Another Zombie Defense", "game_detection": [ @@ -61782,6 +65913,7 @@ ] }, { + "force_display_capture": false, "region": "UK", "title": "BlazBlue: Calamity Trigger", "game_detection": [ @@ -61794,6 +65926,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lights Out: Dark Fall 2", "game_detection": [ @@ -61814,6 +65947,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stardust Galaxy Warriors", "game_detection": [ @@ -61828,6 +65962,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Atlantica Online", "game_detection": [ @@ -61848,6 +65983,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Graveyard", "game_detection": [ @@ -61862,6 +65998,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sacred Underworld", "game_detection": [ @@ -61874,6 +66011,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Draconian Wars", "game_detection": [ @@ -61888,6 +66026,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Meridian: New World", "game_detection": [ @@ -61902,6 +66041,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Puzzler World 2", "game_detection": [ @@ -61916,6 +66056,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Crusade CCG", "game_detection": [ @@ -61930,6 +66071,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Freespace 2", "game_detection": [ @@ -61954,6 +66096,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Out of Reach", "game_detection": [ @@ -61968,6 +66111,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Agatha Christie: Evil Under the Sun", "game_detection": [ @@ -61982,6 +66126,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gothic 2", "game_detection": [ @@ -62000,6 +66145,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pat & Mat", "game_detection": [ @@ -62014,6 +66160,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MURI", "game_detection": [ @@ -62028,6 +66175,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Squirreltopia", "game_detection": [ @@ -62042,6 +66190,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battlestations: Midway", "game_detection": [ @@ -62061,6 +66210,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stargate Resistance", "game_detection": [ @@ -62082,6 +66232,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Puzzle Pirates", "game_detection": [ @@ -62096,6 +66247,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeon Siege", "game_detection": [ @@ -62115,6 +66267,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Iron Roses", "game_detection": [ @@ -62129,6 +66282,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Snake Pass", "game_detection": [ @@ -62139,6 +66293,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Lord of the Rings: War in the North", "game_detection": [ @@ -62153,6 +66308,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Viscera Cleanup Detail", "game_detection": [ @@ -62178,6 +66334,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RoboBlitz", "game_detection": [ @@ -62192,6 +66349,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gundog", "game_detection": [ @@ -62208,6 +66366,7 @@ ] }, { + "force_display_capture": false, "region": "Ult", "title": "Dragon Age: Origins Ultimate Edition", "game_detection": [ @@ -62222,6 +66381,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hoyle Card Games", "game_detection": [ @@ -62233,6 +66393,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Golf Club", "game_detection": [ @@ -62247,6 +66408,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wickland", "game_detection": [ @@ -62261,6 +66423,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Omensight", "game_detection": [ @@ -62274,6 +66437,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "18 Wheels of Steel Extreme Trucker", "game_detection": [ @@ -62288,6 +66452,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FIFA 19", "game_detection": [ @@ -62302,6 +66467,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "4X4 Evolution", "game_detection": [ @@ -62313,6 +66479,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Burning Cars", "game_detection": [ @@ -62327,6 +66494,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lovely Planet", "game_detection": [ @@ -62341,6 +66509,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Only If", "game_detection": [ @@ -62355,6 +66524,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pitiri 1977", "game_detection": [ @@ -62367,6 +66537,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Little Inferno", "game_detection": [ @@ -62386,6 +66557,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sundered", "game_detection": [ @@ -62399,6 +66571,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zero Online", "game_detection": [ @@ -62411,6 +66584,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "WW1 Game Series", "game_detection": [ @@ -62421,6 +66595,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Project D Online", "game_detection": [ @@ -62435,6 +66610,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battle Group 2", "game_detection": [ @@ -62449,6 +66625,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Command & Conquer: Generals", "game_detection": [ @@ -62475,6 +66652,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Midnight Mysteries 4: Haunted Houdini", "game_detection": [ @@ -62489,6 +66667,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "House of 1000 Doors: The Palm of Zoroaster", "game_detection": [ @@ -62503,6 +66682,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Down To One", "game_detection": [ @@ -62517,6 +66697,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chaos Reborn", "game_detection": [ @@ -62531,6 +66712,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Crossfire", "game_detection": [ @@ -62542,6 +66724,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Booster Trooper", "game_detection": [ @@ -62556,6 +66739,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Neverwinter", "game_detection": [ @@ -62576,6 +66760,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jazz Jackrabbit 2", "game_detection": [ @@ -62592,6 +66777,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Master X Master", "game_detection": [ @@ -62606,6 +66792,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Quake 3: Arena", "game_detection": [ @@ -62632,6 +66819,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stick Fight: The Game", "game_detection": [ @@ -62646,6 +66834,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Brigade E5: New Jagged Union", "game_detection": [ @@ -62660,6 +66849,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Narcissu 1st & 2nd", "game_detection": [ @@ -62674,6 +66864,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rise of Flight: The First Great Air War", "game_detection": [ @@ -62687,6 +66878,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro-Pinball: The Web", "game_detection": [ @@ -62699,6 +66891,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wasteland", "game_detection": [ @@ -62713,6 +66906,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Avernum 4", "game_detection": [ @@ -62727,6 +66921,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The LEGO NINJAGO Movie Video Game", "game_detection": [ @@ -62741,6 +66936,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "R.B.I. Baseball 16", "game_detection": [ @@ -62755,6 +66951,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fractured Soul", "game_detection": [ @@ -62769,6 +66966,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Skydrift", "game_detection": [ @@ -62783,6 +66981,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Freddi Fish 5: The Case of the Creature of Coral Cove", "game_detection": [ @@ -62797,6 +66996,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Elliot Quest", "game_detection": [ @@ -62816,6 +67016,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rise & Fall: Civilizations At War", "game_detection": [ @@ -62828,6 +67029,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Legendary Champions", "game_detection": [ @@ -62847,6 +67049,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Colin McRae Rally 2005", "game_detection": [ @@ -62858,6 +67061,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "INSURGENCY", "game_detection": [ @@ -62872,6 +67076,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "WRC 4 FIA World Rally Championship", "game_detection": [ @@ -62886,6 +67091,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battle Realms", "game_detection": [ @@ -62897,6 +67103,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Boggle!", "game_detection": [ @@ -62911,6 +67118,7 @@ ] }, { + "force_display_capture": false, "region": "SG", "title": "Counter-Strike Online", "game_detection": [ @@ -62925,6 +67133,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dusty Revenge", "game_detection": [ @@ -62946,6 +67155,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Far Cry 3", "game_detection": [ @@ -62967,6 +67177,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Apogee Throwback Pack", "game_detection": [ @@ -62981,6 +67192,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LuckCatchers", "game_detection": [ @@ -62995,6 +67207,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Emporea: Realms of War & Magic", "game_detection": [ @@ -63009,6 +67222,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Megadimension Neptunia VII", "game_detection": [ @@ -63023,6 +67237,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jewel Quest", "game_detection": [ @@ -63042,6 +67257,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Robocraft", "game_detection": [ @@ -63057,6 +67273,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Transformers Devastation", "game_detection": [ @@ -63071,6 +67288,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Windforge", "game_detection": [ @@ -63090,6 +67308,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lumini", "game_detection": [ @@ -63104,6 +67323,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spirited Heart", "game_detection": [ @@ -63118,6 +67338,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Red War: Edem's Curse", "game_detection": [ @@ -63130,6 +67351,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Space Marine", "game_detection": [ @@ -63144,6 +67366,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Balls of Steel", "game_detection": [ @@ -63156,6 +67379,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fearless Fantasy", "game_detection": [ @@ -63170,6 +67394,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Manual Samuel", "game_detection": [ @@ -63184,6 +67409,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Harry Potter and the Half-Blood Prince", "game_detection": [ @@ -63196,6 +67422,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ninja Blade", "game_detection": [ @@ -63210,6 +67437,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Reaxxion", "game_detection": [ @@ -63224,6 +67452,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SIN Episodes: Emergence", "game_detection": [ @@ -63238,6 +67467,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Instinct", "game_detection": [ @@ -63249,6 +67479,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Legions of Ashworld", "game_detection": [ @@ -63263,6 +67494,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Girls Like Robots", "game_detection": [ @@ -63277,6 +67509,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Team Fortress Classic", "game_detection": [ @@ -63299,6 +67532,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sword of the Stars", "game_detection": [ @@ -63335,6 +67569,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims 2: Free Time", "game_detection": [ @@ -63348,6 +67583,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DOTA 2", "game_detection": [ @@ -63362,6 +67598,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vitrum", "game_detection": [ @@ -63376,6 +67613,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battle of the Immortals", "game_detection": [ @@ -63394,6 +67632,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Anomaly Korea", "game_detection": [ @@ -63413,6 +67652,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chaos Heroes Online", "game_detection": [ @@ -63434,6 +67674,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Worldwide Soccer Manager 2009", "game_detection": [ @@ -63448,6 +67689,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Azada", "game_detection": [ @@ -63462,6 +67704,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Project CARS: Pagani Edition", "game_detection": [ @@ -63476,6 +67719,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Napoleon: Total War", "game_detection": [ @@ -63490,6 +67734,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cities XL 2012", "game_detection": [ @@ -63509,6 +67754,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Unrest", "game_detection": [ @@ -63523,6 +67769,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vanguards", "game_detection": [ @@ -63537,6 +67784,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "American Truck Simulator", "game_detection": [ @@ -63551,6 +67799,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gorky 17", "game_detection": [ @@ -63565,6 +67814,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wizardry 7: Crusaders of the Dark Savant", "game_detection": [ @@ -63579,6 +67829,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shakes and Fidget Remastered", "game_detection": [ @@ -63593,6 +67844,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Soundodger+", "game_detection": [ @@ -63607,6 +67859,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Trick & Treat", "game_detection": [ @@ -63621,6 +67874,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Planet Explorers", "game_detection": [ @@ -63635,6 +67889,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dwarf Fortress", "game_detection": [ @@ -63646,6 +67901,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Medal of Honor", "game_detection": [ @@ -63684,6 +67940,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "eXceed 2nd – Vampire REX", "game_detection": [ @@ -63704,6 +67961,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Monster Trucks Nitro", "game_detection": [ @@ -63718,6 +67976,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deep Black: Reloaded", "game_detection": [ @@ -63732,6 +67991,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Serious Sam: The First Encounter", "game_detection": [ @@ -63752,6 +68012,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "WARMODE", "game_detection": [ @@ -63766,6 +68027,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Legends of Persia", "game_detection": [ @@ -63780,6 +68042,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Maestia", "game_detection": [ @@ -63799,6 +68062,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Incredibles", "game_detection": [ @@ -63811,6 +68075,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bloody Trapland", "game_detection": [ @@ -63830,6 +68095,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ben There, Dan That", "game_detection": [ @@ -63843,6 +68109,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "TMNT", "game_detection": [ @@ -63855,6 +68122,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Auto Club Revolution", "game_detection": [ @@ -63867,6 +68135,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sproggiwood", "game_detection": [ @@ -63881,6 +68150,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cuphead", "game_detection": [ @@ -63899,6 +68169,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hounds: The Last Hope", "game_detection": [ @@ -63919,6 +68190,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Istaria: Chronicles of the Gifted", "game_detection": [ @@ -63932,6 +68204,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Return to Mysterious Island 2", "game_detection": [ @@ -63946,6 +68219,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A-men", "game_detection": [ @@ -63960,6 +68234,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Total Annihilation: Kingdoms", "game_detection": [ @@ -63971,6 +68246,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "tricone lab", "game_detection": [ @@ -63985,6 +68261,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Avatar The Last Airbender: Path of Zuko", "game_detection": [ @@ -63996,6 +68273,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ROGUS: Kingdom of The Lost Souls", "game_detection": [ @@ -64010,6 +68288,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cabela's Dangerous Hunts 2013", "game_detection": [ @@ -64024,6 +68303,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Total Club Manager 2005", "game_detection": [ @@ -64035,6 +68315,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Operation Mania", "game_detection": [ @@ -64046,6 +68327,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hex: Shards of Fate", "game_detection": [ @@ -64066,6 +68348,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Real Texas", "game_detection": [ @@ -64077,6 +68360,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Creatures: Exodus", "game_detection": [ @@ -64089,6 +68373,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cricket Revolution", "game_detection": [ @@ -64103,6 +68388,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Monster Truck Madness 2", "game_detection": [ @@ -64114,6 +68400,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Titan Quest", "game_detection": [ @@ -64133,6 +68420,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "F1 2010", "game_detection": [ @@ -64153,6 +68441,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Escape The Lost Kingdom: The Forgotten Pharaoh", "game_detection": [ @@ -64167,6 +68456,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Castle In The Darkness", "game_detection": [ @@ -64181,6 +68471,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Indie Pogo", "game_detection": [ @@ -64194,6 +68485,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Viscera Cleanup Detail: Santa's Rampage", "game_detection": [ @@ -64208,6 +68500,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tom Clancy's Ghost Recon Breakpoint", "game_detection": [ @@ -64222,6 +68515,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Legend of Mir II", "game_detection": [ @@ -64234,6 +68528,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Brain Spa", "game_detection": [ @@ -64246,6 +68541,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "Xiao Ao Jiang Hu", "game_detection": [ @@ -64259,6 +68555,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Disney Infinity 3.0", "game_detection": [ @@ -64278,6 +68575,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Knytt Underground", "game_detection": [ @@ -64297,6 +68595,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Typer Shark Deluxe", "game_detection": [ @@ -64317,6 +68616,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Naruto to Boruto: Shinobi Striker", "game_detection": [ @@ -64330,6 +68630,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alien Shooter - Revisited", "game_detection": [ @@ -64344,6 +68645,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Drawn: The Painted Tower", "game_detection": [ @@ -64358,6 +68660,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Braveland", "game_detection": [ @@ -64377,6 +68680,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Transformers: The Game", "game_detection": [ @@ -64388,6 +68692,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Agricultural Simulator 2013", "game_detection": [ @@ -64402,6 +68707,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeons & Dragons: Chronicles of Mystara", "game_detection": [ @@ -64416,6 +68722,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deer Hunter 2003: Legendary Hunting", "game_detection": [ @@ -64429,6 +68736,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Age of Chivalry", "game_detection": [ @@ -64443,6 +68751,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Banner Saga 3", "game_detection": [ @@ -64456,6 +68765,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Guacamelee! 2", "game_detection": [ @@ -64469,6 +68779,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Joint Operations: Escalation", "game_detection": [ @@ -64482,6 +68793,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Roundabout", "game_detection": [ @@ -64496,6 +68808,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Skyshine's BEDLAM", "game_detection": [ @@ -64510,6 +68823,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bitardia Cards: Memes of 2ch", "game_detection": [ @@ -64524,6 +68838,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Savage 2: A Tortured Soul", "game_detection": [ @@ -64535,6 +68850,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Remember Me", "game_detection": [ @@ -64549,6 +68865,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sacred", "game_detection": [ @@ -64560,6 +68877,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NFL Head Coach", "game_detection": [ @@ -64571,6 +68889,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eco", "game_detection": [ @@ -64584,6 +68903,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shadow Warrior Classic Redux", "game_detection": [ @@ -64598,6 +68918,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DEATHGARDEN", "game_detection": [ @@ -64618,6 +68939,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wolfenstein 3D", "game_detection": [ @@ -64632,6 +68954,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deadlight", "game_detection": [ @@ -64646,6 +68969,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Parkitect", "game_detection": [ @@ -64660,6 +68984,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rake", "game_detection": [ @@ -64674,6 +68999,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hunting Unlimited 2010", "game_detection": [ @@ -64688,6 +69014,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rome: Total War", "game_detection": [ @@ -64699,6 +69026,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rogue Continuum", "game_detection": [ @@ -64713,6 +69041,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Soda Dungeon", "game_detection": [ @@ -64727,6 +69056,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Urban Chaos", "game_detection": [ @@ -64741,6 +69071,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pajama Sam's Lost & Found", "game_detection": [ @@ -64755,6 +69086,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "City of Steam: Arkadia", "game_detection": [ @@ -64769,6 +69101,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Splatter", "game_detection": [ @@ -64783,6 +69116,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GT Legends", "game_detection": [ @@ -64802,6 +69136,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Catan", "game_detection": [ @@ -64813,6 +69148,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Titan Quest Anniversary Edition", "game_detection": [ @@ -64831,6 +69167,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nexagon Deathmatch", "game_detection": [ @@ -64843,6 +69180,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Last Tinker: City of Colors", "game_detection": [ @@ -64857,6 +69195,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sacraboar", "game_detection": [ @@ -64871,6 +69210,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "UnSummoning: The Spectral Horde", "game_detection": [ @@ -64882,6 +69222,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rise of Prussia", "game_detection": [ @@ -64902,6 +69243,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mirage: Arcane Warfare", "game_detection": [ @@ -64924,6 +69266,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wolf Team", "game_detection": [ @@ -64944,6 +69287,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Halo: Combat Evolved", "game_detection": [ @@ -64955,6 +69299,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Counter-Strike: Global Offensive", "game_detection": [ @@ -64969,6 +69314,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Scourge: Outbreak", "game_detection": [ @@ -64983,6 +69329,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeons II", "game_detection": [ @@ -64997,6 +69344,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sam & Max Episode 204: Chariots of the Dogs", "game_detection": [ @@ -65016,6 +69364,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dreamfall: The Longest Journey", "game_detection": [ @@ -65036,6 +69385,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "XIII", "game_detection": [ @@ -65047,6 +69397,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shogun: Total War", "game_detection": [ @@ -65058,6 +69409,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Burnout Paradise: The Ultimate Box", "game_detection": [ @@ -65078,6 +69430,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hippocampal", "game_detection": [ @@ -65092,6 +69445,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Woodle Tree Adventures", "game_detection": [ @@ -65111,6 +69465,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Test Drive: Ferrari Racing Legends", "game_detection": [ @@ -65125,6 +69480,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bientôt l'été", "game_detection": [ @@ -65139,6 +69495,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Anomaly Warzone Earth: Mobile Campaign", "game_detection": [ @@ -65153,6 +69510,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Among Ripples", "game_detection": [ @@ -65167,6 +69525,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cinderella Escape! R12", "game_detection": [ @@ -65181,6 +69540,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hover Junkers", "game_detection": [ @@ -65195,6 +69555,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MotoGP 14 Compact", "game_detection": [ @@ -65209,6 +69570,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Grimind", "game_detection": [ @@ -65228,6 +69590,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ironclad Tactics", "game_detection": [ @@ -65242,6 +69605,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sauerbraten", "game_detection": [ @@ -65253,6 +69617,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Echo Prime", "game_detection": [ @@ -65267,6 +69632,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cloudberry Kingdom", "game_detection": [ @@ -65281,6 +69647,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spyro Reignited Trilogy", "game_detection": [ @@ -65291,6 +69658,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "F-16 Multirole Fighter", "game_detection": [ @@ -65305,6 +69673,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "To the Moon", "game_detection": [ @@ -65324,6 +69693,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Supreme Commander 2", "game_detection": [ @@ -65338,6 +69708,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Strong Bad's Cool Game for Attractive People - Episode 1: Homestar Ruiner", "game_detection": [ @@ -65360,6 +69731,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Quintet", "game_detection": [ @@ -65374,6 +69746,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Avernum: Escape From the Pit", "game_detection": [ @@ -65388,6 +69761,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Resonance of Fate", "game_detection": [ @@ -65398,6 +69772,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "X-Men Legends II: Rise of Apocalypse", "game_detection": [ @@ -65409,6 +69784,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A.I.M. 2: Clan Wars", "game_detection": [ @@ -65428,6 +69804,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Manhunter", "game_detection": [ @@ -65447,6 +69824,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Metro Conflict", "game_detection": [ @@ -65461,6 +69839,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Picaroon", "game_detection": [ @@ -65473,6 +69852,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Enlightened League of Bone Builders and the Osseous", "game_detection": [ @@ -65488,6 +69868,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bierzerkers", "game_detection": [ @@ -65502,6 +69883,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Serious Sam VR: The Last Hope", "game_detection": [ @@ -65518,6 +69900,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Second Life", "game_detection": [ @@ -65541,6 +69924,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nancy Drew: The White Wolf of Icicle Creek", "game_detection": [ @@ -65555,6 +69939,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Echoes+", "game_detection": [ @@ -65569,6 +69954,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Freddi Fish 2: The Case of the Haunted Schoolhouse", "game_detection": [ @@ -65583,6 +69969,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nertz Solitaire", "game_detection": [ @@ -65597,6 +69984,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Genesis Rising: The Universal Crusade", "game_detection": [ @@ -65609,6 +69997,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Paddle Up", "game_detection": [ @@ -65624,6 +70013,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Europa: Universalis", "game_detection": [ @@ -65635,6 +70025,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Secondearth: Faction Wars", "game_detection": [ @@ -65648,6 +70039,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Last Door: Collector's Edition", "game_detection": [ @@ -65662,6 +70054,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Unreal Tournament 3", "game_detection": [ @@ -65682,6 +70075,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crazy Machines Elements", "game_detection": [ @@ -65696,6 +70090,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ethan: Meteor Hunter", "game_detection": [ @@ -65715,6 +70110,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Darkness II", "game_detection": [ @@ -65729,6 +70125,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deepworld", "game_detection": [ @@ -65743,6 +70140,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Death Skid Marks", "game_detection": [ @@ -65757,6 +70155,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gunship!", "game_detection": [ @@ -65771,6 +70170,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Galaxy Combat Wargames", "game_detection": [ @@ -65785,6 +70185,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sisterly Lust", "game_detection": [ @@ -65795,6 +70196,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zombie Tycoon 2: Brainhov's Revenge", "game_detection": [ @@ -65809,6 +70211,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vampire Saga: Pandora's Box", "game_detection": [ @@ -65821,6 +70224,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "WWE 2K17", "game_detection": [ @@ -65835,6 +70239,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crusaders: Thy Kingdom Come", "game_detection": [ @@ -65863,6 +70268,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tomb Raider Chronicles", "game_detection": [ @@ -65877,6 +70283,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Quest of Dungeons", "game_detection": [ @@ -65896,6 +70303,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Avatar: Legends of the Arena", "game_detection": [ @@ -65907,6 +70315,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Moebius: Empire Rising", "game_detection": [ @@ -65921,6 +70330,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark Horizon", "game_detection": [ @@ -65932,6 +70342,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jolly Rover", "game_detection": [ @@ -65946,6 +70357,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Trek: Elite Force 2", "game_detection": [ @@ -65957,6 +70369,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Company of Heroes", "game_detection": [ @@ -65989,6 +70402,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Revelations 2012", "game_detection": [ @@ -66002,6 +70416,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kingdom Two Crowns", "game_detection": [ @@ -66012,6 +70427,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Galaxy on Fire 2 Full HD", "game_detection": [ @@ -66026,6 +70442,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark Strokes", "game_detection": [ @@ -66038,6 +70455,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Carmageddon: Max Damage", "game_detection": [ @@ -66052,6 +70470,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Duke Nukem 3D: Megaton Edition", "game_detection": [ @@ -66066,6 +70485,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Desert Ride Coaster", "game_detection": [ @@ -66081,6 +70501,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Puddle", "game_detection": [ @@ -66103,6 +70524,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "My Name is Mayo", "game_detection": [ @@ -66117,6 +70539,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Penny Arcade's On the Rain-Slick Precipice of Darkness 4", "game_detection": [ @@ -66131,6 +70554,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "POP: METHODOLOGY EXPERIMENT ONE", "game_detection": [ @@ -66145,6 +70569,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pony World 3", "game_detection": [ @@ -66155,6 +70580,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warzone 2100", "game_detection": [ @@ -66166,6 +70592,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Text Twist 2", "game_detection": [ @@ -66178,6 +70605,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Army Rage", "game_detection": [ @@ -66190,6 +70618,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Divo Demo", "game_detection": [ @@ -66204,6 +70633,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zero G Arena", "game_detection": [ @@ -66218,6 +70648,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Red Faction: Armageddon", "game_detection": [ @@ -66232,6 +70663,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "March of War", "game_detection": [ @@ -66246,6 +70678,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Soccer Manager 2017", "game_detection": [ @@ -66260,6 +70693,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crea", "game_detection": [ @@ -66279,6 +70713,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Parallax", "game_detection": [ @@ -66293,6 +70728,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ittle Dew", "game_detection": [ @@ -66317,6 +70753,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Command & Conquer 3: Tiberium Wars", "game_detection": [ @@ -66337,6 +70774,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nostradamus: The Last Prophecy", "game_detection": [ @@ -66356,6 +70794,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DUCATI: 90th Anniversary", "game_detection": [ @@ -66370,6 +70809,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Diner Dash: Hometown Hero", "game_detection": [ @@ -66384,6 +70824,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Build-a-lot 4", "game_detection": [ @@ -66398,6 +70839,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Born to Fire", "game_detection": [ @@ -66411,6 +70853,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Forsaken World", "game_detection": [ @@ -66439,6 +70882,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hitman: Blood Money", "game_detection": [ @@ -66458,6 +70902,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Navy Field 2", "game_detection": [ @@ -66479,6 +70924,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Antisquad", "game_detection": [ @@ -66493,6 +70939,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tachyon Project", "game_detection": [ @@ -66507,6 +70954,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "My Time At Portia", "game_detection": [ @@ -66517,6 +70965,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "CrossCode", "game_detection": [ @@ -66532,6 +70981,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Empires", "game_detection": [ @@ -66545,6 +70995,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dawn of Fantasy Demo", "game_detection": [ @@ -66556,6 +71007,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zombs Royale", "game_detection": [ @@ -66567,6 +71019,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Total Influence", "game_detection": [ @@ -66580,6 +71033,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warriors Orochi", "game_detection": [ @@ -66592,6 +71046,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Darkest Hour: A Hearts of Iron Game", "game_detection": [ @@ -66612,6 +71067,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Magic: The Gathering: Duels of the Planeswalkers", "game_detection": [ @@ -66626,6 +71082,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Renowned Explorers: International Society", "game_detection": [ @@ -66640,6 +71097,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Five Nights at Freddy's 2", "game_detection": [ @@ -66654,6 +71112,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Adventure Time: Explore the Dungeon Because I DON'T KNOW!", "game_detection": [ @@ -66668,6 +71127,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Need For Speed Most Wanted", "game_detection": [ @@ -66680,6 +71140,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SGZH: School Girl/Zombie Hunter", "game_detection": [ @@ -66693,6 +71154,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Landmark", "game_detection": [ @@ -66715,6 +71177,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Baezult", "game_detection": [ @@ -66729,6 +71192,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead Pixels", "game_detection": [ @@ -66743,6 +71207,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Frontline: Road to Moscow", "game_detection": [ @@ -66757,6 +71222,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hearts of Iron III: Semper Fi", "game_detection": [ @@ -66772,6 +71238,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Smugglers V: Invasion", "game_detection": [ @@ -66786,6 +71253,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Black & White 2: Battle of the Gods", "game_detection": [ @@ -66797,6 +71265,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mortal Kombat X", "game_detection": [ @@ -66811,6 +71280,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "TowerFall", "game_detection": [ @@ -66825,6 +71295,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Wars: The Clone Wars - Republic Heroes", "game_detection": [ @@ -66845,6 +71316,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "New Westward Journey 2", "game_detection": [ @@ -66858,6 +71330,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Electronic Super Joy", "game_detection": [ @@ -66872,6 +71345,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gladiators Online", "game_detection": [ @@ -66886,6 +71360,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "My Lovely Daughter", "game_detection": [ @@ -66899,6 +71374,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Megabyte Punch", "game_detection": [ @@ -66925,6 +71401,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "STORM: Frontline Nation", "game_detection": [ @@ -66939,6 +71416,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Caster", "game_detection": [ @@ -66953,6 +71431,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nights of Azure", "game_detection": [ @@ -66967,6 +71446,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chronicles of Mystery: The Legend of the Sacred Treasure", "game_detection": [ @@ -66978,6 +71458,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "CODE VEIN", "game_detection": [ @@ -66988,6 +71469,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shad'O", "game_detection": [ @@ -67007,6 +71489,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Freedom Fall", "game_detection": [ @@ -67021,6 +71504,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Divine Souls", "game_detection": [ @@ -67035,6 +71519,7 @@ ] }, { + "force_display_capture": false, "region": "RU", "title": "Dragon Nest", "game_detection": [ @@ -67050,6 +71535,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A New Reckoning", "game_detection": [ @@ -67064,6 +71550,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spacebase DF-9", "game_detection": [ @@ -67092,6 +71579,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Myst: Masterpiece Edition", "game_detection": [ @@ -67106,6 +71594,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Victor Vran", "game_detection": [ @@ -67121,6 +71610,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "35MM", "game_detection": [ @@ -67135,6 +71625,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "EDGE", "game_detection": [ @@ -67154,6 +71645,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Showdown Effect", "game_detection": [ @@ -67168,6 +71660,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dogs of War Online", "game_detection": [ @@ -67182,6 +71675,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Anarchy Online", "game_detection": [ @@ -67194,6 +71688,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Final Fantasy IX", "game_detection": [ @@ -67208,6 +71703,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mount & Blade: With Fire & Sword", "game_detection": [ @@ -67227,6 +71723,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cabela's Dangerous Hunts II", "game_detection": [ @@ -67239,6 +71736,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LASTFIGHT", "game_detection": [ @@ -67253,6 +71751,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Albino Lullaby", "game_detection": [ @@ -67267,6 +71766,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Grow Up", "game_detection": [ @@ -67281,6 +71781,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Elizabeth Find MD: Diagnosis Mystery", "game_detection": [ @@ -67295,6 +71796,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dollar Dash", "game_detection": [ @@ -67309,6 +71811,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2014", "game_detection": [ @@ -67323,6 +71826,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gunslingers", "game_detection": [ @@ -67337,6 +71841,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sepia Tears", "game_detection": [ @@ -67351,6 +71856,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vox", "game_detection": [ @@ -67365,6 +71871,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Konung 3: Ties of the Dynasty", "game_detection": [ @@ -67379,6 +71886,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Grotesque Tactics 2: Dungeons and Donuts", "game_detection": [ @@ -67398,6 +71906,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro Cycling Manager: Tour de France 2011", "game_detection": [ @@ -67409,6 +71918,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Serious Sam: Kamikaze Attack!", "game_detection": [ @@ -67426,6 +71936,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GRIP", "game_detection": [ @@ -67440,6 +71951,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LEGO Batman 2: DC Super Heroes", "game_detection": [ @@ -67459,6 +71971,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "I must kill...: Fresh Meat", "game_detection": [ @@ -67473,6 +71986,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Magic: The Gathering: Duels of the Planeswalkers 2014", "game_detection": [ @@ -67487,6 +72001,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hidden & Dangerous 2: Sabre Squadron", "game_detection": [ @@ -67499,6 +72014,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Artifact", "game_detection": [ @@ -67509,6 +72025,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sheltered", "game_detection": [ @@ -67523,6 +72040,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "WARMACHINE: Tactics", "game_detection": [ @@ -67537,6 +72055,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hitman 2", "game_detection": [ @@ -67547,6 +72066,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jagged Alliance 2", "game_detection": [ @@ -67563,6 +72083,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nihilumbra", "game_detection": [ @@ -67582,6 +72103,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NosTale", "game_detection": [ @@ -67594,6 +72116,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Duck Game", "game_detection": [ @@ -67608,6 +72131,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Elder Scrolls Online", "game_detection": [ @@ -67635,6 +72159,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Great Jitters: Pudding Panic", "game_detection": [ @@ -67649,6 +72174,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Draw a Stickman: EPIC", "game_detection": [ @@ -67668,6 +72194,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Krosmaster Arena", "game_detection": [ @@ -67688,6 +72215,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FIFA Manager 06", "game_detection": [ @@ -67699,6 +72227,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Twelve Sky", "game_detection": [ @@ -67712,6 +72241,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Skulltag", "game_detection": [ @@ -67724,6 +72254,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Worlds Of Magic", "game_detection": [ @@ -67738,6 +72269,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Momodora III", "game_detection": [ @@ -67752,6 +72284,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tom Clancy's Ghost Recon: Advanced Warfighter 2", "game_detection": [ @@ -67771,6 +72304,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Putt Putt: Pep's Birthday Surprise", "game_detection": [ @@ -67785,6 +72319,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zombie Defense", "game_detection": [ @@ -67799,6 +72334,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sledge Hammer", "game_detection": [ @@ -67813,6 +72349,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Soldiers: Heroes Of World War II", "game_detection": [ @@ -67832,6 +72369,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alien Breed 2: Assault", "game_detection": [ @@ -67845,6 +72383,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Weaponographist", "game_detection": [ @@ -67859,6 +72398,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "X3: Terran Conflict", "game_detection": [ @@ -67878,6 +72418,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mars Colony: Challenger", "game_detection": [ @@ -67892,6 +72433,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "eFootball PES 2020", "game_detection": [ @@ -67906,6 +72448,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Creed: Rise to Glory", "game_detection": [ @@ -67916,6 +72459,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Police Quest: SWAT 2", "game_detection": [ @@ -67933,6 +72477,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Prison Tycoon 4: SuperMax", "game_detection": [ @@ -67952,6 +72497,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Giana Sisters: Twisted Dreams - Rise of the Owlverlord", "game_detection": [ @@ -67973,6 +72519,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Legends of Runeterra", "game_detection": [ @@ -67983,6 +72530,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Epoch", "game_detection": [ @@ -67997,6 +72545,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Koihime Enbu", "game_detection": [ @@ -68011,6 +72560,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dance! Online", "game_detection": [ @@ -68023,6 +72573,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims 2: Seasons", "game_detection": [ @@ -68040,6 +72591,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Elder Scrolls V: Skyrim", "game_detection": [ @@ -68061,6 +72613,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "25 to Life", "game_detection": [ @@ -68072,6 +72625,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "Blitz II", "game_detection": [ @@ -68085,6 +72639,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nicole", "game_detection": [ @@ -68099,6 +72654,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cossacks: Back to War", "game_detection": [ @@ -68113,6 +72669,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "TMNT Demo", "game_detection": [ @@ -68126,6 +72683,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rebel Inc: Escalation", "game_detection": [ @@ -68136,6 +72694,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warrior Kings", "game_detection": [ @@ -68150,6 +72709,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bit.Trip Void", "game_detection": [ @@ -68164,6 +72724,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Journal", "game_detection": [ @@ -68178,6 +72739,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bookworm Deluxe", "game_detection": [ @@ -68198,6 +72760,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "G-Police", "game_detection": [ @@ -68209,6 +72772,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Valkyria Chronicles 4", "game_detection": [ @@ -68219,6 +72783,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zero Gear", "game_detection": [ @@ -68233,6 +72798,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Luftrausers", "game_detection": [ @@ -68252,6 +72818,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Plague Inc: Evolved", "game_detection": [ @@ -68266,6 +72833,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bridge to Nowhere", "game_detection": [ @@ -68281,6 +72849,7 @@ ] }, { + "force_display_capture": false, "region": "BR", "title": "Point Blank", "game_detection": [ @@ -68294,6 +72863,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Enclave", "game_detection": [ @@ -68313,6 +72883,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spate", "game_detection": [ @@ -68327,6 +72898,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DIG IT! - A Digger Simulator", "game_detection": [ @@ -68341,6 +72913,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Delta Force: Land Warrior", "game_detection": [ @@ -68355,6 +72928,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sonic & SEGA All-Stars Racing", "game_detection": [ @@ -68366,6 +72940,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "1701 A.D. - The Sunken Dragon", "game_detection": [ @@ -68382,6 +72957,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Princess Evangile", "game_detection": [ @@ -68396,6 +72972,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Funfair", "game_detection": [ @@ -68411,6 +72988,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Talisman Online", "game_detection": [ @@ -68423,6 +73001,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Voodoo Dice", "game_detection": [ @@ -68437,6 +73016,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MachineCraft", "game_detection": [ @@ -68451,6 +73031,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Obulis", "game_detection": [ @@ -68465,6 +73046,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blood Knights", "game_detection": [ @@ -68479,6 +73061,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims 2: IKEA Home Stuff", "game_detection": [ @@ -68492,6 +73075,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bit.Trip Core", "game_detection": [ @@ -68506,6 +73090,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Back to the Future: The Game - Ep.4: Double Visions", "game_detection": [ @@ -68525,6 +73110,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Neon Chrome", "game_detection": [ @@ -68535,6 +73121,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rise of Incarnates", "game_detection": [ @@ -68549,6 +73136,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hidden Mysteries: Civil War", "game_detection": [ @@ -68560,6 +73148,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Happy Feet", "game_detection": [ @@ -68572,6 +73161,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gates of Troy", "game_detection": [ @@ -68583,6 +73173,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gothic", "game_detection": [ @@ -68596,6 +73187,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Professor FizzWhizzle", "game_detection": [ @@ -68610,6 +73202,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spaceforce Constellations", "game_detection": [ @@ -68624,6 +73217,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Chronicles of Riddick: Escape From Butcher Bay", "game_detection": [ @@ -68637,6 +73231,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sword Art Online: Hollow Realization", "game_detection": [ @@ -68651,6 +73246,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Pro Evolution Soccer 2012", "game_detection": [ @@ -68662,6 +73258,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Toca Race Driver 3", "game_detection": [ @@ -68681,6 +73278,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ceville", "game_detection": [ @@ -68695,6 +73293,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Twelve Sky 2", "game_detection": [ @@ -68713,6 +73312,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Firefighters 2014", "game_detection": [ @@ -68727,6 +73327,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battlefield 3", "game_detection": [ @@ -68738,6 +73339,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wallace and Gromit's Grand Adventures, Episode 2: The Last Resort", "game_detection": [ @@ -68752,6 +73354,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ORION: Dino Horde", "game_detection": [ @@ -68766,6 +73369,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dracula 3: Path of the Dragon", "game_detection": [ @@ -68785,6 +73389,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "APOX", "game_detection": [ @@ -68799,6 +73404,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eschalon: Book II", "game_detection": [ @@ -68813,6 +73419,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "Mu Blue", "game_detection": [ @@ -68826,6 +73433,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sherlock Holmes: Nemesis", "game_detection": [ @@ -68840,6 +73448,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Brawl Busters", "game_detection": [ @@ -68861,6 +73470,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Call of Duty 4: Modern Warfare Demo", "game_detection": [ @@ -68873,6 +73483,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tales of Pirates Online", "game_detection": [ @@ -68885,6 +73496,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Myst 3: Exile", "game_detection": [ @@ -68897,6 +73509,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Not Tetris 2", "game_detection": [ @@ -68908,6 +73521,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Earth 2140", "game_detection": [ @@ -68922,6 +73536,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Imperia Online", "game_detection": [ @@ -68936,6 +73551,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Team Fortress 2", "game_detection": [ @@ -68950,6 +73566,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "UberSoldier II", "game_detection": [ @@ -68964,6 +73581,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fray", "game_detection": [ @@ -68978,6 +73596,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Realms", "game_detection": [ @@ -68992,6 +73611,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NASCAR Racing 4", "game_detection": [ @@ -69003,6 +73623,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blade Symphony", "game_detection": [ @@ -69017,6 +73638,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ultratron", "game_detection": [ @@ -69037,6 +73659,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Art of Murder: Hunt for the Puppeteer", "game_detection": [ @@ -69049,6 +73672,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FortressCraft Evolved!", "game_detection": [ @@ -69063,6 +73687,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Magic 2015: Duels of the Planeswalkers", "game_detection": [ @@ -69077,6 +73702,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dragon's Lair", "game_detection": [ @@ -69091,6 +73717,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Navy Training Exercise: Strike and Retrive", "game_detection": [ @@ -69102,6 +73729,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "East India Company", "game_detection": [ @@ -69121,6 +73749,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blade & Sorcery", "game_detection": [ @@ -69135,6 +73764,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tropico", "game_detection": [ @@ -69154,6 +73784,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Assault Android Cactus", "game_detection": [ @@ -69168,6 +73799,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Man O' War: Corsair", "game_detection": [ @@ -69182,6 +73814,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Max & the Magic Marker", "game_detection": [ @@ -69193,6 +73826,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Motocross Madness 2", "game_detection": [ @@ -69204,6 +73838,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Troopers: Dawn of Destiny", "game_detection": [ @@ -69218,6 +73853,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Euro Truck Simulator 2", "game_detection": [ @@ -69240,6 +73876,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Comboman", "game_detection": [ @@ -69254,6 +73891,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Wars: Battlefront II", "game_detection": [ @@ -69279,6 +73917,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Prince of Persia", "game_detection": [ @@ -69299,6 +73938,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Shivah", "game_detection": [ @@ -69313,6 +73953,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Toy Soldiers: Complete", "game_detection": [ @@ -69327,6 +73968,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lunar Flight", "game_detection": [ @@ -69346,6 +73988,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tower Wars", "game_detection": [ @@ -69360,6 +74003,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Altitude0: Lower & Faster", "game_detection": [ @@ -69374,6 +74018,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Aveyond: Gates of Night", "game_detection": [ @@ -69388,6 +74033,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "XCOM 2: War of the Chosen", "game_detection": [ @@ -69402,6 +74048,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Back to Bed", "game_detection": [ @@ -69416,6 +74063,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Exodus", "game_detection": [ @@ -69430,6 +74078,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battlefield 1942 Demo", "game_detection": [ @@ -69451,6 +74100,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Moirai", "game_detection": [ @@ -69465,6 +74115,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "HoPiKo", "game_detection": [ @@ -69479,6 +74130,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead Cells", "game_detection": [ @@ -69497,6 +74149,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "I, Zombie", "game_detection": [ @@ -69511,6 +74164,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hegemony Rome: The Rise of Caesar", "game_detection": [ @@ -69525,6 +74179,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer: Mark Of Chaos", "game_detection": [ @@ -69536,6 +74191,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Maui", "game_detection": [ @@ -69550,6 +74206,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Avernum 6", "game_detection": [ @@ -69564,6 +74221,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Black Prophecy", "game_detection": [ @@ -69577,6 +74235,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Frontlines: Fuel of War", "game_detection": [ @@ -69597,6 +74256,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Turok", "game_detection": [ @@ -69609,6 +74269,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GoNNER", "game_detection": [ @@ -69626,6 +74287,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lethal League", "game_detection": [ @@ -69640,6 +74302,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MechWarrior 4: Vengeance", "game_detection": [ @@ -69651,6 +74314,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Secret Service", "game_detection": [ @@ -69662,6 +74326,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Airport Tycoon", "game_detection": [ @@ -69673,6 +74338,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dawngate", "game_detection": [ @@ -69686,6 +74352,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Z", "game_detection": [ @@ -69700,6 +74367,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kabod Online", "game_detection": [ @@ -69713,6 +74381,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "InMomentum", "game_detection": [ @@ -69727,6 +74396,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Arcana Heart 3 LOVE MAX!!!!!", "game_detection": [ @@ -69741,6 +74411,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Elemental: War of Magic", "game_detection": [ @@ -69752,6 +74423,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dragon Fin Soup", "game_detection": [ @@ -69766,6 +74438,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "CivCity: Rome", "game_detection": [ @@ -69782,6 +74455,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tribes: Ascend", "game_detection": [ @@ -69813,6 +74487,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Civil War II", "game_detection": [ @@ -69827,6 +74502,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "King Arthur’s Gold", "game_detection": [ @@ -69846,6 +74522,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sniper: Art of Victory", "game_detection": [ @@ -69865,6 +74542,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The King of Fighters 2002: Unlimited Match", "game_detection": [ @@ -69879,6 +74557,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fortnite", "game_detection": [ @@ -69891,6 +74570,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Thronebreaker: The Witcher Tales", "game_detection": [ @@ -69905,6 +74585,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "M.U.G.E.N", "game_detection": [ @@ -69915,6 +74596,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Elder Scrolls III: Morrowind - Game of the Year Edition", "game_detection": [ @@ -69929,6 +74611,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Evoland", "game_detection": [ @@ -69958,6 +74641,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Repopulation", "game_detection": [ @@ -69972,6 +74656,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Touhou Scarlet Curiosity", "game_detection": [ @@ -69985,6 +74670,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FreeJack", "game_detection": [ @@ -69997,6 +74683,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "VR Battle Grid", "game_detection": [ @@ -70012,6 +74699,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "K.O.S. Secret Operations", "game_detection": [ @@ -70024,6 +74712,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kingdom: New Lands", "game_detection": [ @@ -70038,6 +74727,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Synthesia", "game_detection": [ @@ -70048,6 +74738,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "I Am The Hero", "game_detection": [ @@ -70062,6 +74753,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pathfinder: Kingmaker", "game_detection": [ @@ -70072,6 +74764,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spartan", "game_detection": [ @@ -70083,6 +74776,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Project Nimbus", "game_detection": [ @@ -70097,6 +74791,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Baba Is You", "game_detection": [ @@ -70107,6 +74802,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Starion Tactics", "game_detection": [ @@ -70121,6 +74817,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Counter Agents", "game_detection": [ @@ -70135,6 +74832,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Soul of the Ultimate Nation", "game_detection": [ @@ -70149,6 +74847,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Ocean - The Last Hope", "game_detection": [ @@ -70162,6 +74861,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "IL-2 Sturmovik: 1946", "game_detection": [ @@ -70173,6 +74873,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Starpoint Gemini", "game_detection": [ @@ -70187,6 +74888,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims 2: Glamour Life Stuff", "game_detection": [ @@ -70198,6 +74900,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Transmissions: Element 120", "game_detection": [ @@ -70212,6 +74915,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Campaign Series: Fall Weiss", "game_detection": [ @@ -70226,6 +74930,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sid Meier's Civilization IV: Warlords", "game_detection": [ @@ -70258,6 +74963,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "Tian Long Ba Bu", "game_detection": [ @@ -70272,6 +74978,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Angry Birds Space", "game_detection": [ @@ -70286,6 +74993,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Space Run", "game_detection": [ @@ -70300,6 +75008,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Magical Diary", "game_detection": [ @@ -70314,6 +75023,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RAN Online", "game_detection": [ @@ -70326,6 +75036,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Imagine Earth Demo", "game_detection": [ @@ -70340,6 +75051,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Floor is Jelly", "game_detection": [ @@ -70359,6 +75071,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Counter-Strike ProMod", "game_detection": [ @@ -70375,6 +75088,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Worms Clan Wars", "game_detection": [ @@ -70389,6 +75103,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pool Nation FX", "game_detection": [ @@ -70403,6 +75118,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Telepath Tactics", "game_detection": [ @@ -70417,6 +75133,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Continue?9876543210", "game_detection": [ @@ -70436,6 +75153,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hostile Waters: Antaeus Rising", "game_detection": [ @@ -70450,6 +75168,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "We Were Here Too", "game_detection": [ @@ -70460,6 +75179,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Quatros Origins", "game_detection": [ @@ -70474,6 +75194,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Masterspace", "game_detection": [ @@ -70488,6 +75209,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Muv-Luv", "game_detection": [ @@ -70502,6 +75224,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NBA 2K15", "game_detection": [ @@ -70516,6 +75239,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Simply Chess", "game_detection": [ @@ -70530,6 +75254,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cannons Lasers Rockets", "game_detection": [ @@ -70544,6 +75269,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stranded Deep", "game_detection": [ @@ -70554,6 +75280,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "King of the Hat", "game_detection": [ @@ -70565,6 +75292,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shantae: Risky's Revenge", "game_detection": [ @@ -70579,6 +75307,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Luxor: 5th Passage", "game_detection": [ @@ -70593,6 +75322,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Poker Night 2", "game_detection": [ @@ -70607,6 +75337,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Waves²", "game_detection": [ @@ -70621,6 +75352,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Haegemonia: Legions of Iron", "game_detection": [ @@ -70640,6 +75372,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deadly 30", "game_detection": [ @@ -70659,6 +75392,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Scribblenauts Unmasked: A DC Comics Adventure", "game_detection": [ @@ -70673,6 +75407,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dragon Age: Inquisition", "game_detection": [ @@ -70684,6 +75419,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Desert Gunner", "game_detection": [ @@ -70698,6 +75434,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alchemy", "game_detection": [ @@ -70711,6 +75448,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sea of Thieves", "game_detection": [ @@ -70721,6 +75459,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dreamkiller", "game_detection": [ @@ -70735,6 +75474,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Slay the Spire", "game_detection": [ @@ -70748,6 +75488,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Universal Combat: A World Apart", "game_detection": [ @@ -70767,6 +75508,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hover: Revolt Of Gamers", "game_detection": [ @@ -70781,6 +75523,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Oh...Sir!", "game_detection": [ @@ -70795,6 +75538,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Swapper", "game_detection": [ @@ -70814,6 +75558,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gods Will Be Watching", "game_detection": [ @@ -70834,6 +75579,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Garry's Mod", "game_detection": [ @@ -70866,6 +75612,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NBA 2K10", "game_detection": [ @@ -70885,6 +75632,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Planet Busters", "game_detection": [ @@ -70899,6 +75647,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warmonger Operation: Downtown Destruction", "game_detection": [ @@ -70911,6 +75660,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Neverdaunt: 8Bit", "game_detection": [ @@ -70923,6 +75673,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Roller Champions", "game_detection": [ @@ -70933,6 +75684,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Legend of Heroes: Trails in the Sky", "game_detection": [ @@ -70947,6 +75699,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Next Big Thing", "game_detection": [ @@ -70961,6 +75714,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Scooby Doo & Looney Tunes Cartoon Universe: Adventure", "game_detection": [ @@ -70975,6 +75729,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Grim Fandango Remastered", "game_detection": [ @@ -70994,6 +75749,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Freddi Fish 4: The Case of the Hogfish Rustlers of Briny Gulch", "game_detection": [ @@ -71008,6 +75764,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vietcong 2", "game_detection": [ @@ -71020,6 +75777,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Plants vs. Zombies: Battle for Neighborville", "game_detection": [ @@ -71030,6 +75788,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eternal Senia", "game_detection": [ @@ -71044,6 +75803,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mahjong Quest 3", "game_detection": [ @@ -71058,6 +75818,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rocksmith 2014 Edition", "game_detection": [ @@ -71072,6 +75833,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Overload", "game_detection": [ @@ -71093,6 +75855,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Castlevania: Lords of Shadow", "game_detection": [ @@ -71107,6 +75870,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eden Star", "game_detection": [ @@ -71121,6 +75885,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ricochet: Lost Worlds", "game_detection": [ @@ -71143,6 +75908,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "killer7", "game_detection": [ @@ -71153,6 +75919,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Celtic Kings: Rage Of War", "game_detection": [ @@ -71164,6 +75931,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Scrapland", "game_detection": [ @@ -71175,6 +75943,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Build-A-Lot 2", "game_detection": [ @@ -71189,6 +75958,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Obscure", "game_detection": [ @@ -71203,6 +75973,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nom Nom Galaxy", "game_detection": [ @@ -71217,6 +75988,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Fall", "game_detection": [ @@ -71236,6 +76008,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Legend of Heroes: Trails of Cold Steel II", "game_detection": [ @@ -71256,6 +76029,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Life Goes On", "game_detection": [ @@ -71275,6 +76049,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "R. Y. L. Path of the Emperor", "game_detection": [ @@ -71294,6 +76069,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Lord of the Rings: The Battle for Middle-Earth", "game_detection": [ @@ -71306,6 +76082,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Naval War: Arctic Circle", "game_detection": [ @@ -71320,6 +76097,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Memoir 44 Online", "game_detection": [ @@ -71334,6 +76112,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heroes of Newerth", "game_detection": [ @@ -71352,6 +76131,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Puzzle Dimension", "game_detection": [ @@ -71366,6 +76146,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Smashing Toys", "game_detection": [ @@ -71380,6 +76161,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Reversion - The Meeting", "game_detection": [ @@ -71394,6 +76176,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Renegade Ops", "game_detection": [ @@ -71408,6 +76191,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Catz", "game_detection": [ @@ -71419,6 +76203,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Villagers & Heroes", "game_detection": [ @@ -71433,6 +76218,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lightfish", "game_detection": [ @@ -71447,6 +76233,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Probably Archery", "game_detection": [ @@ -71466,6 +76253,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Venetica", "game_detection": [ @@ -71478,6 +76266,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Audioshield", "game_detection": [ @@ -71493,6 +76282,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Traders: Frontiers", "game_detection": [ @@ -71506,6 +76296,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jurassic World Evolution", "game_detection": [ @@ -71516,6 +76307,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rise of Venice", "game_detection": [ @@ -71530,6 +76322,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Xiah Rebirth", "game_detection": [ @@ -71542,6 +76335,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Continent of the Ninth Seal", "game_detection": [ @@ -71562,6 +76356,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cloney", "game_detection": [ @@ -71576,6 +76371,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Chronicles of Narnia: Prince Caspian", "game_detection": [ @@ -71588,6 +76384,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ERR: 001", "game_detection": [ @@ -71602,6 +76399,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FORCED", "game_detection": [ @@ -71616,6 +76414,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tales of Monkey Island 5: Rise of the Pirate God", "game_detection": [ @@ -71635,6 +76434,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Counter-Strike: Condition Zero", "game_detection": [ @@ -71656,6 +76456,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Supreme Ruler 2020", "game_detection": [ @@ -71675,6 +76476,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Beholder 2", "game_detection": [ @@ -71685,6 +76487,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Who Is Mike - A Visual Novel", "game_detection": [ @@ -71699,6 +76502,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Euro Fishing", "game_detection": [ @@ -71713,6 +76517,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Police Simulator", "game_detection": [ @@ -71729,6 +76534,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gems of War", "game_detection": [ @@ -71743,6 +76549,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Football Manager 2013", "game_detection": [ @@ -71757,6 +76564,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fishing Craze", "game_detection": [ @@ -71771,6 +76579,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Carnage Racing", "game_detection": [ @@ -71785,6 +76594,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gray Matter", "game_detection": [ @@ -71799,6 +76609,7 @@ ] }, { + "force_display_capture": false, "region": "ES", "title": "Sevencore", "game_detection": [ @@ -71813,6 +76624,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Valkyria Chronicles", "game_detection": [ @@ -71827,6 +76639,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Strong Bad's Cool Game for Attractive People Episode 3: Baddest of the Bands", "game_detection": [ @@ -71848,6 +76661,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gimbal", "game_detection": [ @@ -71862,6 +76676,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crossout", "game_detection": [ @@ -71876,6 +76691,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Left 4 Dead 2 Demo", "game_detection": [ @@ -71890,6 +76706,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Banner Saga", "game_detection": [ @@ -71904,6 +76721,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shadowrun Chronicles", "game_detection": [ @@ -71918,6 +76736,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Royal Quest", "game_detection": [ @@ -71941,6 +76760,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alganon", "game_detection": [ @@ -71961,6 +76781,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Minecraft: Story Mode", "game_detection": [ @@ -71975,6 +76796,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "TERA: Rising", "game_detection": [ @@ -71995,6 +76817,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mortyr 2", "game_detection": [ @@ -72006,6 +76829,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "City Life 2008", "game_detection": [ @@ -72019,6 +76843,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fez", "game_detection": [ @@ -72048,6 +76873,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hearts of Iron 2: Complete", "game_detection": [ @@ -72062,6 +76888,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Code Hero", "game_detection": [ @@ -72074,6 +76901,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rising Storm 2: Vietnam", "game_detection": [ @@ -72088,6 +76916,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Volo Airsport", "game_detection": [ @@ -72099,6 +76928,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Chosen: Well of Souls", "game_detection": [ @@ -72111,6 +76941,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mining & Tunneling Simulator", "game_detection": [ @@ -72125,6 +76956,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Officers", "game_detection": [ @@ -72145,6 +76977,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stormworks: Build and Rescue", "game_detection": [ @@ -72159,6 +76992,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battlefield 2 Demo", "game_detection": [ @@ -72172,6 +77006,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Vagrant", "game_detection": [ @@ -72185,6 +77020,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Realms of Arkania: Blade of Destiny", "game_detection": [ @@ -72199,6 +77035,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Oceanhorn: Monster of Uncharted Seas", "game_detection": [ @@ -72213,6 +77050,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Moonlight Online", "game_detection": [ @@ -72225,6 +77063,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Galcon Legends", "game_detection": [ @@ -72244,6 +77083,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Elsword", "game_detection": [ @@ -72266,6 +77106,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ymir", "game_detection": [ @@ -72276,6 +77117,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chronicon", "game_detection": [ @@ -72286,6 +77128,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battlefield 1942", "game_detection": [ @@ -72298,6 +77141,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Retro Game Crunch", "game_detection": [ @@ -72317,6 +77161,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gettysburg: Armored Warfare", "game_detection": [ @@ -72331,6 +77176,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DiRT 4", "game_detection": [ @@ -72345,6 +77191,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Witcher 2", "game_detection": [ @@ -72365,6 +77212,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Speed Kills", "game_detection": [ @@ -72379,6 +77227,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "TRON RUN/r", "game_detection": [ @@ -72393,6 +77242,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Onimusha 3: Demon Siege", "game_detection": [ @@ -72404,6 +77254,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tesla Effect", "game_detection": [ @@ -72423,6 +77274,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hidden Mysteries: Notre Dame: Secrets of Paris", "game_detection": [ @@ -72434,6 +77286,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Serious Sam Classics: Revolution", "game_detection": [ @@ -72448,6 +77301,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ABE VR", "game_detection": [ @@ -72463,6 +77317,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sentinel", "game_detection": [ @@ -72477,6 +77332,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "UberSoldier", "game_detection": [ @@ -72488,6 +77344,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Epistory: Typing Chronicles", "game_detection": [ @@ -72502,6 +77359,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ShootMania Storm", "game_detection": [ @@ -72516,6 +77374,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Freedom Planet", "game_detection": [ @@ -72535,6 +77394,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MXGP 2", "game_detection": [ @@ -72549,6 +77409,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Iron Soul", "game_detection": [ @@ -72563,6 +77424,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Breach", "game_detection": [ @@ -72577,6 +77439,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MDK 2", "game_detection": [ @@ -72598,6 +77461,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Last Federation", "game_detection": [ @@ -72617,6 +77481,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Red Goddess: Inner World", "game_detection": [ @@ -72631,6 +77496,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "AudioSurf", "game_detection": [ @@ -72651,6 +77517,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Port of Call", "game_detection": [ @@ -72665,6 +77532,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Xeodrifter", "game_detection": [ @@ -72679,6 +77547,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "TrackMania Sunrise", "game_detection": [ @@ -72690,6 +77559,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heavy Bullets", "game_detection": [ @@ -72709,6 +77579,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Retrobooster", "game_detection": [ @@ -72729,6 +77600,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SteamWorld Dig", "game_detection": [ @@ -72748,6 +77620,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stronghold 3", "game_detection": [ @@ -72762,6 +77635,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Q.U.B.E: Director's Cut", "game_detection": [ @@ -72776,6 +77650,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hegemony: Philip of Macedon", "game_detection": [ @@ -72790,6 +77665,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tales from the Borderlands", "game_detection": [ @@ -72804,6 +77680,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dangerous High School Girls in Trouble", "game_detection": [ @@ -72818,6 +77695,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DRAGON QUEST HEROES II", "game_detection": [ @@ -72831,6 +77709,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BLUE REFLECTION", "game_detection": [ @@ -72845,6 +77724,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Need For Speed: High Stakes", "game_detection": [ @@ -72857,6 +77737,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Torchlight II", "game_detection": [ @@ -72878,6 +77759,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wandersong", "game_detection": [ @@ -72888,6 +77770,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Titan Quest Demo", "game_detection": [ @@ -72900,6 +77783,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "TRI", "game_detection": [ @@ -72914,6 +77798,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "M.A.V.", "game_detection": [ @@ -72928,6 +77813,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Atlas Reactor", "game_detection": [ @@ -72950,6 +77836,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dangerous Golf", "game_detection": [ @@ -72964,6 +77851,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rochard", "game_detection": [ @@ -72983,6 +77871,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Trench Attack!", "game_detection": [ @@ -72997,6 +77886,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mystery Maze Of Balthasar Castle", "game_detection": [ @@ -73011,6 +77901,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Homeworld 2", "game_detection": [ @@ -73023,6 +77914,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sid Meier’s Civilization VI", "game_detection": [ @@ -73037,6 +77929,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Darkwind: War on Wheels", "game_detection": [ @@ -73051,6 +77944,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Lady", "game_detection": [ @@ -73065,6 +77959,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Age of Wonders", "game_detection": [ @@ -73092,6 +77987,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blasphemous", "game_detection": [ @@ -73102,6 +77998,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Global Agenda", "game_detection": [ @@ -73132,6 +78029,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Paranautical Activity", "game_detection": [ @@ -73151,6 +78049,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Solstice Arena", "game_detection": [ @@ -73165,6 +78064,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Next Car Game", "game_detection": [ @@ -73179,6 +78079,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zenzizenzic", "game_detection": [ @@ -73193,6 +78094,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Full Spectrum Warrior", "game_detection": [ @@ -73207,6 +78109,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Panzer Command: Operation Winter Storm", "game_detection": [ @@ -73218,6 +78121,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Football Manager 2014", "game_detection": [ @@ -73232,6 +78136,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cognition: Episode 2 - The Wise Monkey", "game_detection": [ @@ -73243,6 +78148,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Out of the Park Baseball 15", "game_detection": [ @@ -73257,6 +78163,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Worms Crazy Golf", "game_detection": [ @@ -73271,6 +78178,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Euro Truck Simulator", "game_detection": [ @@ -73285,6 +78193,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Aces Wild", "game_detection": [ @@ -73299,6 +78208,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dig or Die", "game_detection": [ @@ -73312,6 +78222,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tom Clancy's Ghost Recon Advanced Warfighter Demo", "game_detection": [ @@ -73324,6 +78235,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Call of Duty: WWII", "game_detection": [ @@ -73346,6 +78258,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Escapists: The Walking Dead", "game_detection": [ @@ -73360,6 +78273,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NBA 2K19", "game_detection": [ @@ -73373,6 +78287,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DuckTales: Remastered", "game_detection": [ @@ -73387,6 +78302,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Brick Rigs", "game_detection": [ @@ -73397,6 +78313,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nancy Drew: Last Train to Blue Moon Canyon", "game_detection": [ @@ -73411,6 +78328,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nancy Drew: The Haunted Carousel", "game_detection": [ @@ -73425,6 +78343,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Privates", "game_detection": [ @@ -73436,6 +78355,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lifeless", "game_detection": [ @@ -73455,6 +78375,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rohan: Blood Feud", "game_detection": [ @@ -73480,6 +78401,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hello Kitty: Cutie World", "game_detection": [ @@ -73491,6 +78413,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vendetta: Curse of Raven's Cry", "game_detection": [ @@ -73505,6 +78428,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "S.T.A.L.K.E.R. Clear Sky", "game_detection": [ @@ -73525,6 +78449,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fragmented", "game_detection": [ @@ -73539,6 +78464,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Ultimate Doom", "game_detection": [ @@ -73553,6 +78479,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ancestor's Legacy", "game_detection": [ @@ -73566,6 +78493,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Emerald City Confidential", "game_detection": [ @@ -73580,6 +78508,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Master of Orion", "game_detection": [ @@ -73594,6 +78523,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "Special Force", "game_detection": [ @@ -73607,6 +78537,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ace Combat 7", "game_detection": [ @@ -73617,6 +78548,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "F1 2014", "game_detection": [ @@ -73631,6 +78563,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nioh", "game_detection": [ @@ -73644,6 +78577,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Earth Defense Force: Insect Armageddon", "game_detection": [ @@ -73658,6 +78592,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warrior Epic", "game_detection": [ @@ -73682,6 +78617,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "2029 Online", "game_detection": [ @@ -73695,6 +78631,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Air Forte", "game_detection": [ @@ -73709,6 +78646,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "War Inc. Battle Zone", "game_detection": [ @@ -73729,6 +78667,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Starvoid", "game_detection": [ @@ -73742,6 +78681,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zheng Tu 2S", "game_detection": [ @@ -73755,6 +78695,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Anomaly: Warzone Earth", "game_detection": [ @@ -73774,6 +78715,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Magic: The Gathering: Duels of the Planeswalkers 2012", "game_detection": [ @@ -73788,6 +78730,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Picross Touch", "game_detection": [ @@ -73802,6 +78745,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zen Bound 2", "game_detection": [ @@ -73821,6 +78765,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Asda Story", "game_detection": [ @@ -73834,6 +78779,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Democracy 3", "game_detection": [ @@ -73853,6 +78799,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hyperdimension Neptunia Re;Birth3: V Generation", "game_detection": [ @@ -73867,6 +78814,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Devil Whiskey", "game_detection": [ @@ -73879,6 +78827,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Strike Suit Zero: Director's Cut", "game_detection": [ @@ -73893,6 +78842,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Serious Sam HD: The Second Encounter", "game_detection": [ @@ -73907,6 +78857,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Achron", "game_detection": [ @@ -73921,6 +78872,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warfork", "game_detection": [ @@ -73931,6 +78883,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Average Everyday Adventures of Samantha Browne", "game_detection": [ @@ -73945,6 +78898,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hard Reset", "game_detection": [ @@ -73964,6 +78918,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Poöf", "game_detection": [ @@ -73985,6 +78940,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fighting EX Layer", "game_detection": [ @@ -73995,6 +78951,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deus Machina Demonbane", "game_detection": [ @@ -74006,6 +78963,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "McDROID", "game_detection": [ @@ -74020,6 +78978,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Larva Mortus", "game_detection": [ @@ -74034,6 +78993,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Settlers: Fourth Edition", "game_detection": [ @@ -74047,6 +79007,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FORGE", "game_detection": [ @@ -74067,6 +79028,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Electric Highways", "game_detection": [ @@ -74081,6 +79043,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Garry's Mod 13 Beta", "game_detection": [ @@ -74095,6 +79058,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Probability 0", "game_detection": [ @@ -74109,6 +79073,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Football Manager Live", "game_detection": [ @@ -74120,6 +79085,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Feist", "game_detection": [ @@ -74134,6 +79100,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gumboy Tournament", "game_detection": [ @@ -74148,6 +79115,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Creature Conflict: The Clan Wars", "game_detection": [ @@ -74159,6 +79127,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ONE PIECE World Seeker", "game_detection": [ @@ -74169,6 +79138,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Aerena", "game_detection": [ @@ -74183,6 +79153,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "INVERSUS", "game_detection": [ @@ -74197,6 +79168,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deus Ex: Revision", "game_detection": [ @@ -74211,6 +79183,7 @@ ] }, { + "force_display_capture": false, "region": "BR", "title": "Allods Online", "game_detection": [ @@ -74224,6 +79197,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lonely Mountains: Downhill", "game_detection": [ @@ -74234,6 +79208,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sam & Max Episode 201: Ice Station Santa", "game_detection": [ @@ -74253,6 +79228,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wild Metal Country", "game_detection": [ @@ -74268,6 +79244,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Petz: Dogz 2", "game_detection": [ @@ -74282,6 +79259,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "War for the Overworld", "game_detection": [ @@ -74296,6 +79274,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "IL-2 Sturmovik: Forgotten Battles", "game_detection": [ @@ -74307,6 +79286,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gunjack", "game_detection": [ @@ -74322,6 +79302,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eon Altar", "game_detection": [ @@ -74336,6 +79317,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Room Three", "game_detection": [ @@ -74346,6 +79328,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hellgate: London Demo", "game_detection": [ @@ -74359,6 +79342,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lone Survivor", "game_detection": [ @@ -74372,6 +79356,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blade of Destiny", "game_detection": [ @@ -74384,6 +79369,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Joint Operations: Combined Arms Gold", "game_detection": [ @@ -74398,6 +79384,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "KYOTO TANOJI QUEST", "game_detection": [ @@ -74412,6 +79399,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blacklight Retribution", "game_detection": [ @@ -74451,6 +79439,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Dragonica Online", "game_detection": [ @@ -74486,6 +79475,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Act of Aggression", "game_detection": [ @@ -74500,6 +79490,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Air Control", "game_detection": [ @@ -74514,6 +79505,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Split/Second", "game_detection": [ @@ -74533,6 +79525,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Path", "game_detection": [ @@ -74547,6 +79540,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Psychonauts", "game_detection": [ @@ -74571,6 +79565,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Quantum Conundrum", "game_detection": [ @@ -74585,6 +79580,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Victim of Xen", "game_detection": [ @@ -74599,6 +79595,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "District 187: Sin Streets", "game_detection": [ @@ -74620,6 +79617,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MashON SPORE Comic Book Creator", "game_detection": [ @@ -74631,6 +79629,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2015", "game_detection": [ @@ -74645,6 +79644,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ARMA II", "game_detection": [ @@ -74664,6 +79664,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Serena", "game_detection": [ @@ -74678,6 +79679,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hexen: Deathkings of the Dark Citadel", "game_detection": [ @@ -74692,6 +79694,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rocket Knight", "game_detection": [ @@ -74706,6 +79709,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hard Truck Apocalypse: Arcade", "game_detection": [ @@ -74720,6 +79724,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Under a Killing Moon", "game_detection": [ @@ -74734,6 +79739,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Metro 2033 Redux", "game_detection": [ @@ -74748,6 +79754,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "My Riding Stables", "game_detection": [ @@ -74762,6 +79769,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "COR", "game_detection": [ @@ -74775,6 +79783,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Legend of Heroes: Trails of Cold Steel", "game_detection": [ @@ -74789,6 +79798,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bejeweled Blitz", "game_detection": [ @@ -74801,6 +79811,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sword Art Online: Lost Song", "game_detection": [ @@ -74811,6 +79822,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tales of Monkey Island 2: The Siege of Spinner Cay", "game_detection": [ @@ -74830,6 +79842,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Full Metal Furies", "game_detection": [ @@ -74843,6 +79856,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Silent Storm", "game_detection": [ @@ -74857,6 +79871,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Running with Rifles", "game_detection": [ @@ -74871,6 +79886,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Demolition Inc.", "game_detection": [ @@ -74885,6 +79901,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Medal of Honor: Pacific Assault", "game_detection": [ @@ -74897,6 +79914,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Colin McRae Rally 2.0", "game_detection": [ @@ -74908,6 +79926,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Forager", "game_detection": [ @@ -74918,6 +79937,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mall Tycoon", "game_detection": [ @@ -74930,6 +79950,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FreeOrion", "game_detection": [ @@ -74942,6 +79963,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Farm Frenzy", "game_detection": [ @@ -74956,6 +79978,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nights of Azure 2", "game_detection": [ @@ -74970,6 +79993,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Operation Flashpoint: Dragon Rising", "game_detection": [ @@ -74989,6 +80013,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "Black Desert", "game_detection": [ @@ -75002,6 +80027,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Agarest: Generations of War 2", "game_detection": [ @@ -75016,6 +80042,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NHL 2006", "game_detection": [ @@ -75027,6 +80054,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims 2: Open for Business", "game_detection": [ @@ -75038,6 +80066,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "TV Trouble", "game_detection": [ @@ -75052,6 +80081,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Outlast 2", "game_detection": [ @@ -75062,6 +80092,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wolcen: Lords of Mayhem", "game_detection": [ @@ -75072,6 +80103,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Call of Duty", "game_detection": [ @@ -75106,6 +80138,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "WolfQuest", "game_detection": [ @@ -75117,6 +80150,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ROSE Online", "game_detection": [ @@ -75144,6 +80178,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Divinia", "game_detection": [ @@ -75157,6 +80192,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "CHAOS CODE -NEW SIGN OF CATASTROPHE-", "game_detection": [ @@ -75171,6 +80207,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Plant Tycoon", "game_detection": [ @@ -75185,6 +80222,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Yu-Gi-Oh! Online: Duel Evolution", "game_detection": [ @@ -75198,6 +80236,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "CardMon Hero", "game_detection": [ @@ -75211,6 +80250,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "VVVVVV", "game_detection": [ @@ -75234,6 +80274,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Delta Force: Xtreme 2", "game_detection": [ @@ -75253,6 +80294,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shadowgrounds", "game_detection": [ @@ -75272,6 +80314,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sonic Forces", "game_detection": [ @@ -75285,6 +80328,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rexodus: A VR Story Experience", "game_detection": [ @@ -75300,6 +80344,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Paradise Poker.com", "game_detection": [ @@ -75318,6 +80363,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hero Online", "game_detection": [ @@ -75330,6 +80376,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Call of Duty 2 Demo", "game_detection": [ @@ -75342,6 +80389,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Insanity Clicker", "game_detection": [ @@ -75356,6 +80404,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nodiatis", "game_detection": [ @@ -75370,6 +80419,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Governor of Poker 2", "game_detection": [ @@ -75384,6 +80434,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MirrorMoon EP", "game_detection": [ @@ -75403,6 +80454,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rust", "game_detection": [ @@ -75417,6 +80469,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Angry Video Game Nerd Adventures", "game_detection": [ @@ -75431,6 +80484,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mini Fighter", "game_detection": [ @@ -75443,6 +80497,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Doom Rails", "game_detection": [ @@ -75457,6 +80512,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MapleStory", "game_detection": [ @@ -75484,6 +80540,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mr. Bree+", "game_detection": [ @@ -75503,6 +80560,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sum of All Fears", "game_detection": [ @@ -75517,6 +80575,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lemma", "game_detection": [ @@ -75531,6 +80590,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pokémon World Online", "game_detection": [ @@ -75553,6 +80613,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Resident Evil 0 Remaster", "game_detection": [ @@ -75567,6 +80628,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Half-Life 2", "game_detection": [ @@ -75582,6 +80644,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cake Mania", "game_detection": [ @@ -75596,6 +80659,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LEGO Star Wars III: The Clone Wars", "game_detection": [ @@ -75615,6 +80679,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Construction Machines 2014", "game_detection": [ @@ -75629,6 +80694,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Farming Simulator 2011", "game_detection": [ @@ -75643,6 +80709,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dragon Spear", "game_detection": [ @@ -75656,6 +80723,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tropico 4", "game_detection": [ @@ -75680,6 +80748,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NaissanceE", "game_detection": [ @@ -75694,6 +80763,7 @@ ] }, { + "force_display_capture": false, "region": "UK", "title": "Lucent Heart", "game_detection": [ @@ -75707,6 +80777,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lost Empire: Immortals", "game_detection": [ @@ -75719,6 +80790,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mutant Storm Reloaded", "game_detection": [ @@ -75733,6 +80805,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cloud Nine", "game_detection": [ @@ -75745,6 +80818,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Unepic", "game_detection": [ @@ -75770,6 +80844,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Velocity 2X", "game_detection": [ @@ -75784,6 +80859,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Novelist", "game_detection": [ @@ -75803,6 +80879,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sherlock Holmes: The Mystery of the Mummy", "game_detection": [ @@ -75817,6 +80894,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Black Mesa", "game_detection": [ @@ -75837,6 +80915,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Legions of Steel", "game_detection": [ @@ -75851,6 +80930,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mutant Year Zero: Road to Eden", "game_detection": [ @@ -75861,6 +80941,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bloodstained: Ritual of the Night", "game_detection": [ @@ -75875,6 +80956,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blueberry Garden", "game_detection": [ @@ -75889,6 +80971,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Uncharted Waters Online", "game_detection": [ @@ -75925,6 +81008,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Art of War: Red Tides", "game_detection": [ @@ -75939,6 +81023,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hyper Fighters", "game_detection": [ @@ -75953,6 +81038,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Divergence", "game_detection": [ @@ -75967,6 +81053,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Halo: Custom Edition", "game_detection": [ @@ -75978,6 +81065,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battle For Graxia", "game_detection": [ @@ -75998,6 +81086,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ankh: Heart of Osiris", "game_detection": [ @@ -76009,6 +81098,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Xonotic", "game_detection": [ @@ -76020,6 +81110,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Game Tycoon", "game_detection": [ @@ -76036,6 +81127,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Of Orcs and Men", "game_detection": [ @@ -76050,6 +81142,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deceit", "game_detection": [ @@ -76064,6 +81157,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zombie Shooter", "game_detection": [ @@ -76078,6 +81172,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "John Deere American Farmer", "game_detection": [ @@ -76089,6 +81184,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chompy Chomp Chomp", "game_detection": [ @@ -76108,6 +81204,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Out of the Park Baseball 20", "game_detection": [ @@ -76122,6 +81219,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rules of Survival", "game_detection": [ @@ -76147,6 +81245,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Grand Chase", "game_detection": [ @@ -76189,6 +81288,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crysis Demo", "game_detection": [ @@ -76202,6 +81302,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Planet Coaster", "game_detection": [ @@ -76216,6 +81317,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spelunky!", "game_detection": [ @@ -76235,6 +81337,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Deer God", "game_detection": [ @@ -76249,6 +81352,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alternativa", "game_detection": [ @@ -76263,6 +81367,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ultionus: A Tale of Petty Revenge", "game_detection": [ @@ -76277,6 +81382,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "METAL GEAR SURVIVE", "game_detection": [ @@ -76290,6 +81396,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Unstoppable Gorg", "game_detection": [ @@ -76309,6 +81416,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mystery P.I.: The New York Fortune", "game_detection": [ @@ -76323,6 +81431,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "XEN Online", "game_detection": [ @@ -76335,6 +81444,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Killer is Dead - Nightmare Edition", "game_detection": [ @@ -76349,6 +81459,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MX Simulator", "game_detection": [ @@ -76359,6 +81470,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Champions of Regnum", "game_detection": [ @@ -76371,6 +81483,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hell's Kitchen", "game_detection": [ @@ -76382,6 +81495,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DiRT 2", "game_detection": [ @@ -76402,6 +81516,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ACE Academy", "game_detection": [ @@ -76416,6 +81531,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shelter", "game_detection": [ @@ -76435,6 +81551,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Two Worlds II", "game_detection": [ @@ -76455,6 +81572,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tiger Knight: Empire War", "game_detection": [ @@ -76469,6 +81587,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Scarlet Blade", "game_detection": [ @@ -76483,6 +81602,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lionheart: Legacy of the Crusader", "game_detection": [ @@ -76499,6 +81619,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Council", "game_detection": [ @@ -76509,6 +81630,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tales of Pirates II", "game_detection": [ @@ -76522,6 +81644,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deer Hunter Tournament", "game_detection": [ @@ -76533,6 +81656,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MVP Baseball 2005", "game_detection": [ @@ -76544,6 +81668,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Monday Night Combat", "game_detection": [ @@ -76570,6 +81695,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Medal of Honor: Airborne Demo", "game_detection": [ @@ -76583,6 +81709,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "AdVenture Capitalist", "game_detection": [ @@ -76597,6 +81724,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GM Rally", "game_detection": [ @@ -76616,6 +81744,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Great War Nations: The Spartans", "game_detection": [ @@ -76632,6 +81761,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BROFORCE", "game_detection": [ @@ -76656,6 +81786,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DEAD OR ALIVE Xtreme Venus Vacation", "game_detection": [ @@ -76670,6 +81801,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tomb Raider 2", "game_detection": [ @@ -76689,6 +81821,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dropzone", "game_detection": [ @@ -76703,6 +81836,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "eXceed – Gun Bullet Children", "game_detection": [ @@ -76723,6 +81857,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heroes of SoulCraft", "game_detection": [ @@ -76737,6 +81872,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Imagine Me", "game_detection": [ @@ -76751,6 +81887,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Space Cowboy Online", "game_detection": [ @@ -76771,6 +81908,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rogue Legacy", "game_detection": [ @@ -76790,6 +81928,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alien Rage", "game_detection": [ @@ -76804,6 +81943,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tokyo Xanadu eX+", "game_detection": [ @@ -76817,6 +81957,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Carte", "game_detection": [ @@ -76830,6 +81971,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead Rising 3", "game_detection": [ @@ -76844,6 +81986,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Putt-Putt Saves the Zoo", "game_detection": [ @@ -76858,6 +82001,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Voodoo Whisperer Curse of a Legend", "game_detection": [ @@ -76872,6 +82016,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Age of Mythology", "game_detection": [ @@ -76892,6 +82037,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Soul Order Online", "game_detection": [ @@ -76905,6 +82051,7 @@ ] }, { + "force_display_capture": false, "region": "VN", "title": "World of Tanks", "game_detection": [ @@ -76918,6 +82065,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "PT Boats: Knights of the Sea", "game_detection": [ @@ -76932,6 +82080,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Huntsman: Winter's Curse", "game_detection": [ @@ -76946,6 +82095,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sins of a Solar Empire", "game_detection": [ @@ -76957,6 +82107,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cloud Chamber", "game_detection": [ @@ -76971,6 +82122,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Idling to Rule the Gods", "game_detection": [ @@ -76989,6 +82141,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hard West", "game_detection": [ @@ -77003,6 +82156,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Harley Davidson: Race to the Rally", "game_detection": [ @@ -77015,6 +82169,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "Audition Dance", "game_detection": [ @@ -77028,6 +82183,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dynasty Warriors 7: Xtreme Legends Definitive Edition", "game_detection": [ @@ -77046,6 +82202,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Loom", "game_detection": [ @@ -77060,6 +82217,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kingdom Heroes", "game_detection": [ @@ -77073,6 +82231,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Echoes of Sorrow", "game_detection": [ @@ -77085,6 +82244,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zafehouse: Diaries", "game_detection": [ @@ -77099,6 +82259,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dynasty Warriors 8 Xtreme Legends", "game_detection": [ @@ -77113,6 +82274,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Devil May Cry 2", "game_detection": [ @@ -77126,6 +82288,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "8BitBoy", "game_detection": [ @@ -77140,6 +82303,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer Online: Wrath of Heroes", "game_detection": [ @@ -77152,6 +82316,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Prince of Persia: Warrior Within", "game_detection": [ @@ -77164,6 +82329,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Realms of Arkania III: Shadows Over Riva", "game_detection": [ @@ -77178,6 +82344,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Yaiba: Ninja Gaiden Z", "game_detection": [ @@ -77192,6 +82359,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Auto Assault", "game_detection": [ @@ -77205,6 +82373,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Raven - Legacy of a Master Thief", "game_detection": [ @@ -77219,6 +82388,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Breached", "game_detection": [ @@ -77233,6 +82403,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Great Battles: Medieval", "game_detection": [ @@ -77249,6 +82420,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cognition: Episode 1 - The Hangman Demo", "game_detection": [ @@ -77260,6 +82432,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Need For Speed: Porsche Unleashed", "game_detection": [ @@ -77272,6 +82445,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Basketball Pro Management 2014", "game_detection": [ @@ -77286,6 +82460,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "World of Battles", "game_detection": [ @@ -77306,6 +82481,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Space Rangers 2: The Rise of the Dominators", "game_detection": [ @@ -77317,6 +82493,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Football Manager 2009", "game_detection": [ @@ -77336,6 +82513,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Monopoly Tycoon", "game_detection": [ @@ -77347,6 +82525,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Perimeter II: New Earth", "game_detection": [ @@ -77366,6 +82545,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warrior Kings: Battles", "game_detection": [ @@ -77380,6 +82560,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Moving Hazard", "game_detection": [ @@ -77394,6 +82575,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dragon of Heaven", "game_detection": [ @@ -77407,6 +82589,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Holy Potatoes! What the Hell?!", "game_detection": [ @@ -77420,6 +82603,7 @@ ] }, { + "force_display_capture": false, "region": "JP", "title": "Phantasy Star Online 2", "game_detection": [ @@ -77432,6 +82616,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "KnightShift", "game_detection": [ @@ -77446,6 +82631,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Clown House", "game_detection": [ @@ -77460,6 +82646,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Epic Battle Fantasy 3", "game_detection": [ @@ -77475,6 +82662,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ISLANDERS", "game_detection": [ @@ -77493,6 +82681,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Year Walk", "game_detection": [ @@ -77512,6 +82701,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Codename Panzers: Cold War", "game_detection": [ @@ -77523,6 +82713,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crysis 2 Demo", "game_detection": [ @@ -77544,6 +82735,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MacGuffin's Curse", "game_detection": [ @@ -77557,6 +82749,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Word Harmony Deluxe", "game_detection": [ @@ -77569,6 +82762,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Batman: Arkham Origins", "game_detection": [ @@ -77583,6 +82777,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kaneva", "game_detection": [ @@ -77596,6 +82791,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sword of the Stars: A Murder of Crows", "game_detection": [ @@ -77608,6 +82804,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Portal Stories: VR", "game_detection": [ @@ -77623,6 +82820,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BloodRayne: Betrayal", "game_detection": [ @@ -77637,6 +82835,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Elven Legacy", "game_detection": [ @@ -77656,6 +82855,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sevencore", "game_detection": [ @@ -77668,6 +82868,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Darkfall: Unholy Wars", "game_detection": [ @@ -77682,6 +82883,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "X Rebirth", "game_detection": [ @@ -77696,6 +82898,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Purble Place", "game_detection": [ @@ -77714,6 +82917,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shiny The Firefly", "game_detection": [ @@ -77728,6 +82932,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Space Empires V", "game_detection": [ @@ -77747,6 +82952,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RollerCoaster Tycoon 3", "game_detection": [ @@ -77768,6 +82974,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sacred Tears TRUE", "game_detection": [ @@ -77782,6 +82989,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "World War II: Time of Wrath", "game_detection": [ @@ -77796,6 +83004,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "One Troll Army", "game_detection": [ @@ -77810,6 +83019,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crysis", "game_detection": [ @@ -77836,6 +83046,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Puzzle Quest: Galactrix", "game_detection": [ @@ -77855,6 +83066,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deus Ex: Invisible War", "game_detection": [ @@ -77882,6 +83094,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Big Mutha Truckers 2", "game_detection": [ @@ -77894,6 +83107,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spice Road", "game_detection": [ @@ -77908,6 +83122,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Settlers: Rise of an Empire", "game_detection": [ @@ -77920,6 +83135,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Guild 2: Renaissance", "game_detection": [ @@ -77939,6 +83155,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Motor Rock", "game_detection": [ @@ -77953,6 +83170,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Deer", "game_detection": [ @@ -77967,6 +83185,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Darkspore", "game_detection": [ @@ -78006,6 +83225,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FlatOut: Ultimate Carnage", "game_detection": [ @@ -78026,6 +83246,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "枪神纪", "game_detection": [ @@ -78039,6 +83260,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Open Sonic", "game_detection": [ @@ -78050,6 +83272,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Getsuei Gakuen -kou-", "game_detection": [ @@ -78064,6 +83287,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heaven Benchmark", "game_detection": [ @@ -78078,6 +83302,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "WORLD END ECONOMiCA episode.03", "game_detection": [ @@ -78092,6 +83317,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Grey Goo", "game_detection": [ @@ -78106,6 +83332,7 @@ ] }, { + "force_display_capture": false, "region": "TR", "title": "MStar", "game_detection": [ @@ -78118,6 +83345,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sol Survivor", "game_detection": [ @@ -78132,6 +83360,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "QQ Match Master", "game_detection": [ @@ -78144,6 +83373,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ARK: Survival Evolved", "game_detection": [ @@ -78158,6 +83388,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Reign Of Kings", "game_detection": [ @@ -78173,6 +83404,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sleeping Dogs", "game_detection": [ @@ -78187,6 +83419,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "City of Heroes Going Rogue", "game_detection": [ @@ -78201,6 +83434,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ironclads: Chincha Islands War 1866", "game_detection": [ @@ -78215,6 +83449,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tom Clancy's The Division", "game_detection": [ @@ -78243,6 +83478,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Quake 4", "game_detection": [ @@ -78263,6 +83499,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "OMG Zombies!", "game_detection": [ @@ -78277,6 +83514,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "AirMech", "game_detection": [ @@ -78296,6 +83534,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Coma: Mortuary", "game_detection": [ @@ -78310,6 +83549,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "You Have 10 Seconds", "game_detection": [ @@ -78324,6 +83564,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Yakuza 0", "game_detection": [ @@ -78337,6 +83578,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro Cycling Manager: Tour de France 2009", "game_detection": [ @@ -78351,6 +83593,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Men of War: Assault Squad", "game_detection": [ @@ -78365,6 +83608,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Championship Manager 2006", "game_detection": [ @@ -78376,6 +83620,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Glory of the Roman Empire", "game_detection": [ @@ -78388,6 +83633,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hacker Evolution: Untold", "game_detection": [ @@ -78402,6 +83648,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Poker Stars", "game_detection": [ @@ -78414,6 +83661,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Coffin Dodgers", "game_detection": [ @@ -78428,6 +83676,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Combat Arms: Reloaded", "game_detection": [ @@ -78438,6 +83687,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Smash Cars", "game_detection": [ @@ -78452,6 +83702,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "Counter-Strike Online 2", "game_detection": [ @@ -78473,6 +83724,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Farm Frenzy 3", "game_detection": [ @@ -78487,6 +83739,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Madden NFL 08", "game_detection": [ @@ -78499,6 +83752,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Wars: Republic Commando", "game_detection": [ @@ -78519,6 +83773,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blokus World Tour", "game_detection": [ @@ -78531,6 +83786,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Populous The Beginning Undiscovered Worlds", "game_detection": [ @@ -78543,6 +83799,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mystery Case Files Madame Fate", "game_detection": [ @@ -78557,6 +83814,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Numen: Contest of Heroes", "game_detection": [ @@ -78571,6 +83829,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "F.E.A.R. 2: Project Origin", "game_detection": [ @@ -78590,6 +83849,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chicken Shoot", "game_detection": [ @@ -78604,6 +83864,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fortix 2", "game_detection": [ @@ -78617,6 +83878,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tomb Raider", "game_detection": [ @@ -78631,6 +83893,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DRAGON BALL FighterZ", "game_detection": [ @@ -78644,6 +83907,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Strikers Edge", "game_detection": [ @@ -78657,6 +83921,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Knock-knock", "game_detection": [ @@ -78676,6 +83941,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fallout Shelter", "game_detection": [ @@ -78688,6 +83954,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sword Coast Legends", "game_detection": [ @@ -78702,6 +83969,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battleplan: American Civil War", "game_detection": [ @@ -78716,6 +83984,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rise of Nations: Rise of Legends", "game_detection": [ @@ -78727,6 +83996,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LMA Manager 2007", "game_detection": [ @@ -78738,6 +84008,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Baldur's Gate II: Shadows of Amn", "game_detection": [ @@ -78758,6 +84029,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NARUTO: Ultimate Ninja STORM", "game_detection": [ @@ -78772,6 +84044,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Goat Simulator", "game_detection": [ @@ -78790,6 +84063,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Dragon Nest", "game_detection": [ @@ -78810,6 +84084,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims Online", "game_detection": [ @@ -78822,6 +84097,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hyper Light Drifter", "game_detection": [ @@ -78836,6 +84112,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Murdered: Soul Suspect", "game_detection": [ @@ -78850,6 +84127,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Colour Bind", "game_detection": [ @@ -78864,6 +84142,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tradewinds Odyssey", "game_detection": [ @@ -78878,6 +84157,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Mario Bros: Revenge of Bowser", "game_detection": [ @@ -78889,6 +84169,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Project Syria", "game_detection": [ @@ -78904,6 +84185,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mark of the Ninja", "game_detection": [ @@ -78924,6 +84206,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "aerofly FS", "game_detection": [ @@ -78938,6 +84221,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "UltraStar", "game_detection": [ @@ -78950,6 +84234,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Chosen", "game_detection": [ @@ -78963,6 +84248,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Water Bears VR", "game_detection": [ @@ -78977,6 +84263,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Wars Galaxies: An Empire Divided", "game_detection": [ @@ -79029,6 +84316,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Trek Online", "game_detection": [ @@ -79060,6 +84348,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Secret World", "game_detection": [ @@ -79094,6 +84383,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark Age of Camelot: Shrouded Isles", "game_detection": [ @@ -79107,6 +84397,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Frederic: Evil Strikes Back", "game_detection": [ @@ -79121,6 +84412,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Prince of Persia: The Forgotten Sands", "game_detection": [ @@ -79140,6 +84432,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Little Racers STREET", "game_detection": [ @@ -79154,6 +84447,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Wars: Battlefront", "game_detection": [ @@ -79166,6 +84460,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Romance of Rome", "game_detection": [ @@ -79180,6 +84475,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Borderlands: The Pre-Sequel", "game_detection": [ @@ -79194,6 +84490,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Road Redemption", "game_detection": [ @@ -79214,6 +84511,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gatling Gears", "game_detection": [ @@ -79233,6 +84531,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SimCity: Societies", "game_detection": [ @@ -79244,6 +84543,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Teenage Mutant Ninja Turtles: Out of the Shadows", "game_detection": [ @@ -79258,6 +84558,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Halcyon 6", "game_detection": [ @@ -79272,6 +84573,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Spatials", "game_detection": [ @@ -79286,6 +84588,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ridge Racer Driftopia", "game_detection": [ @@ -79300,6 +84603,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Bottom of the Well", "game_detection": [ @@ -79314,6 +84618,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Command & Conquer: Red Alert 3 Beta", "game_detection": [ @@ -79326,6 +84631,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Football Manager 2010", "game_detection": [ @@ -79345,6 +84651,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Reign: Conflict of Nations", "game_detection": [ @@ -79359,6 +84666,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Clockwork Man", "game_detection": [ @@ -79373,6 +84681,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Manga Fighter", "game_detection": [ @@ -79386,6 +84695,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Act of War: Direct Action", "game_detection": [ @@ -79405,6 +84715,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Young Justice: Legacy", "game_detection": [ @@ -79419,6 +84730,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Atelier Sophie: The Alchemist of the Mysterious Book", "game_detection": [ @@ -79433,6 +84745,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Escapists", "game_detection": [ @@ -79447,6 +84760,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Armageddon - Da Orks", "game_detection": [ @@ -79461,6 +84775,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mortal Kombat Komplete Edition", "game_detection": [ @@ -79475,6 +84790,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Narco Terror", "game_detection": [ @@ -79489,6 +84805,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Richard Burns Rally", "game_detection": [ @@ -79506,6 +84823,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A.I. Invasion", "game_detection": [ @@ -79520,6 +84838,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RIP", "game_detection": [ @@ -79534,6 +84853,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Burnstar", "game_detection": [ @@ -79548,6 +84868,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Unreal Gold", "game_detection": [ @@ -79562,6 +84883,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "bit Dungeon II", "game_detection": [ @@ -79576,6 +84898,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Please State Your Name", "game_detection": [ @@ -79591,6 +84914,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Soccer Rage", "game_detection": [ @@ -79605,6 +84929,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Lord of the Rings: The Battle for Middle-Earth 2: The Rise of the Witch-King", "game_detection": [ @@ -79618,6 +84943,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "F1 2019", "game_detection": [ @@ -79636,6 +84962,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heroes Over Europe", "game_detection": [ @@ -79655,6 +84982,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warriors Orochi 4", "game_detection": [ @@ -79665,6 +84993,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gentlemen!", "game_detection": [ @@ -79679,6 +85008,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Echo Of Soul", "game_detection": [ @@ -79700,6 +85030,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jets 'n' Guns", "game_detection": [ @@ -79714,6 +85045,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shadowbound", "game_detection": [ @@ -79726,6 +85058,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hotel Giant 2", "game_detection": [ @@ -79745,6 +85078,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Painkiller: Resurrection", "game_detection": [ @@ -79765,6 +85099,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rocketbirds: Hardboiled Chicken", "game_detection": [ @@ -79779,6 +85114,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Project I/O", "game_detection": [ @@ -79790,6 +85126,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Brothers in Arms: Hell's Highway", "game_detection": [ @@ -79810,6 +85147,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SUPERFIGHT", "game_detection": [ @@ -79824,6 +85162,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Guns and Robots", "game_detection": [ @@ -79838,6 +85177,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Age of Conquest IV", "game_detection": [ @@ -79852,6 +85192,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Microsoft Flight", "game_detection": [ @@ -79871,6 +85212,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims", "game_detection": [ @@ -79882,6 +85224,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Age of Conan: Unchained", "game_detection": [ @@ -79915,6 +85258,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mausoleum of the Medusa", "game_detection": [ @@ -79929,6 +85273,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Son of Nor", "game_detection": [ @@ -79943,6 +85288,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims: Castaway Stories", "game_detection": [ @@ -79954,6 +85300,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "1602 A.D.", "game_detection": [ @@ -79965,6 +85312,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Thumper", "game_detection": [ @@ -79979,6 +85327,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Enemy Territory: Quake Wars Demo", "game_detection": [ @@ -79991,6 +85340,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rome: Total War Gold Edition", "game_detection": [ @@ -80010,6 +85360,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Surgeon Simulator: Experience Reality", "game_detection": [ @@ -80025,6 +85376,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battle Nations", "game_detection": [ @@ -80039,6 +85391,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Thomas Was Alone", "game_detection": [ @@ -80063,6 +85416,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Minit", "game_detection": [ @@ -80073,6 +85427,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Marvel vs. Capcom: Infinite", "game_detection": [ @@ -80087,6 +85442,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warcraft III: The Frozen Throne", "game_detection": [ @@ -80116,6 +85472,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Resonance", "game_detection": [ @@ -80130,6 +85487,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wave of Darkness", "game_detection": [ @@ -80144,6 +85502,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Miss Popularity", "game_detection": [ @@ -80158,6 +85517,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "War of Angels", "game_detection": [ @@ -80170,6 +85530,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dino Run SE", "game_detection": [ @@ -80181,6 +85542,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Juiced 2: Hot Import Nights", "game_detection": [ @@ -80202,6 +85564,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rune", "game_detection": [ @@ -80218,6 +85581,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Postal 2", "game_detection": [ @@ -80230,6 +85594,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark Echo", "game_detection": [ @@ -80244,6 +85609,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Papo & Yo", "game_detection": [ @@ -80263,6 +85629,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fate of the World", "game_detection": [ @@ -80277,6 +85644,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Oh...Sir! The Hollywood Roast", "game_detection": [ @@ -80291,6 +85659,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SMASHING THE BATTLE", "game_detection": [ @@ -80305,6 +85674,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Evoland II", "game_detection": [ @@ -80319,6 +85689,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Smugglers V", "game_detection": [ @@ -80333,6 +85704,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Bounty Bay Online", "game_detection": [ @@ -80345,6 +85717,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Frozen Endzone", "game_detection": [ @@ -80359,6 +85732,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battlefield 1", "game_detection": [ @@ -80375,6 +85749,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dynasty Warriors Online", "game_detection": [ @@ -80388,6 +85763,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Paragon", "game_detection": [ @@ -80402,6 +85778,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LEGO Harry Potter Years 1-4", "game_detection": [ @@ -80426,6 +85803,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Honey Rose: Underdog Fighter Extraordinaire", "game_detection": [ @@ -80441,6 +85819,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "My Pet Hotel 2", "game_detection": [ @@ -80455,6 +85834,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Citizen", "game_detection": [ @@ -80477,6 +85857,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Saviors", "game_detection": [ @@ -80491,6 +85872,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SoulWorker", "game_detection": [ @@ -80508,6 +85890,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sakura Nova", "game_detection": [ @@ -80522,6 +85905,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Horrid Henry: Missions of Mischief", "game_detection": [ @@ -80536,6 +85920,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Dark Pictures Anthology: Man of Medan", "game_detection": [ @@ -80546,6 +85931,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fat Chicken", "game_detection": [ @@ -80560,6 +85946,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sword Art Online Re: Hollow Fragment", "game_detection": [ @@ -80573,6 +85960,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Magicka: Wizards of the Square Tablet", "game_detection": [ @@ -80587,6 +85975,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vindictus", "game_detection": [ @@ -80610,6 +85999,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gaming Club Poker", "game_detection": [ @@ -80621,6 +86011,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Aliens vs. Predator", "game_detection": [ @@ -80635,6 +86026,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Diablo III Beta", "game_detection": [ @@ -80647,6 +86039,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tales From Space: Mutant Blobs Attack", "game_detection": [ @@ -80661,6 +86054,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chroma Squad", "game_detection": [ @@ -80680,6 +86074,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Amazing Adventures: The Caribbean Secret", "game_detection": [ @@ -80692,6 +86087,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bet And Race", "game_detection": [ @@ -80703,6 +86099,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gunnihilation", "game_detection": [ @@ -80717,6 +86114,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Arcadecraft", "game_detection": [ @@ -80736,6 +86134,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "D.I.P.R.I.P. Warm Up", "game_detection": [ @@ -80750,6 +86149,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NeonXSZ", "game_detection": [ @@ -80764,6 +86164,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Control", "game_detection": [ @@ -80782,6 +86183,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Creatures: Village", "game_detection": [ @@ -80793,6 +86195,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Men of War: Condemned Heroes", "game_detection": [ @@ -80807,6 +86210,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gemini Lost", "game_detection": [ @@ -80821,6 +86225,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Grand Theft Auto IV", "game_detection": [ @@ -80841,6 +86246,7 @@ ] }, { + "force_display_capture": false, "region": "PT", "title": "Luna Plus", "game_detection": [ @@ -80853,6 +86259,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cargo! The Quest for Gravity", "game_detection": [ @@ -80867,6 +86274,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Medal of Honor: Allied Assault: Spearhead", "game_detection": [ @@ -80879,6 +86287,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Disciples II: Gallean's Return", "game_detection": [ @@ -80898,6 +86307,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro Cycling Manager 2010", "game_detection": [ @@ -80912,6 +86322,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Beat Hazard", "game_detection": [ @@ -80931,6 +86342,7 @@ ] }, { + "force_display_capture": false, "region": "RU", "title": "Aion", "game_detection": [ @@ -80943,6 +86355,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vietcong", "game_detection": [ @@ -80955,6 +86368,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Burstfire", "game_detection": [ @@ -80969,6 +86383,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RAGE 2", "game_detection": [ @@ -80979,6 +86394,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Aeon Command", "game_detection": [ @@ -80993,6 +86409,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "WYD", "game_detection": [ @@ -81005,6 +86422,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Who Wants To Be A Millionaire? Special Editions", "game_detection": [ @@ -81019,6 +86437,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hearthstone: Heroes of Warcraft", "game_detection": [ @@ -81049,6 +86468,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "X-COM: Enforcer", "game_detection": [ @@ -81068,6 +86488,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Absolver", "game_detection": [ @@ -81082,6 +86503,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FarSky", "game_detection": [ @@ -81093,6 +86515,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Red Orchestra: Ostfront 41-45", "game_detection": [ @@ -81115,6 +86538,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dofus", "game_detection": [ @@ -81159,6 +86583,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Day of Infamy", "game_detection": [ @@ -81177,6 +86602,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Wars: Knights of the Old Republic", "game_detection": [ @@ -81198,6 +86624,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Samurai Gunn", "game_detection": [ @@ -81216,6 +86643,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "God Eater 2: Rage Burst", "game_detection": [ @@ -81230,6 +86658,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Half-Life", "game_detection": [ @@ -81254,6 +86683,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GEARCRACK Arena", "game_detection": [ @@ -81268,6 +86698,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mercenary Wars", "game_detection": [ @@ -81280,6 +86711,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sid Meier's Civilization III", "game_detection": [ @@ -81299,6 +86731,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "C-RUSH", "game_detection": [ @@ -81313,6 +86746,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Worms Armageddon", "game_detection": [ @@ -81332,6 +86766,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ether Vapor Remaster", "game_detection": [ @@ -81346,6 +86781,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tree of Savior", "game_detection": [ @@ -81360,6 +86796,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rage", "game_detection": [ @@ -81374,6 +86811,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Revolver360 Re:Actor", "game_detection": [ @@ -81388,6 +86826,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Retrovirus", "game_detection": [ @@ -81402,6 +86841,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shogun 2: Total War", "game_detection": [ @@ -81416,6 +86856,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lumines Remastered", "game_detection": [ @@ -81429,6 +86870,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Taikodom", "game_detection": [ @@ -81441,6 +86883,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tiger Woods PGA Tour 2005", "game_detection": [ @@ -81453,6 +86896,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Texas Cheat 'Em", "game_detection": [ @@ -81467,6 +86911,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Toukiden 2", "game_detection": [ @@ -81481,6 +86926,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Onechanbara Z2: Chaos", "game_detection": [ @@ -81495,6 +86941,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lambda Wars", "game_detection": [ @@ -81509,6 +86956,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Volt", "game_detection": [ @@ -81523,6 +86971,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Whispering Willows", "game_detection": [ @@ -81537,6 +86986,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "AirBuccaneers", "game_detection": [ @@ -81551,6 +87001,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hard Truck: Apocalypse - Rise of Clans", "game_detection": [ @@ -81565,6 +87016,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Where No Fear Was", "game_detection": [ @@ -81576,6 +87028,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GetAmped", "game_detection": [ @@ -81587,6 +87040,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Undead Overlord", "game_detection": [ @@ -81601,6 +87055,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Take-Out Weight Curling", "game_detection": [ @@ -81621,6 +87076,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Need For Speed 2", "game_detection": [ @@ -81632,6 +87088,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Spookening", "game_detection": [ @@ -81646,6 +87103,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gemini Wars", "game_detection": [ @@ -81660,6 +87118,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Family Guy: Back to the Multiverse", "game_detection": [ @@ -81674,6 +87133,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mystery Case Files: Return to Ravenhearst", "game_detection": [ @@ -81694,6 +87154,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bionic Dues", "game_detection": [ @@ -81708,6 +87169,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DeathSpank", "game_detection": [ @@ -81722,6 +87184,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Welcome to the Game", "game_detection": [ @@ -81736,6 +87199,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Steel Storm A.M.M.O.", "game_detection": [ @@ -81750,6 +87214,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Depths of Fear :: Knossos", "game_detection": [ @@ -81764,6 +87229,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Faxion Online", "game_detection": [ @@ -81777,6 +87243,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Forge of Gods", "game_detection": [ @@ -81791,6 +87258,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Half-Life 2: Lost Coast", "game_detection": [ @@ -81817,6 +87285,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Inquisitor - Martyr", "game_detection": [ @@ -81831,6 +87300,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heroes Rise: The Prodigy", "game_detection": [ @@ -81845,6 +87315,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "XCOM 2", "game_detection": [ @@ -81859,6 +87330,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battle Academy 2: Eastern Front", "game_detection": [ @@ -81873,6 +87345,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rabi-Ribi", "game_detection": [ @@ -81887,6 +87360,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "X-COM: UFO Defense", "game_detection": [ @@ -81902,6 +87376,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Expeditions: Conquistador", "game_detection": [ @@ -81916,6 +87391,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Godfather II", "game_detection": [ @@ -81935,6 +87411,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GhostControl Inc.", "game_detection": [ @@ -81949,6 +87426,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NBA 2K16", "game_detection": [ @@ -81963,6 +87441,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Armored Fist 3", "game_detection": [ @@ -81977,6 +87456,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hold the door!", "game_detection": [ @@ -81992,6 +87472,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "OutRun 2006: Coast 2 Coast", "game_detection": [ @@ -82011,6 +87492,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spin Rhythm XD", "game_detection": [ @@ -82021,6 +87503,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blood Omen 2", "game_detection": [ @@ -82035,6 +87518,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Majesty: The Northern Expansion", "game_detection": [ @@ -82047,6 +87531,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A Valley Without Wind 2", "game_detection": [ @@ -82061,6 +87546,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mr.President!", "game_detection": [ @@ -82075,6 +87561,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Two Worlds II: Castle Defense", "game_detection": [ @@ -82089,6 +87576,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cooking Simulator", "game_detection": [ @@ -82099,6 +87587,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wasteland 2 Director's Cut", "game_detection": [ @@ -82113,6 +87602,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Comedy Quest", "game_detection": [ @@ -82127,6 +87617,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Final Fantasy IV: The After Years", "game_detection": [ @@ -82141,6 +87632,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Odyssey Reborn", "game_detection": [ @@ -82155,6 +87647,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bejeweled Twist", "game_detection": [ @@ -82175,6 +87668,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Far Wilds", "game_detection": [ @@ -82188,6 +87682,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Giants: Citizen Kabuto", "game_detection": [ @@ -82199,6 +87694,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "One Tower", "game_detection": [ @@ -82213,6 +87709,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Paper Dungeons", "game_detection": [ @@ -82232,6 +87729,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BigScreen", "game_detection": [ @@ -82247,6 +87745,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Guilty Gear Isuka", "game_detection": [ @@ -82261,6 +87760,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dysan the Shapeshifter", "game_detection": [ @@ -82275,6 +87775,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Age of Wonders: Shadow Magic", "game_detection": [ @@ -82295,6 +87796,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Time Rifters", "game_detection": [ @@ -82309,6 +87811,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Contrast", "game_detection": [ @@ -82323,6 +87826,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alien Zombie Megadeath", "game_detection": [ @@ -82343,6 +87847,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Subject 9", "game_detection": [ @@ -82357,6 +87862,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ballpoint Universe", "game_detection": [ @@ -82371,6 +87877,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Overcast - Walden and the Werewolf", "game_detection": [ @@ -82382,6 +87889,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Real World Racing", "game_detection": [ @@ -82396,6 +87904,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Torment: Tides of Numenera", "game_detection": [ @@ -82410,6 +87919,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "WRC 6 FIA World Rally Championship", "game_detection": [ @@ -82424,6 +87934,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Action Unreal Tournament", "game_detection": [ @@ -82437,6 +87948,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Serious Sam VR: The First Encounter", "game_detection": [ @@ -82452,6 +87964,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dominions 4: Thrones of Ascension", "game_detection": [ @@ -82466,6 +87979,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jack Lumber", "game_detection": [ @@ -82485,6 +87999,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Left 4 Dead 2", "game_detection": [ @@ -82499,6 +88014,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Desert Thunder", "game_detection": [ @@ -82513,6 +88029,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pit People", "game_detection": [ @@ -82527,6 +88044,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Freestyle", "game_detection": [ @@ -82541,6 +88059,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Power 2", "game_detection": [ @@ -82560,6 +88079,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cannon Fodder 3", "game_detection": [ @@ -82574,6 +88094,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spoiler Alert", "game_detection": [ @@ -82588,6 +88109,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Commandos: Strike Force", "game_detection": [ @@ -82607,6 +88129,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lugaru HD", "game_detection": [ @@ -82621,6 +88144,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rotastic", "game_detection": [ @@ -82635,6 +88159,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spectromancer", "game_detection": [ @@ -82649,6 +88174,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sparkle 2 Evo", "game_detection": [ @@ -82663,6 +88189,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jewel Quest II", "game_detection": [ @@ -82682,6 +88209,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Golfstar", "game_detection": [ @@ -82694,6 +88222,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Axis & Allies", "game_detection": [ @@ -82705,6 +88234,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Generation Zero", "game_detection": [ @@ -82715,6 +88245,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eudemons Online", "game_detection": [ @@ -82727,6 +88258,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DJMax Trilogy", "game_detection": [ @@ -82740,6 +88272,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Akaneiro: Demon Hunters", "game_detection": [ @@ -82754,6 +88287,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "9 Clues: The Secret of Serpent Creek", "game_detection": [ @@ -82768,6 +88302,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Final Fantasy IV", "game_detection": [ @@ -82782,6 +88317,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Angelica Weaver: Catch Me When You Can", "game_detection": [ @@ -82796,6 +88332,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead Frontier 2", "game_detection": [ @@ -82809,6 +88346,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nancy Drew: Legend of the Crystal Skull", "game_detection": [ @@ -82823,6 +88361,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Need For Speed: Hot Pursuit 2", "game_detection": [ @@ -82834,6 +88373,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eternal Card Game", "game_detection": [ @@ -82848,6 +88388,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Go! Go! Nippon! ~My First Trip to Japan~", "game_detection": [ @@ -82862,6 +88403,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "My Friend Pedro", "game_detection": [ @@ -82876,6 +88418,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Divo", "game_detection": [ @@ -82890,6 +88433,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FIFA Soccer 12", "game_detection": [ @@ -82902,6 +88446,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Myth Angels Online", "game_detection": [ @@ -82914,6 +88459,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Subspace Continuum", "game_detection": [ @@ -82933,6 +88479,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Colonial Defence Force Ghostship", "game_detection": [ @@ -82947,6 +88494,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mirror Mysteries 2", "game_detection": [ @@ -82961,6 +88509,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Labyrinthine Dreams", "game_detection": [ @@ -82975,6 +88524,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Polynomial", "game_detection": [ @@ -82989,6 +88539,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sniper Elite", "game_detection": [ @@ -83013,6 +88564,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battle Squares", "game_detection": [ @@ -83026,6 +88578,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "4Story", "game_detection": [ @@ -83038,6 +88591,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Coloropus", "game_detection": [ @@ -83049,6 +88603,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Red Orchestra 2: Heroes of Stalingrad Single Player", "game_detection": [ @@ -83063,6 +88618,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mole Control", "game_detection": [ @@ -83087,6 +88643,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cry of Fear", "game_detection": [ @@ -83101,6 +88658,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "UNLOVED", "game_detection": [ @@ -83115,6 +88673,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tempest", "game_detection": [ @@ -83129,6 +88688,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Divine Divinity", "game_detection": [ @@ -83160,6 +88720,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Dead Linger", "game_detection": [ @@ -83174,6 +88735,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Omikron: The Nomad Soul", "game_detection": [ @@ -83188,6 +88750,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Death Dojo", "game_detection": [ @@ -83203,6 +88766,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dynasty Warriors 9", "game_detection": [ @@ -83216,6 +88780,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gigantic", "game_detection": [ @@ -83239,6 +88804,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "I of the Dragon", "game_detection": [ @@ -83250,6 +88816,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FOX n FORESTS", "game_detection": [ @@ -83263,6 +88830,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Championship Manager 5", "game_detection": [ @@ -83274,6 +88842,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Penguins' Journey", "game_detection": [ @@ -83288,6 +88857,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hidden & Dangerous 2", "game_detection": [ @@ -83299,6 +88869,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Smokin' Guns", "game_detection": [ @@ -83315,6 +88886,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vizati", "game_detection": [ @@ -83326,6 +88898,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "1001 Spikes", "game_detection": [ @@ -83340,6 +88913,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Turmoil", "game_detection": [ @@ -83350,6 +88924,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Journey Down: Chapter Two", "game_detection": [ @@ -83364,6 +88939,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Counter Strike Condition Zero: Deleted Scenes", "game_detection": [ @@ -83384,6 +88960,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Haydee", "game_detection": [ @@ -83398,6 +88975,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Elven Legacy: Ranger", "game_detection": [ @@ -83412,6 +88990,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "March of War: Face Off", "game_detection": [ @@ -83426,6 +89005,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ghost in the Sheet", "game_detection": [ @@ -83438,6 +89018,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heileen: Sail Away", "game_detection": [ @@ -83452,6 +89033,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Champions of Anteria", "game_detection": [ @@ -83473,6 +89055,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Quake", "game_detection": [ @@ -83507,6 +89090,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BeatBuddy: Tale of the Guardians", "game_detection": [ @@ -83526,6 +89110,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Armada 2526", "game_detection": [ @@ -83539,6 +89124,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dragon Nest", "game_detection": [ @@ -83559,6 +89145,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gotcha! Extreme Paintball", "game_detection": [ @@ -83570,6 +89157,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stormrise", "game_detection": [ @@ -83589,6 +89177,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Air Brawl", "game_detection": [ @@ -83603,6 +89192,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hard to be a God Demo", "game_detection": [ @@ -83615,6 +89205,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Angels Online", "game_detection": [ @@ -83627,6 +89218,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gardens Inc. – From Rakes to Riches", "game_detection": [ @@ -83641,6 +89233,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Yar's Revenge", "game_detection": [ @@ -83655,6 +89248,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Emoticons", "game_detection": [ @@ -83669,6 +89263,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Theme Hospital", "game_detection": [ @@ -83680,6 +89275,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Offworld Trading Company", "game_detection": [ @@ -83694,6 +89290,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Space Rangers 2: Reboot", "game_detection": [ @@ -83713,6 +89310,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Serious Sam 3: BFE", "game_detection": [ @@ -83727,6 +89325,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Siege Online", "game_detection": [ @@ -83739,6 +89338,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lisa", "game_detection": [ @@ -83753,6 +89353,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Guitar Hero: Aerosmith", "game_detection": [ @@ -83764,6 +89365,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "IHF Handball Challenge 14", "game_detection": [ @@ -83778,6 +89380,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "HomeBehind", "game_detection": [ @@ -83792,6 +89395,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ricochet Infinity", "game_detection": [ @@ -83803,6 +89407,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bioshock 2", "game_detection": [ @@ -83838,6 +89443,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "WASTED", "game_detection": [ @@ -83852,6 +89458,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "KurtzPel", "game_detection": [ @@ -83862,6 +89469,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Okhlos", "game_detection": [ @@ -83876,6 +89484,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Sanctus Reach", "game_detection": [ @@ -83890,6 +89499,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Snes9x", "game_detection": [ @@ -83908,6 +89518,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Marvel Ultimate Alliance 2", "game_detection": [ @@ -83921,6 +89532,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "XAM", "game_detection": [ @@ -83935,6 +89547,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "International Snooker 2012", "game_detection": [ @@ -83949,6 +89562,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kingdom Come: Deliverance", "game_detection": [ @@ -83963,6 +89577,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Them: The Summoning", "game_detection": [ @@ -83977,6 +89592,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blade Strangers", "game_detection": [ @@ -83990,6 +89606,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ether One", "game_detection": [ @@ -84009,6 +89626,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Just Cause", "game_detection": [ @@ -84028,6 +89646,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cake Mania 3", "game_detection": [ @@ -84047,6 +89666,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Square Brawl", "game_detection": [ @@ -84061,6 +89681,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Neo Steam: The Shattered Continent", "game_detection": [ @@ -84073,6 +89694,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "Atlantica Online", "game_detection": [ @@ -84086,6 +89708,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zombie Vikings: Stab-a-thon", "game_detection": [ @@ -84100,6 +89723,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Insane 2", "game_detection": [ @@ -84114,6 +89738,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Among Us", "game_detection": [ @@ -84124,6 +89749,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chainsaw Warrior", "game_detection": [ @@ -84138,6 +89764,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "King's Bounty: Warriors of the North", "game_detection": [ @@ -84152,6 +89779,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "PixelJunk Shooter", "game_detection": [ @@ -84171,6 +89799,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DETOUR", "game_detection": [ @@ -84184,6 +89813,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Next Penelope", "game_detection": [ @@ -84198,6 +89828,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Apotheon", "game_detection": [ @@ -84212,6 +89843,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Martians Memorandum", "game_detection": [ @@ -84226,6 +89858,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Fruit of Grisaia", "game_detection": [ @@ -84240,6 +89873,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Iron Snout", "game_detection": [ @@ -84254,6 +89888,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Criminal Girls: Invite Only", "game_detection": [ @@ -84268,6 +89903,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rise of Flight: Channel Battles Edition", "game_detection": [ @@ -84282,6 +89918,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DubWars", "game_detection": [ @@ -84296,6 +89933,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Lord of the Rings: Conquest", "game_detection": [ @@ -84307,6 +89945,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rise of the Tomb Raider", "game_detection": [ @@ -84321,6 +89960,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A Farewell to Dragons", "game_detection": [ @@ -84335,6 +89975,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heroes Must Die", "game_detection": [ @@ -84349,6 +89990,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Unwell Mel", "game_detection": [ @@ -84363,6 +90005,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SkillGround", "game_detection": [ @@ -84374,6 +90017,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "APB", "game_detection": [ @@ -84406,6 +90050,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "World End Economica: Episode 1", "game_detection": [ @@ -84420,6 +90065,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "S.K.I.L.L. - Special Force 2", "game_detection": [ @@ -84432,6 +90078,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Doom 3: Resurrection of Evil", "game_detection": [ @@ -84456,6 +90103,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NecroVisioN", "game_detection": [ @@ -84476,6 +90124,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Galactic Civilizations 2: Dark Avatar", "game_detection": [ @@ -84489,6 +90138,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Trek: Away Team", "game_detection": [ @@ -84500,6 +90150,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "TalesWeaver", "game_detection": [ @@ -84518,6 +90169,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BIT.TRIP BEAT", "game_detection": [ @@ -84537,6 +90189,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NHL 2005", "game_detection": [ @@ -84548,6 +90201,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Plants vs. Zombies", "game_detection": [ @@ -84579,6 +90233,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "We Were Here", "game_detection": [ @@ -84589,6 +90244,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Max Payne", "game_detection": [ @@ -84608,6 +90264,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Millennium 2: Take Me Higher", "game_detection": [ @@ -84622,6 +90279,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "60 Seconds!", "game_detection": [ @@ -84636,6 +90294,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GRID Autosport", "game_detection": [ @@ -84650,6 +90309,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Homeworld Cataclysm", "game_detection": [ @@ -84661,6 +90321,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "All Zombies Must Die!", "game_detection": [ @@ -84675,6 +90336,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "OMSI 2", "game_detection": [ @@ -84689,6 +90351,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Aaru's Awakening", "game_detection": [ @@ -84703,6 +90366,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ARMA: Gold Edition", "game_detection": [ @@ -84717,6 +90381,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Machineers: Episode 1 - Tivoli Town", "game_detection": [ @@ -84731,6 +90396,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RollerCoaster Tycoon 2", "game_detection": [ @@ -84750,6 +90416,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Twisted Lands: Shadow Town", "game_detection": [ @@ -84762,6 +90429,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Lost Saga", "game_detection": [ @@ -84784,6 +90452,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Lost Vikings", "game_detection": [ @@ -84795,6 +90464,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Riding Club Championship", "game_detection": [ @@ -84809,6 +90479,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Project CARS", "game_detection": [ @@ -84823,6 +90494,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Take the Dream IX", "game_detection": [ @@ -84837,6 +90509,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Totally Accurate Battle Simulator", "game_detection": [ @@ -84847,6 +90520,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Damned", "game_detection": [ @@ -84861,6 +90535,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "CRYPTARK", "game_detection": [ @@ -84875,6 +90550,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gunman Clive", "game_detection": [ @@ -84894,6 +90570,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hacktag", "game_detection": [ @@ -84907,6 +90584,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blue Toad Murder Files: The Mysteries of Little Riddle", "game_detection": [ @@ -84921,6 +90599,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battle Chasers: Nightwar", "game_detection": [ @@ -84939,6 +90618,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Defense Zone", "game_detection": [ @@ -84953,6 +90633,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dyad", "game_detection": [ @@ -84977,6 +90658,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Reversion - The Escape", "game_detection": [ @@ -84991,6 +90673,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Imperialism II: Age of Exploration", "game_detection": [ @@ -85002,6 +90685,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "CroNix", "game_detection": [ @@ -85016,6 +90700,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rescuties! VR", "game_detection": [ @@ -85031,6 +90716,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pixel Piracy", "game_detection": [ @@ -85045,6 +90731,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Awkward Dimensions Redux", "game_detection": [ @@ -85059,6 +90746,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Titan Attacks", "game_detection": [ @@ -85078,6 +90766,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Entente", "game_detection": [ @@ -85092,6 +90781,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Guitar Hero III: Legends of Rock", "game_detection": [ @@ -85103,6 +90793,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Earth 2150: The Moon Project", "game_detection": [ @@ -85117,6 +90808,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "EmpirePoker", "game_detection": [ @@ -85129,6 +90821,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stick RPG 2", "game_detection": [ @@ -85143,6 +90836,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Curse of Monkey Island", "game_detection": [ @@ -85156,6 +90850,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hidden Dimensions 3", "game_detection": [ @@ -85170,6 +90865,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Small World 2", "game_detection": [ @@ -85184,6 +90880,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Driving School Simulator", "game_detection": [ @@ -85198,6 +90895,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Defense Grid 2", "game_detection": [ @@ -85212,6 +90910,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Promised Land", "game_detection": [ @@ -85226,6 +90925,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Of Kings And Men", "game_detection": [ @@ -85240,6 +90940,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Temtem", "game_detection": [ @@ -85254,6 +90955,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Populous: The Beginning", "game_detection": [ @@ -85280,6 +90982,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Football Manager 2008", "game_detection": [ @@ -85291,6 +90994,7 @@ ] }, { + "force_display_capture": false, "region": "RU", "title": "CrossFire", "game_detection": [ @@ -85306,6 +91010,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RollerCoaster Tycoon", "game_detection": [ @@ -85325,6 +91030,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tex Murphy: Overseer", "game_detection": [ @@ -85339,6 +91045,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bad Rats", "game_detection": [ @@ -85353,6 +91060,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Book of Unwritten Tales", "game_detection": [ @@ -85367,6 +91075,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "True Crime: New York City", "game_detection": [ @@ -85379,6 +91088,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sniper Elite 4", "game_detection": [ @@ -85393,6 +91103,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead Island", "game_detection": [ @@ -85407,6 +91118,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Arcana Heart 3 LOVEMAX SIXSTARS!!!!!!", "game_detection": [ @@ -85421,6 +91133,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fester Mudd: Curse of the Gold - Episode 1", "game_detection": [ @@ -85435,6 +91148,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mini Metro", "game_detection": [ @@ -85446,6 +91160,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cryptic Sea EP", "game_detection": [ @@ -85457,6 +91172,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "realMyst: Masterpiece Edition", "game_detection": [ @@ -85476,6 +91192,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Paladins", "game_detection": [ @@ -85501,6 +91218,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Typing of the Dead: Overkill", "game_detection": [ @@ -85515,6 +91233,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bejeweled 3", "game_detection": [ @@ -85535,6 +91254,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zoo Tycoon 2 Endangered Species", "game_detection": [ @@ -85547,6 +91267,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Path of War", "game_detection": [ @@ -85561,6 +91282,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RECYCLE", "game_detection": [ @@ -85575,6 +91297,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warlocks vs Shadows", "game_detection": [ @@ -85589,6 +91312,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LYNE", "game_detection": [ @@ -85603,6 +91327,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Strong Bad's Cool Game for Attractive People - Episode 5: 8-Bit Is Enough", "game_detection": [ @@ -85624,6 +91349,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shadows: Price For Our Sins", "game_detection": [ @@ -85638,6 +91364,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Betrayer", "game_detection": [ @@ -85652,6 +91379,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pid", "game_detection": [ @@ -85671,6 +91399,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "JumpJet Rex", "game_detection": [ @@ -85685,6 +91414,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeon Keeper 2", "game_detection": [ @@ -85696,6 +91426,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Starward Rogue", "game_detection": [ @@ -85710,6 +91441,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lineage", "game_detection": [ @@ -85730,6 +91462,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wargame: Airland Battle", "game_detection": [ @@ -85744,6 +91477,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Disturbed", "game_detection": [ @@ -85758,6 +91492,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Seven Kingdoms: Conquest", "game_detection": [ @@ -85769,6 +91504,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Really Big Sky", "game_detection": [ @@ -85793,6 +91529,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wanted: Weapons of Fate", "game_detection": [ @@ -85812,6 +91549,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims 2: Pets", "game_detection": [ @@ -85830,6 +91568,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Botanicula", "game_detection": [ @@ -85860,6 +91599,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "No Time to Explain", "game_detection": [ @@ -85874,6 +91614,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Arachnophobia", "game_detection": [ @@ -85889,6 +91630,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bet On Soldier: Blood Sport", "game_detection": [ @@ -85900,6 +91642,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tyranny", "game_detection": [ @@ -85914,6 +91657,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Close Quarters Conflict", "game_detection": [ @@ -85927,6 +91671,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Aviary Attorney", "game_detection": [ @@ -85941,6 +91686,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Monster Truck Destruction", "game_detection": [ @@ -85952,6 +91698,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Castle Crashers", "game_detection": [ @@ -85966,6 +91713,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "National Zombie Park", "game_detection": [ @@ -85980,6 +91728,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Feeding Frenzy 2 Deluxe", "game_detection": [ @@ -86000,6 +91749,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Lost Mythologies", "game_detection": [ @@ -86014,6 +91764,7 @@ ] }, { + "force_display_capture": false, "region": "UK", "title": "Batman Arkham City GOTY", "game_detection": [ @@ -86028,6 +91779,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vietcong: Fist Alpha", "game_detection": [ @@ -86042,6 +91794,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Inside", "game_detection": [ @@ -86056,6 +91809,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Shield", "game_detection": [ @@ -86067,6 +91821,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "I-Fluid", "game_detection": [ @@ -86081,6 +91836,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "Regulus Legend", "game_detection": [ @@ -86094,6 +91850,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Atomica", "game_detection": [ @@ -86107,6 +91864,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spellforce 2: Shadow Wars", "game_detection": [ @@ -86123,6 +91881,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Valhalla Hills", "game_detection": [ @@ -86137,6 +91896,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Grand Ages: Medieval", "game_detection": [ @@ -86151,6 +91911,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "T.E.C. 3001", "game_detection": [ @@ -86165,6 +91926,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Vindictus", "game_detection": [ @@ -86177,6 +91939,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A Kingdom for Keflings", "game_detection": [ @@ -86188,6 +91951,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Double Dragon: Neon", "game_detection": [ @@ -86202,6 +91966,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "John Deere: North American Farmer", "game_detection": [ @@ -86213,6 +91978,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Volume", "game_detection": [ @@ -86227,6 +91993,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ChuSingura46+1 S", "game_detection": [ @@ -86241,6 +92008,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Berserk: The Cataclysm", "game_detection": [ @@ -86255,6 +92023,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Angels Fall First", "game_detection": [ @@ -86269,6 +92038,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hitman", "game_detection": [ @@ -86283,6 +92053,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Magic World Online", "game_detection": [ @@ -86295,6 +92066,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dinner Date", "game_detection": [ @@ -86309,6 +92081,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Last Leviathan", "game_detection": [ @@ -86323,6 +92096,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bang Bang Racing", "game_detection": [ @@ -86337,6 +92111,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Saturday Morning RPG", "game_detection": [ @@ -86356,6 +92131,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Darwinia Demo", "game_detection": [ @@ -86372,6 +92148,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Nightmare Cooperative", "game_detection": [ @@ -86386,6 +92163,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Session", "game_detection": [ @@ -86396,6 +92174,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Concentration", "game_detection": [ @@ -86410,6 +92189,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fowl Space", "game_detection": [ @@ -86424,6 +92204,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dust: An Elysian Tail", "game_detection": [ @@ -86443,6 +92224,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Dawn of War III", "game_detection": [ @@ -86457,6 +92239,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sven Co-op", "game_detection": [ @@ -86467,6 +92250,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Yooka Laylee", "game_detection": [ @@ -86481,6 +92265,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battlefield: Bad Co. 2 BETA", "game_detection": [ @@ -86501,6 +92286,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Luxor: Quest for the Afterlife", "game_detection": [ @@ -86515,6 +92301,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Immune Attack", "game_detection": [ @@ -86526,6 +92313,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tiny Tanks Online", "game_detection": [ @@ -86537,6 +92325,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "American Mensa Academy", "game_detection": [ @@ -86551,6 +92340,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Growing Pains", "game_detection": [ @@ -86565,6 +92355,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Genital Jousting", "game_detection": [ @@ -86579,6 +92370,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warp", "game_detection": [ @@ -86598,6 +92390,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "I SPY: Treasure Hunt", "game_detection": [ @@ -86611,6 +92404,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rocko's Quest", "game_detection": [ @@ -86625,6 +92419,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Marlow Briggs", "game_detection": [ @@ -86639,6 +92434,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Aura: Fate of the Ages", "game_detection": [ @@ -86653,6 +92449,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Assassin's Creed: Freedom Cry", "game_detection": [ @@ -86667,6 +92464,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shadow Warrior", "game_detection": [ @@ -86686,6 +92484,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cube World", "game_detection": [ @@ -86703,6 +92502,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eets Munchies", "game_detection": [ @@ -86723,6 +92523,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bastion", "game_detection": [ @@ -86742,6 +92543,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Constant C", "game_detection": [ @@ -86756,6 +92558,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "Asura", "game_detection": [ @@ -86769,6 +92572,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DiRT", "game_detection": [ @@ -86788,6 +92592,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heavenstrike Rivals", "game_detection": [ @@ -86802,6 +92607,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Glacier 3: Meltdown", "game_detection": [ @@ -86816,6 +92622,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sam & Max Episode 104: Abe Lincoln Must Die!", "game_detection": [ @@ -86835,6 +92642,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FIFA Soccer 2005", "game_detection": [ @@ -86846,6 +92654,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tompi Jones", "game_detection": [ @@ -86857,6 +92666,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Inescapable", "game_detection": [ @@ -86871,6 +92681,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Universe at War: Earth Assault", "game_detection": [ @@ -86893,6 +92704,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dirty Dancing", "game_detection": [ @@ -86905,6 +92717,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dominique Pamplemousse in “It’s All Over Once the Fat Lady Sings!”", "game_detection": [ @@ -86926,6 +92739,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "IGI 2: Covert Strike", "game_detection": [ @@ -86938,6 +92752,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rebuild: Gangs of Deadsville", "game_detection": [ @@ -86952,6 +92767,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stealth Inc 2: A Game of Clones", "game_detection": [ @@ -86970,6 +92786,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Football Manager 2017", "game_detection": [ @@ -86984,6 +92801,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BC Kings", "game_detection": [ @@ -86998,6 +92816,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Derrick the Deathfin", "game_detection": [ @@ -87017,6 +92836,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Petz Catz 2", "game_detection": [ @@ -87031,6 +92851,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nightmares from the Deep: The Cursed Heart", "game_detection": [ @@ -87045,6 +92866,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Waves", "game_detection": [ @@ -87059,6 +92881,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "16 Bit Arena", "game_detection": [ @@ -87073,6 +92896,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "Pro Baseball 2K", "game_detection": [ @@ -87085,6 +92909,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zombie Shooter 2", "game_detection": [ @@ -87099,6 +92924,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Freight Tycoon Inc.", "game_detection": [ @@ -87113,6 +92939,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dragonshard", "game_detection": [ @@ -87124,6 +92951,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Trials on Tatooine", "game_detection": [ @@ -87139,6 +92967,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zooloretto", "game_detection": [ @@ -87153,6 +92982,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "AdVenture Communist", "game_detection": [ @@ -87167,6 +92997,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cities XXL", "game_detection": [ @@ -87181,6 +93012,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Origin Of Destiny", "game_detection": [ @@ -87195,6 +93027,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Out of the Park Baseball 16", "game_detection": [ @@ -87209,6 +93042,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GetAmped II", "game_detection": [ @@ -87220,6 +93054,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Drunken Robot Pornography", "game_detection": [ @@ -87234,6 +93069,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Dark Souls: Prepare to Die Edition", "game_detection": [ @@ -87247,6 +93083,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tradewinds 2", "game_detection": [ @@ -87261,6 +93098,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Inquisitor", "game_detection": [ @@ -87275,6 +93113,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pharaoh", "game_detection": [ @@ -87291,6 +93130,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Romancing SaGa 2", "game_detection": [ @@ -87304,6 +93144,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Trainz: A New Era", "game_detection": [ @@ -87318,6 +93159,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Technobabylon", "game_detection": [ @@ -87329,6 +93171,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Freedom Fighters", "game_detection": [ @@ -87340,6 +93183,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Geneforge 2", "game_detection": [ @@ -87354,6 +93198,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Granny 3", "game_detection": [ @@ -87368,6 +93213,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Arkhelom 3D", "game_detection": [ @@ -87379,6 +93225,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Assassin's Creed IV: Black Flag", "game_detection": [ @@ -87414,6 +93261,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Wars Galactic Battlegrounds: Clone Campaigns", "game_detection": [ @@ -87427,6 +93275,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hector: Badge of Carnage - Episode 2", "game_detection": [ @@ -87446,6 +93295,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Yesterday", "game_detection": [ @@ -87466,6 +93316,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NASCAR '14", "game_detection": [ @@ -87480,6 +93331,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cloudbuilt", "game_detection": [ @@ -87494,6 +93346,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "HyperSonic 4", "game_detection": [ @@ -87507,6 +93360,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mind: Path to Thalamus", "game_detection": [ @@ -87521,6 +93375,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wizardry 8", "game_detection": [ @@ -87535,6 +93390,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mushihimesama", "game_detection": [ @@ -87549,6 +93405,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sudden Strike 3: Arms For Victory", "game_detection": [ @@ -87560,6 +93417,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Riding Star", "game_detection": [ @@ -87574,6 +93432,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rezrog", "game_detection": [ @@ -87588,6 +93447,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A Hat in Time", "game_detection": [ @@ -87602,6 +93462,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Anna's Quest", "game_detection": [ @@ -87616,6 +93477,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Foosball - Street Edition", "game_detection": [ @@ -87630,6 +93492,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Windward", "game_detection": [ @@ -87644,6 +93507,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Flight Control HD", "game_detection": [ @@ -87658,6 +93522,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "Counter-Strike Online", "game_detection": [ @@ -87679,6 +93544,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Unholy Heights", "game_detection": [ @@ -87698,6 +93564,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A3: The Age of Sovereign", "game_detection": [ @@ -87712,6 +93579,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "American Conquest", "game_detection": [ @@ -87726,6 +93594,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Devil May Cry 4", "game_detection": [ @@ -87753,6 +93622,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Game of Thrones: A Telltale Games Series", "game_detection": [ @@ -87767,6 +93637,7 @@ ] }, { + "force_display_capture": false, "region": "RU", "title": "Ground War Tanks", "game_detection": [ @@ -87781,6 +93652,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Isomer", "game_detection": [ @@ -87795,6 +93667,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lost Lands: A Hidden Object Adventure", "game_detection": [ @@ -87809,6 +93682,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bless Online", "game_detection": [ @@ -87822,6 +93696,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Infinity Wars", "game_detection": [ @@ -87836,6 +93711,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Angels & Demigods", "game_detection": [ @@ -87851,6 +93727,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Coconut Queen", "game_detection": [ @@ -87865,6 +93742,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "John Wick Hex", "game_detection": [ @@ -87875,6 +93753,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eador: Imperium", "game_detection": [ @@ -87889,6 +93768,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RumorFeller", "game_detection": [ @@ -87900,6 +93780,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Witness", "game_detection": [ @@ -87918,6 +93799,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tropico 6", "game_detection": [ @@ -87929,6 +93811,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mechanic Infantry", "game_detection": [ @@ -87940,6 +93823,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MoonBase Commander", "game_detection": [ @@ -87954,6 +93838,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Need for Speed: Rivals", "game_detection": [ @@ -87971,6 +93856,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vega$: Make it B!g", "game_detection": [ @@ -87985,6 +93871,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hard Truck: 18 Wheels of Steel", "game_detection": [ @@ -87998,6 +93885,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Final Fantasy XIV Online", "game_detection": [ @@ -88017,6 +93905,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Supreme Ruler 1936", "game_detection": [ @@ -88031,6 +93920,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fairy Fencer F", "game_detection": [ @@ -88045,6 +93935,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Raft", "game_detection": [ @@ -88058,6 +93949,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Thunder Wolves", "game_detection": [ @@ -88072,6 +93964,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "KovaaK's FPS Aim Trainer", "game_detection": [ @@ -88087,6 +93980,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Noitu Love 2: Devolution", "game_detection": [ @@ -88106,6 +94000,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Honey Select", "game_detection": [ @@ -88116,6 +94011,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "PokeMMO", "game_detection": [ @@ -88128,6 +94024,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blackguards 2", "game_detection": [ @@ -88142,6 +94039,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mini Ninjas", "game_detection": [ @@ -88162,6 +94060,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Auditorium", "game_detection": [ @@ -88181,6 +94080,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Realm Royale", "game_detection": [ @@ -88194,6 +94094,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Momodora 2", "game_detection": [ @@ -88205,6 +94106,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dracula 4 and 5", "game_detection": [ @@ -88219,6 +94121,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ACE Online", "game_detection": [ @@ -88231,6 +94134,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Breeders of the Nephelym: Alpha", "game_detection": [ @@ -88241,6 +94145,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "RF Online", "game_detection": [ @@ -88254,6 +94159,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Neopets Puzzle Adventure", "game_detection": [ @@ -88268,6 +94174,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A Valley Without Wind", "game_detection": [ @@ -88282,6 +94189,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Red Trigger", "game_detection": [ @@ -88296,6 +94204,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cossacks: The Art of War", "game_detection": [ @@ -88315,6 +94224,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "TY the Tasmanian Tiger 4", "game_detection": [ @@ -88329,6 +94239,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "300 Dwarves", "game_detection": [ @@ -88343,6 +94254,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Card Hunter", "game_detection": [ @@ -88357,6 +94269,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "XCOM: Enemy Unknown", "game_detection": [ @@ -88379,6 +94292,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Theatre of War", "game_detection": [ @@ -88398,6 +94312,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Transport Giant", "game_detection": [ @@ -88409,6 +94324,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NS2: Combat", "game_detection": [ @@ -88423,6 +94339,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Grimmwood", "game_detection": [ @@ -88436,6 +94353,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lumines", "game_detection": [ @@ -88450,6 +94368,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Emergency 2014", "game_detection": [ @@ -88464,6 +94383,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mabinogi", "game_detection": [ @@ -88485,6 +94405,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Axiom Verge", "game_detection": [ @@ -88496,6 +94417,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dream Daddy: A Dad Dating Simulator", "game_detection": [ @@ -88510,6 +94432,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Wars: Imperial Assault - Legends of the Alliance", "game_detection": [ @@ -88524,6 +94447,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Breaking The Rules: The Roman Tournament", "game_detection": [ @@ -88535,6 +94459,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark Colony", "game_detection": [ @@ -88546,6 +94471,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cities XL 2011", "game_detection": [ @@ -88565,6 +94491,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Terminal Hacker", "game_detection": [ @@ -88579,6 +94506,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tom Clancy’s Splinter Cell: Blacklist", "game_detection": [ @@ -88593,6 +94521,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Prophour23", "game_detection": [ @@ -88607,6 +94536,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Worms Revolution", "game_detection": [ @@ -88621,6 +94551,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eschalon: Book I", "game_detection": [ @@ -88640,6 +94571,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NyxQuest: Kindred Spirits", "game_detection": [ @@ -88654,6 +94586,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "One Manga Day", "game_detection": [ @@ -88668,6 +94601,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gore", "game_detection": [ @@ -88679,6 +94613,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ghostship Aftermath", "game_detection": [ @@ -88693,6 +94628,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nightmares from the Deep: The Siren's Call", "game_detection": [ @@ -88707,6 +94643,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Men of War: Red Tide", "game_detection": [ @@ -88721,6 +94658,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Trackday Manager", "game_detection": [ @@ -88735,6 +94673,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fictorum", "game_detection": [ @@ -88748,6 +94687,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Orcs Must Die!", "game_detection": [ @@ -88762,6 +94702,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "TipTop Deluxe", "game_detection": [ @@ -88774,6 +94715,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deus Ex: The Fall", "game_detection": [ @@ -88788,6 +94730,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "688(I) Hunter/Killer", "game_detection": [ @@ -88802,6 +94745,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Captain Morgane and the Golden Turtle", "game_detection": [ @@ -88816,6 +94760,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Codename: Panzers Phase 2", "game_detection": [ @@ -88834,6 +94779,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "18 Wheels of Steel: Convoy", "game_detection": [ @@ -88848,6 +94794,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bookworm Adventures Deluxe", "game_detection": [ @@ -88868,6 +94815,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Risk of Rain", "game_detection": [ @@ -88887,6 +94835,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mighty No. 9", "game_detection": [ @@ -88901,6 +94850,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A Plague Tale: Innocence", "game_detection": [ @@ -88915,6 +94865,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sonic the Hedgehog 4: Episode 1", "game_detection": [ @@ -88929,6 +94880,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bullet Run", "game_detection": [ @@ -88950,6 +94902,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battlestar Galactica", "game_detection": [ @@ -88961,6 +94914,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sunrider Academy", "game_detection": [ @@ -88975,6 +94929,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Diablo", "game_detection": [ @@ -88986,6 +94941,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Wars: Empire at War", "game_detection": [ @@ -88999,6 +94955,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Prince of Persia: The Sands of Time", "game_detection": [ @@ -89019,6 +94976,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "So Blonde", "game_detection": [ @@ -89030,6 +94988,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sniper: Ghost Warrior", "game_detection": [ @@ -89049,6 +95008,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Red Stone", "game_detection": [ @@ -89071,6 +95031,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MotoGP 08", "game_detection": [ @@ -89085,6 +95046,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Bard's Tale IV", "game_detection": [ @@ -89095,6 +95057,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jigoku Kisetsukan: Sense of the Seasons", "game_detection": [ @@ -89109,6 +95072,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Foreign Legion: Buckets of Blood", "game_detection": [ @@ -89123,6 +95087,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Secret Neighbor", "game_detection": [ @@ -89133,6 +95098,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Thief: Deadly Shadows", "game_detection": [ @@ -89161,6 +95127,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alien Breed: Impact", "game_detection": [ @@ -89175,6 +95142,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pet Luv Spa & Resort Tycoon", "game_detection": [ @@ -89187,6 +95155,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Lords", "game_detection": [ @@ -89201,6 +95170,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Angry Birds 2", "game_detection": [ @@ -89211,6 +95181,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Delver", "game_detection": [ @@ -89225,6 +95196,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Line of Defense", "game_detection": [ @@ -89239,6 +95211,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hack 'n' Slash", "game_detection": [ @@ -89258,6 +95231,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "F1 2017", "game_detection": [ @@ -89272,6 +95246,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Getting Over It with Bennett Foddy", "game_detection": [ @@ -89286,6 +95261,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Silent Hunter II", "game_detection": [ @@ -89298,6 +95274,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dwarfs!?", "game_detection": [ @@ -89312,6 +95289,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LEGO Universe", "game_detection": [ @@ -89340,6 +95318,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cuisine Royale", "game_detection": [ @@ -89353,6 +95332,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Human Resource Machine", "game_detection": [ @@ -89367,6 +95347,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Melty Blood: Act Cadenza", "game_detection": [ @@ -89378,6 +95359,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "School Tycoon", "game_detection": [ @@ -89394,6 +95376,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "City of the Shroud", "game_detection": [ @@ -89407,6 +95390,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Titanfall", "game_detection": [ @@ -89418,6 +95402,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Black Rose", "game_detection": [ @@ -89432,6 +95417,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hexcells Plus", "game_detection": [ @@ -89446,6 +95432,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Reject Demon: Toko Chapter 0 - Prelude", "game_detection": [ @@ -89460,6 +95447,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "English Country Tune", "game_detection": [ @@ -89479,6 +95467,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tron Evolution", "game_detection": [ @@ -89491,6 +95480,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Caribbean!", "game_detection": [ @@ -89505,6 +95495,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Godswar Online", "game_detection": [ @@ -89517,6 +95508,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Smashball", "game_detection": [ @@ -89531,6 +95523,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ProtoGalaxy", "game_detection": [ @@ -89545,6 +95538,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gun Monkeys", "game_detection": [ @@ -89559,6 +95553,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Commander in Chief: Geo-Political Simulator 2009", "game_detection": [ @@ -89570,6 +95565,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lethal League Blaze", "game_detection": [ @@ -89580,6 +95576,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pix the Cat", "game_detection": [ @@ -89594,6 +95591,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "History Channel: Battle for the Pacific", "game_detection": [ @@ -89605,6 +95603,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "House of 1000 Doors: Family Secrets", "game_detection": [ @@ -89625,6 +95624,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Conception II: Children of the Seven Stars", "game_detection": [ @@ -89639,6 +95639,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Black Mirror", "game_detection": [ @@ -89653,6 +95654,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Caromble!", "game_detection": [ @@ -89667,6 +95669,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Steel Storm: Burning Retribution", "game_detection": [ @@ -89686,6 +95689,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Legacy of Kain: Defiance", "game_detection": [ @@ -89705,6 +95709,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "First Battalion", "game_detection": [ @@ -89716,6 +95721,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tom Clancy's H.A.W.X. 2", "game_detection": [ @@ -89737,6 +95743,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Violett", "game_detection": [ @@ -89751,6 +95758,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stronghold Legends", "game_detection": [ @@ -89770,6 +95778,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Speedball 2: Tournament", "game_detection": [ @@ -89784,6 +95793,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Frozen Cortex", "game_detection": [ @@ -89799,6 +95809,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blazing Angels: Squadrons of WWII", "game_detection": [ @@ -89812,6 +95823,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Governor of Poker 2: Premium Edition", "game_detection": [ @@ -89826,6 +95838,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Max Payne 2: The Fall of Max Payne", "game_detection": [ @@ -89846,6 +95859,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alpha Protocol", "game_detection": [ @@ -89866,6 +95880,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Call of Cthulu", "game_detection": [ @@ -89876,6 +95891,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tiny Barbarian", "game_detection": [ @@ -89895,6 +95911,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "My Vet Practice: In the Country", "game_detection": [ @@ -89909,6 +95926,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Universe Sandbox", "game_detection": [ @@ -89928,6 +95946,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Terrorhedron", "game_detection": [ @@ -89942,6 +95961,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Twenty Twelve", "game_detection": [ @@ -89953,6 +95973,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Salt and Sanctuary", "game_detection": [ @@ -89967,6 +95988,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Märchen Forest: Mylne and the Forest Gift", "game_detection": [ @@ -89980,6 +96002,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Syndicate", "game_detection": [ @@ -89996,6 +96019,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Adam's Venture Episode 3: Revelations", "game_detection": [ @@ -90010,6 +96034,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Prey", "game_detection": [ @@ -90031,6 +96056,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bionic Commando", "game_detection": [ @@ -90050,6 +96076,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battlefield: Bad Company 2", "game_detection": [ @@ -90070,6 +96097,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "WARRIORS ALL-STARS", "game_detection": [ @@ -90084,6 +96112,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims 3", "game_detection": [ @@ -90105,6 +96134,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gravitron 2", "game_detection": [ @@ -90119,6 +96149,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ARK: Survival Of The Fittest", "game_detection": [ @@ -90133,6 +96164,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Puyo Puyo Tetris", "game_detection": [ @@ -90146,6 +96178,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Age of Empires II: Definitive Edition", "game_detection": [ @@ -90156,6 +96189,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cabela's Big Game Hunter 2006", "game_detection": [ @@ -90167,6 +96201,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Astro Lords: Oort Cloud", "game_detection": [ @@ -90181,6 +96216,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Exoplanet: First Contact", "game_detection": [ @@ -90195,6 +96231,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pirate101", "game_detection": [ @@ -90207,6 +96244,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alpha Prime", "game_detection": [ @@ -90226,6 +96264,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Book of Unwritten Tales: The Critter Chronicles", "game_detection": [ @@ -90240,6 +96279,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "KumaWar: The War on Terror", "game_detection": [ @@ -90251,6 +96291,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gunheart", "game_detection": [ @@ -90264,6 +96305,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Few", "game_detection": [ @@ -90278,6 +96320,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sprint Cars: Road to Knoxville", "game_detection": [ @@ -90297,6 +96340,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Defiance", "game_detection": [ @@ -90339,6 +96383,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The UnderGarden", "game_detection": [ @@ -90353,6 +96398,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Child of Light", "game_detection": [ @@ -90367,6 +96413,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blood II: The Chosen", "game_detection": [ @@ -90387,6 +96434,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dive to the Titanic", "game_detection": [ @@ -90401,6 +96449,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Runaway: A Road Adventure", "game_detection": [ @@ -90415,6 +96464,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Empires: Dawn of the Modern World", "game_detection": [ @@ -90426,6 +96476,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cards and Castles", "game_detection": [ @@ -90440,6 +96491,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Space Hack", "game_detection": [ @@ -90454,6 +96506,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Evil Pumpkin: The Lost Halloween", "game_detection": [ @@ -90468,6 +96521,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Slayaway Camp", "game_detection": [ @@ -90482,6 +96536,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Project Aftermath", "game_detection": [ @@ -90496,6 +96551,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Still Life", "game_detection": [ @@ -90515,6 +96571,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NotGTAV", "game_detection": [ @@ -90529,6 +96586,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Boid", "game_detection": [ @@ -90543,6 +96601,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "EverQuest 2", "game_detection": [ @@ -90603,6 +96662,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Haunted", "game_detection": [ @@ -90614,6 +96674,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2009 Demo", "game_detection": [ @@ -90625,6 +96686,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pagan Online", "game_detection": [ @@ -90635,6 +96697,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nova Blitz", "game_detection": [ @@ -90649,6 +96712,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "D4", "game_detection": [ @@ -90663,6 +96727,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Galactic Civilizations", "game_detection": [ @@ -90683,6 +96748,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Concrete Jungle", "game_detection": [ @@ -90697,6 +96763,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Red Dead Redemption 2", "game_detection": [ @@ -90707,6 +96774,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Trek Armada", "game_detection": [ @@ -90718,6 +96786,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GearCity", "game_detection": [ @@ -90732,6 +96801,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fantasy Earth Zero", "game_detection": [ @@ -90744,6 +96814,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Poker Night at the Inventory", "game_detection": [ @@ -90764,6 +96835,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bad Mojo Redux", "game_detection": [ @@ -90778,6 +96850,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Trials Evolution: Gold Edition", "game_detection": [ @@ -90792,6 +96865,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NBA 2K17", "game_detection": [ @@ -90806,6 +96880,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Season of 12 Colors", "game_detection": [ @@ -90820,6 +96895,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Replica", "game_detection": [ @@ -90834,6 +96910,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "True Crime: Streets of LA", "game_detection": [ @@ -90845,6 +96922,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Guacamelee!", "game_detection": [ @@ -90864,6 +96942,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Danganronpa V3: Killing Harmony", "game_detection": [ @@ -90878,6 +96957,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "F.E.A.R. Perseus Mandate", "game_detection": [ @@ -90897,6 +96977,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Al Emmo and the Lost Dutchman's Mine", "game_detection": [ @@ -90911,6 +96992,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Life is Strange 2", "game_detection": [ @@ -90921,6 +97003,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fists of FU", "game_detection": [ @@ -90936,6 +97019,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SimCity 4 Deluxe", "game_detection": [ @@ -90956,6 +97040,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Joint Task Force", "game_detection": [ @@ -90967,6 +97052,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ray Gigant", "game_detection": [ @@ -90981,6 +97067,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rivals of Aether", "game_detection": [ @@ -90995,6 +97082,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Project Hospital", "game_detection": [ @@ -91005,6 +97093,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Steel Ocean", "game_detection": [ @@ -91019,6 +97108,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Imperator", "game_detection": [ @@ -91029,6 +97119,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Owlboy", "game_detection": [ @@ -91043,6 +97134,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fairy Tale About Father Frost, Ivan and Nastya", "game_detection": [ @@ -91057,6 +97149,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SteamWorld Heist", "game_detection": [ @@ -91071,6 +97164,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jack Keane", "game_detection": [ @@ -91084,6 +97178,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Frozen Synapse Prime", "game_detection": [ @@ -91098,6 +97193,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "bob's game", "game_detection": [ @@ -91112,6 +97208,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sun at Night", "game_detection": [ @@ -91123,6 +97220,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Quiplash", "game_detection": [ @@ -91137,6 +97235,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Divinity II: Ego Draconis", "game_detection": [ @@ -91157,6 +97256,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wonderland Online", "game_detection": [ @@ -91169,6 +97269,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Prison Break: The Conspiracy", "game_detection": [ @@ -91180,6 +97281,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Twitch Sings", "game_detection": [ @@ -91198,6 +97300,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Neverending Nightmares", "game_detection": [ @@ -91212,6 +97315,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gloria Victis", "game_detection": [ @@ -91226,6 +97330,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Damnation", "game_detection": [ @@ -91246,6 +97351,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Secret of the Magic Crystals", "game_detection": [ @@ -91260,6 +97366,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tribes: Vengeance", "game_detection": [ @@ -91278,6 +97385,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Strong Bad's Cool Game for Attractive People Episode 4: Dangeresque 3 The Criminal Projective", "game_detection": [ @@ -91299,6 +97407,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Swordsman", "game_detection": [ @@ -91320,6 +97429,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Final Fantasy XV", "game_detection": [ @@ -91333,6 +97443,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NBA 2K11", "game_detection": [ @@ -91352,6 +97463,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Elven Legacy: Magic", "game_detection": [ @@ -91366,6 +97478,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Three Dead Zed", "game_detection": [ @@ -91385,6 +97498,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mortimer Beckett and the Secrets of Spooky Manor", "game_detection": [ @@ -91397,6 +97511,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Feeding Frenzy Deluxe", "game_detection": [ @@ -91410,6 +97525,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Threadspace: Hyperbol", "game_detection": [ @@ -91424,6 +97540,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sudden Strike 2", "game_detection": [ @@ -91436,6 +97553,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Project Zomboid", "game_detection": [ @@ -91446,6 +97564,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spud's Quest", "game_detection": [ @@ -91458,6 +97577,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "prog.1", "game_detection": [ @@ -91472,6 +97592,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heavy Metal Machines", "game_detection": [ @@ -91486,6 +97607,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Universal Combat CE", "game_detection": [ @@ -91500,6 +97622,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "La Tale", "game_detection": [ @@ -91522,6 +97645,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mega Man Legacy Collection", "game_detection": [ @@ -91536,6 +97660,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Video blogger Story", "game_detection": [ @@ -91550,6 +97675,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "All Zombies Must Die!: Scorepocalypse", "game_detection": [ @@ -91564,6 +97690,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rome: Total War - Alexander", "game_detection": [ @@ -91583,6 +97710,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mayan Death Robots", "game_detection": [ @@ -91597,6 +97725,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Swords & Soldiers", "game_detection": [ @@ -91617,6 +97746,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Observation", "game_detection": [ @@ -91627,6 +97757,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Cursed Crusade", "game_detection": [ @@ -91641,6 +97772,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MorphShift Wars", "game_detection": [ @@ -91655,6 +97787,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "TOME", "game_detection": [ @@ -91669,6 +97802,7 @@ ] }, { + "force_display_capture": false, "region": "BR", "title": "Assault Fire", "game_detection": [ @@ -91682,6 +97816,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hidden & Dangerous", "game_detection": [ @@ -91694,6 +97829,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shrek Forever After", "game_detection": [ @@ -91705,6 +97841,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Reaper - Tale of a Pale Swordsman", "game_detection": [ @@ -91719,6 +97856,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mindustry", "game_detection": [ @@ -91729,6 +97867,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Angry Video Game Nerd II: ASSimilation", "game_detection": [ @@ -91743,6 +97882,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Disciples II: Rise of the Elves", "game_detection": [ @@ -91762,6 +97902,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shards of War", "game_detection": [ @@ -91774,6 +97915,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "X-Blades", "game_detection": [ @@ -91786,6 +97928,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ultimate Epic Battle Simulator", "game_detection": [ @@ -91799,6 +97942,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "M.E.R.C.", "game_detection": [ @@ -91812,6 +97956,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zero Escape: The Nonary Games", "game_detection": [ @@ -91826,6 +97971,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Inner World", "game_detection": [ @@ -91846,6 +97992,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Splitgate: Arena Warfare", "game_detection": [ @@ -91860,6 +98007,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nimble Quest", "game_detection": [ @@ -91874,6 +98022,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fist of Jesus", "game_detection": [ @@ -91888,6 +98037,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Estranged: Act I", "game_detection": [ @@ -91902,6 +98052,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Oh...Sir! The Insult Simulator", "game_detection": [ @@ -91916,6 +98067,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Of Guards And Thieves", "game_detection": [ @@ -91930,6 +98082,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rexaura", "game_detection": [ @@ -91944,6 +98097,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zoo Tycoon 2", "game_detection": [ @@ -91955,6 +98109,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Price of Freedom", "game_detection": [ @@ -91970,6 +98125,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Plain Sight", "game_detection": [ @@ -91984,6 +98140,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Krautscape", "game_detection": [ @@ -91998,6 +98155,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Majesty Gold Edition", "game_detection": [ @@ -92012,6 +98170,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Haunted House", "game_detection": [ @@ -92026,6 +98185,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Why So Evil", "game_detection": [ @@ -92040,6 +98200,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "CastleStorm", "game_detection": [ @@ -92054,6 +98215,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LEGO Indiana Jones 2: The Adventure Continues", "game_detection": [ @@ -92073,6 +98235,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Batman: Arkham Asylum", "game_detection": [ @@ -92094,6 +98257,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sanctum 2", "game_detection": [ @@ -92108,6 +98272,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Final Fantasy VIII", "game_detection": [ @@ -92127,6 +98292,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alien Shooter", "game_detection": [ @@ -92141,6 +98307,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Catan: Creator's Edition", "game_detection": [ @@ -92155,6 +98322,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RIP 3 - The Last Hero", "game_detection": [ @@ -92169,6 +98337,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deadpool", "game_detection": [ @@ -92183,6 +98352,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Red Crucible: Firestorm", "game_detection": [ @@ -92197,6 +98367,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tales of Monkey Island 4: The Trial and Execution of Guybrush Threepwood", "game_detection": [ @@ -92216,6 +98387,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kingdom", "game_detection": [ @@ -92230,6 +98402,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Enemy Front", "game_detection": [ @@ -92244,6 +98417,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "WRC 5", "game_detection": [ @@ -92258,6 +98432,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Armed and Dangerous", "game_detection": [ @@ -92279,6 +98454,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vanguard Princess", "game_detection": [ @@ -92293,6 +98469,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Devil May Cry 5", "game_detection": [ @@ -92303,6 +98480,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Silent Hill 2", "game_detection": [ @@ -92314,6 +98492,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Don't Move", "game_detection": [ @@ -92325,6 +98504,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Operation 7", "game_detection": [ @@ -92341,6 +98521,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Niko: Through The Dream", "game_detection": [ @@ -92355,6 +98536,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spider-Man: Web of Shadows", "game_detection": [ @@ -92368,6 +98550,7 @@ ] }, { + "force_display_capture": false, "region": "RU", "title": "Jade Dynasty", "game_detection": [ @@ -92383,6 +98566,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battlefield Vietnam", "game_detection": [ @@ -92395,6 +98579,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rigonauts", "game_detection": [ @@ -92409,6 +98594,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "My Tribe", "game_detection": [ @@ -92423,6 +98609,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Magic The Gathering: Duels of the Planeswalkers 2013", "game_detection": [ @@ -92437,6 +98624,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Poxnora", "game_detection": [ @@ -92451,6 +98639,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Operation Flashpoint: Resistance", "game_detection": [ @@ -92462,6 +98651,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "CO-OP: Decrypted", "game_detection": [ @@ -92476,6 +98666,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ArcaniA: Fall of Setarrif", "game_detection": [ @@ -92490,6 +98681,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fruit Ninja VR", "game_detection": [ @@ -92505,6 +98697,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deadstep", "game_detection": [ @@ -92518,6 +98711,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "Meng San Guo", "game_detection": [ @@ -92531,6 +98725,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Harvest: Massive Encounter", "game_detection": [ @@ -92545,6 +98740,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Perfect Dark Source", "game_detection": [ @@ -92561,6 +98757,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Naught Reawakening", "game_detection": [ @@ -92575,6 +98772,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sir, You Are Being Hunted", "game_detection": [ @@ -92601,6 +98799,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RIP", "game_detection": [ @@ -92615,6 +98814,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Masters of the World: Geo-Political Simulator 3", "game_detection": [ @@ -92629,6 +98829,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Katana ZERO", "game_detection": [ @@ -92639,6 +98840,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Just Cause 3", "game_detection": [ @@ -92653,6 +98855,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chariot", "game_detection": [ @@ -92667,6 +98870,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Seduce Me: the Otome", "game_detection": [ @@ -92681,6 +98885,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Defenders of the Last Colony", "game_detection": [ @@ -92692,6 +98897,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "They Bleed Pixels", "game_detection": [ @@ -92705,6 +98911,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Impossible Creatures", "game_detection": [ @@ -92716,6 +98923,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Carom 3D", "game_detection": [ @@ -92727,6 +98935,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Project AURA", "game_detection": [ @@ -92741,6 +98950,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Angel Code: A Linda Hyde Mystery", "game_detection": [ @@ -92757,6 +98967,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "World in Conflict: Soviet Assault", "game_detection": [ @@ -92772,6 +98983,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Legends of Eisenwald", "game_detection": [ @@ -92786,6 +98998,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "\"Beware Planet Earth!\"", "game_detection": [ @@ -92800,6 +99013,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Goodbye Deponia", "game_detection": [ @@ -92819,6 +99033,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Digimon Masters", "game_detection": [ @@ -92850,6 +99065,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Savant: Ascent", "game_detection": [ @@ -92870,6 +99086,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Way of the Samurai 4", "game_detection": [ @@ -92884,6 +99101,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "3SwitcheD", "game_detection": [ @@ -92898,6 +99116,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Five Nights at Freddy's 3", "game_detection": [ @@ -92912,6 +99131,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MotoGP 13", "game_detection": [ @@ -92926,6 +99146,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sigils of Elohim", "game_detection": [ @@ -92940,6 +99161,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dawn of Discovery", "game_detection": [ @@ -92959,6 +99181,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LEGO DC Super-Villains", "game_detection": [ @@ -92969,6 +99192,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DC Universe Online", "game_detection": [ @@ -92996,6 +99220,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fable III", "game_detection": [ @@ -93015,6 +99240,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Command & Conquer: Red Alert 3 Uprising", "game_detection": [ @@ -93034,6 +99260,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Snow Horse", "game_detection": [ @@ -93048,6 +99275,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sudden Strike 4", "game_detection": [ @@ -93058,6 +99286,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hot Dish", "game_detection": [ @@ -93072,6 +99301,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heli-Heroes", "game_detection": [ @@ -93086,6 +99316,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heavy Fire: Afghanistan", "game_detection": [ @@ -93106,6 +99337,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Portal Stories: Mel", "game_detection": [ @@ -93120,6 +99352,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shantae Half-Genie Hero", "game_detection": [ @@ -93141,6 +99374,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Arcane Saga Online", "game_detection": [ @@ -93161,6 +99395,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kraven Manor", "game_detection": [ @@ -93175,6 +99410,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Space Siege", "game_detection": [ @@ -93194,6 +99430,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Forgotten Myths", "game_detection": [ @@ -93208,6 +99445,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NASCAR Racing Season 2003", "game_detection": [ @@ -93219,6 +99457,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NHL 08", "game_detection": [ @@ -93235,6 +99474,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Perfect Ace 2: The Championships", "game_detection": [ @@ -93246,6 +99486,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gnomoria", "game_detection": [ @@ -93270,6 +99511,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Create", "game_detection": [ @@ -93282,6 +99524,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Witcher Adventure Game", "game_detection": [ @@ -93296,6 +99539,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Black Lake", "game_detection": [ @@ -93315,6 +99559,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sherlock Holmes: The Awakened", "game_detection": [ @@ -93329,6 +99574,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pole Position 2012", "game_detection": [ @@ -93343,6 +99589,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dimensity", "game_detection": [ @@ -93357,6 +99604,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vertical Drop Heroes HD", "game_detection": [ @@ -93377,6 +99625,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark Raid", "game_detection": [ @@ -93391,6 +99640,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NEKOPARA Vol. 2", "game_detection": [ @@ -93405,6 +99655,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battle Worlds: Kronos", "game_detection": [ @@ -93419,6 +99670,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Fish Fillets 2", "game_detection": [ @@ -93433,6 +99685,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dreamfall Chapters", "game_detection": [ @@ -93447,6 +99700,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chocolatier: Decadence by Design", "game_detection": [ @@ -93461,6 +99715,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hitman: Codename 47", "game_detection": [ @@ -93481,6 +99736,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Indiana Jones and the Last Crusade", "game_detection": [ @@ -93495,6 +99751,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Homefront", "game_detection": [ @@ -93509,6 +99766,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Amanda Rose: The Game of Time", "game_detection": [ @@ -93521,6 +99779,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Adventure Time: The Secret of the Nameless Kingdom", "game_detection": [ @@ -93535,6 +99794,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FOTONICA", "game_detection": [ @@ -93546,6 +99806,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bridge Project", "game_detection": [ @@ -93560,6 +99821,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Dawn of War: Winter Assault", "game_detection": [ @@ -93590,6 +99852,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MXGP Compact", "game_detection": [ @@ -93604,6 +99867,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RPG Maker VX Ace Lite", "game_detection": [ @@ -93623,6 +99887,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Koihime Enbu RyoRaiRai", "game_detection": [ @@ -93636,6 +99901,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sad Story of Emmeline Burns", "game_detection": [ @@ -93650,6 +99916,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Might & Magic Showdown", "game_detection": [ @@ -93663,6 +99930,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blackwake", "game_detection": [ @@ -93677,6 +99945,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Storm United", "game_detection": [ @@ -93691,6 +99960,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chronicles of Mystery: Secret of the Lost Kingdom", "game_detection": [ @@ -93702,6 +99972,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Railroad Pioneer", "game_detection": [ @@ -93716,6 +99987,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dragons and Titans", "game_detection": [ @@ -93730,6 +100002,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Epic Cards Battle", "game_detection": [ @@ -93744,6 +100017,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Escape", "game_detection": [ @@ -93758,6 +100032,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "StarForge", "game_detection": [ @@ -93772,6 +100047,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dementium II", "game_detection": [ @@ -93786,6 +100062,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "HighStreet 5", "game_detection": [ @@ -93798,6 +100075,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro Cycling Manager 2013", "game_detection": [ @@ -93812,6 +100090,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Sanctum TD", "game_detection": [ @@ -93826,6 +100105,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lucius", "game_detection": [ @@ -93840,6 +100120,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sins of a Solar Empire: Diplomacy", "game_detection": [ @@ -93851,6 +100132,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Amazing Spider-Man 2", "game_detection": [ @@ -93865,6 +100147,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tales of Fantasy", "game_detection": [ @@ -93877,6 +100160,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ski Region Simulator", "game_detection": [ @@ -93891,6 +100175,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tales of Zestiria", "game_detection": [ @@ -93905,6 +100190,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Costume Quest", "game_detection": [ @@ -93937,6 +100223,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Snark Busters: High Society", "game_detection": [ @@ -93949,6 +100236,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bombing Bastards", "game_detection": [ @@ -93963,6 +100251,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hyperdimension Neptunia Re;Birth 2: Sisters Generation", "game_detection": [ @@ -93977,6 +100266,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Starlite Astronaut Academy: G-Ball", "game_detection": [ @@ -93991,6 +100281,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hyperdimension Neptunia Re;Birth1", "game_detection": [ @@ -94005,6 +100296,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MotorM4X Offroad Extreme", "game_detection": [ @@ -94019,6 +100311,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dethroned!", "game_detection": [ @@ -94033,6 +100326,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Age of Decadence", "game_detection": [ @@ -94047,6 +100341,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Twisted Lands: Insomniac", "game_detection": [ @@ -94059,6 +100354,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warlock 2: the Exiled", "game_detection": [ @@ -94073,6 +100369,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Miner Wars Arena", "game_detection": [ @@ -94091,6 +100388,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Total War: WARHAMMER II", "game_detection": [ @@ -94105,6 +100403,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Famaze", "game_detection": [ @@ -94119,6 +100418,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pool Nation VR", "game_detection": [ @@ -94134,6 +100434,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ortus Regni", "game_detection": [ @@ -94148,6 +100449,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "7 Wonders: Magical Mystery Tour", "game_detection": [ @@ -94162,6 +100464,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crawl", "game_detection": [ @@ -94173,6 +100476,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Project Highrise", "game_detection": [ @@ -94187,6 +100491,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Relic Hunters Zero", "game_detection": [ @@ -94201,6 +100506,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Final Station", "game_detection": [ @@ -94215,6 +100521,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mini Motor Racing EVO", "game_detection": [ @@ -94229,6 +100536,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shattered Skies", "game_detection": [ @@ -94243,6 +100551,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tiny Brains", "game_detection": [ @@ -94257,6 +100566,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Aim Lab", "game_detection": [ @@ -94267,6 +100577,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sakura Clicker", "game_detection": [ @@ -94282,6 +100593,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Killing Floor 2", "game_detection": [ @@ -94296,6 +100608,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Daylight", "game_detection": [ @@ -94310,6 +100623,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Skyborn", "game_detection": [ @@ -94324,6 +100638,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Time of Dragons", "game_detection": [ @@ -94338,6 +100653,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Games of Glory", "game_detection": [ @@ -94352,6 +100668,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Cat Lady Demo", "game_detection": [ @@ -94363,6 +100680,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sonic Adventure DX: Director's Cut", "game_detection": [ @@ -94377,6 +100695,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Raptor: Call of the Shadows (2010)", "game_detection": [ @@ -94390,6 +100709,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "10000000", "game_detection": [ @@ -94409,6 +100729,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "World Basketball Manager 2010", "game_detection": [ @@ -94423,6 +100744,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Supreme Destiny", "game_detection": [ @@ -94436,6 +100758,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "F.E.A.R.: Extraction Point", "game_detection": [ @@ -94460,6 +100783,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "iBomber Defense Pacific", "game_detection": [ @@ -94474,6 +100798,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Arslan: The Warriors of Legend", "game_detection": [ @@ -94489,6 +100814,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Dark Eye: Chains of Satinav", "game_detection": [ @@ -94508,6 +100834,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Brink", "game_detection": [ @@ -94522,6 +100849,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Modular Combat", "game_detection": [ @@ -94536,6 +100864,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ASTRONEER", "game_detection": [ @@ -94558,6 +100887,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GoD Factory: Wingmen", "game_detection": [ @@ -94572,6 +100902,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ludwig", "game_detection": [ @@ -94586,6 +100917,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Caesar IV", "game_detection": [ @@ -94597,6 +100929,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Graviteam Tactics: Operation Star", "game_detection": [ @@ -94611,6 +100944,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "PITCH-HIT", "game_detection": [ @@ -94626,6 +100960,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Worms Ultimate Mayhem", "game_detection": [ @@ -94640,6 +100975,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SickBrick", "game_detection": [ @@ -94651,6 +100987,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Oddworld: Abe’s Oddysee - New ‘n’ Tasty", "game_detection": [ @@ -94665,6 +101002,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hellbound", "game_detection": [ @@ -94675,6 +101013,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Irrational Exuberance: Prologue", "game_detection": [ @@ -94690,6 +101029,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Last Chaos", "game_detection": [ @@ -94709,6 +101049,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dragon Rage", "game_detection": [ @@ -94723,6 +101064,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Borderlands 3", "game_detection": [ @@ -94741,6 +101083,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "F-22 Lightning 3", "game_detection": [ @@ -94755,6 +101098,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Maia", "game_detection": [ @@ -94769,6 +101113,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Project Gorgon", "game_detection": [ @@ -94780,6 +101125,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Munich Bus Simulator", "game_detection": [ @@ -94794,6 +101140,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Ball", "game_detection": [ @@ -94808,6 +101155,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sin", "game_detection": [ @@ -94838,6 +101186,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "H1Z1", "game_detection": [ @@ -94859,6 +101208,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Worms", "game_detection": [ @@ -94873,6 +101223,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Biozone", "game_detection": [ @@ -94887,6 +101238,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hospital Tycoon", "game_detection": [ @@ -94899,6 +101251,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sherlock Holmes vs. Jack the Ripper", "game_detection": [ @@ -94913,6 +101266,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Agatha Christie : Murder on the Orient Express", "game_detection": [ @@ -94927,6 +101281,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RUSH", "game_detection": [ @@ -94941,6 +101296,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Guns of Icarus", "game_detection": [ @@ -94955,6 +101311,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ReCore", "game_detection": [ @@ -94972,6 +101329,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Gate", "game_detection": [ @@ -94986,6 +101344,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Let’s Sing", "game_detection": [ @@ -95000,6 +101359,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "3 Stars of Destiny", "game_detection": [ @@ -95014,6 +101374,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Perils of Man", "game_detection": [ @@ -95028,6 +101389,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Baseball Mogul 2007", "game_detection": [ @@ -95044,6 +101406,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fallen Legion+", "game_detection": [ @@ -95057,6 +101420,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shaun White Snowboarding", "game_detection": [ @@ -95077,6 +101441,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kings of Kung Fu", "game_detection": [ @@ -95091,6 +101456,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Empyrion: Galactic Survival", "game_detection": [ @@ -95109,6 +101475,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Saints Row: The Third", "game_detection": [ @@ -95123,6 +101490,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Death to Spies: Moment of Truth", "game_detection": [ @@ -95142,6 +101510,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "R.B.I. Baseball 15", "game_detection": [ @@ -95156,6 +101525,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dragon's Dogma: Dark Arisen", "game_detection": [ @@ -95170,6 +101540,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Need for Speed: Carbon", "game_detection": [ @@ -95187,6 +101558,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LEGO Harry Potter: Years 5-7", "game_detection": [ @@ -95206,6 +101578,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Invisible, Inc.", "game_detection": [ @@ -95220,6 +101593,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vintage VR", "game_detection": [ @@ -95235,6 +101609,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tap Tap Infinity", "game_detection": [ @@ -95249,6 +101624,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Solstice: Reborn", "game_detection": [ @@ -95263,6 +101639,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Snark Busters: All Revved Up!", "game_detection": [ @@ -95275,6 +101652,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blacklight: Tango Down", "game_detection": [ @@ -95289,6 +101667,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Timberman", "game_detection": [ @@ -95303,6 +101682,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "March of the Living", "game_detection": [ @@ -95317,6 +101697,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Red Solstice", "game_detection": [ @@ -95331,6 +101712,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Trickster Season 2", "game_detection": [ @@ -95350,6 +101732,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Phantasy Star Online: Blue Burst", "game_detection": [ @@ -95370,6 +101753,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Homefront: The Revolution", "game_detection": [ @@ -95384,6 +101768,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Space Hulk: Tactics", "game_detection": [ @@ -95394,6 +101779,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "UFO: Aftershock", "game_detection": [ @@ -95413,6 +101799,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A-Train 8", "game_detection": [ @@ -95427,6 +101814,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Town of Salem", "game_detection": [ @@ -95442,6 +101830,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Realms of Arkania: Blade of Destiny", "game_detection": [ @@ -95456,6 +101845,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sword of the Stars: Ultimate Collection", "game_detection": [ @@ -95470,6 +101860,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Beat Saber", "game_detection": [ @@ -95484,6 +101875,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "HELL YEAH! Wrath of the Dead Rabbit", "game_detection": [ @@ -95498,6 +101890,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Prototype", "game_detection": [ @@ -95517,6 +101910,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sam & Max: The Devil's Playhouse: They Stole Max's Brain!", "game_detection": [ @@ -95531,6 +101925,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "All Aspect Warfare", "game_detection": [ @@ -95545,6 +101940,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chaos Domain", "game_detection": [ @@ -95559,6 +101955,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Radiator 2", "game_detection": [ @@ -95573,6 +101970,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Swashbucklers: Blue vs. Grey", "game_detection": [ @@ -95584,6 +101982,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alien: Isolation", "game_detection": [ @@ -95598,6 +101997,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sonic Riders", "game_detection": [ @@ -95610,6 +102010,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warcraft II: Tides of Darkness", "game_detection": [ @@ -95622,6 +102023,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Build-a-Lot", "game_detection": [ @@ -95636,6 +102038,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Galactic Civilizations II: Ultimate Edition", "game_detection": [ @@ -95656,6 +102059,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Timespinner", "game_detection": [ @@ -95666,6 +102070,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "I Am Alive", "game_detection": [ @@ -95680,6 +102085,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Out of the Park Baseball 13", "game_detection": [ @@ -95691,6 +102097,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spintires: MudRunner", "game_detection": [ @@ -95701,6 +102108,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Splatters", "game_detection": [ @@ -95720,6 +102128,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeon Siege 3", "game_detection": [ @@ -95734,6 +102143,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Caesar IV Demo", "game_detection": [ @@ -95746,6 +102156,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tobe's Vertical Adventure", "game_detection": [ @@ -95760,6 +102171,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Curling 2012", "game_detection": [ @@ -95772,6 +102184,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Serious Sam 2 Demo", "game_detection": [ @@ -95786,6 +102199,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fistful of Frags", "game_detection": [ @@ -95810,6 +102224,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Let's Ride! Silver Buckle Stables", "game_detection": [ @@ -95821,6 +102236,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "140", "game_detection": [ @@ -95840,6 +102256,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mafia II", "game_detection": [ @@ -95854,6 +102271,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dirty Bomb", "game_detection": [ @@ -95868,6 +102286,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pure Hold'em", "game_detection": [ @@ -95882,6 +102301,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eldritch", "game_detection": [ @@ -95902,6 +102322,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lovers in a Dangerous Spacetime", "game_detection": [ @@ -95916,6 +102337,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mean Streets", "game_detection": [ @@ -95930,6 +102352,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FIFA Soccer 11", "game_detection": [ @@ -95942,6 +102365,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "No Man's Sky", "game_detection": [ @@ -95961,6 +102385,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NECROPOLIS", "game_detection": [ @@ -95975,6 +102400,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Secret of Pineview Forest", "game_detection": [ @@ -95989,6 +102415,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "the static speaks my name", "game_detection": [ @@ -96003,6 +102430,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gal*Gun: Double Peace", "game_detection": [ @@ -96017,6 +102445,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Orbital Gear", "game_detection": [ @@ -96031,6 +102460,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Amazing Wagon Adventure", "game_detection": [ @@ -96045,6 +102475,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DIVEKICK", "game_detection": [ @@ -96059,6 +102490,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nancy Drew: The Deadly Device", "game_detection": [ @@ -96073,6 +102505,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gunhound EX", "game_detection": [ @@ -96087,6 +102520,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Magic: The Gathering - Tactics", "game_detection": [ @@ -96108,6 +102542,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tomb Raider: The Last Revelation", "game_detection": [ @@ -96122,6 +102557,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rhythm Zone", "game_detection": [ @@ -96136,6 +102572,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Strike Suit Zero", "game_detection": [ @@ -96155,6 +102592,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mari0", "game_detection": [ @@ -96166,6 +102604,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Killer Hornet: Resurrection", "game_detection": [ @@ -96180,6 +102619,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Trimmer Tycoon", "game_detection": [ @@ -96194,6 +102634,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Guardians of Middle-Earth", "game_detection": [ @@ -96208,6 +102649,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sakura Magical Girls", "game_detection": [ @@ -96222,6 +102664,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Laserlife", "game_detection": [ @@ -96236,6 +102679,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spectra", "game_detection": [ @@ -96250,6 +102694,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bust-N-Rush", "game_detection": [ @@ -96261,6 +102706,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Under the Ocean", "game_detection": [ @@ -96275,6 +102721,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mitos.is: The Game", "game_detection": [ @@ -96289,6 +102736,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fallen Earth", "game_detection": [ @@ -96309,6 +102757,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Royal Envoy 2", "game_detection": [ @@ -96321,6 +102770,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vangers", "game_detection": [ @@ -96335,6 +102785,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bleed", "game_detection": [ @@ -96349,6 +102800,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer: Vermintide 2", "game_detection": [ @@ -96377,6 +102829,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bowling at the Lake", "game_detection": [ @@ -96392,6 +102845,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Darksiders III", "game_detection": [ @@ -96402,6 +102856,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ArmA: Combat Operations", "game_detection": [ @@ -96413,6 +102868,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rapture Rejects", "game_detection": [ @@ -96423,6 +102879,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Men of Valor Demo", "game_detection": [ @@ -96436,6 +102893,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Totally Accurate Battlegrounds", "game_detection": [ @@ -96449,6 +102907,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Musaic Box", "game_detection": [ @@ -96463,6 +102922,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Steel Division 2", "game_detection": [ @@ -96473,6 +102933,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Magical Drop V", "game_detection": [ @@ -96487,6 +102948,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "East India Company: Battle of Trafalgar", "game_detection": [ @@ -96501,6 +102963,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "James Bond 007: Quantum of Solace", "game_detection": [ @@ -96521,6 +102984,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Escape Dead Island", "game_detection": [ @@ -96535,6 +102999,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Unmechanical", "game_detection": [ @@ -96556,6 +103021,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Truffle Saga", "game_detection": [ @@ -96570,6 +103036,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Broken Sword: The Shadow of the Templars - The Director's Cut", "game_detection": [ @@ -96591,6 +103058,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Flock!", "game_detection": [ @@ -96605,6 +103073,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stalin vs. Martians", "game_detection": [ @@ -96619,6 +103088,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Voices from the Sea", "game_detection": [ @@ -96633,6 +103103,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Reservoir Dogs", "game_detection": [ @@ -96644,6 +103115,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "Sword 2", "game_detection": [ @@ -96656,6 +103128,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeons of Dredmor", "game_detection": [ @@ -96675,6 +103148,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Urban Empire", "game_detection": [ @@ -96688,6 +103162,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Project: Snowblind", "game_detection": [ @@ -96724,6 +103199,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Q-World", "game_detection": [ @@ -96736,6 +103212,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sword of the Stars II: Lords of Winter", "game_detection": [ @@ -96750,6 +103227,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mystery P.I.: Stolen in San Francisco", "game_detection": [ @@ -96761,6 +103239,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BasketDudes", "game_detection": [ @@ -96773,6 +103252,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shattered Horizon", "game_detection": [ @@ -96787,6 +103267,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cubot", "game_detection": [ @@ -96801,6 +103282,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Street Fighter 30th Anniversary Collection", "game_detection": [ @@ -96814,6 +103296,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Q.U.B.E. 2", "game_detection": [ @@ -96824,6 +103307,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "One Finger Death Punch", "game_detection": [ @@ -96838,6 +103322,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Renaissance Heroes", "game_detection": [ @@ -96858,6 +103343,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Prison Tycoon", "game_detection": [ @@ -96870,6 +103356,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Harvest", "game_detection": [ @@ -96884,6 +103371,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Notruf 112 Emergency Call 112", "game_detection": [ @@ -96894,6 +103382,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DayZ", "game_detection": [ @@ -96908,6 +103397,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cuisine Royale", "game_detection": [ @@ -96922,6 +103412,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zeit²", "game_detection": [ @@ -96936,6 +103427,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "World of Tanks", "game_detection": [ @@ -96950,6 +103442,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Command & Conquer 3: Kane's Wrath", "game_detection": [ @@ -96970,6 +103463,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Quest Run", "game_detection": [ @@ -96984,6 +103478,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sky Force Anniversary", "game_detection": [ @@ -96998,6 +103493,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Champions of Regnum", "game_detection": [ @@ -97018,6 +103514,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tom Clancy's Ghost Recon: Advanced Warfighter", "game_detection": [ @@ -97036,6 +103533,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Five Nights at Freddy's: Sister Location", "game_detection": [ @@ -97050,6 +103548,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Arma II: Reinforcements", "game_detection": [ @@ -97062,6 +103561,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tom Clancy's Rainbow Six 3: Raven Shield", "game_detection": [ @@ -97075,6 +103575,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Drifter", "game_detection": [ @@ -97089,6 +103590,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Worms Reloaded", "game_detection": [ @@ -97108,6 +103610,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bunch of Heroes", "game_detection": [ @@ -97122,6 +103625,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fractal: Make Blooms Not War", "game_detection": [ @@ -97141,6 +103645,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Grand Theft Auto 2", "game_detection": [ @@ -97165,6 +103670,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "This War of Mine", "game_detection": [ @@ -97184,6 +103690,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Final Fantasy XIV Online: A Realm Reborn", "game_detection": [ @@ -97205,6 +103712,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Styx: Shards of Darkness", "game_detection": [ @@ -97219,6 +103727,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sideway: New York", "game_detection": [ @@ -97233,6 +103742,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Seal Online", "game_detection": [ @@ -97246,6 +103756,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wen Dao", "game_detection": [ @@ -97259,6 +103770,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark Souls Remastered", "game_detection": [ @@ -97272,6 +103784,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rush for Berlin: Gold Edition", "game_detection": [ @@ -97286,6 +103799,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A Mother's Inferno", "game_detection": [ @@ -97297,6 +103811,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wakfu", "game_detection": [ @@ -97330,6 +103845,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spellbreak", "game_detection": [ @@ -97341,6 +103857,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lucent Heart", "game_detection": [ @@ -97362,6 +103879,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sword of the Stars: The Pit", "game_detection": [ @@ -97376,6 +103894,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "CAPSULE", "game_detection": [ @@ -97397,6 +103916,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "F1 2016", "game_detection": [ @@ -97411,6 +103931,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hitman 2: Silent Assassin", "game_detection": [ @@ -97425,6 +103946,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Metal Slug Defense", "game_detection": [ @@ -97439,6 +103961,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Risen", "game_detection": [ @@ -97458,6 +103981,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "7,62 Hard Life", "game_detection": [ @@ -97472,6 +103996,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DoDonPachi Resurrection", "game_detection": [ @@ -97486,6 +104011,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A Game of Thrones: Genesis", "game_detection": [ @@ -97500,6 +104026,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Doc Clock: The Toasted Sandwich of Time", "game_detection": [ @@ -97514,6 +104041,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deathtrap", "game_detection": [ @@ -97528,6 +104056,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nimbus", "game_detection": [ @@ -97542,6 +104071,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zack Zero", "game_detection": [ @@ -97556,6 +104086,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shattered Suns", "game_detection": [ @@ -97568,6 +104099,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "La-Mulana 2", "game_detection": [ @@ -97581,6 +104113,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Galaxy Online", "game_detection": [ @@ -97593,6 +104126,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mortal Kombat Arcade Kollection", "game_detection": [ @@ -97607,6 +104141,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Viking: Battle for Asgard", "game_detection": [ @@ -97621,6 +104156,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hexcells", "game_detection": [ @@ -97635,6 +104171,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Crate Box", "game_detection": [ @@ -97648,6 +104185,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "StarCraft II", "game_detection": [ @@ -97667,6 +104205,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Iron Grip: Warlord", "game_detection": [ @@ -97683,6 +104222,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mystery Chronicle: One Way Heroics", "game_detection": [ @@ -97697,6 +104237,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alliance of Valiant Arms", "game_detection": [ @@ -97727,6 +104268,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GreedFall", "game_detection": [ @@ -97737,6 +104279,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Baseball Mogul 2010", "game_detection": [ @@ -97748,6 +104291,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Miscreated", "game_detection": [ @@ -97762,6 +104306,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wanderlust Adventures", "game_detection": [ @@ -97777,6 +104322,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "PARTICLE MACE", "game_detection": [ @@ -97791,6 +104337,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lead & Gold: Gangs of the Wild West", "game_detection": [ @@ -97805,6 +104352,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Day One: Garry's Incident", "game_detection": [ @@ -97819,6 +104367,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Factory Town", "game_detection": [ @@ -97829,6 +104378,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "I'm not a Monster", "game_detection": [ @@ -97839,6 +104389,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Silent Hunter 5 - Battle of the Atlantic", "game_detection": [ @@ -97858,6 +104409,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Poker Superstars II", "game_detection": [ @@ -97872,6 +104424,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Infernal", "game_detection": [ @@ -97886,6 +104439,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Final Slam 2", "game_detection": [ @@ -97900,6 +104454,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Wars: Republic Commando Demo", "game_detection": [ @@ -97916,6 +104471,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rising Thunder", "game_detection": [ @@ -97929,6 +104485,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Particulars", "game_detection": [ @@ -97948,6 +104505,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pool Nation", "game_detection": [ @@ -97962,6 +104520,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Forge Quest", "game_detection": [ @@ -97976,6 +104535,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Plastic Playground", "game_detection": [ @@ -97990,6 +104550,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Songs2See Game", "game_detection": [ @@ -98004,6 +104565,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gears Pop!", "game_detection": [ @@ -98018,6 +104580,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Might and Magic: Heroes VII – Trial by Fire", "game_detection": [ @@ -98032,6 +104595,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shadows Awakening", "game_detection": [ @@ -98042,6 +104606,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "F.E.A.R. 2: Project Origin Demo", "game_detection": [ @@ -98061,6 +104626,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "HolyBeast Online", "game_detection": [ @@ -98072,6 +104638,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fiesta", "game_detection": [ @@ -98105,6 +104672,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "G-Senjou no Maou", "game_detection": [ @@ -98119,6 +104687,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Thrillville: Off the Rails", "game_detection": [ @@ -98138,6 +104707,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "G-Force", "game_detection": [ @@ -98149,6 +104719,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Cat and the Coup", "game_detection": [ @@ -98163,6 +104734,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "StarMade", "game_detection": [ @@ -98177,6 +104749,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zhu Xian 3", "game_detection": [ @@ -98191,6 +104764,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Xpand Rally", "game_detection": [ @@ -98210,6 +104784,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "99 Spirits", "game_detection": [ @@ -98224,6 +104799,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chernobyl Underground", "game_detection": [ @@ -98235,6 +104811,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Void", "game_detection": [ @@ -98249,6 +104826,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "IL-2 Sturmovik: Cliffs of Dover", "game_detection": [ @@ -98263,6 +104841,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deer Hunter: The 2005 Season", "game_detection": [ @@ -98274,6 +104853,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "OpenTTD", "game_detection": [ @@ -98285,6 +104865,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hellgate: London", "game_detection": [ @@ -98295,6 +104876,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Metin2", "game_detection": [ @@ -98327,6 +104909,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mushroom 11", "game_detection": [ @@ -98341,6 +104924,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Iggle Pop Deluxe", "game_detection": [ @@ -98361,6 +104945,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bound by Flame", "game_detection": [ @@ -98375,6 +104960,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "London 2012: The Official Video Game Of The Olympic Games", "game_detection": [ @@ -98389,6 +104975,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rex Rocket", "game_detection": [ @@ -98403,6 +104990,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dream Chronicles", "game_detection": [ @@ -98417,6 +105005,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Papers, Please", "game_detection": [ @@ -98436,6 +105025,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Muffin Knight", "game_detection": [ @@ -98450,6 +105040,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Planetside", "game_detection": [ @@ -98494,6 +105085,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "Call of Duty Online", "game_detection": [ @@ -98507,6 +105099,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ryse: Son of Rome", "game_detection": [ @@ -98521,6 +105114,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Startopia", "game_detection": [ @@ -98540,6 +105134,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SimCity", "game_detection": [ @@ -98552,6 +105147,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "8BitMMO", "game_detection": [ @@ -98566,6 +105162,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mahjongg Investigations: Under Suspicion", "game_detection": [ @@ -98580,6 +105177,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cognition: An Erica Reed Thriller", "game_detection": [ @@ -98594,6 +105192,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Metronomicon", "game_detection": [ @@ -98609,6 +105208,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Servo", "game_detection": [ @@ -98623,6 +105223,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Might & Magic X: Legacy", "game_detection": [ @@ -98646,6 +105247,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warfare", "game_detection": [ @@ -98660,6 +105262,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Suffering", "game_detection": [ @@ -98671,6 +105274,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sonic Heroes", "game_detection": [ @@ -98684,6 +105288,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ironclads: American Civil War", "game_detection": [ @@ -98698,6 +105303,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Company of Heroes Online BETA", "game_detection": [ @@ -98711,6 +105317,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Volume Roads", "game_detection": [ @@ -98722,6 +105329,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Magic Duels: Origins", "game_detection": [ @@ -98736,6 +105344,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cypress Inheritance: The Beginning", "game_detection": [ @@ -98750,6 +105359,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Monday Night Combat", "game_detection": [ @@ -98764,6 +105374,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bayonetta", "game_detection": [ @@ -98778,6 +105389,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Thing", "game_detection": [ @@ -98789,6 +105401,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark Void Zero", "game_detection": [ @@ -98803,6 +105416,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Luxor Amun Rising", "game_detection": [ @@ -98817,6 +105431,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ride 'em Low", "game_detection": [ @@ -98831,6 +105446,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Blackwell Unbound", "game_detection": [ @@ -98850,6 +105466,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "House Flipper", "game_detection": [ @@ -98867,6 +105484,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Firewatch", "game_detection": [ @@ -98881,6 +105499,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kingdoms Rise", "game_detection": [ @@ -98895,6 +105514,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Phantom Doctrine", "game_detection": [ @@ -98908,6 +105528,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mata Hari", "game_detection": [ @@ -98922,6 +105543,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bloodstained: Curse of the Moon", "game_detection": [ @@ -98935,6 +105557,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Puzzle Kingdoms", "game_detection": [ @@ -98949,6 +105572,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Total War Battles: SHOGUN", "game_detection": [ @@ -98962,6 +105586,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GRID Demo", "game_detection": [ @@ -98973,6 +105598,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hearts", "game_detection": [ @@ -99003,6 +105629,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Hot", "game_detection": [ @@ -99028,6 +105655,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Abbey of Crime Extensum", "game_detection": [ @@ -99042,6 +105670,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Farming Simulator 15", "game_detection": [ @@ -99056,6 +105685,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Yu-Gi-Oh! Online Duel Accelerator", "game_detection": [ @@ -99067,6 +105697,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Avoid Sensory Overload", "game_detection": [ @@ -99081,6 +105712,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "Mu Online", "game_detection": [ @@ -99096,6 +105728,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "War Rock", "game_detection": [ @@ -99135,6 +105768,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "4x4 Dream Race", "game_detection": [ @@ -99149,6 +105783,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Escape Goat 2", "game_detection": [ @@ -99168,6 +105803,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Challenge", "game_detection": [ @@ -99182,6 +105818,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "World of Warplanes", "game_detection": [ @@ -99194,6 +105831,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Arsenal of Democracy", "game_detection": [ @@ -99208,6 +105846,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tibia", "game_detection": [ @@ -99219,6 +105858,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "PLAYERUNKNOWN'S BATTLEGROUNDS", "game_detection": [ @@ -99266,6 +105906,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Myth War II", "game_detection": [ @@ -99279,6 +105920,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MadOut", "game_detection": [ @@ -99293,6 +105935,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Barbarian Brawl", "game_detection": [ @@ -99307,6 +105950,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ultimate Custom Night", "game_detection": [ @@ -99320,6 +105964,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ace Combat: Assault Horizon - Enhanced Edition", "game_detection": [ @@ -99334,6 +105979,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BERSERK and the Band of the Hawk", "game_detection": [ @@ -99348,6 +105994,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battleborn", "game_detection": [ @@ -99362,6 +106009,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Point Perfect", "game_detection": [ @@ -99376,6 +106024,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stellar Impact", "game_detection": [ @@ -99397,6 +106046,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FIFA Online BETA", "game_detection": [ @@ -99409,6 +106059,7 @@ ] }, { + "force_display_capture": false, "region": "BR", "title": "Perfect World", "game_detection": [ @@ -99422,6 +106073,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Company of Heroes: Opposing Fronts", "game_detection": [ @@ -99443,6 +106095,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Viktor", "game_detection": [ @@ -99457,6 +106110,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Besiege", "game_detection": [ @@ -99476,6 +106130,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Organic Panic", "game_detection": [ @@ -99490,6 +106145,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lucid", "game_detection": [ @@ -99504,6 +106160,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead Rising", "game_detection": [ @@ -99518,6 +106175,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Space Rubbish", "game_detection": [ @@ -99529,6 +106187,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "X-COM: Terror from the Deep", "game_detection": [ @@ -99543,6 +106202,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Metal Drift", "game_detection": [ @@ -99557,6 +106217,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Space Trader: Merchant Marine", "game_detection": [ @@ -99571,6 +106232,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Delta Force: Xtreme", "game_detection": [ @@ -99590,6 +106252,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hell", "game_detection": [ @@ -99604,6 +106267,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Talos Principle", "game_detection": [ @@ -99618,6 +106282,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Life Is Strange: Before the Storm", "game_detection": [ @@ -99632,6 +106297,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RollerCoaster Tycoon 3: Wild!", "game_detection": [ @@ -99643,6 +106309,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Legends of Callasia", "game_detection": [ @@ -99657,6 +106324,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "World Basketball Tycoon", "game_detection": [ @@ -99671,6 +106339,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Danmaku Unlimited 2", "game_detection": [ @@ -99690,6 +106359,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battlefleet Gothic: Armada", "game_detection": [ @@ -99704,6 +106374,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Red Baron Arcade", "game_detection": [ @@ -99715,6 +106386,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "UFO: Afterlight", "game_detection": [ @@ -99734,6 +106406,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Chronicles of Riddick: Assault on Dark Athena", "game_detection": [ @@ -99754,6 +106427,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mad Riders", "game_detection": [ @@ -99768,6 +106442,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chronicle: RuneScape Legends", "game_detection": [ @@ -99782,6 +106457,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Two Point Hospital", "game_detection": [ @@ -99795,6 +106471,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Monster Hunter: World", "game_detection": [ @@ -99808,6 +106485,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sniper Elite: Nazi Zombie Army", "game_detection": [ @@ -99822,6 +106500,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Age of Empires II HD", "game_detection": [ @@ -99836,6 +106515,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "One Thousand Lies", "game_detection": [ @@ -99850,6 +106530,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fusion", "game_detection": [ @@ -99861,6 +106542,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wild Season", "game_detection": [ @@ -99875,6 +106557,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Wars: Starfighter", "game_detection": [ @@ -99895,6 +106578,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hand of Fate", "game_detection": [ @@ -99914,6 +106598,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeon Rushers", "game_detection": [ @@ -99928,6 +106613,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Delicious! Pretty Girls Mahjong Solitaire", "game_detection": [ @@ -99942,6 +106628,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Devilian", "game_detection": [ @@ -99980,6 +106667,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Prey", "game_detection": [ @@ -99994,6 +106682,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Containment: The Zombie Puzzler", "game_detection": [ @@ -100008,6 +106697,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kromaia", "game_detection": [ @@ -100022,6 +106712,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Woolfe: The Red Hood Diaries", "game_detection": [ @@ -100036,6 +106727,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Boson X", "game_detection": [ @@ -100051,6 +106743,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Overlord: Fellowship of Evil", "game_detection": [ @@ -100065,6 +106758,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "South Park: The Stick of Truth", "game_detection": [ @@ -100079,6 +106773,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Disgaea 5", "game_detection": [ @@ -100089,6 +106784,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Overgrowth", "game_detection": [ @@ -100108,6 +106804,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Party Hard", "game_detection": [ @@ -100122,6 +106819,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hidden Expedition: Titanic", "game_detection": [ @@ -100136,6 +106834,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Primal Fears", "game_detection": [ @@ -100150,6 +106849,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Xenonauts", "game_detection": [ @@ -100179,6 +106879,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "King of Kings III", "game_detection": [ @@ -100191,6 +106892,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mo Siang Online", "game_detection": [ @@ -100211,6 +106913,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Professor Fizzwizzle and the Molten Mystery", "game_detection": [ @@ -100225,6 +106928,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Playboy: The Mansion", "game_detection": [ @@ -100241,6 +106945,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sacred Citadel", "game_detection": [ @@ -100255,6 +106960,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "3D Ultra Minigolf Adventures", "game_detection": [ @@ -100269,6 +106975,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Freelancer", "game_detection": [ @@ -100280,6 +106987,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Last Remnant Demo", "game_detection": [ @@ -100294,6 +107002,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Divinity: Original Sin - Enhanced Edition", "game_detection": [ @@ -100308,6 +107017,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro Rugby Manager 2015", "game_detection": [ @@ -100322,6 +107032,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Afterfall Reconquest", "game_detection": [ @@ -100336,6 +107047,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "StarBreak", "game_detection": [ @@ -100350,6 +107062,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Puzzle Quest: Challenge of the Warlords", "game_detection": [ @@ -100369,6 +107082,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "Elsword", "game_detection": [ @@ -100382,6 +107096,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "AirRivals", "game_detection": [ @@ -100395,6 +107110,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Secret Files 3", "game_detection": [ @@ -100409,6 +107125,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Driv3r", "game_detection": [ @@ -100420,6 +107137,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ni no Kuni II: Revenant Kingdom", "game_detection": [ @@ -100433,6 +107151,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Etherium", "game_detection": [ @@ -100447,6 +107166,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wreckfest", "game_detection": [ @@ -100460,6 +107180,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "klocki", "game_detection": [ @@ -100474,6 +107195,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crazy Machines 2", "game_detection": [ @@ -100501,6 +107223,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Turok 2: Seeds of Evil", "game_detection": [ @@ -100527,6 +107250,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battlefield 1942: Secret Weapons of WWII", "game_detection": [ @@ -100540,6 +107264,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fantasy Wars", "game_detection": [ @@ -100551,6 +107276,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Iron Storm", "game_detection": [ @@ -100571,6 +107297,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Europa Universalis: Crown of the North", "game_detection": [ @@ -100582,6 +107309,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blood Bowl", "game_detection": [ @@ -100593,6 +107321,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Tower", "game_detection": [ @@ -100612,6 +107341,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zuma's Revenge!", "game_detection": [ @@ -100632,6 +107362,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark Age of Camelot", "game_detection": [ @@ -100645,6 +107376,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ion Assault", "game_detection": [ @@ -100659,6 +107391,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Combat Arms", "game_detection": [ @@ -100692,6 +107425,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chaos Theory", "game_detection": [ @@ -100706,6 +107440,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ride'em Low", "game_detection": [ @@ -100717,6 +107452,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Snark Busters: Welcome to the Club", "game_detection": [ @@ -100729,6 +107465,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Retro/Grade", "game_detection": [ @@ -100748,6 +107485,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fantasy Tennis 2", "game_detection": [ @@ -100760,6 +107498,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Half-Life 2: Deathmatch", "game_detection": [ @@ -100775,6 +107514,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Savage: The Battle for Newerth", "game_detection": [ @@ -100787,6 +107527,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GunZ: The Duel", "game_detection": [ @@ -100800,6 +107541,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ys II Chronicles+", "game_detection": [ @@ -100814,6 +107556,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Splice", "game_detection": [ @@ -100833,6 +107576,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "TUG", "game_detection": [ @@ -100847,6 +107591,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ceiron Wars", "game_detection": [ @@ -100858,6 +107603,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cultist Simulator", "game_detection": [ @@ -100871,6 +107617,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eschalon: Book III", "game_detection": [ @@ -100885,6 +107632,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pirates of the Caribbean: At World's End", "game_detection": [ @@ -100896,6 +107644,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Catan Online World", "game_detection": [ @@ -100914,6 +107663,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bot Colony", "game_detection": [ @@ -100928,6 +107678,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Solar 2", "game_detection": [ @@ -100946,6 +107697,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gear Up", "game_detection": [ @@ -100960,6 +107712,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Captain Morgane and the Golden Turtle", "game_detection": [ @@ -100971,6 +107724,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Depth", "game_detection": [ @@ -100985,6 +107739,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jurassic Park: The Game", "game_detection": [ @@ -100999,6 +107754,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Godus", "game_detection": [ @@ -101013,6 +107769,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead State", "game_detection": [ @@ -101027,6 +107784,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Layers of Fear", "game_detection": [ @@ -101045,6 +107803,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Resident Evil 6", "game_detection": [ @@ -101059,6 +107818,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "B.U.T.T.O.N", "game_detection": [ @@ -101073,6 +107833,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rig 'n' Roll", "game_detection": [ @@ -101087,6 +107848,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alpine Ski Racing 2007", "game_detection": [ @@ -101098,6 +107860,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Disciples: Reincarnation", "game_detection": [ @@ -101112,6 +107875,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bit.Trip Presents... Runner2: Future Legend of Rhythm Alien", "game_detection": [ @@ -101131,6 +107895,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "America's Army 3", "game_detection": [ @@ -101151,6 +107916,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Aces of the Galaxy", "game_detection": [ @@ -101165,6 +107931,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Syberia II", "game_detection": [ @@ -101190,6 +107957,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Close Combat: Gateway to Caen", "game_detection": [ @@ -101204,6 +107972,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Samorost 2", "game_detection": [ @@ -101223,6 +107992,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Magicite", "game_detection": [ @@ -101237,6 +108007,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Supreme Commander", "game_detection": [ @@ -101257,6 +108028,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kane & Lynch: Dead Men", "game_detection": [ @@ -101276,6 +108048,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Around the World in 80 Days", "game_detection": [ @@ -101287,6 +108060,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Medieval: Total War", "game_detection": [ @@ -101303,6 +108077,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SOL: Exodus", "game_detection": [ @@ -101322,6 +108097,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Resident Evil 2", "game_detection": [ @@ -101333,6 +108109,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Romero's Aftermath", "game_detection": [ @@ -101347,6 +108124,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Team Indie", "game_detection": [ @@ -101361,6 +108139,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "CrimeCraft", "game_detection": [ @@ -101390,6 +108169,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shen Wu", "game_detection": [ @@ -101403,6 +108183,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "Tree of Savior", "game_detection": [ @@ -101415,6 +108196,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Copa Petrobras de Marcas", "game_detection": [ @@ -101429,6 +108211,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "StarDrive 2", "game_detection": [ @@ -101443,6 +108226,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Season of Mystery : The Cherry Blossom Murders", "game_detection": [ @@ -101457,6 +108241,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BattleForge", "game_detection": [ @@ -101477,6 +108262,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heroes of Scene", "game_detection": [ @@ -101491,6 +108277,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LEGO Pirates of the Caribbean", "game_detection": [ @@ -101510,6 +108297,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heretic: Shadow of the Serpent Riders", "game_detection": [ @@ -101524,6 +108312,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2017", "game_detection": [ @@ -101538,6 +108327,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nightshift Legacy: The Jaguar's Eye", "game_detection": [ @@ -101552,6 +108342,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Freecell", "game_detection": [ @@ -101582,6 +108373,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Freddi Fish 3: The Case of the Stolen Conch Shell", "game_detection": [ @@ -101596,6 +108388,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lost Planet 2", "game_detection": [ @@ -101623,6 +108416,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pajama Sam: You Are What You Eat From Your Head to Your Feet", "game_detection": [ @@ -101637,6 +108431,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mission Against Terror", "game_detection": [ @@ -101649,6 +108444,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pixel Puzzles Ultimate", "game_detection": [ @@ -101663,6 +108459,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeon Runners", "game_detection": [ @@ -101674,6 +108471,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hard Reset Redux", "game_detection": [ @@ -101688,6 +108486,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Project Powder", "game_detection": [ @@ -101702,6 +108501,7 @@ ] }, { + "force_display_capture": false, "region": "DE", "title": "Forsaken World", "game_detection": [ @@ -101715,6 +108515,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Mashed: Drive to Survive", "game_detection": [ @@ -101727,6 +108528,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Titan Souls", "game_detection": [ @@ -101746,6 +108548,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Arena of Heroes", "game_detection": [ @@ -101759,6 +108562,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pacific Storm", "game_detection": [ @@ -101771,6 +108575,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ragnarok Online", "game_detection": [ @@ -101791,6 +108596,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Quest for Infamy", "game_detection": [ @@ -101810,6 +108616,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Real Warfare 1242", "game_detection": [ @@ -101824,6 +108631,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Don Bradman Cricket 14", "game_detection": [ @@ -101838,6 +108646,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Land of the Dead: Road to Fiddler's Green", "game_detection": [ @@ -101850,6 +108659,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vampire Saga: Welcome to Hell Lock", "game_detection": [ @@ -101862,6 +108672,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Demigod", "game_detection": [ @@ -101882,6 +108693,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Headlander", "game_detection": [ @@ -101896,6 +108708,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Major League Baseball 2K12", "game_detection": [ @@ -101910,6 +108723,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mystery Case Files: Escape from Ravenhearst", "game_detection": [ @@ -101922,6 +108736,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Yard Sale Hidden Treasures: Sunnyville", "game_detection": [ @@ -101936,6 +108751,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Muse Dash", "game_detection": [ @@ -101946,6 +108762,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Dawn of War II - Retribution", "game_detection": [ @@ -101960,6 +108777,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Magicka: Wizard Wars", "game_detection": [ @@ -101974,6 +108792,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Escape the Game", "game_detection": [ @@ -101989,6 +108808,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Choplifter HD", "game_detection": [ @@ -102003,6 +108823,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Tenth Line", "game_detection": [ @@ -102017,6 +108838,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Need For Speed: Underground", "game_detection": [ @@ -102033,6 +108855,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mahjong Roadshow", "game_detection": [ @@ -102047,6 +108870,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Escape from Paradise 2", "game_detection": [ @@ -102061,6 +108885,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Harold", "game_detection": [ @@ -102075,6 +108900,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeons - The Dark Lord", "game_detection": [ @@ -102089,6 +108915,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Talisman: Digital Edition", "game_detection": [ @@ -102103,6 +108930,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RPG MO", "game_detection": [ @@ -102117,6 +108945,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Enter the Matrix", "game_detection": [ @@ -102128,6 +108957,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Primordia", "game_detection": [ @@ -102142,6 +108972,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Richard & Alice Demo", "game_detection": [ @@ -102153,6 +108984,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Anodyne", "game_detection": [ @@ -102172,6 +109004,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Soldier Front", "game_detection": [ @@ -102194,6 +109027,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Archeblade", "game_detection": [ @@ -102208,6 +109042,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Always Sometimes Monsters", "game_detection": [ @@ -102222,6 +109057,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NeXus - One Core", "game_detection": [ @@ -102236,6 +109072,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shadow of the Tomb Raider", "game_detection": [ @@ -102249,6 +109086,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Immortal Unchained", "game_detection": [ @@ -102262,6 +109100,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alter Ego", "game_detection": [ @@ -102282,6 +109121,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mr. Robot", "game_detection": [ @@ -102296,6 +109136,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nuclear Dawn: Modern Combat Rising", "game_detection": [ @@ -102310,6 +109151,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mystery P.I.: The Lottery Ticket", "game_detection": [ @@ -102331,6 +109173,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Drakensang: The River of Time", "game_detection": [ @@ -102350,6 +109193,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fury", "game_detection": [ @@ -102362,6 +109206,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hoyle Puzzle & Board Games", "game_detection": [ @@ -102373,6 +109218,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The House", "game_detection": [ @@ -102387,6 +109233,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Trackmania United", "game_detection": [ @@ -102406,6 +109253,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Agarest: Generations of War Zero", "game_detection": [ @@ -102420,6 +109268,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims 2: Teen Style Stuff", "game_detection": [ @@ -102432,6 +109281,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Squirt's Adventure", "game_detection": [ @@ -102446,6 +109296,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "eSports Legend", "game_detection": [ @@ -102456,6 +109307,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vikings: Wolves of Midgard", "game_detection": [ @@ -102470,6 +109322,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hidden in Plain Sight", "game_detection": [ @@ -102484,6 +109337,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NCAA Championship Run 2006", "game_detection": [ @@ -102496,6 +109350,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fallout 76", "game_detection": [ @@ -102506,6 +109361,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hawken", "game_detection": [ @@ -102528,6 +109384,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gang Beasts", "game_detection": [ @@ -102542,6 +109399,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Perpetuum", "game_detection": [ @@ -102561,6 +109419,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rymdkapsel", "game_detection": [ @@ -102580,6 +109439,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nightbanes", "game_detection": [ @@ -102594,6 +109454,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deus Ex: Human Revolution - The Missing Link", "game_detection": [ @@ -102608,6 +109469,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nosgoth", "game_detection": [ @@ -102622,6 +109484,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims 3: Generations", "game_detection": [ @@ -102635,6 +109498,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sherlock Holmes: The Devil's Daughter", "game_detection": [ @@ -102649,6 +109513,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NingPo MahJong Deluxe", "game_detection": [ @@ -102662,6 +109527,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Age of Empires II: The Age of Kings", "game_detection": [ @@ -102673,6 +109539,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Iesabel", "game_detection": [ @@ -102687,6 +109554,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lilly Looking Through", "game_detection": [ @@ -102706,6 +109574,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mystery Case Files: Dire Grove", "game_detection": [ @@ -102718,6 +109587,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Ruler", "game_detection": [ @@ -102737,6 +109607,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Giana Sisters: Dream Runners", "game_detection": [ @@ -102751,6 +109622,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battlefleet Gothic: Armada 2", "game_detection": [ @@ -102761,6 +109633,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Godfather", "game_detection": [ @@ -102780,6 +109653,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Game of Life", "game_detection": [ @@ -102794,6 +109668,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Actua Soccer 3", "game_detection": [ @@ -102808,6 +109683,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Batman: Arkham Asylum Demo", "game_detection": [ @@ -102821,6 +109697,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "HTR+ Slot Car Simulation", "game_detection": [ @@ -102835,6 +109712,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Infinite Crisis", "game_detection": [ @@ -102889,6 +109767,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Assassin's Creed Odyssey", "game_detection": [ @@ -102911,6 +109790,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Duke Nukem 3D", "game_detection": [ @@ -102924,6 +109804,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "City of Villains", "game_detection": [ @@ -102946,6 +109827,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Technomancer", "game_detection": [ @@ -102960,6 +109842,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Thanatos", "game_detection": [ @@ -102974,6 +109857,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wolfenstein: Enemy Territory", "game_detection": [ @@ -102985,6 +109869,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kohan: Immortal Sovereigns", "game_detection": [ @@ -103004,6 +109889,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tulpa", "game_detection": [ @@ -103018,6 +109904,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Call of Duty: United Offensive Demo", "game_detection": [ @@ -103030,6 +109917,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Total War Saga: Thrones of Britannia", "game_detection": [ @@ -103043,6 +109931,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kitten Squad", "game_detection": [ @@ -103057,6 +109946,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blood of the Werewolf", "game_detection": [ @@ -103071,6 +109961,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Incredible Adventures of Van Helsing: Final Cut", "game_detection": [ @@ -103085,6 +109976,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chicken Invaders 4", "game_detection": [ @@ -103099,6 +109991,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Scania Truck Driving Simulator", "game_detection": [ @@ -103113,6 +110006,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Messenger", "game_detection": [ @@ -103126,6 +110020,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pajama Sam 4: Life Is Rough When You Lose Your Stuff!", "game_detection": [ @@ -103140,6 +110035,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dizzel", "game_detection": [ @@ -103160,6 +110056,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Incoming", "game_detection": [ @@ -103174,6 +110071,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cossacks II: Napoleonic Wars", "game_detection": [ @@ -103194,6 +110092,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Color Guardians", "game_detection": [ @@ -103208,6 +110107,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "House of the Dying Sun", "game_detection": [ @@ -103223,6 +110123,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tom Clancy's Ghost Recon: Future Soldier", "game_detection": [ @@ -103244,6 +110145,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "No More Room in Hell", "game_detection": [ @@ -103258,6 +110160,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Frostpunk", "game_detection": [ @@ -103271,6 +110174,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Operation Abyss: New Tokyo Legacy", "game_detection": [ @@ -103285,6 +110189,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Exodus from the Earth", "game_detection": [ @@ -103318,6 +110223,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nexuiz", "game_detection": [ @@ -103332,6 +110238,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hotel Dash: Suite Success", "game_detection": [ @@ -103346,6 +110253,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Goliath", "game_detection": [ @@ -103360,6 +110268,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Castle Story", "game_detection": [ @@ -103374,6 +110283,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Diehard Dungeon", "game_detection": [ @@ -103388,6 +110298,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Metro: Last Light", "game_detection": [ @@ -103402,6 +110313,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Garfield Kart", "game_detection": [ @@ -103422,6 +110334,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shadow Warrior 2", "game_detection": [ @@ -103436,6 +110349,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Volvo: The Game", "game_detection": [ @@ -103447,6 +110361,7 @@ ] }, { + "force_display_capture": false, "region": "JP", "title": "DRAMAtical Murder", "game_detection": [ @@ -103458,6 +110373,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Guild 2", "game_detection": [ @@ -103483,6 +110399,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims 2: Nightlife", "game_detection": [ @@ -103494,6 +110411,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Guns, Gore and Cannoli 2", "game_detection": [ @@ -103507,6 +110425,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Mean Greens: Plastic Warfare", "game_detection": [ @@ -103521,6 +110440,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dynomite Deluxe", "game_detection": [ @@ -103541,6 +110461,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Scoregasm", "game_detection": [ @@ -103560,6 +110481,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Brothers In Arms: Earned in Blood", "game_detection": [ @@ -103572,6 +110494,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pillars of Eternity", "game_detection": [ @@ -103591,6 +110514,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ankh", "game_detection": [ @@ -103602,6 +110526,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blight of the Immortals", "game_detection": [ @@ -103616,6 +110541,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lost World Zero", "game_detection": [ @@ -103630,6 +110556,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro Cycling Manager 2018", "game_detection": [ @@ -103640,6 +110567,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Dawn of War – Soulstorm Demo", "game_detection": [ @@ -103651,6 +110579,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crypt of the NecroDancer", "game_detection": [ @@ -103665,6 +110594,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Guardians of Atlas", "game_detection": [ @@ -103678,6 +110608,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Realm of the Titans", "game_detection": [ @@ -103692,6 +110623,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pure", "game_detection": [ @@ -103711,6 +110643,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crash Time II", "game_detection": [ @@ -103725,6 +110658,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Secret Of Hildegards", "game_detection": [ @@ -103739,6 +110673,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cosmic Osmo", "game_detection": [ @@ -103753,6 +110688,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Metal Dead", "game_detection": [ @@ -103774,6 +110710,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Next Day: Survival", "game_detection": [ @@ -103788,6 +110725,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mortal Online", "game_detection": [ @@ -103808,6 +110746,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Saboteur", "game_detection": [ @@ -103820,6 +110759,7 @@ ] }, { + "force_display_capture": false, "region": "ES", "title": "CrossFire", "game_detection": [ @@ -103834,6 +110774,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Money Tree", "game_detection": [ @@ -103848,6 +110789,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Abbey", "game_detection": [ @@ -103868,6 +110810,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Call to Arms", "game_detection": [ @@ -103882,6 +110825,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Da Vinci Code", "game_detection": [ @@ -103894,6 +110838,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Farm Frenzy 3: American Pie", "game_detection": [ @@ -103908,6 +110853,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Infestation: Survivor Stories", "game_detection": [ @@ -103928,6 +110874,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Descent", "game_detection": [ @@ -103947,6 +110894,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Starbound", "game_detection": [ @@ -103961,6 +110909,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Craft of Gods", "game_detection": [ @@ -103973,6 +110922,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Body VR", "game_detection": [ @@ -103988,6 +110938,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "WarBirds Dogfights", "game_detection": [ @@ -104000,6 +110951,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nova-111", "game_detection": [ @@ -104014,6 +110966,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Calibre 10 Racing Series", "game_detection": [ @@ -104028,6 +110981,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Project Temporality", "game_detection": [ @@ -104047,6 +111001,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Half-Life: Counter-Strike", "game_detection": [ @@ -104073,6 +111028,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Babel Rising", "game_detection": [ @@ -104087,6 +111043,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mummy Maze Deluxe", "game_detection": [ @@ -104100,6 +111057,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Supreme Ruler: Cold War", "game_detection": [ @@ -104114,6 +111072,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Emergency 2012", "game_detection": [ @@ -104128,6 +111087,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Olympia Rising", "game_detection": [ @@ -104142,6 +111102,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "WRC Powerslide", "game_detection": [ @@ -104156,6 +111117,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Saints Row 2", "game_detection": [ @@ -104170,6 +111132,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blameless", "game_detection": [ @@ -104184,6 +111147,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LEGO Minifigures: The Online Game", "game_detection": [ @@ -104205,6 +111169,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Safari Photo Africa: Wild Earth", "game_detection": [ @@ -104216,6 +111181,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tantra Online", "game_detection": [ @@ -104228,6 +111194,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Finding Teddy", "game_detection": [ @@ -104247,6 +111214,7 @@ ] }, { + "force_display_capture": false, "region": "EU", "title": "Lineage II", "game_detection": [ @@ -104260,6 +111228,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Fourth Wall", "game_detection": [ @@ -104271,6 +111240,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "EVE Valkyrie", "game_detection": [ @@ -104286,6 +111256,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tales of Vesperia: Definitive Edition", "game_detection": [ @@ -104297,6 +111268,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Angle Of Attack", "game_detection": [ @@ -104311,6 +111283,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zezenia Online", "game_detection": [ @@ -104325,6 +111298,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "2Moons", "game_detection": [ @@ -104358,6 +111332,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Overruled!", "game_detection": [ @@ -104372,6 +111347,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Just Cause 2", "game_detection": [ @@ -104386,6 +111362,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tales From The Dragon Mountain: The Strix", "game_detection": [ @@ -104400,6 +111377,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Worm.is: The Game", "game_detection": [ @@ -104414,6 +111392,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Elder Scrolls Legends", "game_detection": [ @@ -104434,6 +111413,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crush Crush", "game_detection": [ @@ -104448,6 +111428,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RACE 07: The WTCC Game", "game_detection": [ @@ -104468,6 +111449,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Outcry", "game_detection": [ @@ -104479,6 +111461,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Space Rangers HD: A War Apart", "game_detection": [ @@ -104493,6 +111476,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fritz 8: Deluxe", "game_detection": [ @@ -104505,6 +111489,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Monstrum", "game_detection": [ @@ -104524,6 +111509,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "R.U.S.E. Beta", "game_detection": [ @@ -104538,6 +111524,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cabela's Big Game Hunter: Trophy Bucks", "game_detection": [ @@ -104552,6 +111539,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Flashing Lights", "game_detection": [ @@ -104562,6 +111550,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Banner Saga 2", "game_detection": [ @@ -104576,6 +111565,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Raven's Cry", "game_detection": [ @@ -104590,6 +111580,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sid Meier's Civilization IV: Colonization", "game_detection": [ @@ -104609,6 +111600,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Darksiders II Deathinitive Edition", "game_detection": [ @@ -104623,6 +111615,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pogostuck", "game_detection": [ @@ -104633,6 +111626,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heroes of Hammerwatch", "game_detection": [ @@ -104646,6 +111640,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shattered Planet", "game_detection": [ @@ -104660,6 +111655,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "World of Goo", "game_detection": [ @@ -104684,6 +111680,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dogfight 1942", "game_detection": [ @@ -104698,6 +111695,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Absolute Poker", "game_detection": [ @@ -104709,6 +111707,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "KAMI", "game_detection": [ @@ -104723,6 +111722,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Metro Exodus", "game_detection": [ @@ -104737,6 +111737,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Colin McRae Rally", "game_detection": [ @@ -104751,6 +111752,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Avencast: Rise of the Mage", "game_detection": [ @@ -104762,6 +111764,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Wars: The Force Unleashed II", "game_detection": [ @@ -104781,6 +111784,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Urja", "game_detection": [ @@ -104795,6 +111799,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kentucky Route Zero", "game_detection": [ @@ -104814,6 +111819,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Freedom Force vs. The Third Reich", "game_detection": [ @@ -104833,6 +111839,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Total War: THREE KINGDOMS", "game_detection": [ @@ -104843,6 +111850,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "For The King", "game_detection": [ @@ -104856,6 +111864,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Half-Life 2: Substance", "game_detection": [ @@ -104871,6 +111880,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Incredible Hulk", "game_detection": [ @@ -104883,6 +111893,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Delve Deeper", "game_detection": [ @@ -104902,6 +111913,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "X5", "game_detection": [ @@ -104917,6 +111929,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dogz 4", "game_detection": [ @@ -104933,6 +111946,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Marvel Puzzle Quest: Dark Reign", "game_detection": [ @@ -104947,6 +111961,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Forza Horizon 4", "game_detection": [ @@ -104961,6 +111976,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BlazBlue Cross Tag Battle", "game_detection": [ @@ -104974,6 +111990,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tribes: Vengeance Demo", "game_detection": [ @@ -104987,6 +112004,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Incredible Adventures of Van Helsing", "game_detection": [ @@ -105015,6 +112033,7 @@ ] }, { + "force_display_capture": false, "region": "RU", "title": "APB Reloaded", "game_detection": [ @@ -105028,6 +112047,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shadowrun: Hong Kong", "game_detection": [ @@ -105052,6 +112072,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Solus Project", "game_detection": [ @@ -105066,6 +112087,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Home Sheep Home 2", "game_detection": [ @@ -105080,6 +112102,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ironclads: Schleswig War 1864", "game_detection": [ @@ -105094,6 +112117,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Sonata", "game_detection": [ @@ -105105,6 +112129,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Need for Speed: Shift", "game_detection": [ @@ -105124,6 +112149,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Paraworld", "game_detection": [ @@ -105137,6 +112163,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zoo Tycoon 2: African Adventure", "game_detection": [ @@ -105149,6 +112176,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Unreal Tournament 2004 Demo", "game_detection": [ @@ -105161,6 +112189,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Final Exam", "game_detection": [ @@ -105175,6 +112204,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "World in Conflict Demo", "game_detection": [ @@ -105187,6 +112217,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rise of Prussia Gold", "game_detection": [ @@ -105201,6 +112232,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Icons Combat Arena", "game_detection": [ @@ -105214,6 +112246,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Batman: Arkham Asylum GOTY", "game_detection": [ @@ -105234,6 +112267,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "0RBITALIS", "game_detection": [ @@ -105248,6 +112282,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "PixelJunk Shooter Ultimate", "game_detection": [ @@ -105262,6 +112297,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jones On Fire", "game_detection": [ @@ -105273,6 +112309,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zup! 2", "game_detection": [ @@ -105287,6 +112324,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Borderlands GOTY", "game_detection": [ @@ -105297,6 +112335,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Misadventures of P.B. Winterbottom", "game_detection": [ @@ -105311,6 +112350,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Skydome", "game_detection": [ @@ -105324,6 +112364,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Corum Online", "game_detection": [ @@ -105337,6 +112378,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FIFA Soccer 2003", "game_detection": [ @@ -105348,6 +112390,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead Bits", "game_detection": [ @@ -105362,6 +112405,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ionball 2: Ionstorm", "game_detection": [ @@ -105376,6 +112420,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Journey of a Roach", "game_detection": [ @@ -105395,6 +112440,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Robin Hood: The Legend Of Sherwood", "game_detection": [ @@ -105409,6 +112455,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Slavistan", "game_detection": [ @@ -105423,6 +112470,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Madden NFL 06", "game_detection": [ @@ -105435,6 +112483,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Movies: Stunts & Effects", "game_detection": [ @@ -105446,6 +112495,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BattleStick", "game_detection": [ @@ -105460,6 +112510,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Legend of Numbers", "game_detection": [ @@ -105474,6 +112525,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chuck's Challenge 3D", "game_detection": [ @@ -105488,6 +112540,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rollers of the Realm", "game_detection": [ @@ -105502,6 +112555,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "Metin", "game_detection": [ @@ -105515,6 +112569,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Outland", "game_detection": [ @@ -105529,6 +112584,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chaos on Deponia", "game_detection": [ @@ -105548,6 +112604,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LIMBO", "game_detection": [ @@ -105567,6 +112624,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Turbo Sliders", "game_detection": [ @@ -105578,6 +112636,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead by Daylight", "game_detection": [ @@ -105593,6 +112652,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Command & Conquer: Red Alert", "game_detection": [ @@ -105610,6 +112670,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Making History: The Calm and the Storm", "game_detection": [ @@ -105622,6 +112683,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Woodcutter Simulator 2013", "game_detection": [ @@ -105636,6 +112698,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dynasty Warriors 4 Hyper", "game_detection": [ @@ -105648,6 +112711,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pickers", "game_detection": [ @@ -105662,6 +112726,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spirits of Xanadu", "game_detection": [ @@ -105673,6 +112738,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Whispered World", "game_detection": [ @@ -105693,6 +112759,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kill.Switch", "game_detection": [ @@ -105706,6 +112773,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Just Survive", "game_detection": [ @@ -105720,6 +112788,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SAMURAI WARRIORS: Spirit of Sanada", "game_detection": [ @@ -105734,6 +112803,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Journey Home", "game_detection": [ @@ -105749,6 +112819,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fractured Space", "game_detection": [ @@ -105763,6 +112834,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Skyscraper Simulator", "game_detection": [ @@ -105777,6 +112849,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Doctor Who: The Eternity Clock", "game_detection": [ @@ -105791,6 +112864,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mad Games Tycoon", "game_detection": [ @@ -105805,6 +112879,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Intrusion 2", "game_detection": [ @@ -105824,6 +112899,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tales Runner", "game_detection": [ @@ -105857,6 +112933,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sandbox Evolution", "game_detection": [ @@ -105871,6 +112948,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Triblaster", "game_detection": [ @@ -105885,6 +112963,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "My Lands: Black Gem Hunting", "game_detection": [ @@ -105899,6 +112978,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Haegemonia: The Solon Heritage", "game_detection": [ @@ -105913,6 +112993,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Droplitz", "game_detection": [ @@ -105927,6 +113008,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Astonia III", "game_detection": [ @@ -105939,6 +113021,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NBA Live 07", "game_detection": [ @@ -105950,6 +113033,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nancy Drew: The Captive Curse", "game_detection": [ @@ -105964,6 +113048,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Patrician III", "game_detection": [ @@ -105978,6 +113063,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zombie Pirates", "game_detection": [ @@ -105992,6 +113078,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Strong Bad's Cool Game for Attractive People - Episode 2: Strong Badia the Free", "game_detection": [ @@ -106014,6 +113101,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Minimum", "game_detection": [ @@ -106028,6 +113116,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Exanima", "game_detection": [ @@ -106042,6 +113131,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Metal Slug 3", "game_detection": [ @@ -106056,6 +113146,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rooms: The Main Building", "game_detection": [ @@ -106070,6 +113161,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Oxygen Not Included", "game_detection": [ @@ -106084,6 +113176,7 @@ ] }, { + "force_display_capture": false, "region": "UK", "title": "Deponia", "game_detection": [ @@ -106095,6 +113188,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Men of War: Vietnam", "game_detection": [ @@ -106109,6 +113203,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Geneforge 4: Rebellion", "game_detection": [ @@ -106123,6 +113218,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Charnel House Trilogy", "game_detection": [ @@ -106137,6 +113233,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Puzzle Bots", "game_detection": [ @@ -106151,6 +113248,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Neverwinter Nights: Enhanced Edition", "game_detection": [ @@ -106164,6 +113262,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Haunt the House: Terrortown", "game_detection": [ @@ -106183,6 +113282,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Brawlhalla", "game_detection": [ @@ -106197,6 +113297,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Neverwinter Nights 2 Platinum Edition", "game_detection": [ @@ -106211,6 +113312,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Guy vs The Wicked and Nefarious Land", "game_detection": [ @@ -106222,6 +113324,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "D&D Lords of Waterdeep", "game_detection": [ @@ -106236,6 +113339,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Angry Birds Rio", "game_detection": [ @@ -106247,6 +113351,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Thang Online", "game_detection": [ @@ -106260,6 +113365,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Empire in the Sky", "game_detection": [ @@ -106271,6 +113377,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Escape from Paradise", "game_detection": [ @@ -106285,6 +113392,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "World of Guns: Gun Disassembly", "game_detection": [ @@ -106299,6 +113407,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zeno Clash", "game_detection": [ @@ -106313,6 +113422,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fable Fortune", "game_detection": [ @@ -106327,6 +113437,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Darksiders 2", "game_detection": [ @@ -106341,6 +113452,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Death and the Fly", "game_detection": [ @@ -106355,6 +113467,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cheeky Chooks", "game_detection": [ @@ -106365,6 +113478,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blade Kitten", "game_detection": [ @@ -106379,6 +113493,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Who's Your Daddy", "game_detection": [ @@ -106393,6 +113508,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cardinal Quest", "game_detection": [ @@ -106404,6 +113520,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Baseball Mogul 2011", "game_detection": [ @@ -106415,6 +113532,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Superfrog HD", "game_detection": [ @@ -106429,6 +113547,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Desktop Dungeons", "game_detection": [ @@ -106449,6 +113568,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Out of Ammo", "game_detection": [ @@ -106464,6 +113584,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kane & Lynch Dead Men Demo", "game_detection": [ @@ -106476,6 +113597,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Wolves", "game_detection": [ @@ -106490,6 +113612,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heroes of Might and Magic Online", "game_detection": [ @@ -106502,6 +113625,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ley Lines", "game_detection": [ @@ -106516,6 +113640,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shattered Haven", "game_detection": [ @@ -106530,6 +113655,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Big Money Deluxe", "game_detection": [ @@ -106550,6 +113676,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fireburst", "game_detection": [ @@ -106563,6 +113690,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deathwave", "game_detection": [ @@ -106578,6 +113706,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Leisure Suit Larry - Wet Dreams Don't Dry", "game_detection": [ @@ -106588,6 +113717,7 @@ ] }, { + "force_display_capture": false, "region": "CN", "title": "Echo Of Soul", "game_detection": [ @@ -106601,6 +113731,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Four Kings Casino and Slots", "game_detection": [ @@ -106615,6 +113746,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "How to Survive 2", "game_detection": [ @@ -106629,6 +113761,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lost Planet: Extreme Condition", "game_detection": [ @@ -106649,6 +113782,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Realms of Arkania: Star Trail", "game_detection": [ @@ -106663,6 +113797,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Baldur's Gate: Enhanced Edition", "game_detection": [ @@ -106683,6 +113818,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Golf With Friends", "game_detection": [ @@ -106697,6 +113833,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer 40,000 Dawn of War: Soulstorm", "game_detection": [ @@ -106716,6 +113853,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BMW M3 Challenge", "game_detection": [ @@ -106727,6 +113865,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Red Faction: Guerrilla", "game_detection": [ @@ -106747,6 +113886,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dogz 2", "game_detection": [ @@ -106758,6 +113898,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Devilry", "game_detection": [ @@ -106772,6 +113913,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Trials 2: Second Edition Demo", "game_detection": [ @@ -106786,6 +113928,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark Shadows - Army of Evil", "game_detection": [ @@ -106800,6 +113943,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lili: Child of Geos", "game_detection": [ @@ -106814,6 +113958,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Trials Rising", "game_detection": [ @@ -106825,6 +113970,7 @@ ] }, { + "force_display_capture": false, "region": "RU", "title": "Blade & Soul", "game_detection": [ @@ -106837,6 +113983,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Katamari Damacy REROLL", "game_detection": [ @@ -106847,6 +113994,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rock Paper Scissors Champion", "game_detection": [ @@ -106861,6 +114009,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "JollyGrim", "game_detection": [ @@ -106873,6 +114022,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shenmue", "game_detection": [ @@ -106886,6 +114036,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Slap City", "game_detection": [ @@ -106899,6 +114050,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Conquer Online", "game_detection": [ @@ -106929,6 +114081,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ring of Elysium", "game_detection": [ @@ -106943,6 +114096,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A Fistful of Gun", "game_detection": [ @@ -106957,6 +114111,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sonic the Hedgehog 4: Episode 2", "game_detection": [ @@ -106971,6 +114126,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pyramid Raid", "game_detection": [ @@ -106985,6 +114141,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Farm Frenzy 2", "game_detection": [ @@ -106999,6 +114156,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Railroad Tycoon II", "game_detection": [ @@ -107016,6 +114174,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Invisible Apartment", "game_detection": [ @@ -107030,6 +114189,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pangya", "game_detection": [ @@ -107049,6 +114209,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Section 8", "game_detection": [ @@ -107069,6 +114230,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Brazen", "game_detection": [ @@ -107088,6 +114250,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Planetbase", "game_detection": [ @@ -107102,6 +114265,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sims 2: Bon Voyage", "game_detection": [ @@ -107113,6 +114277,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Boring Man: Online Tactical Stickman Combat", "game_detection": [ @@ -107127,6 +114292,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "State of Mind", "game_detection": [ @@ -107140,6 +114306,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Battle for Wesnoth", "game_detection": [ @@ -107152,6 +114319,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crowntakers", "game_detection": [ @@ -107166,6 +114334,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Culling 2", "game_detection": [ @@ -107179,6 +114348,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Soulcaster II", "game_detection": [ @@ -107190,6 +114360,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Twisted Worlds", "game_detection": [ @@ -107204,6 +114375,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Litil Divil", "game_detection": [ @@ -107218,6 +114390,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nick", "game_detection": [ @@ -107233,6 +114406,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Time Force Ultra", "game_detection": [ @@ -107253,6 +114427,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro Cycling Manager 2015", "game_detection": [ @@ -107267,6 +114442,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Face of Mankind", "game_detection": [ @@ -107288,6 +114464,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zoo Tycoon 2: Extinct Animals", "game_detection": [ @@ -107300,6 +114477,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nine Parchments", "game_detection": [ @@ -107314,6 +114492,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "KEL Reaper of Entropy", "game_detection": [ @@ -107328,6 +114507,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ridge Racer Unbounded", "game_detection": [ @@ -107342,6 +114522,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shadow Blade: Reload", "game_detection": [ @@ -107356,6 +114537,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shatter", "game_detection": [ @@ -107370,6 +114552,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DMC: Devil May Cry", "game_detection": [ @@ -107384,6 +114567,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tropico 4 Demo", "game_detection": [ @@ -107398,6 +114582,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Desperados: Wanted Dead or Alive", "game_detection": [ @@ -107418,6 +114603,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "7.62 High Calibre", "game_detection": [ @@ -107432,6 +114618,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bloody Good Time", "game_detection": [ @@ -107446,6 +114633,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tunnel Rats", "game_detection": [ @@ -107460,6 +114648,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Emberwind", "game_detection": [ @@ -107471,6 +114660,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "State of Decay: Year One Survival Edition", "game_detection": [ @@ -107485,6 +114675,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Metal Gear Solid V: Ground Zeroes", "game_detection": [ @@ -107499,6 +114690,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eligium", "game_detection": [ @@ -107511,6 +114703,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jagged Alliance: Rage!", "game_detection": [ @@ -107521,6 +114714,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Resident Evil 3: Nemesis", "game_detection": [ @@ -107532,6 +114726,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Final Fantasy Type-0 HD", "game_detection": [ @@ -107546,6 +114741,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RHEM 3", "game_detection": [ @@ -107558,6 +114754,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Armikrog", "game_detection": [ @@ -107572,6 +114769,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Arcadia", "game_detection": [ @@ -107586,6 +114784,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "9Dragons", "game_detection": [ @@ -107597,6 +114796,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Aliens: Colonial Marines", "game_detection": [ @@ -107611,6 +114811,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "100% Orange Juice", "game_detection": [ @@ -107630,6 +114831,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Uprising44: The Silent Shadows", "game_detection": [ @@ -107644,6 +114846,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Leisure Suit Larry in the Land of the Lounge Lizards: Reloaded", "game_detection": [ @@ -107658,6 +114861,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battle Mages", "game_detection": [ @@ -107672,6 +114876,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RC Cars", "game_detection": [ @@ -107686,6 +114891,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warparty", "game_detection": [ @@ -107696,6 +114902,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Children of Orc", "game_detection": [ @@ -107710,6 +114917,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Police Stories", "game_detection": [ @@ -107720,6 +114928,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Aliens vs. Predator Classic 2000", "game_detection": [ @@ -107734,6 +114943,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "UBOAT", "game_detection": [ @@ -107748,6 +114958,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tiny Thief", "game_detection": [ @@ -107762,6 +114973,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Three Kingdoms Brawler", "game_detection": [ @@ -107774,6 +114986,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Legend of Grimrock", "game_detection": [ @@ -107805,6 +115018,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jagged Alliance Flashback", "game_detection": [ @@ -107819,6 +115033,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Halo: Spartan Assault", "game_detection": [ @@ -107833,6 +115048,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Planet Zoo", "game_detection": [ @@ -107843,6 +115059,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Starscape", "game_detection": [ @@ -107857,6 +115074,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Knightmare Tower", "game_detection": [ @@ -107871,6 +115089,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mission Runway", "game_detection": [ @@ -107885,6 +115104,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "0 A.D.", "game_detection": [ @@ -107896,6 +115116,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Arclight Cascade", "game_detection": [ @@ -107910,6 +115131,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Soccer Manager 2015", "game_detection": [ @@ -107924,6 +115146,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dishonored 2", "game_detection": [ @@ -107942,6 +115165,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Take On Helicopters", "game_detection": [ @@ -107956,6 +115180,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mystery Cruise", "game_detection": [ @@ -107968,6 +115193,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Superbrothers: Sword & Sworcery EP", "game_detection": [ @@ -107982,6 +115208,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wallace & Gromit's Grand Adventures: Episode 4: The Bogey Man", "game_detection": [ @@ -107996,6 +115223,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GIGA WRECKER", "game_detection": [ @@ -108010,6 +115238,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Speed Brawl", "game_detection": [ @@ -108020,6 +115249,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rocket Arena", "game_detection": [ @@ -108030,6 +115260,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bulb Boy", "game_detection": [ @@ -108044,6 +115275,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Daikatana", "game_detection": [ @@ -108058,6 +115290,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Age of Barbarian Extended Cut", "game_detection": [ @@ -108072,6 +115305,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Empress Of The Deep 2: Song Of The Blue Whale", "game_detection": [ @@ -108086,6 +115320,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pyre", "game_detection": [ @@ -108100,6 +115335,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Princess Remedy in a World of Hurt", "game_detection": [ @@ -108114,6 +115350,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BEEP", "game_detection": [ @@ -108127,6 +115364,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Magic Barrage", "game_detection": [ @@ -108141,6 +115379,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Frozen Free Fall: Snowball Fight", "game_detection": [ @@ -108155,6 +115394,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Towers of the Apocalypse", "game_detection": [ @@ -108166,6 +115406,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fairyland Online", "game_detection": [ @@ -108178,6 +115419,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Drift City", "game_detection": [ @@ -108191,6 +115433,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeons: The Eye of Draconus", "game_detection": [ @@ -108205,6 +115448,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battle of Empires: 1914-1918", "game_detection": [ @@ -108219,6 +115463,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spore Galactic Adventures", "game_detection": [ @@ -108239,6 +115484,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead Island: Riptide", "game_detection": [ @@ -108253,6 +115499,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heldric: The legend of the shoemaker", "game_detection": [ @@ -108267,6 +115514,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hyperdevotion Noire Goddess Black Heart", "game_detection": [ @@ -108280,6 +115528,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MameUI", "game_detection": [ @@ -108298,6 +115547,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ArmA III", "game_detection": [ @@ -108312,6 +115562,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Toki Tori 2+", "game_detection": [ @@ -108331,6 +115582,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "How To Make Your Grandpa Happy", "game_detection": [ @@ -108345,6 +115597,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cobalt", "game_detection": [ @@ -108365,6 +115618,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wizorb", "game_detection": [ @@ -108389,6 +115643,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Half-Life 2: Episode Two", "game_detection": [ @@ -108405,6 +115660,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Schrödinger’s Cat And The Raiders Of The Lost Quark", "game_detection": [ @@ -108419,6 +115675,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Doomed'n Damned", "game_detection": [ @@ -108430,6 +115687,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Friday The 13th: The Game", "game_detection": [ @@ -108444,6 +115702,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "PAC-MAN Museum", "game_detection": [ @@ -108458,6 +115717,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "America's Army: Proving Grounds", "game_detection": [ @@ -108472,6 +115732,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Deathwatch", "game_detection": [ @@ -108486,6 +115747,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zaccaria Pinball", "game_detection": [ @@ -108500,6 +115762,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Post Mortem", "game_detection": [ @@ -108514,6 +115777,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vampyr", "game_detection": [ @@ -108527,6 +115791,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Swords & Souls: Neverseen", "game_detection": [ @@ -108537,6 +115802,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Solitaire", "game_detection": [ @@ -108567,6 +115833,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Robot Rescue Revolution", "game_detection": [ @@ -108581,6 +115848,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Moonlighter", "game_detection": [ @@ -108598,6 +115866,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Helmet Heroes", "game_detection": [ @@ -108613,6 +115882,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Far Cry 2", "game_detection": [ @@ -108633,6 +115903,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Children of Liberty", "game_detection": [ @@ -108647,6 +115918,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Virtua Tennis 2009", "game_detection": [ @@ -108666,6 +115938,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ampu-Tea", "game_detection": [ @@ -108685,6 +115958,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GTR 2", "game_detection": [ @@ -108704,6 +115978,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The House of the Dead 2", "game_detection": [ @@ -108715,6 +115990,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Secret Files: Sam Peters", "game_detection": [ @@ -108729,6 +116005,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LEGO Marvel Super Heroes", "game_detection": [ @@ -108743,6 +116020,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Croixleur", "game_detection": [ @@ -108754,6 +116032,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tryst", "game_detection": [ @@ -108768,6 +116047,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Return To Mysterious Island", "game_detection": [ @@ -108787,6 +116067,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Strike.is: The Game", "game_detection": [ @@ -108802,6 +116083,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Wars Battlefront", "game_detection": [ @@ -108813,6 +116095,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nowhere", "game_detection": [ @@ -108826,6 +116109,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Peggle Nights", "game_detection": [ @@ -108846,6 +116130,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LEGO Indiana Jones: The Original Adventures", "game_detection": [ @@ -108865,6 +116150,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NBA 2K Playgrounds 2", "game_detection": [ @@ -108875,6 +116161,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Insurgency: Sandstorm", "game_detection": [ @@ -108888,6 +116175,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Marc Ecko's Getting Up: Contents Under Pressure", "game_detection": [ @@ -108907,6 +116195,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alien Shooter 2: Conscription", "game_detection": [ @@ -108921,6 +116210,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wilson Chronicles", "game_detection": [ @@ -108935,6 +116225,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "OneShot", "game_detection": [ @@ -108950,6 +116241,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "King's Quest", "game_detection": [ @@ -108964,6 +116256,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jade Empire", "game_detection": [ @@ -108975,6 +116268,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Esports Life Tycoon", "game_detection": [ @@ -108985,6 +116279,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2009", "game_detection": [ @@ -109002,6 +116297,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Autonomous", "game_detection": [ @@ -109021,6 +116317,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zone 4: Fight District", "game_detection": [ @@ -109044,6 +116341,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "War Thunder", "game_detection": [ @@ -109078,6 +116376,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "X3 Reunion", "game_detection": [ @@ -109097,6 +116396,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Need for Speed", "game_detection": [ @@ -109108,6 +116408,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Doctor Who: The Adventure Games", "game_detection": [ @@ -109122,6 +116423,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RWBY: Grimm Eclipse", "game_detection": [ @@ -109136,6 +116438,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Tomorrow War", "game_detection": [ @@ -109150,6 +116453,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "White Haven Mysteries", "game_detection": [ @@ -109164,6 +116468,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Citadels", "game_detection": [ @@ -109178,6 +116483,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wargroove", "game_detection": [ @@ -109188,6 +116494,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "6180 the moon", "game_detection": [ @@ -109199,6 +116506,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "I Can't Escape: Darkness", "game_detection": [ @@ -109213,6 +116521,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Outward", "game_detection": [ @@ -109227,6 +116536,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SpellForce 3", "game_detection": [ @@ -109241,6 +116551,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gothic II Gold Edition", "game_detection": [ @@ -109255,6 +116566,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tom Clancy's Rainbow Six: Lockdown", "game_detection": [ @@ -109266,6 +116578,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stronghold", "game_detection": [ @@ -109285,6 +116598,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Trials Fusion", "game_detection": [ @@ -109306,6 +116620,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Galaxy Control: 3D Strategy", "game_detection": [ @@ -109320,6 +116635,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tidalis", "game_detection": [ @@ -109334,6 +116650,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "FINAL FANTASY X/X-2 HD Remaster", "game_detection": [ @@ -109348,6 +116665,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Speedball 2 HD", "game_detection": [ @@ -109362,6 +116680,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Football Manager 2015", "game_detection": [ @@ -109376,6 +116695,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bloody Walls", "game_detection": [ @@ -109391,6 +116711,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pajama Sam: No Need to Hide When It's Dark Outside", "game_detection": [ @@ -109405,6 +116726,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "VR Ping Pong", "game_detection": [ @@ -109420,6 +116742,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Wars Jedi Knight: Mysteries of the Sith", "game_detection": [ @@ -109439,6 +116762,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hero Siege", "game_detection": [ @@ -109460,6 +116784,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Call of Duty: Modern Warfare 2", "game_detection": [ @@ -109482,6 +116807,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eleusis", "game_detection": [ @@ -109496,6 +116822,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Second Chance Heroes", "game_detection": [ @@ -109510,6 +116837,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Wars: Galactic Battlegrounds", "game_detection": [ @@ -109523,6 +116851,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dream Pinball 3D", "game_detection": [ @@ -109534,6 +116863,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Major League Baseball 2K9", "game_detection": [ @@ -109550,6 +116880,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Freshman Year", "game_detection": [ @@ -109564,6 +116895,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "H-Hour: World's Elite", "game_detection": [ @@ -109578,6 +116910,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pandemonium!", "game_detection": [ @@ -109592,6 +116925,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dungeon Siege II: Broken World", "game_detection": [ @@ -109603,6 +116937,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Aztaka", "game_detection": [ @@ -109614,6 +116949,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kane & Lynch 2: Dog Days", "game_detection": [ @@ -109628,6 +116964,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LEGO Marvel's Avengers", "game_detection": [ @@ -109642,6 +116979,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Wars: Empire at War Demo", "game_detection": [ @@ -109656,6 +116994,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shooting Star 2", "game_detection": [ @@ -109667,6 +117006,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mystic Saga", "game_detection": [ @@ -109681,6 +117021,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blade Wars", "game_detection": [ @@ -109694,6 +117035,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Soldier Of Fortune II: Double Helix", "game_detection": [ @@ -109712,6 +117054,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Escapists 2", "game_detection": [ @@ -109726,6 +117069,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heroes of Might and Magic V Demo", "game_detection": [ @@ -109740,6 +117084,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stock Car Extreme", "game_detection": [ @@ -109754,6 +117099,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Neon Beats", "game_detection": [ @@ -109768,6 +117114,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GridRunner Revolution", "game_detection": [ @@ -109782,6 +117129,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Car Mechanic Simulator 2018", "game_detection": [ @@ -109796,6 +117144,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Senran Kagura Estival Versus", "game_detection": [ @@ -109810,6 +117159,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Prime World", "game_detection": [ @@ -109838,6 +117188,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Block Story", "game_detection": [ @@ -109852,6 +117203,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Air Conflicts: Secret Wars", "game_detection": [ @@ -109871,6 +117223,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "18 Wheels of Steel: Across America", "game_detection": [ @@ -109885,6 +117238,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Onikira: Demon Killer", "game_detection": [ @@ -109899,6 +117253,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Escape from Paradise City", "game_detection": [ @@ -109910,6 +117265,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Call of Duty: Black Ops", "game_detection": [ @@ -109936,6 +117292,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nidhogg 2", "game_detection": [ @@ -109950,6 +117307,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Artemis: Spaceship Bridge Simulator", "game_detection": [ @@ -109964,6 +117322,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Beholder", "game_detection": [ @@ -109978,6 +117337,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kivi's Underworld", "game_detection": [ @@ -109989,6 +117349,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DGU", "game_detection": [ @@ -110003,6 +117364,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Darkest of Days", "game_detection": [ @@ -110017,6 +117379,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Midtown Madness 2", "game_detection": [ @@ -110028,6 +117391,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Legionwood 2: Rise of the Eternal's Realm", "game_detection": [ @@ -110042,6 +117406,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Journey Down: Chapter One", "game_detection": [ @@ -110061,6 +117426,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Football Director", "game_detection": [ @@ -110074,6 +117440,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battleswarm: Field of Honor", "game_detection": [ @@ -110086,6 +117453,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "PlanetSide 2", "game_detection": [ @@ -110107,6 +117475,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Alan Wake", "game_detection": [ @@ -110136,6 +117505,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "SnowBound Online", "game_detection": [ @@ -110149,6 +117519,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Carmageddon 3: TDR 2000", "game_detection": [ @@ -110160,6 +117531,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "City Life", "game_detection": [ @@ -110189,6 +117561,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Far Cry Demo", "game_detection": [ @@ -110200,6 +117573,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Riven: The Sequel to Myst", "game_detection": [ @@ -110219,6 +117593,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Trine 2", "game_detection": [ @@ -110239,6 +117614,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Saw: The Videogame", "game_detection": [ @@ -110253,6 +117629,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Freedom Force", "game_detection": [ @@ -110272,6 +117649,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hand of Fate 2", "game_detection": [ @@ -110285,6 +117663,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deadly Secrets: Art Of Murder", "game_detection": [ @@ -110296,6 +117675,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kaiju Panic", "game_detection": [ @@ -110310,6 +117690,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Total War: Attila", "game_detection": [ @@ -110324,6 +117705,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sunset Overdrive", "game_detection": [ @@ -110338,6 +117720,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warcraft III: Reign of Chaos", "game_detection": [ @@ -110358,6 +117741,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Iron Brigade", "game_detection": [ @@ -110372,6 +117756,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Steno Arcade", "game_detection": [ @@ -110386,6 +117771,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Beyond Divinity", "game_detection": [ @@ -110405,6 +117791,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Atulos Online", "game_detection": [ @@ -110419,6 +117806,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mayhem Intergalactic", "game_detection": [ @@ -110439,6 +117827,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Babo Violent 2", "game_detection": [ @@ -110450,6 +117839,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Knights of Pen & Paper +1 Edition", "game_detection": [ @@ -110469,6 +117859,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tropico 2: Pirate Cove", "game_detection": [ @@ -110489,6 +117880,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Assassin's Creed III Remastered", "game_detection": [ @@ -110499,6 +117891,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wanderlust: Rebirth", "game_detection": [ @@ -110519,6 +117912,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sakura Spirit", "game_detection": [ @@ -110533,6 +117927,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "TASTEE: Lethal Tactics", "game_detection": [ @@ -110547,6 +117942,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Override", "game_detection": [ @@ -110557,6 +117953,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Penumbra: Requiem", "game_detection": [ @@ -110577,6 +117974,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Swat 4: The Stetchkov Syndicate", "game_detection": [ @@ -110589,6 +117987,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Earth 2150", "game_detection": [ @@ -110603,6 +118002,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pajama Sam 2: Thunder and Lightning Aren't So Frightening", "game_detection": [ @@ -110617,6 +118017,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "7 Wonders of the Ancient World", "game_detection": [ @@ -110637,6 +118038,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fireworks Desert Blast", "game_detection": [ @@ -110652,6 +118054,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Blades of Time", "game_detection": [ @@ -110666,6 +118069,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "World Soccer Winning Eleven 7 International", "game_detection": [ @@ -110677,6 +118081,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Xotic", "game_detection": [ @@ -110691,6 +118096,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Black Desert", "game_detection": [ @@ -110711,6 +118117,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sam & Max Episode 105: Reality 2.0", "game_detection": [ @@ -110730,6 +118137,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "RF Online", "game_detection": [ @@ -110742,6 +118150,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Spec Ops: The Line", "game_detection": [ @@ -110756,6 +118165,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "League Of Guessing", "game_detection": [ @@ -110770,6 +118180,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shadows on the Vatican - Act I: Greed", "game_detection": [ @@ -110784,6 +118195,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "2XL Supercross", "game_detection": [ @@ -110798,6 +118210,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warlords IV", "game_detection": [ @@ -110809,6 +118222,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "WE ARE DOOMED", "game_detection": [ @@ -110820,6 +118234,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fitness Dash", "game_detection": [ @@ -110834,6 +118249,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NBA 2K18", "game_detection": [ @@ -110848,6 +118264,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Priston Tale 2: The Second Enigma", "game_detection": [ @@ -110861,6 +118278,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Crookz: The Big Heist", "game_detection": [ @@ -110875,6 +118293,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BloodRayne", "game_detection": [ @@ -110894,6 +118313,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DragonSky Online", "game_detection": [ @@ -110906,6 +118326,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hook", "game_detection": [ @@ -110920,6 +118341,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tom Clancy's Ghost Recon", "game_detection": [ @@ -110939,6 +118361,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Meltdown", "game_detection": [ @@ -110953,6 +118376,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bendy and the Ink Machine", "game_detection": [ @@ -110963,6 +118387,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Command & Conquer: Tiberian Sun", "game_detection": [ @@ -110974,6 +118399,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Meridian: Squad 22", "game_detection": [ @@ -110988,6 +118414,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Guilty Gear Xrd -SIGN-", "game_detection": [ @@ -111002,6 +118429,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Faery: Legends of Avalon", "game_detection": [ @@ -111016,6 +118444,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Magrunner: Dark Pulse", "game_detection": [ @@ -111042,6 +118471,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eternal Winter", "game_detection": [ @@ -111056,6 +118486,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Last Express", "game_detection": [ @@ -111070,6 +118501,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark Fall: The Journal", "game_detection": [ @@ -111084,6 +118516,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark Souls II", "game_detection": [ @@ -111098,6 +118531,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ballad of Solar", "game_detection": [ @@ -111112,6 +118546,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Sandbox", "game_detection": [ @@ -111126,6 +118561,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Dig", "game_detection": [ @@ -111140,6 +118576,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Unreal Tournament", "game_detection": [ @@ -111165,6 +118602,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Eufloria", "game_detection": [ @@ -111184,6 +118622,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Street Gears", "game_detection": [ @@ -111197,6 +118636,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Big Match Striker", "game_detection": [ @@ -111210,6 +118650,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Desperados 2: Cooper's Revenge", "game_detection": [ @@ -111224,6 +118665,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Haunted Memories", "game_detection": [ @@ -111238,6 +118680,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Wrath of Athena", "game_detection": [ @@ -111252,6 +118695,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rusty Hearts", "game_detection": [ @@ -111278,6 +118722,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hector: Badge of Carnage - Episode 1", "game_detection": [ @@ -111297,6 +118742,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Overcooked", "game_detection": [ @@ -111311,6 +118757,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "PAYDAY 2", "game_detection": [ @@ -111332,6 +118779,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Trek D-A-C", "game_detection": [ @@ -111346,6 +118794,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Gods and Idols", "game_detection": [ @@ -111360,6 +118809,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Black Mirror", "game_detection": [ @@ -111373,6 +118823,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kuros", "game_detection": [ @@ -111387,6 +118838,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Contract J.A.C.K.", "game_detection": [ @@ -111400,6 +118852,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Steredenn", "game_detection": [ @@ -111414,6 +118867,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Novus Inceptio", "game_detection": [ @@ -111428,6 +118882,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Dark Nexus Arena", "game_detection": [ @@ -111442,6 +118897,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Call of Cthulhu: Dark Corners Of The Earth", "game_detection": [ @@ -111462,6 +118918,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "James Bond 007: Blood Stone", "game_detection": [ @@ -111482,6 +118939,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Troy Online", "game_detection": [ @@ -111494,6 +118952,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Blackout Club", "game_detection": [ @@ -111504,6 +118963,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Carrier Command: Gaea Mission", "game_detection": [ @@ -111518,6 +118978,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bad North", "game_detection": [ @@ -111528,6 +118989,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pro-Pinball: Timeshock", "game_detection": [ @@ -111539,6 +119001,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Star Wars: Force Unleashed Sith Edition", "game_detection": [ @@ -111559,6 +119022,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Adventure Time: Pirates of the Enchiridion", "game_detection": [ @@ -111572,6 +119036,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Transformers: Fall of Cybertron", "game_detection": [ @@ -111586,6 +119051,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MX Vs. ATV: Reflex", "game_detection": [ @@ -111600,6 +119066,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Prison Architect", "game_detection": [ @@ -111623,6 +119090,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GRID 2", "game_detection": [ @@ -111637,6 +119105,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Super Meat Boy", "game_detection": [ @@ -111657,6 +119126,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Epsilon", "game_detection": [ @@ -111671,6 +119141,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sonic Adventure 2", "game_detection": [ @@ -111685,6 +119156,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zeus' Battlegrounds", "game_detection": [ @@ -111695,6 +119167,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hero Zero", "game_detection": [ @@ -111709,6 +119182,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Primordia Demo", "game_detection": [ @@ -111720,6 +119194,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ultimate Tic-Tac-Toe", "game_detection": [ @@ -111734,6 +119209,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Disciples III: Renaissance", "game_detection": [ @@ -111753,6 +119229,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Luxor: Amun Rising HD", "game_detection": [ @@ -111767,6 +119244,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Resident Evil 5", "game_detection": [ @@ -111787,6 +119265,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shadowrun: Dragonfall", "game_detection": [ @@ -111806,6 +119285,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Thief 2: The Metal Age", "game_detection": [ @@ -111825,6 +119305,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Steamworld Dig 2", "game_detection": [ @@ -111843,6 +119324,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Half-Life 2: Episode One", "game_detection": [ @@ -111859,6 +119341,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Victory Command", "game_detection": [ @@ -111880,6 +119363,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Diesel Brothers: Truck Building Simulator", "game_detection": [ @@ -111894,6 +119378,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cosmic Sugar VR", "game_detection": [ @@ -111909,6 +119394,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Capcom Beat 'Em Up Bundle", "game_detection": [ @@ -111919,6 +119405,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stealth Bastard Deluxe", "game_detection": [ @@ -111938,6 +119425,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Two Worlds Epic Edition", "game_detection": [ @@ -111952,6 +119440,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sunrider: First Arrival", "game_detection": [ @@ -111966,6 +119455,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Slender", "game_detection": [ @@ -111977,6 +119467,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cities: Skylines", "game_detection": [ @@ -111999,6 +119490,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Petz Horsez 2", "game_detection": [ @@ -112013,6 +119505,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Treasures Of Montezuma 3", "game_detection": [ @@ -112025,6 +119518,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Foundation", "game_detection": [ @@ -112035,6 +119529,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Call of Duty 4: Modern Warfare", "game_detection": [ @@ -112069,6 +119564,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "XBlaze Lost: Memories", "game_detection": [ @@ -112083,6 +119579,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Onigiri", "game_detection": [ @@ -112094,6 +119591,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "We Happy Few", "game_detection": [ @@ -112108,6 +119606,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sega Rally Revo", "game_detection": [ @@ -112137,6 +119636,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead or Alive 6", "game_detection": [ @@ -112159,6 +119659,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battle Group", "game_detection": [ @@ -112170,6 +119671,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Off-Peak", "game_detection": [ @@ -112184,6 +119686,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Commandos: Behind Enemy Lines", "game_detection": [ @@ -112211,6 +119714,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Secret Files 2", "game_detection": [ @@ -112225,6 +119729,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Far Cry New Dawn", "game_detection": [ @@ -112235,6 +119740,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "1 Moment of Time: Silentville", "game_detection": [ @@ -112246,6 +119752,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Grand Theft Auto: Episodes From Liberty City", "game_detection": [ @@ -112266,6 +119773,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bears Can't Drift!?", "game_detection": [ @@ -112280,6 +119788,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Unreal Tournament 2004", "game_detection": [ @@ -112301,6 +119810,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ride! Carnival Tycoon", "game_detection": [ @@ -112315,6 +119825,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "A Tale in the Desert", "game_detection": [ @@ -112326,6 +119837,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Viva Pinata", "game_detection": [ @@ -112338,6 +119850,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Takedown: Red Sabre", "game_detection": [ @@ -112352,6 +119865,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Heroes of the Pacific", "game_detection": [ @@ -112364,6 +119878,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fast & Furious Showdown", "game_detection": [ @@ -112378,6 +119893,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rising Eagle", "game_detection": [ @@ -112389,6 +119905,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Manhunt", "game_detection": [ @@ -112409,6 +119926,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Flockers", "game_detection": [ @@ -112424,6 +119942,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Bellows: VR", "game_detection": [ @@ -112439,6 +119958,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Amazing Spider-Man", "game_detection": [ @@ -112453,6 +119973,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stranger of Sword City", "game_detection": [ @@ -112467,6 +119988,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Knights of Pen and Paper 2", "game_detection": [ @@ -112481,6 +120003,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Naruto Shippuden: Ultimate Ninja Storm 4", "game_detection": [ @@ -112495,6 +120018,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stellaris", "game_detection": [ @@ -112517,6 +120041,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cold War", "game_detection": [ @@ -112531,6 +120056,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Awesome Adventures of Captain Spirit", "game_detection": [ @@ -112544,6 +120070,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Risen 2: Dark Waters", "game_detection": [ @@ -112557,6 +120084,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Turf Battles", "game_detection": [ @@ -112570,6 +120098,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lost Castle", "game_detection": [ @@ -112584,6 +120113,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Post Apocalyptic Mayhem", "game_detection": [ @@ -112598,6 +120128,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Panzer Elite Action: Fields of Glory", "game_detection": [ @@ -112620,6 +120151,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Men of War Beta", "game_detection": [ @@ -112631,6 +120163,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Club", "game_detection": [ @@ -112653,6 +120186,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Digital Paint: Paintball 2", "game_detection": [ @@ -112664,6 +120198,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "X3: Albion Prelude", "game_detection": [ @@ -112678,6 +120213,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Adventures of Sherlock Holmes: The Silver Earring", "game_detection": [ @@ -112692,6 +120228,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Satisfactory", "game_detection": [ @@ -112702,6 +120239,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "1503 A.D.: The New World", "game_detection": [ @@ -112713,6 +120251,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Fifth Day", "game_detection": [ @@ -112727,6 +120266,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battlepillars", "game_detection": [ @@ -112741,6 +120281,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Trackmania 2 Stadium", "game_detection": [ @@ -112755,6 +120296,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Quanero VR", "game_detection": [ @@ -112770,6 +120312,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vector", "game_detection": [ @@ -112784,6 +120327,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Maker's Eden", "game_detection": [ @@ -112798,6 +120342,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Broken Age", "game_detection": [ @@ -112817,6 +120362,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Men of Valor", "game_detection": [ @@ -112829,6 +120375,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Settlers Online", "game_detection": [ @@ -112843,6 +120390,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Frontline Tactics", "game_detection": [ @@ -112857,6 +120405,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kohan: Ahriman's Gift", "game_detection": [ @@ -112876,6 +120425,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NEKOPALIVE", "game_detection": [ @@ -112890,6 +120440,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Droid Assault", "game_detection": [ @@ -112909,6 +120460,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "ArcheAge", "game_detection": [ @@ -112923,6 +120475,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The MISSING: J.J. Macfield and the Island of Memories", "game_detection": [ @@ -112933,6 +120486,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ShellShock: Nam '67", "game_detection": [ @@ -112945,6 +120499,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "BloodRayne 2", "game_detection": [ @@ -112964,6 +120519,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "ArmA: Queen's Gambit", "game_detection": [ @@ -112976,6 +120532,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Half-Life 2: Capture the Flag", "game_detection": [ @@ -112991,6 +120548,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Golden Rush", "game_detection": [ @@ -113005,6 +120563,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Train Simulator 2016", "game_detection": [ @@ -113019,6 +120578,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Ziggurat", "game_detection": [ @@ -113033,6 +120593,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Attack on Titan", "game_detection": [ @@ -113047,6 +120608,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Final Fantasy VII", "game_detection": [ @@ -113072,6 +120634,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "UnderRail", "game_detection": [ @@ -113086,6 +120649,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Medieval Defenders", "game_detection": [ @@ -113100,6 +120664,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Half-Life: Opposing Force", "game_detection": [ @@ -113124,6 +120689,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Monsters Ate My Birthday Cake", "game_detection": [ @@ -113138,6 +120704,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fallout: New Vegas", "game_detection": [ @@ -113152,6 +120719,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Inside My Radio", "game_detection": [ @@ -113166,6 +120734,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battlefield Play4Free", "game_detection": [ @@ -113177,6 +120746,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Noita", "game_detection": [ @@ -113187,6 +120757,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "One Ship Two Ship Redshift Blueshift", "game_detection": [ @@ -113201,6 +120772,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Witcher: Enhanced Edition", "game_detection": [ @@ -113221,6 +120793,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Realms of the Haunting", "game_detection": [ @@ -113235,6 +120808,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Next Life", "game_detection": [ @@ -113247,6 +120821,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Relive", "game_detection": [ @@ -113261,6 +120836,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Solarix", "game_detection": [ @@ -113275,6 +120851,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rover Rescue", "game_detection": [ @@ -113289,6 +120866,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Skyward Collapse", "game_detection": [ @@ -113303,6 +120881,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Kinetic Void", "game_detection": [ @@ -113317,6 +120896,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "iBomber Attack", "game_detection": [ @@ -113331,6 +120911,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Myst IV: Revelation", "game_detection": [ @@ -113343,6 +120924,7 @@ ] }, { + "force_display_capture": false, "region": "KR", "title": "Sudden Attack", "game_detection": [ @@ -113355,6 +120937,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DOOM", "game_detection": [ @@ -113369,6 +120952,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead Island Retro Revenge", "game_detection": [ @@ -113383,6 +120967,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "VRChat", "game_detection": [ @@ -113396,6 +120981,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "WazHack", "game_detection": [ @@ -113410,6 +120996,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Massive Assault Network 2", "game_detection": [ @@ -113424,6 +121011,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Capsule Force", "game_detection": [ @@ -113438,6 +121026,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Time Clickers", "game_detection": [ @@ -113452,6 +121041,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Brawlout", "game_detection": [ @@ -113465,6 +121055,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Luxuria Superbia", "game_detection": [ @@ -113484,6 +121075,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Parking Dash", "game_detection": [ @@ -113498,6 +121090,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Legend of Mir", "game_detection": [ @@ -113510,6 +121103,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "18 Wheels of Steel: American Long Haul", "game_detection": [ @@ -113531,6 +121125,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Intake", "game_detection": [ @@ -113550,6 +121145,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DiRT Rally", "game_detection": [ @@ -113564,6 +121160,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Cladun X2", "game_detection": [ @@ -113578,6 +121175,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Subterrain", "game_detection": [ @@ -113592,6 +121190,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark Age of Camelot: Catacombs", "game_detection": [ @@ -113604,6 +121203,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Great Big War Game", "game_detection": [ @@ -113617,6 +121217,7 @@ ] }, { + "force_display_capture": false, "region": "RU", "title": "ArcheAge", "game_detection": [ @@ -113634,6 +121235,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Metal Reaper Online", "game_detection": [ @@ -113648,6 +121250,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Midnight Outlaw: Six Hours to Sun Up", "game_detection": [ @@ -113662,6 +121265,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "I am Bread", "game_detection": [ @@ -113676,6 +121280,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Street Fighter IV", "game_detection": [ @@ -113696,6 +121301,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "fault milestone two", "game_detection": [ @@ -113710,6 +121316,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Nancy Drew: Danger by Design", "game_detection": [ @@ -113724,6 +121331,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Fate Extella", "game_detection": [ @@ -113738,6 +121346,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jewel Quest III", "game_detection": [ @@ -113752,6 +121361,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sunless Sea", "game_detection": [ @@ -113766,6 +121376,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Plants vs Zombies: Garden Warfare 2", "game_detection": [ @@ -113777,6 +121388,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vanguard: Saga of Heroes", "game_detection": [ @@ -113833,6 +121445,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Where Angels Cry", "game_detection": [ @@ -113847,6 +121460,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Lock On: Modern Air Combat", "game_detection": [ @@ -113858,6 +121472,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Simpsons: Hit & Run", "game_detection": [ @@ -113869,6 +121484,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Coniclysm", "game_detection": [ @@ -113883,6 +121499,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Home Improvisation", "game_detection": [ @@ -113898,6 +121515,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Democracy 2", "game_detection": [ @@ -113912,6 +121530,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Monster Madness: Battle for Suburbia", "game_detection": [ @@ -113924,6 +121543,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jesus Christ RPG Trilogy", "game_detection": [ @@ -113938,6 +121558,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "LocoCycle", "game_detection": [ @@ -113952,6 +121573,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jet Set Radio", "game_detection": [ @@ -113966,6 +121588,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dead Island Riptide Definitive Edition", "game_detection": [ @@ -113980,6 +121603,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Accel World VS. Sword Art Online", "game_detection": [ @@ -113994,6 +121618,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Squad", "game_detection": [ @@ -114012,6 +121637,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Mishap: An Accidental Haunting", "game_detection": [ @@ -114026,6 +121652,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shadows: Heretic Kingdoms", "game_detection": [ @@ -114040,6 +121667,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Stepmania CVS", "game_detection": [ @@ -114051,6 +121679,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Deep Rock Galactic", "game_detection": [ @@ -114064,6 +121693,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Umbrella Corps", "game_detection": [ @@ -114078,6 +121708,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark Fall: Lost Souls", "game_detection": [ @@ -114092,6 +121723,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Valiant Hearts: The Great War", "game_detection": [ @@ -114106,6 +121738,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Shogo: Mobile Armor Division", "game_detection": [ @@ -114118,6 +121751,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Battle Chess: Game of Kings", "game_detection": [ @@ -114132,6 +121766,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Vampire: The Masquerade Bloodlines", "game_detection": [ @@ -114151,6 +121786,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dying Light Bad Blood", "game_detection": [ @@ -114164,6 +121800,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Rayman Legends", "game_detection": [ @@ -114178,6 +121815,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Tabletop Simulator", "game_detection": [ @@ -114192,6 +121830,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "StarCraft: Brood War", "game_detection": [ @@ -114205,6 +121844,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Batman Arkham Origins: Blackgate Deluxe Edition", "game_detection": [ @@ -114219,6 +121859,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Dark", "game_detection": [ @@ -114233,6 +121874,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Marvel Ultimate Alliance", "game_detection": [ @@ -114246,6 +121888,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Code of Honor: The French Foreign Legion", "game_detection": [ @@ -114258,6 +121901,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Little Witch Academia: Chamber of Time", "game_detection": [ @@ -114271,6 +121915,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GunBound: Season 3", "game_detection": [ @@ -114300,6 +121945,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Pure Pool", "game_detection": [ @@ -114315,6 +121961,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Micro Machines V4", "game_detection": [ @@ -114327,6 +121974,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Drone Zero Gravity", "game_detection": [ @@ -114341,6 +121989,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Walking Dead", "game_detection": [ @@ -114360,6 +122009,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NVIDIA VR Funhouse", "game_detection": [ @@ -114374,6 +122024,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MotoGP 14", "game_detection": [ @@ -114388,6 +122039,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Freddy Fazbear's Pizzeria Simulator", "game_detection": [ @@ -114402,6 +122054,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Jade Dynasty", "game_detection": [ @@ -114420,6 +122073,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "The Witcher 3: Wild Hunt", "game_detection": [ @@ -114439,6 +122093,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "WWE 2K18", "game_detection": [ @@ -114453,6 +122108,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Peggle World of Warcraft Edition", "game_detection": [ @@ -114464,6 +122120,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "QPang", "game_detection": [ @@ -114476,6 +122133,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "DCS: A-10C Warthog", "game_detection": [ @@ -114489,6 +122147,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Sam & Max: The Devil's Playhouse - Beyond the Alley of the Dolls", "game_detection": [ @@ -114503,6 +122162,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zup! 3", "game_detection": [ @@ -114517,6 +122177,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Chronology", "game_detection": [ @@ -114531,6 +122192,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Worlds Adrift", "game_detection": [ @@ -114541,6 +122203,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Bulletstorm", "game_detection": [ @@ -114561,6 +122224,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Painkiller: Overdose", "game_detection": [ @@ -114581,6 +122245,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Zompiercer", "game_detection": [ @@ -114594,6 +122259,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "VALORANT", "game_detection": [ @@ -114606,6 +122272,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "MO:Astray", "game_detection": [ @@ -114619,6 +122286,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "NEOVERSE", "game_detection": [ @@ -114632,6 +122300,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Hyper Jam", "game_detection": [ @@ -114645,6 +122314,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Maneater", "game_detection": [ @@ -114655,6 +122325,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Honey Select 2", "game_detection": [ @@ -114665,6 +122336,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "GUILTY GEAR -STRIVE-", "game_detection": [ @@ -114679,6 +122351,7 @@ ] }, { + "force_display_capture": false, "region": null, "title": "Borderlands Pre-Sequel", "game_detection": [ From d8b163c3e057e48fb608f5152a9da8250974c642 Mon Sep 17 00:00:00 2001 From: Segergren Date: Sat, 14 Oct 2023 18:38:25 +0200 Subject: [PATCH 3/3] Fixed MR feedback --- Classes/Services/DetectionService.cs | 10 +- Resources/detections/gameDetections.json | 7707 +--------------------- 2 files changed, 27 insertions(+), 7690 deletions(-) diff --git a/Classes/Services/DetectionService.cs b/Classes/Services/DetectionService.cs index a63ecae3..5056b444 100644 --- a/Classes/Services/DetectionService.cs +++ b/Classes/Services/DetectionService.cs @@ -419,14 +419,14 @@ public static (bool isGame, bool forceDisplayCapture, string gameTitle) IsMatche exePattern = exePatterns[z].Split('/').Last(); if (exePatterns[z].Length > 0 && Regex.IsMatch(exeFile, "^" + exePattern + "$", RegexOptions.IgnoreCase)) { Logger.WriteLine($"Regex Matched: input=\"{exeFile}\", pattern=\"^{exePattern}\"$"); - return (true, gameDetectionsJson[x].GetProperty("force_display_capture").GetBoolean(), gameDetectionsJson[x].GetProperty("title").ToString()); + return (true, HasForcedDisplayCapture(gameDetectionsJson[x]), gameDetectionsJson[x].GetProperty("title").ToString()); } } } else { if (Regex.IsMatch(exeFile, exePattern, RegexOptions.IgnoreCase)) { Logger.WriteLine($"Regex Matched: input=\"{exeFile}\", pattern=\"{exePattern}\""); - return (true, gameDetectionsJson[x].GetProperty("force_display_capture").GetBoolean(), gameDetectionsJson[x].GetProperty("title").ToString()); + return (true, HasForcedDisplayCapture(gameDetectionsJson[x]), gameDetectionsJson[x].GetProperty("title").ToString()); } } } @@ -443,6 +443,12 @@ public static (bool isGame, bool forceDisplayCapture, string gameTitle) IsMatche return (false, false, "Game Unknown"); } + public static bool HasForcedDisplayCapture(JsonElement matchedGame) { + return matchedGame.TryGetProperty("force_display_capture", out JsonElement prop) + ? prop.GetBoolean() + : false; + } + public static bool IsMatchedNonGame(string executablePath) { if (executablePath is null) return false; executablePath = executablePath.ToLower(); diff --git a/Resources/detections/gameDetections.json b/Resources/detections/gameDetections.json index 7fcd5667..183da674 100644 --- a/Resources/detections/gameDetections.json +++ b/Resources/detections/gameDetections.json @@ -1,6 +1,5 @@ [ { - "force_display_capture": false, "region": null, "title": "Roblox", "game_detection": [ @@ -19,7 +18,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Little Dragons Cafe", "game_detection": [ @@ -42,7 +40,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Paranormal State: Poison Spring", "game_detection": [ @@ -57,7 +54,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bounty Hounds Online", "game_detection": [ @@ -77,7 +73,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ninja Cats vs Samurai Dogs", "game_detection": [ @@ -92,7 +87,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rubies of Eventide", "game_detection": [ @@ -106,7 +100,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Katawa Shoujo", "game_detection": [ @@ -118,7 +111,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Golden Horde", "game_detection": [ @@ -130,7 +122,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Beat Hazard Ultra", "game_detection": [ @@ -142,7 +133,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tom Clancy's Rainbow Six Siege", "game_detection": [ @@ -185,7 +175,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Human: Fall Flat", "game_detection": [ @@ -200,7 +189,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tangledeep", "game_detection": [ @@ -214,7 +202,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NEO AQUARIUM - The King of Crustaceans -", "game_detection": [ @@ -229,7 +216,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "War of the Human Tanks", "game_detection": [ @@ -244,7 +230,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Majesty 2: The Fantasy Kingdom Sim", "game_detection": [ @@ -265,7 +250,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "World War 2: Panzer Claws", "game_detection": [ @@ -280,7 +264,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Broken Sword: The Angel of Death", "game_detection": [ @@ -292,7 +275,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Incredible Adventures of Van Helsing III", "game_detection": [ @@ -307,7 +289,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Parabellum", "game_detection": [ @@ -322,7 +303,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "You Are Not The Hero", "game_detection": [ @@ -337,7 +317,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims Pet Stories", "game_detection": [ @@ -349,7 +328,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SEGA Bass Fishing", "game_detection": [ @@ -364,7 +342,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DeathSmiles", "game_detection": [ @@ -379,7 +356,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Beyond Eyes", "game_detection": [ @@ -394,7 +370,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Diamond Dan", "game_detection": [ @@ -409,7 +384,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Conflict: Global Terror", "game_detection": [ @@ -422,7 +396,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gish", "game_detection": [ @@ -437,7 +410,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Batman: The Telltale Series", "game_detection": [ @@ -452,7 +424,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2016", "game_detection": [ @@ -467,7 +438,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pandemic Express", "game_detection": [ @@ -482,7 +452,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Temple of Elemental Evil", "game_detection": [ @@ -494,7 +463,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "WRC 2: FIA World Rally Championship", "game_detection": [ @@ -506,7 +474,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Game of Thrones", "game_detection": [ @@ -521,7 +488,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Exorcist II", "game_detection": [ @@ -535,7 +501,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Baseball Mogul 2009", "game_detection": [ @@ -547,7 +512,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Assassin's Creed: Brotherhood", "game_detection": [ @@ -568,7 +532,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Expendabros", "game_detection": [ @@ -583,7 +546,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pizza Frenzy Deluxe", "game_detection": [ @@ -604,7 +566,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Running Shadow", "game_detection": [ @@ -619,7 +580,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Experiment", "game_detection": [ @@ -631,7 +591,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Beyond Flesh and Blood", "game_detection": [ @@ -646,7 +605,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stacked with Daniel Negreanu", "game_detection": [ @@ -658,7 +616,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "D.W.A.R.F.S.", "game_detection": [ @@ -673,7 +630,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Max Payne 3", "game_detection": [ @@ -694,7 +650,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Amazing Adventures: The Lost Tomb", "game_detection": [ @@ -709,7 +664,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Assassin’s Creed Chronicles: India", "game_detection": [ @@ -724,7 +678,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Absent", "game_detection": [ @@ -739,7 +692,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gratuitous Tank Battles", "game_detection": [ @@ -754,7 +706,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Storm in a Teacup", "game_detection": [ @@ -769,7 +720,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tom Clancy's Rainbow Six: Lockdown Demo", "game_detection": [ @@ -782,7 +732,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deus Ex Human Revolution", "game_detection": [ @@ -798,7 +747,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rescue Bear Operation", "game_detection": [ @@ -813,7 +761,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Red Faction II", "game_detection": [ @@ -833,7 +780,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fantasy Grounds", "game_detection": [ @@ -848,7 +794,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pixel Boy and the Ever Expanding Dungeon", "game_detection": [ @@ -863,7 +808,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Space Empires IV Deluxe", "game_detection": [ @@ -883,7 +827,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rocksmith", "game_detection": [ @@ -898,7 +841,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heresy War Demo", "game_detection": [ @@ -910,7 +852,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chime", "game_detection": [ @@ -925,7 +866,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Critical Mass", "game_detection": [ @@ -940,7 +880,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battlefield 4", "game_detection": [ @@ -958,7 +897,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Anomaly Defenders", "game_detection": [ @@ -978,7 +916,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hot Squat", "game_detection": [ @@ -994,7 +931,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Elite Forces", "game_detection": [ @@ -1008,7 +944,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "IHF Handball Challenge 12", "game_detection": [ @@ -1023,7 +958,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Quantz", "game_detection": [ @@ -1038,7 +972,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hard to be a God", "game_detection": [ @@ -1056,7 +989,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Secret Ponchos", "game_detection": [ @@ -1071,7 +1003,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark Blood", "game_detection": [ @@ -1092,7 +1023,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shadowverse", "game_detection": [ @@ -1107,7 +1037,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FIFA 17", "game_detection": [ @@ -1119,7 +1048,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Age of Booty", "game_detection": [ @@ -1139,7 +1067,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Backstage Pass", "game_detection": [ @@ -1154,7 +1081,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Apotheon Arena", "game_detection": [ @@ -1169,7 +1095,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Syder Arcade", "game_detection": [ @@ -1184,7 +1109,6 @@ ] }, { - "force_display_capture": false, "region": "RU", "title": "Last Chaos", "game_detection": [ @@ -1198,7 +1122,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Street Fighter V", "game_detection": [ @@ -1214,7 +1137,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alan Wake's American Nightmare", "game_detection": [ @@ -1234,7 +1156,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mass Effect 2", "game_detection": [ @@ -1262,7 +1183,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Foreign Legion: Multi Massacre", "game_detection": [ @@ -1277,7 +1197,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Call of Cthulhu: The Wasted Land", "game_detection": [ @@ -1292,7 +1211,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Amnesia: Memories", "game_detection": [ @@ -1307,7 +1225,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Inside a Star-filled Sky", "game_detection": [ @@ -1321,7 +1238,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Talismania Deluxe", "game_detection": [ @@ -1343,7 +1259,6 @@ ] }, { - "force_display_capture": false, "region": "RU", "title": "Panzar", "game_detection": [ @@ -1370,7 +1285,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Senran Kagura Shinovi Versus", "game_detection": [ @@ -1385,7 +1299,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RimWorld", "game_detection": [ @@ -1408,7 +1321,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Street Fighter X Tekken", "game_detection": [ @@ -1428,7 +1340,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Indivisible", "game_detection": [ @@ -1439,7 +1350,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Cubicle.", "game_detection": [ @@ -1455,7 +1365,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Titan Quest: Immortal Throne", "game_detection": [ @@ -1480,7 +1389,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Reckless Ruckus", "game_detection": [ @@ -1495,7 +1403,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eternal Fate", "game_detection": [ @@ -1510,7 +1417,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spore Creature Creator", "game_detection": [ @@ -1523,7 +1429,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "We Need To Go Deeper", "game_detection": [ @@ -1538,7 +1443,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Soulbringer", "game_detection": [ @@ -1553,7 +1457,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Diaper Dash", "game_detection": [ @@ -1568,7 +1471,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Geometry Wars: Retro Evolved", "game_detection": [ @@ -1583,7 +1485,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Planetary Annihilation: Titans", "game_detection": [ @@ -1598,7 +1499,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rush for Berlin", "game_detection": [ @@ -1610,7 +1510,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "L.A. Noire", "game_detection": [ @@ -1631,7 +1530,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ether Saga Odyssey", "game_detection": [ @@ -1650,7 +1548,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Oh Wow an RPG Game", "game_detection": [ @@ -1662,7 +1559,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeon Defenders Eternity", "game_detection": [ @@ -1677,7 +1573,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Marvel Heroes", "game_detection": [ @@ -1706,7 +1601,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "White Noise Online", "game_detection": [ @@ -1721,7 +1615,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NBA Live 06", "game_detection": [ @@ -1733,7 +1626,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Octodad: Dadliest Catch", "game_detection": [ @@ -1754,7 +1646,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dawn of Magic", "game_detection": [ @@ -1766,7 +1657,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Painkiller Demo", "game_detection": [ @@ -1779,7 +1669,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Depth Hunter", "game_detection": [ @@ -1793,7 +1682,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fairy Fencer F Advent Dark Force", "game_detection": [ @@ -1808,7 +1696,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Free Realms", "game_detection": [ @@ -1832,7 +1719,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Quake Champions", "game_detection": [ @@ -1852,7 +1738,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spintires", "game_detection": [ @@ -1867,7 +1752,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Etherlords", "game_detection": [ @@ -1882,7 +1766,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Total War: Rome II", "game_detection": [ @@ -1897,7 +1780,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GUN", "game_detection": [ @@ -1917,7 +1799,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "TransOcean: The Shipping Company", "game_detection": [ @@ -1932,7 +1813,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zula: Europe", "game_detection": [ @@ -1943,7 +1823,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Faerie Solitaire", "game_detection": [ @@ -1958,7 +1837,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Call of Duty: Modern Warfare Remastered", "game_detection": [ @@ -1973,7 +1851,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blind Trust", "game_detection": [ @@ -1988,7 +1865,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "KrissX", "game_detection": [ @@ -2003,7 +1879,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Escape From Monkey Island", "game_detection": [ @@ -2016,7 +1891,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ReignMaker", "game_detection": [ @@ -2036,7 +1910,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ty the Tasmanian Tiger", "game_detection": [ @@ -2051,7 +1924,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SimCity 3000 Unlimited", "game_detection": [ @@ -2063,7 +1935,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cities XL", "game_detection": [ @@ -2084,7 +1955,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sekiro: Shadows Die Twice", "game_detection": [ @@ -2103,7 +1973,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sonic & All-Stars Racing Transformed", "game_detection": [ @@ -2118,7 +1987,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A Virus Named TOM", "game_detection": [ @@ -2138,7 +2006,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Terraria", "game_detection": [ @@ -2152,7 +2019,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Trapped Dead", "game_detection": [ @@ -2167,7 +2033,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Roguelands", "game_detection": [ @@ -2182,7 +2047,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Highborn", "game_detection": [ @@ -2197,7 +2061,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Earth Defense Force 5", "game_detection": [ @@ -2208,7 +2071,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Omerta: City of Gangsters Demo", "game_detection": [ @@ -2220,7 +2082,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chains", "game_detection": [ @@ -2235,7 +2096,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bit.Trip Flux", "game_detection": [ @@ -2250,7 +2110,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Storm of Vengeance", "game_detection": [ @@ -2265,7 +2124,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lumbermancer", "game_detection": [ @@ -2280,7 +2138,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "War Of The Roses", "game_detection": [ @@ -2295,7 +2152,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "For Honor", "game_detection": [ @@ -2324,7 +2180,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Angry Birds", "game_detection": [ @@ -2336,7 +2191,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pirateville", "game_detection": [ @@ -2348,7 +2202,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Divinity: Original Sin II", "game_detection": [ @@ -2363,7 +2216,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Puzzle Agent 2", "game_detection": [ @@ -2384,7 +2236,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "King's Bounty: Crossworlds", "game_detection": [ @@ -2400,7 +2251,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Infected: The Twin Vaccine", "game_detection": [ @@ -2415,7 +2265,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rock of Ages", "game_detection": [ @@ -2430,7 +2279,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Arena: Cyber Evolution", "game_detection": [ @@ -2445,7 +2293,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NBA Live 2004", "game_detection": [ @@ -2457,7 +2304,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Are You Smarter Than a 5th Grader?", "game_detection": [ @@ -2471,7 +2317,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mishap 2: An Intentional Haunting", "game_detection": [ @@ -2486,7 +2331,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "World of Padman", "game_detection": [ @@ -2503,7 +2347,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fantasy Tales Online", "game_detection": [ @@ -2518,7 +2361,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shovel Knight", "game_detection": [ @@ -2541,7 +2383,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eternal Lands", "game_detection": [ @@ -2553,7 +2394,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cossacks 3", "game_detection": [ @@ -2569,7 +2409,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Need for Speed: Hot Pursuit", "game_detection": [ @@ -2589,7 +2428,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gothic 3", "game_detection": [ @@ -2607,7 +2445,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tony Hawk's Underground 2", "game_detection": [ @@ -2620,7 +2457,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Marvellous Miss Take", "game_detection": [ @@ -2635,7 +2471,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "R.A.W. - Realms of Ancient War", "game_detection": [ @@ -2650,7 +2485,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Final Fantasy XII The Zodiac Age", "game_detection": [ @@ -2664,7 +2498,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Magic the Gathering: Battlegrounds", "game_detection": [ @@ -2677,7 +2510,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ashes Cricket 2009", "game_detection": [ @@ -2698,7 +2530,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead Realm", "game_detection": [ @@ -2713,7 +2544,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Farm Together", "game_detection": [ @@ -2724,7 +2554,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "CONSORTIUM", "game_detection": [ @@ -2746,7 +2575,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jewel Quest Heritage", "game_detection": [ @@ -2758,7 +2586,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Jonah Lomu Rugby Challenge", "game_detection": [ @@ -2773,7 +2600,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "HIT", "game_detection": [ @@ -2788,7 +2614,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chantelise: A Tale of Two Sisters", "game_detection": [ @@ -2803,7 +2628,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Magnetis", "game_detection": [ @@ -2818,7 +2642,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Guilty Gear X2 Reload", "game_detection": [ @@ -2838,7 +2661,6 @@ ] }, { - "force_display_capture": false, "region": "DE", "title": "Sniper Elite: Nazi Zombie Army 2", "game_detection": [ @@ -2853,7 +2675,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heroes of Might and Magic III", "game_detection": [ @@ -2877,7 +2698,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rush Bros.", "game_detection": [ @@ -2892,7 +2712,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Assetto Corsa", "game_detection": [ @@ -2907,7 +2726,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "XenoRaptor", "game_detection": [ @@ -2922,7 +2740,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Assassin's Creed Syndicate", "game_detection": [ @@ -2944,7 +2761,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blade Arcus from Shining: Battle Arena", "game_detection": [ @@ -2959,7 +2775,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Office", "game_detection": [ @@ -2979,7 +2794,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Grand Prix Legends", "game_detection": [ @@ -2991,7 +2805,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Clown2Beat", "game_detection": [ @@ -3006,7 +2819,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wake", "game_detection": [ @@ -3021,7 +2833,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "World of Tanks", "game_detection": [ @@ -3047,7 +2858,6 @@ ] }, { - "force_display_capture": false, "region": "TW", "title": "Blade & Soul", "game_detection": [ @@ -3064,7 +2874,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Scrabble", "game_detection": [ @@ -3079,7 +2888,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Time of Shadows", "game_detection": [ @@ -3096,7 +2904,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Synergy", "game_detection": [ @@ -3111,7 +2918,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dune 2000", "game_detection": [ @@ -3125,7 +2931,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Unending Dusk", "game_detection": [ @@ -3139,7 +2944,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deus Ex: Mankind Divided", "game_detection": [ @@ -3154,7 +2958,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Duke Nukem II", "game_detection": [ @@ -3169,7 +2972,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "2006 FIFA World Cup", "game_detection": [ @@ -3181,7 +2983,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Genesis Online", "game_detection": [ @@ -3196,7 +2997,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Konung 2", "game_detection": [ @@ -3211,7 +3011,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mirror's Edge", "game_detection": [ @@ -3232,7 +3031,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Construction Simulator 2015", "game_detection": [ @@ -3243,7 +3041,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Earth: Year 2066", "game_detection": [ @@ -3258,7 +3055,6 @@ ] }, { - "force_display_capture": false, "region": "JP", "title": "Master of Epic", "game_detection": [ @@ -3272,7 +3068,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Space Pirates and Zombies", "game_detection": [ @@ -3292,7 +3087,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wing Commander Saga: The Darkest Dawn", "game_detection": [ @@ -3306,7 +3100,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "32nd America's Cup: The Game", "game_detection": [ @@ -3319,7 +3112,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kung Fury Street Rage", "game_detection": [ @@ -3334,7 +3126,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Flower Shop: Summer In Fairbrook", "game_detection": [ @@ -3349,7 +3140,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wolfenstein 3D: Spear of Destiny", "game_detection": [ @@ -3364,7 +3154,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Drive A Steam Train", "game_detection": [ @@ -3379,7 +3168,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Winter Voices", "game_detection": [ @@ -3394,7 +3182,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Space Chimps", "game_detection": [ @@ -3407,7 +3194,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Turbo Dismount", "game_detection": [ @@ -3422,7 +3208,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Serious Sam: The Second Encounter", "game_detection": [ @@ -3442,7 +3227,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battlefield 2142", "game_detection": [ @@ -3462,7 +3246,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Skyreach", "game_detection": [ @@ -3477,7 +3260,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rise of Nations", "game_detection": [ @@ -3498,7 +3280,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Disciples II: Dark Prophecy", "game_detection": [ @@ -3510,7 +3291,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rabbit Hole 3D", "game_detection": [ @@ -3525,7 +3305,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Emerland Solitaire: Endless Journey", "game_detection": [ @@ -3540,7 +3319,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "htoL#NiQ: The Firefly Diary", "game_detection": [ @@ -3555,7 +3333,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Guardians of Orion", "game_detection": [ @@ -3570,7 +3347,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Conquest of Elysium 3", "game_detection": [ @@ -3585,7 +3361,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Turing Test", "game_detection": [ @@ -3600,7 +3375,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LEGO Star Wars II: The Original Trilogy", "game_detection": [ @@ -3612,7 +3386,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fantasy Strike", "game_detection": [ @@ -3626,7 +3399,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Might and Magic VII: For Blood & Honor", "game_detection": [ @@ -3645,7 +3417,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cinema Empire", "game_detection": [ @@ -3658,7 +3429,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Drakerz Confrontation", "game_detection": [ @@ -3673,7 +3443,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeon Siege II Demo", "game_detection": [ @@ -3686,7 +3455,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "TrackMania Turbo", "game_detection": [ @@ -3701,7 +3469,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hacker Evolution", "game_detection": [ @@ -3716,7 +3483,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nancy Drew: Secret of the Scarlet Hand", "game_detection": [ @@ -3731,7 +3497,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tom Clancy's Ghost Recon: Wildlands", "game_detection": [ @@ -3752,7 +3517,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Memory of Eldurim", "game_detection": [ @@ -3767,7 +3531,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ascension: Deckbuilding Game", "game_detection": [ @@ -3782,7 +3545,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Toxikk", "game_detection": [ @@ -3797,7 +3559,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Age of Wulin: Legend of the Nine Scrolls", "game_detection": [ @@ -3810,7 +3571,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Let It Die", "game_detection": [ @@ -3821,7 +3581,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shank 2", "game_detection": [ @@ -3836,7 +3595,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Acceleration of SUGURI X-Edition", "game_detection": [ @@ -3856,7 +3614,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crusader Kings II", "game_detection": [ @@ -3876,7 +3633,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ancients of Ooga", "game_detection": [ @@ -3901,7 +3657,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A-Race Extreme Show", "game_detection": [ @@ -3913,7 +3668,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Life is Feudal: Forest Village", "game_detection": [ @@ -3928,7 +3682,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bridge Constructor", "game_detection": [ @@ -3953,7 +3706,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Half-Life: A Place in the West", "game_detection": [ @@ -3969,7 +3721,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Oddworld: Abe's Oddysee", "game_detection": [ @@ -3994,7 +3745,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "200% Mixed Juice", "game_detection": [ @@ -4009,7 +3759,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Grand Chase Europe", "game_detection": [ @@ -4023,7 +3772,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Infectonator: Survivors", "game_detection": [ @@ -4038,7 +3786,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Driver: Parallel Lines", "game_detection": [ @@ -4058,7 +3805,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LEGO Star Wars", "game_detection": [ @@ -4070,7 +3816,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Brian's High Velocity Research Center", "game_detection": [ @@ -4086,7 +3831,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rune Classic", "game_detection": [ @@ -4101,7 +3845,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Survarium", "game_detection": [ @@ -4116,7 +3859,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A Way Out", "game_detection": [ @@ -4128,7 +3870,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DragonBall Xenoverse", "game_detection": [ @@ -4143,7 +3884,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sweet Lily Dreams", "game_detection": [ @@ -4158,7 +3898,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hitman Absolution", "game_detection": [ @@ -4173,7 +3912,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FaeVerse Alchemy", "game_detection": [ @@ -4188,7 +3926,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Awesomenauts", "game_detection": [ @@ -4210,7 +3947,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cube & Star: A Love Story", "game_detection": [ @@ -4225,7 +3961,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Survivors of Ragnarök", "game_detection": [ @@ -4238,7 +3973,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Natural Threat: Ominous Shores", "game_detection": [ @@ -4251,7 +3985,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Grand Prix 4", "game_detection": [ @@ -4263,7 +3996,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Wars Jedi Knight: Dark Forces 2", "game_detection": [ @@ -4275,7 +4007,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Brothers: A Tale of Two Sons", "game_detection": [ @@ -4290,7 +4021,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lume", "game_detection": [ @@ -4304,7 +4034,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "F1 2011", "game_detection": [ @@ -4324,7 +4053,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Killer Instinct", "game_detection": [ @@ -4344,7 +4072,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Klang", "game_detection": [ @@ -4359,7 +4086,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Penarium", "game_detection": [ @@ -4374,7 +4100,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hoyle Casino Games", "game_detection": [ @@ -4386,7 +4111,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chef", "game_detection": [ @@ -4397,7 +4121,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "And Yet It Moves", "game_detection": [ @@ -4417,7 +4140,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ys Origin", "game_detection": [ @@ -4437,7 +4159,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Shrouded Isle", "game_detection": [ @@ -4451,7 +4172,6 @@ ] }, { - "force_display_capture": false, "region": "JP", "title": "HEBEREKE!: March! Red Army Girls' Brigade", "game_detection": [ @@ -4467,7 +4187,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Leviathan: Warships", "game_detection": [ @@ -4482,7 +4201,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Forged Battalion", "game_detection": [ @@ -4496,7 +4214,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Truck Racer", "game_detection": [ @@ -4511,7 +4228,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Millennium: A New Hope", "game_detection": [ @@ -4526,7 +4242,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crysis 2", "game_detection": [ @@ -4562,7 +4277,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alpha Kimori: Great Doubt - Episode One", "game_detection": [ @@ -4577,7 +4291,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Galcon 2", "game_detection": [ @@ -4592,7 +4305,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark Space", "game_detection": [ @@ -4606,7 +4318,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Anna", "game_detection": [ @@ -4626,7 +4337,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spermination", "game_detection": [ @@ -4641,7 +4351,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Tiny Bang Story", "game_detection": [ @@ -4656,7 +4365,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "One Hour One Life", "game_detection": [ @@ -4667,7 +4375,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sorcerer King: Rivals", "game_detection": [ @@ -4682,7 +4389,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Football Manager 2009 Demo", "game_detection": [ @@ -4697,7 +4403,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GAUGE", "game_detection": [ @@ -4712,7 +4417,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "King's Bounty: Armored Princess", "game_detection": [ @@ -4732,7 +4436,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deadliest Catch: Alaskan Storm", "game_detection": [ @@ -4744,7 +4447,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Descenders", "game_detection": [ @@ -4759,7 +4461,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Catlateral Damage", "game_detection": [ @@ -4774,7 +4475,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Middle-Earth: Shadow of Mordor", "game_detection": [ @@ -4789,7 +4489,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nail'd", "game_detection": [ @@ -4804,7 +4503,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Juggernaut", "game_detection": [ @@ -4816,7 +4514,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dragon Quest XI: Echoes of an Elusive Age", "game_detection": [ @@ -4830,7 +4527,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Home", "game_detection": [ @@ -4855,7 +4551,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Steel Fury: Kharkov 1942", "game_detection": [ @@ -4867,7 +4562,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Unreal II: The Awakening", "game_detection": [ @@ -4898,7 +4592,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Move or Die", "game_detection": [ @@ -4909,7 +4602,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LiEat", "game_detection": [ @@ -4924,7 +4616,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blues and Bullets", "game_detection": [ @@ -4939,7 +4630,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blur", "game_detection": [ @@ -4959,7 +4649,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Power of Defense", "game_detection": [ @@ -4974,7 +4663,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeon Siege II", "game_detection": [ @@ -4995,7 +4683,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mad Max", "game_detection": [ @@ -5010,7 +4697,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DinerTown Tycoon", "game_detection": [ @@ -5025,7 +4711,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fire Pro Wrestling World", "game_detection": [ @@ -5039,7 +4724,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rage Runner", "game_detection": [ @@ -5054,7 +4738,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Out of the Park Baseball 12", "game_detection": [ @@ -5066,7 +4749,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cabela's Big Game Hunter: Pro Hunts", "game_detection": [ @@ -5081,7 +4763,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rooster Teeth vs. Zombiens", "game_detection": [ @@ -5096,7 +4777,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Arca Sim Racing", "game_detection": [ @@ -5108,7 +4788,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Raven Squad: Operation Hidden Dagger", "game_detection": [ @@ -5128,7 +4807,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Foul Play", "game_detection": [ @@ -5143,7 +4821,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wizard101", "game_detection": [ @@ -5156,7 +4833,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Otherland", "game_detection": [ @@ -5171,7 +4847,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Darkest Dungeon", "game_detection": [ @@ -5186,7 +4861,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Farm For Your Life", "game_detection": [ @@ -5201,7 +4875,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Velvet Assassin", "game_detection": [ @@ -5216,7 +4889,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "This Is The Police II", "game_detection": [ @@ -5230,7 +4902,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Yakuza Kiwami 2", "game_detection": [ @@ -5241,7 +4912,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Renegade X", "game_detection": [ @@ -5259,7 +4929,6 @@ ] }, { - "force_display_capture": false, "region": "ES", "title": "Alliance of Valiant Arms", "game_detection": [ @@ -5276,7 +4945,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Evil Within", "game_detection": [ @@ -5291,7 +4959,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RUINER", "game_detection": [ @@ -5306,7 +4973,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Runaway 2: The Dream of the Turtle", "game_detection": [ @@ -5321,7 +4987,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Powerpuff Girls: Defenders of Townsville", "game_detection": [ @@ -5336,7 +5001,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shattered Union", "game_detection": [ @@ -5348,7 +5012,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Devil May Cry 3: Dante's Awakening Special Edition", "game_detection": [ @@ -5367,7 +5030,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sid Meier's Ace Patrol", "game_detection": [ @@ -5382,7 +5044,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "One Piece: Burning Blood", "game_detection": [ @@ -5397,7 +5058,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Joint Operations: Typhoon Rising", "game_detection": [ @@ -5418,7 +5078,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cubemen 2", "game_detection": [ @@ -5433,7 +5092,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Space Beast Terror Fright", "game_detection": [ @@ -5448,7 +5106,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Islands of Nyne: Battle Royale", "game_detection": [ @@ -5462,7 +5119,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tomb Raider: Underworld Demo", "game_detection": [ @@ -5477,7 +5133,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Epic Arena", "game_detection": [ @@ -5492,7 +5147,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Archlord II", "game_detection": [ @@ -5506,7 +5160,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sam & Max Episode 103: The Mole, the Mob, and the Meatball", "game_detection": [ @@ -5526,7 +5179,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Secret of Mana", "game_detection": [ @@ -5540,7 +5192,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Madden NFL 20", "game_detection": [ @@ -5551,7 +5202,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Snuggle Truck", "game_detection": [ @@ -5566,7 +5216,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "WORLD END ECONOMiCA: Episode 2", "game_detection": [ @@ -5581,7 +5230,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Distant Worlds: Return of the Shakturi", "game_detection": [ @@ -5595,7 +5243,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fortress Forever", "game_detection": [ @@ -5612,7 +5259,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ghost in the Shell: Stand Alone Complex - First Assault Online", "game_detection": [ @@ -5628,7 +5274,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kal Online", "game_detection": [ @@ -5657,7 +5302,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fuego!", "game_detection": [ @@ -5672,7 +5316,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mordheim: City of the Damned", "game_detection": [ @@ -5687,7 +5330,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nicolas Eymerich: The Inquisitor - Book 1: The Plague", "game_detection": [ @@ -5702,7 +5344,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "No One Lives Forever 2", "game_detection": [ @@ -5715,7 +5356,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sherlock Holmes and The Hound of The Baskervilles", "game_detection": [ @@ -5729,7 +5369,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Putt Putt Travels Through Time", "game_detection": [ @@ -5744,7 +5383,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Paperbound", "game_detection": [ @@ -5759,7 +5397,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Don't Let Go!", "game_detection": [ @@ -5775,7 +5412,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NARUTO SHIPPUDEN: Ultimate Ninja STORM 3 - Full Burst", "game_detection": [ @@ -5790,7 +5426,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lost Planet: Extreme Condition Colonies Edition", "game_detection": [ @@ -5811,7 +5446,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Omegalodon", "game_detection": [ @@ -5831,7 +5465,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "UFO: Alien Invasion", "game_detection": [ @@ -5843,7 +5476,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gunscape", "game_detection": [ @@ -5858,7 +5490,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Subvein", "game_detection": [ @@ -5870,7 +5501,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spoids", "game_detection": [ @@ -5882,7 +5512,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Arcania: Gothic 4", "game_detection": [ @@ -5903,7 +5532,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Total Annihilation", "game_detection": [ @@ -5915,7 +5543,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FIFA 14", "game_detection": [ @@ -5927,7 +5554,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "Realm of Chaos", "game_detection": [ @@ -5941,7 +5567,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BATTALION 1944", "game_detection": [ @@ -5955,7 +5580,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Might & Magic Heroes VI", "game_detection": [ @@ -5975,7 +5599,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Myst", "game_detection": [ @@ -5987,7 +5610,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ironclads: Anglo Russian War 1866", "game_detection": [ @@ -6002,7 +5624,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Risk of Rain 2", "game_detection": [ @@ -6021,7 +5642,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Albion Online", "game_detection": [ @@ -6046,7 +5666,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sacrifice", "game_detection": [ @@ -6066,7 +5685,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Worms World Party Remastered", "game_detection": [ @@ -6081,7 +5699,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SunAge", "game_detection": [ @@ -6093,7 +5710,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Earthworm Jim 3D", "game_detection": [ @@ -6118,7 +5734,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ultimate General: Gettysburg", "game_detection": [ @@ -6133,7 +5748,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Basement Collection", "game_detection": [ @@ -6148,7 +5762,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mytheon", "game_detection": [ @@ -6162,7 +5775,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Race Cars: The Extreme Rally", "game_detection": [ @@ -6174,7 +5786,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dreamscapes: The Sandman", "game_detection": [ @@ -6189,7 +5800,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark Age of Camelot: Trials of Atlantis", "game_detection": [ @@ -6203,7 +5813,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Destination Sol", "game_detection": [ @@ -6218,7 +5827,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tank Universal", "game_detection": [ @@ -6233,7 +5841,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Horizon", "game_detection": [ @@ -6248,7 +5855,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Comanche 4", "game_detection": [ @@ -6263,7 +5869,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Unfair Jousting Fair", "game_detection": [ @@ -6278,7 +5883,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Granny in Paradise", "game_detection": [ @@ -6293,7 +5897,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tomb Raider: Anniversary", "game_detection": [ @@ -6313,7 +5916,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Jackbox Party Pack 5", "game_detection": [ @@ -6324,7 +5926,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Soul Journey", "game_detection": [ @@ -6337,7 +5938,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Demise of Nations: Rome", "game_detection": [ @@ -6352,7 +5952,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mushroom Men: Truffle Trouble", "game_detection": [ @@ -6367,7 +5966,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Full Bore: The First Dig", "game_detection": [ @@ -6382,7 +5980,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Empire: Total War", "game_detection": [ @@ -6397,7 +5994,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hollow Knight", "game_detection": [ @@ -6416,7 +6012,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SRS: Street Racing Syndicate", "game_detection": [ @@ -6431,7 +6026,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Company of Heroes: Tales of Valor", "game_detection": [ @@ -6443,7 +6037,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heroes of Might and Magic 3: Armageddon's Blade", "game_detection": [ @@ -6455,7 +6048,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nexuiz Classic", "game_detection": [ @@ -6468,7 +6060,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dracula Resurrection", "game_detection": [ @@ -6483,7 +6074,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Metal Gear Rising: Revengeance", "game_detection": [ @@ -6498,7 +6088,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Quake Live", "game_detection": [ @@ -6513,7 +6102,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "CUPID", "game_detection": [ @@ -6528,7 +6116,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Isbarah", "game_detection": [ @@ -6543,7 +6130,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Unreal", "game_detection": [ @@ -6555,7 +6141,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Command & Conquer Tiberian Sun: Firestorm", "game_detection": [ @@ -6571,7 +6156,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gumboy: Crazy Adventures", "game_detection": [ @@ -6586,7 +6170,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sam & Max Episode 203: Night of the Raving Dead", "game_detection": [ @@ -6606,7 +6189,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heva Clonia Online", "game_detection": [ @@ -6621,7 +6203,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Medieval II: Total War", "game_detection": [ @@ -6641,7 +6222,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zoo Tycoon 2: Ultimate Collection", "game_detection": [ @@ -6655,7 +6235,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sniper Elite: Nazi Zombie Army 2", "game_detection": [ @@ -6670,7 +6249,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Elemental: Fallen Enchantress", "game_detection": [ @@ -6690,7 +6268,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lightning Returns: Final Fantasy XIII", "game_detection": [ @@ -6705,7 +6282,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Victorian Admirals", "game_detection": [ @@ -6720,7 +6296,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Legends of Dawn", "game_detection": [ @@ -6735,7 +6310,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "See No Evil", "game_detection": [ @@ -6750,7 +6324,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crashday", "game_detection": [ @@ -6762,7 +6335,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sword of the Stars (Collector's Edition)", "game_detection": [ @@ -6775,7 +6347,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Panzar", "game_detection": [ @@ -6790,7 +6361,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Elements of War", "game_detection": [ @@ -6802,7 +6372,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims 2 Ultimate Collection", "game_detection": [ @@ -6814,7 +6383,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Global Ops: Commando Libya", "game_detection": [ @@ -6829,7 +6397,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Car Mechanic Simulator 2014", "game_detection": [ @@ -6844,7 +6411,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gothic 3: Forsaken Gods Enhanced Edition", "game_detection": [ @@ -6859,7 +6425,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Command & Conquer: Red Alert 3", "game_detection": [ @@ -6879,7 +6444,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A Story About My Uncle", "game_detection": [ @@ -6894,7 +6458,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Maw", "game_detection": [ @@ -6909,7 +6472,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Natural Soccer", "game_detection": [ @@ -6921,7 +6483,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2016 myClub", "game_detection": [ @@ -6936,7 +6497,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dream Pinball 3D", "game_detection": [ @@ -6951,7 +6511,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "WildStar", "game_detection": [ @@ -6973,7 +6532,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ironsight", "game_detection": [ @@ -6985,7 +6543,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Centration", "game_detection": [ @@ -7000,7 +6557,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tom Clancy's Rainbow Six 3: Athena Sword", "game_detection": [ @@ -7015,7 +6571,6 @@ ] }, { - "force_display_capture": false, "region": "RU", "title": "Allods Online", "game_detection": [ @@ -7031,7 +6586,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "9.03m", "game_detection": [ @@ -7046,7 +6600,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crash Time III", "game_detection": [ @@ -7061,7 +6614,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A-Train 9 V4.0: Japan Rail Simulator", "game_detection": [ @@ -7076,7 +6628,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zoo Tycoon 2: Marine Mania", "game_detection": [ @@ -7089,7 +6640,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NBA Live 08", "game_detection": [ @@ -7101,7 +6651,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Clash of the Monsters", "game_detection": [ @@ -7116,7 +6665,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Panzer Elite", "game_detection": [ @@ -7129,7 +6677,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dragomon Hunter", "game_detection": [ @@ -7151,7 +6698,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Yatagarasu: Attack on Cataclysm", "game_detection": [ @@ -7166,7 +6712,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gyromancer", "game_detection": [ @@ -7181,7 +6726,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sam & Max Episode 202: Moai Better Blues", "game_detection": [ @@ -7201,7 +6745,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Demolition Company", "game_detection": [ @@ -7216,7 +6759,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blockade Runner", "game_detection": [ @@ -7228,7 +6770,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "WPT: World Poker Tour", "game_detection": [ @@ -7245,7 +6786,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RoboSports VR", "game_detection": [ @@ -7261,7 +6801,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Call of Duty: Modern Warfare Remastered MP", "game_detection": [ @@ -7276,7 +6815,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Beneath The Cherry Trees", "game_detection": [ @@ -7292,7 +6830,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Slender: The Arrival", "game_detection": [ @@ -7328,7 +6865,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ANNO 2205", "game_detection": [ @@ -7350,7 +6886,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Falling Sun", "game_detection": [ @@ -7365,7 +6900,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mechwarrior 4: Mercenaries", "game_detection": [ @@ -7377,7 +6911,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Incredible Adventures of Van Helsing II", "game_detection": [ @@ -7392,7 +6925,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ride 2", "game_detection": [ @@ -7407,7 +6939,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lineage II", "game_detection": [ @@ -7448,7 +6979,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Space Rangers", "game_detection": [ @@ -7463,7 +6993,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Idle Champions of the Forgotten Realms", "game_detection": [ @@ -7474,7 +7003,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Road Not Taken", "game_detection": [ @@ -7489,7 +7017,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tembo The Badass Elephant", "game_detection": [ @@ -7504,7 +7031,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Clicker Heroes 2", "game_detection": [ @@ -7518,7 +7044,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Soul Reaver 2: Legacy of Kain", "game_detection": [ @@ -7533,7 +7058,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RACE: The Official WTCC Game", "game_detection": [ @@ -7548,7 +7072,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Red Faction", "game_detection": [ @@ -7569,7 +7092,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Quick Draw", "game_detection": [ @@ -7585,7 +7107,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Black & White 2", "game_detection": [ @@ -7597,7 +7118,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Armored Warfare", "game_detection": [ @@ -7612,7 +7132,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SC2VN: The eSports Visual Novel", "game_detection": [ @@ -7627,7 +7146,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Neverwinter Nights 2", "game_detection": [ @@ -7639,7 +7157,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gurumin: A Monstrous Adventure", "game_detection": [ @@ -7654,7 +7171,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Black Mirror III", "game_detection": [ @@ -7674,7 +7190,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wildlife Park 3", "game_detection": [ @@ -7689,7 +7204,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bloons TD Battles", "game_detection": [ @@ -7704,7 +7218,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SCP: Secret Laboratory", "game_detection": [ @@ -7718,7 +7231,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Intralism", "game_detection": [ @@ -7733,7 +7245,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Chibi Knight", "game_detection": [ @@ -7748,7 +7259,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Starlite: Astronaut Rescue", "game_detection": [ @@ -7763,7 +7273,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mevo and The Grooveriders", "game_detection": [ @@ -7778,7 +7287,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cloning Clyde", "game_detection": [ @@ -7803,7 +7311,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Might and Magic VI: Mandate of Heaven", "game_detection": [ @@ -7823,7 +7330,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Unclaimed World", "game_detection": [ @@ -7838,7 +7344,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Wolves 2", "game_detection": [ @@ -7853,7 +7358,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ys SEVEN", "game_detection": [ @@ -7868,7 +7372,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "PewDiePie: Legend of the Brofist", "game_detection": [ @@ -7883,7 +7386,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LoveBeat", "game_detection": [ @@ -7898,7 +7400,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Raid: Shadow Legends", "game_detection": [ @@ -7909,7 +7410,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hazen: Episode I - The Dark Whispers", "game_detection": [ @@ -7924,7 +7424,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Uplink: Hacker Elite", "game_detection": [ @@ -7951,7 +7450,6 @@ ] }, { - "force_display_capture": false, "region": "RU", "title": "Siege Online", "game_detection": [ @@ -7965,7 +7463,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alien Arena 2011", "game_detection": [ @@ -7977,7 +7474,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pyroblazer", "game_detection": [ @@ -7992,7 +7488,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Oozi: Earth Adventure", "game_detection": [ @@ -8007,7 +7502,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Farmville 2", "game_detection": [ @@ -8018,7 +7512,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alien Swarm: Reactive Drop", "game_detection": [ @@ -8033,7 +7526,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Egyptian Prophecy", "game_detection": [ @@ -8048,7 +7540,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Towns", "game_detection": [ @@ -8075,7 +7566,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Manhole", "game_detection": [ @@ -8090,7 +7580,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Batman: The Enemy Within - The Telltale Series", "game_detection": [ @@ -8105,7 +7594,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Treasures of Montezuma 4", "game_detection": [ @@ -8120,7 +7608,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Clan of Champions", "game_detection": [ @@ -8135,7 +7622,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shift 2 Unleashed", "game_detection": [ @@ -8155,7 +7641,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crusaders of the Lost Idols", "game_detection": [ @@ -8170,7 +7655,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jack Keane 2: The Fire Within", "game_detection": [ @@ -8185,7 +7669,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cattails", "game_detection": [ @@ -8200,7 +7683,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Puzzle Chronicles", "game_detection": [ @@ -8215,7 +7697,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Universe Sandbox ²", "game_detection": [ @@ -8230,7 +7711,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battleship", "game_detection": [ @@ -8245,7 +7725,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "APB Reloaded", "game_detection": [ @@ -8266,7 +7745,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Surviving Mars", "game_detection": [ @@ -8277,7 +7755,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Street Legal Racing: Redline", "game_detection": [ @@ -8292,7 +7769,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Evopollution", "game_detection": [ @@ -8307,7 +7783,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Granny 4", "game_detection": [ @@ -8322,7 +7797,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FX Football", "game_detection": [ @@ -8337,7 +7811,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sub Command", "game_detection": [ @@ -8352,7 +7825,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nancy Drew: Trail of the Twister", "game_detection": [ @@ -8367,7 +7839,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Castle: Never Judge a Book by its Cover", "game_detection": [ @@ -8382,7 +7853,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blitzkrieg 3", "game_detection": [ @@ -8397,7 +7867,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Your Doodles Are Bugged!", "game_detection": [ @@ -8412,7 +7881,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Syberia", "game_detection": [ @@ -8438,7 +7906,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Caesar III", "game_detection": [ @@ -8451,7 +7918,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ghostbusters: The Video Game", "game_detection": [ @@ -8471,7 +7937,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "N++", "game_detection": [ @@ -8486,7 +7951,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Evolve", "game_detection": [ @@ -8501,7 +7965,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Trine 2 Beta", "game_detection": [ @@ -8516,7 +7979,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battle for Blood", "game_detection": [ @@ -8531,7 +7993,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Metal Gear Solid 2: Substance", "game_detection": [ @@ -8544,7 +8005,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Canabalt", "game_detection": [ @@ -8564,7 +8024,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Ghost Recon Phantoms", "game_detection": [ @@ -8594,7 +8053,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blackthorne", "game_detection": [ @@ -8606,7 +8064,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mashed", "game_detection": [ @@ -8621,7 +8078,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Revolution Ace", "game_detection": [ @@ -8636,7 +8092,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nearwood", "game_detection": [ @@ -8651,7 +8106,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blood Bowl: Chaos Edition", "game_detection": [ @@ -8666,7 +8120,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fieldrunners 2", "game_detection": [ @@ -8686,7 +8139,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "PULSAR: Lost Colony", "game_detection": [ @@ -8701,7 +8153,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zoo Tycoon", "game_detection": [ @@ -8713,7 +8164,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Wars: Battle for Naboo", "game_detection": [ @@ -8726,7 +8176,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Legend of Kay Anniversary", "game_detection": [ @@ -8741,7 +8190,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Data Jammers: FastForward", "game_detection": [ @@ -8756,7 +8204,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Armies of Exigo Demo", "game_detection": [ @@ -8769,7 +8216,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sorcery Saga: Curse of the Great Curry God", "game_detection": [ @@ -8783,7 +8229,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Monster Jam", "game_detection": [ @@ -8798,7 +8243,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Oknytt", "game_detection": [ @@ -8813,7 +8257,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Walking Dead: Survival Instinct", "game_detection": [ @@ -8828,7 +8271,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sokobond", "game_detection": [ @@ -8848,7 +8290,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Championship Manager 2010", "game_detection": [ @@ -8861,7 +8302,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tales Of Maj'Eyal", "game_detection": [ @@ -8881,7 +8321,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NEOTOKYO", "game_detection": [ @@ -8896,7 +8335,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Commander: Conquest of the Americas", "game_detection": [ @@ -8911,7 +8349,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cossacks: European Wars", "game_detection": [ @@ -8926,7 +8363,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lazerbait", "game_detection": [ @@ -8942,7 +8378,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bad Day L.A.", "game_detection": [ @@ -8954,7 +8389,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Element4l", "game_detection": [ @@ -8969,7 +8403,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Everquest", "game_detection": [ @@ -9032,7 +8465,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hidden Source", "game_detection": [ @@ -9048,7 +8480,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Guilty Gear XX Λ Core Plus R", "game_detection": [ @@ -9063,7 +8494,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Medieval II: Total War Demo", "game_detection": [ @@ -9076,7 +8506,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Patrician IV", "game_detection": [ @@ -9091,7 +8520,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eternity's Child", "game_detection": [ @@ -9106,7 +8534,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alien Spidy", "game_detection": [ @@ -9121,7 +8548,6 @@ ] }, { - "force_display_capture": false, "region": "BR", "title": "M.A.R.S", "game_detection": [ @@ -9135,7 +8561,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Grand Theft Auto: Vice City", "game_detection": [ @@ -9155,7 +8580,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "PRICE", "game_detection": [ @@ -9170,7 +8594,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cortex Command", "game_detection": [ @@ -9195,7 +8618,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Huntsman: The Orphanage", "game_detection": [ @@ -9210,7 +8632,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Planeshift", "game_detection": [ @@ -9223,7 +8644,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Virtua Tennis 3", "game_detection": [ @@ -9235,7 +8655,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "Chaos Online", "game_detection": [ @@ -9248,7 +8667,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tales of Adventure 2", "game_detection": [ @@ -9263,7 +8681,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "STASIS", "game_detection": [ @@ -9278,7 +8695,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blue Estate: The Game", "game_detection": [ @@ -9293,7 +8709,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Contraption Maker", "game_detection": [ @@ -9308,7 +8723,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "No Pineapple Left Behind", "game_detection": [ @@ -9323,7 +8737,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Allods Online", "game_detection": [ @@ -9345,7 +8758,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fable Anniversary", "game_detection": [ @@ -9360,7 +8772,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FX Eleven", "game_detection": [ @@ -9375,7 +8786,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fuel", "game_detection": [ @@ -9396,7 +8806,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Championship Manager: Season 03/04", "game_detection": [ @@ -9408,7 +8817,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heavy Weapon Deluxe", "game_detection": [ @@ -9429,7 +8837,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Iron Grip: Marauders", "game_detection": [ @@ -9444,7 +8851,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vampires: Guide Them to Safety!", "game_detection": [ @@ -9459,7 +8865,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heroes of Might and Magic V: Tribes of the East", "game_detection": [ @@ -9484,7 +8889,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ravaged", "game_detection": [ @@ -9499,7 +8903,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blair Witch", "game_detection": [ @@ -9510,7 +8913,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Allumette", "game_detection": [ @@ -9526,7 +8928,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Half-life: Source", "game_detection": [ @@ -9543,7 +8944,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "Warface", "game_detection": [ @@ -9556,7 +8956,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "StarCraft", "game_detection": [ @@ -9569,7 +8968,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kill The Bad Guy", "game_detection": [ @@ -9589,7 +8987,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Counting Kingdom", "game_detection": [ @@ -9604,7 +9001,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rescue HQ - The Tycoon", "game_detection": [ @@ -9615,7 +9011,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kritika Online", "game_detection": [ @@ -9629,7 +9024,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cooking Dash", "game_detection": [ @@ -9644,7 +9038,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Immortal Cities: Children Of The Nile", "game_detection": [ @@ -9664,7 +9057,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Without Within", "game_detection": [ @@ -9679,7 +9071,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Entropia Universe", "game_detection": [ @@ -9705,7 +9096,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims 2 Deluxe", "game_detection": [ @@ -9717,7 +9107,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer: Mark Of Chaos Demo", "game_detection": [ @@ -9730,7 +9119,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "Glamour of Sparkle", "game_detection": [ @@ -9758,7 +9146,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ultimate Spider-Man", "game_detection": [ @@ -9770,7 +9157,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tradewinds Classic", "game_detection": [ @@ -9785,7 +9171,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Command: Modern Air/ Naval Operations", "game_detection": [ @@ -9800,7 +9185,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NHL 2004", "game_detection": [ @@ -9812,7 +9196,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Devastation", "game_detection": [ @@ -9824,7 +9207,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Greed Corp", "game_detection": [ @@ -9844,7 +9226,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Half Minute Hero: Super Mega Neo Climax Ultimate Boy", "game_detection": [ @@ -9859,7 +9240,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spy Fox in Cheese Chase", "game_detection": [ @@ -9874,7 +9254,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BlackSite: Area 51", "game_detection": [ @@ -9887,7 +9266,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RollerCoaster Tycoon 3 Platinum", "game_detection": [ @@ -9902,7 +9280,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zoo Rampage", "game_detection": [ @@ -9917,7 +9294,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Unsigned", "game_detection": [ @@ -9929,7 +9305,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Analogue: A Hate Story", "game_detection": [ @@ -9943,7 +9318,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Power-Up", "game_detection": [ @@ -9958,7 +9332,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "WarSide", "game_detection": [ @@ -9973,7 +9346,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Back To Life 2", "game_detection": [ @@ -9988,7 +9360,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Reus", "game_detection": [ @@ -10008,7 +9379,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Puzzle Quest: Galactrix Demo", "game_detection": [ @@ -10021,7 +9391,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Puzzlegeddon", "game_detection": [ @@ -10042,7 +9411,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Guacamelee! 2", "game_detection": [ @@ -10053,7 +9421,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Call of Duty: Black Ops II", "game_detection": [ @@ -10084,7 +9451,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Steel & Steam", "game_detection": [ @@ -10099,7 +9465,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blackwell's Asylum Demo", "game_detection": [ @@ -10114,7 +9479,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Falcon 4.0: Allied Force", "game_detection": [ @@ -10126,7 +9490,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead Meets Lead", "game_detection": [ @@ -10138,7 +9501,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fight of Gods", "game_detection": [ @@ -10153,7 +9515,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Moon Hunters", "game_detection": [ @@ -10168,7 +9529,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Forgotten Realms: Demon Stone", "game_detection": [ @@ -10187,7 +9547,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zu Online", "game_detection": [ @@ -10201,7 +9560,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Galactic Civilizations II: Dread Lords", "game_detection": [ @@ -10213,7 +9571,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Argo", "game_detection": [ @@ -10228,7 +9585,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heroes of Shadow Guard", "game_detection": [ @@ -10243,7 +9599,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Back to Dinosaur Island", "game_detection": [ @@ -10258,7 +9613,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Raiden Legacy", "game_detection": [ @@ -10271,7 +9625,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dragon Age II Demo", "game_detection": [ @@ -10284,7 +9637,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Metal Slug X", "game_detection": [ @@ -10300,7 +9652,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dr. Langeskov, The Tiger, and The Terribly Cursed Emerald: A Whirlwind Heist", "game_detection": [ @@ -10315,7 +9666,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Attack on Pearl Harbor", "game_detection": [ @@ -10328,7 +9678,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battlegrounds of Eldhelm", "game_detection": [ @@ -10343,7 +9692,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Insanity's Blade", "game_detection": [ @@ -10358,7 +9706,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Race The Sun", "game_detection": [ @@ -10378,7 +9725,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Card City Nights", "game_detection": [ @@ -10398,7 +9744,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sleeping Dogs: Definitive Edition", "game_detection": [ @@ -10413,7 +9758,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lumber Island", "game_detection": [ @@ -10428,7 +9772,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Metal Planet", "game_detection": [ @@ -10443,7 +9786,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hitman: Contracts", "game_detection": [ @@ -10463,7 +9805,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Strider", "game_detection": [ @@ -10478,7 +9819,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dogz", "game_detection": [ @@ -10490,7 +9830,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ori and the Blind Forest", "game_detection": [ @@ -10505,7 +9844,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Wars Knights of the Old Republic 2: The Sith Lords", "game_detection": [ @@ -10525,7 +9863,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hank Haney's World Golf", "game_detection": [ @@ -10537,7 +9874,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sword Legacy Omen", "game_detection": [ @@ -10551,7 +9887,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mount & Blade: Warband", "game_detection": [ @@ -10576,7 +9911,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blink the Bulb", "game_detection": [ @@ -10591,7 +9925,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Postal III", "game_detection": [ @@ -10606,7 +9939,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "F.E.A.R. Demo", "game_detection": [ @@ -10625,7 +9957,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Smash Up", "game_detection": [ @@ -10640,7 +9971,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MLB Front Office Manager", "game_detection": [ @@ -10655,7 +9985,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Burgers 2", "game_detection": [ @@ -10670,7 +9999,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Legend: Hand of God", "game_detection": [ @@ -10683,7 +10011,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Defenders of Time", "game_detection": [ @@ -10696,7 +10023,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Push Me Pull You", "game_detection": [ @@ -10711,7 +10037,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Archon Classic", "game_detection": [ @@ -10726,7 +10051,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Roadside Assistance Simulator", "game_detection": [ @@ -10741,7 +10065,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hotel", "game_detection": [ @@ -10756,7 +10079,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bionic Commando Rearmed", "game_detection": [ @@ -10776,7 +10098,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Empire Earth 3", "game_detection": [ @@ -10788,7 +10109,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Dawn of War", "game_detection": [ @@ -10808,7 +10128,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blood Bowl: Legendary Edition", "game_detection": [ @@ -10828,7 +10147,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Painkiller: Battle Out of Hell", "game_detection": [ @@ -10841,7 +10159,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Praetorians", "game_detection": [ @@ -10861,7 +10178,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NBA 2K20", "game_detection": [ @@ -10872,7 +10188,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nexus: The Jupiter Incident", "game_detection": [ @@ -10886,7 +10201,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warlocks Gauntlet", "game_detection": [ @@ -10898,7 +10212,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ship Simulator: Maritime Search and Rescue", "game_detection": [ @@ -10913,7 +10226,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Devil Daggers", "game_detection": [ @@ -10928,7 +10240,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Guns n Zombies", "game_detection": [ @@ -10943,7 +10254,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Trackmania 2 Canyon", "game_detection": [ @@ -10958,7 +10268,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "World of Zoo", "game_detection": [ @@ -10979,7 +10288,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Call of Juarez", "game_detection": [ @@ -11006,7 +10314,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Disciples III: Resurrection", "game_detection": [ @@ -11021,7 +10328,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "UFO Online: Invasion", "game_detection": [ @@ -11036,7 +10342,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stubbs the Zombie in Rebel Without a Pulse", "game_detection": [ @@ -11048,7 +10353,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MicroVolts", "game_detection": [ @@ -11071,7 +10375,6 @@ ] }, { - "force_display_capture": false, "region": "BR", "title": "Grand Chase", "game_detection": [ @@ -11085,7 +10388,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Namariel Legends: The Iron Lord", "game_detection": [ @@ -11100,7 +10402,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RODE", "game_detection": [ @@ -11114,7 +10415,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Premium Pool", "game_detection": [ @@ -11129,7 +10429,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heroes of Three Kingdoms", "game_detection": [ @@ -11144,7 +10443,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Think To Die", "game_detection": [ @@ -11159,7 +10457,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "Bubble Fighter", "game_detection": [ @@ -11172,7 +10469,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "DNF", "game_detection": [ @@ -11186,7 +10482,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Escape From Tarkov", "game_detection": [ @@ -11198,7 +10493,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fate", "game_detection": [ @@ -11230,7 +10524,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Call of Juarez: The Cartel", "game_detection": [ @@ -11245,7 +10538,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Skulls of the Shogun", "game_detection": [ @@ -11265,7 +10557,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hidden Expedition Amazon", "game_detection": [ @@ -11280,7 +10571,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "It Lurks Below", "game_detection": [ @@ -11294,7 +10584,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims 2: Mansion & Garden Stuff", "game_detection": [ @@ -11307,7 +10596,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Luxor 2", "game_detection": [ @@ -11322,7 +10610,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MDK", "game_detection": [ @@ -11342,7 +10629,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FlatOut", "game_detection": [ @@ -11362,7 +10648,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RPG Maker XP", "game_detection": [ @@ -11377,7 +10662,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Monsters & Munitions", "game_detection": [ @@ -11392,7 +10676,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Off-Road Super Racing", "game_detection": [ @@ -11407,7 +10690,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tremulous", "game_detection": [ @@ -11419,7 +10701,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Assassin's Creed: Liberation HD", "game_detection": [ @@ -11441,7 +10722,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Brothers in Arms: Road to Hill 30", "game_detection": [ @@ -11456,7 +10736,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Skater XL", "game_detection": [ @@ -11467,7 +10746,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "American McGee's Alice", "game_detection": [ @@ -11479,7 +10757,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kingdom Tales", "game_detection": [ @@ -11494,7 +10771,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FIFA Manager 07", "game_detection": [ @@ -11506,7 +10782,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Endless Space", "game_detection": [ @@ -11521,7 +10796,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FIFA Online 2", "game_detection": [ @@ -11534,7 +10808,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Puzzler World", "game_detection": [ @@ -11549,7 +10822,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hive", "game_detection": [ @@ -11564,7 +10836,6 @@ ] }, { - "force_display_capture": false, "region": "RU", "title": "RF Online", "game_detection": [ @@ -11577,7 +10848,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SWAT 4: Special Weapons and Tactics", "game_detection": [ @@ -11590,7 +10860,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heroine’s Quest: The Herald of Ragnarok", "game_detection": [ @@ -11605,7 +10874,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Guitar Hero World Tour", "game_detection": [ @@ -11617,7 +10885,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Game Dev Tycoon", "game_detection": [ @@ -11637,7 +10904,6 @@ ] }, { - "force_display_capture": false, "region": "RU", "title": "World of Tanks", "game_detection": [ @@ -11651,7 +10917,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crayon Physics Deluxe", "game_detection": [ @@ -11672,7 +10937,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Colonies Online", "game_detection": [ @@ -11687,7 +10951,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer: Chaosbane", "game_detection": [ @@ -11698,7 +10961,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Syberia III", "game_detection": [ @@ -11713,7 +10975,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gears of War", "game_detection": [ @@ -11726,7 +10987,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Hole Story", "game_detection": [ @@ -11741,7 +11001,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BloodRealm: Battlegrounds", "game_detection": [ @@ -11756,7 +11015,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Wolf Among Us", "game_detection": [ @@ -11771,7 +11029,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "9th Company - Roots of Terror", "game_detection": [ @@ -11786,7 +11043,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ratz Instagib", "game_detection": [ @@ -11801,7 +11057,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Greed Black Border", "game_detection": [ @@ -11816,7 +11071,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Everyday Shooter", "game_detection": [ @@ -11831,7 +11085,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sid Meier's Sim Golf", "game_detection": [ @@ -11843,7 +11096,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "18 Wheels of Steel Extreme Trucker 2", "game_detection": [ @@ -11856,7 +11108,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Iris Online", "game_detection": [ @@ -11869,7 +11120,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro-Pinball: Fantastic Journey", "game_detection": [ @@ -11881,7 +11131,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Streamline", "game_detection": [ @@ -11896,7 +11145,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cherry Tree High Comedy Club", "game_detection": [ @@ -11911,7 +11159,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "City Rain", "game_detection": [ @@ -11923,7 +11170,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Thief Simulator", "game_detection": [ @@ -11934,7 +11180,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Black & White", "game_detection": [ @@ -11946,7 +11191,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead Rising 2", "game_detection": [ @@ -11966,7 +11210,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Cave", "game_detection": [ @@ -11981,7 +11224,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Day of Defeat", "game_detection": [ @@ -12004,7 +11246,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Winning Eleven 8", "game_detection": [ @@ -12016,7 +11257,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Clone Hero", "game_detection": [ @@ -12027,7 +11267,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Windborne", "game_detection": [ @@ -12042,7 +11281,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "POSTAL Redux", "game_detection": [ @@ -12057,7 +11295,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Armed with Wings: Rearmed", "game_detection": [ @@ -12072,7 +11309,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Port Royale 3: Pirates & Merchants", "game_detection": [ @@ -12087,7 +11323,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Generation Zero", "game_detection": [ @@ -12098,7 +11333,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark and Light", "game_detection": [ @@ -12109,7 +11343,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Snapshot", "game_detection": [ @@ -12129,7 +11362,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cossacks II: Battle for Europe", "game_detection": [ @@ -12144,7 +11376,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vessel", "game_detection": [ @@ -12164,7 +11395,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Frozen Synapse 2", "game_detection": [ @@ -12178,7 +11408,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Yu-Gi-Oh! Duel Links", "game_detection": [ @@ -12192,7 +11421,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DCS: Black Shark", "game_detection": [ @@ -12206,7 +11434,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deep Below", "game_detection": [ @@ -12221,7 +11448,6 @@ ] }, { - "force_display_capture": false, "region": "BR", "title": "Hex: Shards of Fate", "game_detection": [ @@ -12235,7 +11461,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Black Mirror II", "game_detection": [ @@ -12250,7 +11475,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Return of the Obra Dinn", "game_detection": [ @@ -12261,7 +11485,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heroes of Might and Magic V", "game_detection": [ @@ -12295,7 +11518,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Synchrom", "game_detection": [ @@ -12310,7 +11532,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wolfenstein", "game_detection": [ @@ -12347,7 +11568,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Halfway", "game_detection": [ @@ -12367,7 +11587,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stronghold Crusader", "game_detection": [ @@ -12379,7 +11598,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sid Meier's Civilization IV", "game_detection": [ @@ -12411,7 +11629,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ricochet", "game_detection": [ @@ -12427,7 +11644,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deathgarden: BLOODHARVEST", "game_detection": [ @@ -12438,7 +11654,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gateways", "game_detection": [ @@ -12453,7 +11668,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Surgeon Simulator VR: Meet The Medic", "game_detection": [ @@ -12469,7 +11683,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Legend of Dungeon: Masters", "game_detection": [ @@ -12484,7 +11697,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Trover Saves the Universe", "game_detection": [ @@ -12495,7 +11707,6 @@ ] }, { - "force_display_capture": false, "region": "TW", "title": "Allods Online", "game_detection": [ @@ -12511,7 +11722,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NCIS", "game_detection": [ @@ -12523,7 +11733,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Walking Dead: Episode One", "game_detection": [ @@ -12535,7 +11744,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "Counter-Strike Online", "game_detection": [ @@ -12548,7 +11756,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Oniken", "game_detection": [ @@ -12564,7 +11771,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The 39 Steps", "game_detection": [ @@ -12579,7 +11785,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chrome Specforce", "game_detection": [ @@ -12594,7 +11799,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "World of Soccer online", "game_detection": [ @@ -12609,7 +11813,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Arcanum of Steamworks & Magick Obscura", "game_detection": [ @@ -12621,7 +11824,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Descent: Underground", "game_detection": [ @@ -12636,7 +11838,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Frosty Kiss", "game_detection": [ @@ -12651,7 +11852,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Luxor", "game_detection": [ @@ -12666,7 +11866,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sacred 3", "game_detection": [ @@ -12681,7 +11880,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Infinifactory", "game_detection": [ @@ -12696,7 +11894,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Anomaly 2", "game_detection": [ @@ -12716,7 +11913,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Combat Wings: Battle of Britain", "game_detection": [ @@ -12737,7 +11933,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A Date in the Park", "game_detection": [ @@ -12752,7 +11947,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rhythm Destruction", "game_detection": [ @@ -12767,7 +11961,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super House of Dead Ninjas", "game_detection": [ @@ -12782,7 +11975,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GoldenEye Source", "game_detection": [ @@ -12798,7 +11990,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "404Sight", "game_detection": [ @@ -12813,7 +12004,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nikopol: Secrets of the Immortals", "game_detection": [ @@ -12835,7 +12025,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Florensia", "game_detection": [ @@ -12865,7 +12054,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tiger Woods PGA Tour 07", "game_detection": [ @@ -12878,7 +12066,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Silent Hill 4: The Room", "game_detection": [ @@ -12890,7 +12077,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "IKEA VR Experience", "game_detection": [ @@ -12906,7 +12092,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Guacamelee! Super Turbo Championship Edition", "game_detection": [ @@ -12921,7 +12106,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Bug Butcher", "game_detection": [ @@ -12936,7 +12120,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DASH-DA-DASH DX", "game_detection": [ @@ -12949,7 +12132,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ArmA II: Free", "game_detection": [ @@ -12969,7 +12151,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Adam's Venture: Episode 1 - The Search for the Lost Garden", "game_detection": [ @@ -12984,7 +12165,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blasters of the Universe", "game_detection": [ @@ -13000,7 +12180,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kingdom Elemental", "game_detection": [ @@ -13015,7 +12194,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BeatBuddy Demo", "game_detection": [ @@ -13030,7 +12208,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dofus Arena", "game_detection": [ @@ -13043,7 +12220,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Transformers Universe", "game_detection": [ @@ -13055,7 +12231,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Riptide GP: Renegade", "game_detection": [ @@ -13066,7 +12241,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pride of Nations", "game_detection": [ @@ -13087,7 +12261,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeon Hearts", "game_detection": [ @@ -13107,7 +12280,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Doorways: Old Prototype", "game_detection": [ @@ -13122,7 +12294,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Condemned: Criminal Origins", "game_detection": [ @@ -13142,7 +12313,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Total War Battles: KINGDOM", "game_detection": [ @@ -13157,7 +12327,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "War and Peace, 1796-1815", "game_detection": [ @@ -13169,7 +12338,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rec Room", "game_detection": [ @@ -13185,7 +12353,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "True or False", "game_detection": [ @@ -13200,7 +12367,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "AstroPop Deluxe", "game_detection": [ @@ -13221,7 +12387,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BlazBlue: Central Fiction", "game_detection": [ @@ -13236,7 +12401,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer 40,000 Dawn of War II: Chaos Rising", "game_detection": [ @@ -13252,7 +12416,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Final Fantasy XI: Ultimate Collection", "game_detection": [ @@ -13264,7 +12427,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Airport Simulator 2014", "game_detection": [ @@ -13279,7 +12441,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Command & Conquer 4 Tiberian Twilight", "game_detection": [ @@ -13305,7 +12466,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Red Eclipse", "game_detection": [ @@ -13317,7 +12477,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ABZÛ", "game_detection": [ @@ -13332,7 +12491,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Call of Duty: Black Ops IV", "game_detection": [ @@ -13344,7 +12502,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ItzaBitza", "game_detection": [ @@ -13359,7 +12516,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shannon Tweed's Attack Of The Groupies", "game_detection": [ @@ -13374,7 +12530,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Little Farm", "game_detection": [ @@ -13390,7 +12545,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Akane", "game_detection": [ @@ -13404,7 +12558,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blood Bowl: Star Coach", "game_detection": [ @@ -13419,7 +12572,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rag Doll Kung Fu", "game_detection": [ @@ -13442,7 +12594,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rogue Warrior", "game_detection": [ @@ -13463,7 +12614,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crazy Machines: 1.5", "game_detection": [ @@ -13478,7 +12628,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Medal of Honor: Warfighter", "game_detection": [ @@ -13491,7 +12640,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Natural Selection 2", "game_detection": [ @@ -13506,7 +12654,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Project IGI: I'm Going In", "game_detection": [ @@ -13518,7 +12665,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blood", "game_detection": [ @@ -13533,7 +12679,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Command & Conquer: Generals Zero Hour", "game_detection": [ @@ -13559,7 +12704,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Orwell: Ignorance Is Strength", "game_detection": [ @@ -13573,7 +12717,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rise of Flight: Iron Cross Edition", "game_detection": [ @@ -13586,7 +12729,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "McPixel", "game_detection": [ @@ -13611,7 +12753,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "S.T.A.L.K.E.R.: Shadow of Chernobyl", "game_detection": [ @@ -13632,7 +12773,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Recovery Search & Rescue Simulation", "game_detection": [ @@ -13647,7 +12787,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A Wizard's Lizard", "game_detection": [ @@ -13667,7 +12806,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gauntlet", "game_detection": [ @@ -13682,7 +12820,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Silent Storm: Sentinels", "game_detection": [ @@ -13697,7 +12834,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zombie Driver HD", "game_detection": [ @@ -13712,7 +12848,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sniper: Ghost Warrior 2", "game_detection": [ @@ -13727,7 +12862,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Quantum Rush", "game_detection": [ @@ -13748,7 +12882,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NEO Scavenger", "game_detection": [ @@ -13768,7 +12901,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Bureau: XCOM Declassified", "game_detection": [ @@ -13783,7 +12915,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "CosmicBreak", "game_detection": [ @@ -13796,7 +12927,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hacknet", "game_detection": [ @@ -13811,7 +12941,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Restaurant Empire 2", "game_detection": [ @@ -13826,7 +12955,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Antichamber", "game_detection": [ @@ -13846,7 +12974,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Call of Juarez: Gunslinger", "game_detection": [ @@ -13861,7 +12988,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ragnarok Clicker", "game_detection": [ @@ -13876,7 +13002,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Impossible Game", "game_detection": [ @@ -13891,7 +13016,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Disgaea 2 PC", "game_detection": [ @@ -13906,7 +13030,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Safecracker: The Ultimate Puzzle Adventure", "game_detection": [ @@ -13921,7 +13044,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "QQ Treasure Hunter", "game_detection": [ @@ -13934,7 +13056,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "War in a Box: Paper Tanks", "game_detection": [ @@ -13949,7 +13070,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jade Empire: Special Edition", "game_detection": [ @@ -13964,7 +13084,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Burn Zombie Burn!", "game_detection": [ @@ -13979,7 +13098,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Double Action: Boogaloo", "game_detection": [ @@ -13994,7 +13112,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Last Remnant", "game_detection": [ @@ -14009,7 +13126,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Aion: Dark Betrayal", "game_detection": [ @@ -14067,7 +13183,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Final Fantasy III", "game_detection": [ @@ -14082,7 +13197,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "CaesarIA", "game_detection": [ @@ -14097,7 +13211,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Space Cadet 3D Pinball", "game_detection": [ @@ -14109,7 +13222,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crazy Machines: Inventors Training Camp", "game_detection": [ @@ -14124,7 +13236,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heroes In The Sky", "game_detection": [ @@ -14146,7 +13257,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crasher", "game_detection": [ @@ -14161,7 +13271,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Endless Night", "game_detection": [ @@ -14177,7 +13286,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Cat Lady", "game_detection": [ @@ -14197,7 +13305,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "TRAUMA", "game_detection": [ @@ -14212,7 +13319,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Agents of Mayhem", "game_detection": [ @@ -14227,7 +13333,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Romance of the Three Kingdoms XI", "game_detection": [ @@ -14239,7 +13344,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "hackmud", "game_detection": [ @@ -14254,7 +13358,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Toxic Bunny HD", "game_detection": [ @@ -14269,7 +13372,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mighty Switch Force! Academy", "game_detection": [ @@ -14284,7 +13386,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Driftwood The Visual Novel", "game_detection": [ @@ -14299,7 +13400,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Memento Mori", "game_detection": [ @@ -14319,7 +13419,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Need For Speed: ProStreet", "game_detection": [ @@ -14331,7 +13430,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sakura Swim Club", "game_detection": [ @@ -14346,7 +13444,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "Archlord II", "game_detection": [ @@ -14359,7 +13456,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Aion: Ascension", "game_detection": [ @@ -14375,7 +13471,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "League of Legends", "game_detection": [ @@ -14496,7 +13591,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wulfram 2", "game_detection": [ @@ -14508,7 +13602,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Attack on Titan 2", "game_detection": [ @@ -14522,7 +13615,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wings of Vi", "game_detection": [ @@ -14537,7 +13629,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Abyss: The Wraiths of Eden", "game_detection": [ @@ -14552,7 +13643,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crazy Machines: The Wacky Contraptions Game", "game_detection": [ @@ -14567,7 +13657,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Legion TD 2", "game_detection": [ @@ -14582,7 +13671,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "IL-2 Sturmovik: Battle of Stalingrad", "game_detection": [ @@ -14598,7 +13686,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Guncraft", "game_detection": [ @@ -14623,7 +13710,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Matrix: Path of Neo", "game_detection": [ @@ -14636,7 +13722,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Political Machine 2012", "game_detection": [ @@ -14651,7 +13736,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Antenna", "game_detection": [ @@ -14666,7 +13750,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Clover Tale", "game_detection": [ @@ -14681,7 +13764,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tony Hawk's American Wasteland", "game_detection": [ @@ -14695,7 +13777,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cubemen", "game_detection": [ @@ -14715,7 +13796,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "F.E.A.R.: First Encounter Assault Recon", "game_detection": [ @@ -14762,7 +13842,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "My Lil' Donut", "game_detection": [ @@ -14778,7 +13857,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kingdom Wars", "game_detection": [ @@ -14793,7 +13871,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lost Civilization", "game_detection": [ @@ -14808,7 +13885,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NBA 2K9", "game_detection": [ @@ -14823,7 +13899,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cradle of Rome", "game_detection": [ @@ -14838,7 +13913,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "MapleStory", "game_detection": [ @@ -14851,7 +13925,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GundeadliGne", "game_detection": [ @@ -14866,7 +13939,6 @@ ] }, { - "force_display_capture": false, "region": "PL", "title": "Royal Quest", "game_detection": [ @@ -14880,7 +13952,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lara Croft and the Temple of Osiris", "game_detection": [ @@ -14895,7 +13966,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stand Out", "game_detection": [ @@ -14909,7 +13979,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead Rising 4", "game_detection": [ @@ -14924,7 +13993,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Potatoman Seeks The Troof", "game_detection": [ @@ -14939,7 +14007,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lunia", "game_detection": [ @@ -14959,7 +14026,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Altitude", "game_detection": [ @@ -14974,7 +14040,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Legend of Korra", "game_detection": [ @@ -14989,7 +14054,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fortune Winds: Ancient Trader", "game_detection": [ @@ -15001,7 +14065,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Beasts of Prey", "game_detection": [ @@ -15016,7 +14079,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chime Sharp", "game_detection": [ @@ -15031,7 +14093,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Drunken Wrestlers 2", "game_detection": [ @@ -15042,7 +14103,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Agricultural Simulator 2011", "game_detection": [ @@ -15057,7 +14117,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BlazeRush", "game_detection": [ @@ -15072,7 +14131,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hector: Badge of Carnage - Episode 3", "game_detection": [ @@ -15092,7 +14150,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "OlliOlli", "game_detection": [ @@ -15107,7 +14164,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heritage of Kings: The Settlers Demo", "game_detection": [ @@ -15121,7 +14177,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "EDuke32", "game_detection": [ @@ -15133,7 +14188,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Barotrauma", "game_detection": [ @@ -15144,7 +14198,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ace of Spades", "game_detection": [ @@ -15159,7 +14212,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Abomination Tower", "game_detection": [ @@ -15174,7 +14226,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Three Kingdoms: The Battle Begins", "game_detection": [ @@ -15187,7 +14238,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A Game of Dwarves", "game_detection": [ @@ -15202,7 +14252,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Aragami", "game_detection": [ @@ -15217,7 +14266,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Happy Song", "game_detection": [ @@ -15237,7 +14285,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Team Sonic Racing", "game_detection": [ @@ -15248,7 +14295,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Expendables 2", "game_detection": [ @@ -15263,7 +14309,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Face Noir", "game_detection": [ @@ -15278,7 +14323,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hellgate", "game_detection": [ @@ -15291,7 +14335,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims Medieval", "game_detection": [ @@ -15313,7 +14356,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lucid9", "game_detection": [ @@ -15328,7 +14370,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dragonflight", "game_detection": [ @@ -15343,7 +14384,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GOD EATER 3", "game_detection": [ @@ -15354,7 +14394,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Beyond Space", "game_detection": [ @@ -15369,7 +14408,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tetrobot and Co.", "game_detection": [ @@ -15389,7 +14427,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kreedz Climbing", "game_detection": [ @@ -15405,7 +14442,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Devil May Cry", "game_detection": [ @@ -15419,7 +14455,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "Mabinogi Heroes", "game_detection": [ @@ -15433,7 +14468,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hunter Blade", "game_detection": [ @@ -15445,7 +14479,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "They Are Billions", "game_detection": [ @@ -15460,7 +14493,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Lord of the Rings: Return of the King", "game_detection": [ @@ -15472,7 +14504,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Final Fantasy XIV ARR Benchmark", "game_detection": [ @@ -15486,7 +14517,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Out of the Park Baseball 11", "game_detection": [ @@ -15498,7 +14528,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Half Minute Hero: The Second Coming", "game_detection": [ @@ -15513,7 +14542,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ludu", "game_detection": [ @@ -15528,7 +14556,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Act of War: High Treason", "game_detection": [ @@ -15549,7 +14576,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Celeste", "game_detection": [ @@ -15567,7 +14593,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Call of Duty 2", "game_detection": [ @@ -15603,7 +14628,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sid Meier’s Ace Patrol: Pacific Skies", "game_detection": [ @@ -15618,7 +14642,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pandora: First Contact", "game_detection": [ @@ -15633,7 +14656,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warbit", "game_detection": [ @@ -15648,7 +14670,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ARMED SEVEN", "game_detection": [ @@ -15663,7 +14684,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Elisa: The Innkeeper - Prequel", "game_detection": [ @@ -15678,7 +14698,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Life Is Strange", "game_detection": [ @@ -15693,7 +14712,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SAS Into the Lion's Den", "game_detection": [ @@ -15708,7 +14726,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "I'm not Alone", "game_detection": [ @@ -15723,7 +14740,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Resident Evil: Revelations 2", "game_detection": [ @@ -15738,7 +14754,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kyn", "game_detection": [ @@ -15753,7 +14768,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Afro Samurai 2", "game_detection": [ @@ -15768,7 +14782,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ISLANDS: Non-Places", "game_detection": [ @@ -15783,7 +14796,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BlazBlue: Calamity Trigger", "game_detection": [ @@ -15798,7 +14810,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pacific Storm: Allies", "game_detection": [ @@ -15811,7 +14822,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shallow Space", "game_detection": [ @@ -15826,7 +14836,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Postal 2 Complete", "game_detection": [ @@ -15842,7 +14851,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eclipse War Online", "game_detection": [ @@ -15857,7 +14865,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Our Darker Purpose", "game_detection": [ @@ -15877,7 +14884,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "OlliOlli2", "game_detection": [ @@ -15892,7 +14898,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Panzer Killer!", "game_detection": [ @@ -15904,7 +14909,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Thief The Dark Project", "game_detection": [ @@ -15919,7 +14923,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Paragon", "game_detection": [ @@ -15933,7 +14936,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Subway Simulator: World of Subways 2", "game_detection": [ @@ -15948,7 +14950,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "For the Glory", "game_detection": [ @@ -15963,7 +14964,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "iO", "game_detection": [ @@ -15978,7 +14978,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Left 4 Dead", "game_detection": [ @@ -15993,7 +14992,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims 2: H&M Fashion Stuff", "game_detection": [ @@ -16005,7 +15003,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Not Tonight", "game_detection": [ @@ -16019,7 +15016,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Talisman Prologue", "game_detection": [ @@ -16039,7 +15035,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": ".hack/G.U. Last Recode", "game_detection": [ @@ -16053,7 +15048,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Railway Empire", "game_detection": [ @@ -16064,7 +15058,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hero Academy", "game_detection": [ @@ -16084,7 +15077,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Into the Stars", "game_detection": [ @@ -16099,7 +15091,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A City Sleeps", "game_detection": [ @@ -16114,7 +15105,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sid Meier's Alpha Centauri", "game_detection": [ @@ -16126,7 +15116,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Melty Blood: Actress Again Current Code", "game_detection": [ @@ -16141,7 +15130,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kerbal Space Program", "game_detection": [ @@ -16161,7 +15149,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Automation: The Car Company Tycoon Game", "game_detection": [ @@ -16172,7 +15159,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hamilton's Great Adventure", "game_detection": [ @@ -16187,7 +15173,21 @@ ] }, { - "force_display_capture": false, + "force_display_capture": true, + "region": null, + "title": "Counter-Strike 2", + "game_detection": [ + { + "gameexe": "cs2\\.exe$", + "launchexe": "/steam\\.exe", + "launchflags": "-applaunch 730", + "regkey": "HKEY_LOCAL_MACHINE/SOFTWARE/Valve/Steam/InstallPath", + "longname": "Counter-Strike 2 -Steam", + "edition": "(Steam)" + } + ] + }, + { "region": null, "title": "Neocron 2", "game_detection": [ @@ -16201,7 +15201,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lords of Football", "game_detection": [ @@ -16216,7 +15215,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "TimeShift", "game_detection": [ @@ -16229,7 +15227,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mythic Manor", "game_detection": [ @@ -16240,7 +15237,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Croixleur Sigma", "game_detection": [ @@ -16255,7 +15251,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2007", "game_detection": [ @@ -16267,7 +15262,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hunting Unlimited 2009", "game_detection": [ @@ -16284,7 +15278,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Men of War", "game_detection": [ @@ -16310,7 +15303,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Broken Sword II: The Smoking Mirror", "game_detection": [ @@ -16330,7 +15322,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bone: Out from Boneville", "game_detection": [ @@ -16350,7 +15341,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Frozen State", "game_detection": [ @@ -16365,7 +15355,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The NADI Project", "game_detection": [ @@ -16380,7 +15369,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Serious Sam 2", "game_detection": [ @@ -16402,7 +15390,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Wars: X-Wing vs. Tie Fighter", "game_detection": [ @@ -16414,7 +15401,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Metal War Online: Retribution", "game_detection": [ @@ -16429,7 +15415,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Perimeter", "game_detection": [ @@ -16449,7 +15434,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SanctuaryRPG", "game_detection": [ @@ -16464,7 +15448,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Subaeria", "game_detection": [ @@ -16479,7 +15462,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deathmatch Classic", "game_detection": [ @@ -16502,7 +15484,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fly in the House", "game_detection": [ @@ -16517,7 +15498,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Plan", "game_detection": [ @@ -16532,7 +15512,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Subnautica: Below Zero", "game_detection": [ @@ -16544,7 +15523,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Political Machine 2008", "game_detection": [ @@ -16557,7 +15535,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deadfall Adventures", "game_detection": [ @@ -16572,7 +15549,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Proteus", "game_detection": [ @@ -16592,7 +15568,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vampire Saga: Break Out", "game_detection": [ @@ -16605,7 +15580,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Phantasy Star Universe: Ambition of the Illuminus", "game_detection": [ @@ -16620,7 +15594,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NightSky", "game_detection": [ @@ -16645,7 +15618,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ys: The Ark of Napishtim", "game_detection": [ @@ -16660,7 +15632,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "QUALIA 3: Multi Agent", "game_detection": [ @@ -16675,7 +15646,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wargame: Red Dragon", "game_detection": [ @@ -16690,7 +15660,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Costume Quest 2", "game_detection": [ @@ -16705,7 +15674,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deus Ex: Human Revolution - Director's Cut", "game_detection": [ @@ -16720,7 +15688,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Curse of Mermos", "game_detection": [ @@ -16735,7 +15702,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mosby's Confederacy", "game_detection": [ @@ -16750,7 +15716,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Baldur's Gate", "game_detection": [ @@ -16769,7 +15734,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Astral Heroes", "game_detection": [ @@ -16784,7 +15748,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Clutch", "game_detection": [ @@ -16799,7 +15762,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heretic 2", "game_detection": [ @@ -16812,7 +15774,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Avalon Heroes", "game_detection": [ @@ -16825,7 +15786,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "E.T. Armies", "game_detection": [ @@ -16840,7 +15800,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Star", "game_detection": [ @@ -16855,7 +15814,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sorcerer King", "game_detection": [ @@ -16870,7 +15828,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Evil Maze", "game_detection": [ @@ -16885,7 +15842,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "TorqueL", "game_detection": [ @@ -16908,7 +15864,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Earth 2160", "game_detection": [ @@ -16922,7 +15877,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SimCity 4", "game_detection": [ @@ -16935,7 +15889,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Robot Roller-Derby Disco Dodgeball", "game_detection": [ @@ -16950,7 +15903,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shadowbane", "game_detection": [ @@ -16964,7 +15916,6 @@ ] }, { - "force_display_capture": false, "region": "TW", "title": "Mabinogi Heroes", "game_detection": [ @@ -16978,7 +15929,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fingered", "game_detection": [ @@ -16993,7 +15943,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "7 Wonders II", "game_detection": [ @@ -17008,7 +15957,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Realm of the Mad God", "game_detection": [ @@ -17023,7 +15971,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Settlers II: Veni Vidi Vici", "game_detection": [ @@ -17036,7 +15983,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Other 99", "game_detection": [ @@ -17051,7 +15997,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Darwin Project", "game_detection": [ @@ -17065,7 +16010,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Beast Boxing Turbo", "game_detection": [ @@ -17080,7 +16024,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fritz Chess Twelve", "game_detection": [ @@ -17093,7 +16036,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jet Car Stunts", "game_detection": [ @@ -17108,7 +16050,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "VA-11 Hall-A: Cyberpunk Bartender Action", "game_detection": [ @@ -17123,7 +16064,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Magicka 2", "game_detection": [ @@ -17138,7 +16078,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Puzzle Agent", "game_detection": [ @@ -17150,7 +16089,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hacker's Beat", "game_detection": [ @@ -17165,7 +16103,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "La-Mulana", "game_detection": [ @@ -17186,7 +16123,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Regicide", "game_detection": [ @@ -17201,7 +16137,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Europa Universalis: Rome", "game_detection": [ @@ -17214,7 +16149,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims 2: Double Deluxe", "game_detection": [ @@ -17228,7 +16162,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stronghold Kingdoms", "game_detection": [ @@ -17249,7 +16182,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Toki Tori", "game_detection": [ @@ -17264,7 +16196,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hunting Unlimited 2008", "game_detection": [ @@ -17292,7 +16223,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stardust Vanguards", "game_detection": [ @@ -17307,7 +16237,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Septerra Core: Legacy of the Creator", "game_detection": [ @@ -17332,7 +16261,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "F.3.A.R.", "game_detection": [ @@ -17347,7 +16275,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Saint Seiya: Soldiers' Soul", "game_detection": [ @@ -17362,7 +16289,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "QQ Puzzle Dasher", "game_detection": [ @@ -17375,7 +16301,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Farm Machines Championships 2014", "game_detection": [ @@ -17390,7 +16315,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Build-a-lot 3: Passport to Europe", "game_detection": [ @@ -17405,7 +16329,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "FreeStyle Football", "game_detection": [ @@ -17420,7 +16343,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hunger Dungeon", "game_detection": [ @@ -17435,7 +16357,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FIFA Online 4", "game_detection": [ @@ -17446,7 +16367,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mall Tycoon 3", "game_detection": [ @@ -17460,7 +16380,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warlords: BattleCry 3", "game_detection": [ @@ -17472,7 +16391,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "My Hero One's Justice", "game_detection": [ @@ -17483,7 +16401,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rise of the Argonauts", "game_detection": [ @@ -17504,7 +16421,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Racer", "game_detection": [ @@ -17517,7 +16433,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Monato Esprit", "game_detection": [ @@ -17530,7 +16445,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dying Light", "game_detection": [ @@ -17545,7 +16459,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Whitewash", "game_detection": [ @@ -17560,7 +16473,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SCUM", "game_detection": [ @@ -17574,7 +16486,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kingdom Rush Frontiers", "game_detection": [ @@ -17589,7 +16500,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SUPER IMPOSSIBLE ROAD", "game_detection": [ @@ -17604,7 +16514,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Planet Stronghold", "game_detection": [ @@ -17619,7 +16528,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Elite Dangerous: Horizons", "game_detection": [ @@ -17634,7 +16542,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Front Page Sports Football", "game_detection": [ @@ -17650,7 +16557,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nancy Drew: Secret Of the Old Clock", "game_detection": [ @@ -17665,7 +16571,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FATE: The Cursed King", "game_detection": [ @@ -17680,7 +16585,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Empire: Total War Demo", "game_detection": [ @@ -17695,7 +16599,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vampire: The Masquerade Redemption", "game_detection": [ @@ -17707,7 +16610,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "American Conquest: Fight Back", "game_detection": [ @@ -17722,7 +16624,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ICEY", "game_detection": [ @@ -17737,7 +16638,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Allegiance", "game_detection": [ @@ -17750,7 +16650,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Metal Assault", "game_detection": [ @@ -17771,7 +16670,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rise of Nations: Thrones & Patriots", "game_detection": [ @@ -17784,7 +16682,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Flashback", "game_detection": [ @@ -17799,7 +16696,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Samantha Swift and the Golden Touch", "game_detection": [ @@ -17814,7 +16710,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Halo 2", "game_detection": [ @@ -17826,7 +16721,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Need For Speed Payback", "game_detection": [ @@ -17838,7 +16732,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ASDAD: All-Stars Dungeons and Diamonds", "game_detection": [ @@ -17853,7 +16746,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Infinite Space III: Sea of Stars", "game_detection": [ @@ -17868,7 +16760,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spark Rising", "game_detection": [ @@ -17883,7 +16774,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tap Tap Legions", "game_detection": [ @@ -17898,7 +16788,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Groove City", "game_detection": [ @@ -17918,7 +16807,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Test Drive Unlimited 2", "game_detection": [ @@ -17939,7 +16827,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Orake 2D MMORPG", "game_detection": [ @@ -17954,7 +16841,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Puzzle Quest 2", "game_detection": [ @@ -17969,7 +16855,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Momodora: Reverie Under the Moonlight", "game_detection": [ @@ -17988,7 +16873,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tower of Guns", "game_detection": [ @@ -18008,7 +16892,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Galactic Junk League", "game_detection": [ @@ -18023,7 +16906,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gratuitous Space Battles", "game_detection": [ @@ -18043,7 +16925,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Yooka-Laylee: Toybox", "game_detection": [ @@ -18058,7 +16939,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mind Quiz: Your Brain Coach", "game_detection": [ @@ -18071,7 +16951,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "911 Operator", "game_detection": [ @@ -18086,7 +16965,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Clockwork Tales: Of Glass and Ink", "game_detection": [ @@ -18101,7 +16979,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FIFA 20", "game_detection": [ @@ -18112,7 +16989,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dynamite Jack", "game_detection": [ @@ -18127,7 +17003,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Captain Forever Remix", "game_detection": [ @@ -18142,7 +17017,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sonic CD", "game_detection": [ @@ -18157,7 +17031,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FIFA Manager 09", "game_detection": [ @@ -18169,7 +17042,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FNaF World", "game_detection": [ @@ -18184,7 +17056,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Legends of Pegasus", "game_detection": [ @@ -18199,7 +17070,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Run for Rum", "game_detection": [ @@ -18214,7 +17084,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Radical Heights", "game_detection": [ @@ -18228,7 +17097,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sakura Agent", "game_detection": [ @@ -18243,7 +17111,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Black The Fall", "game_detection": [ @@ -18258,7 +17125,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Squids", "game_detection": [ @@ -18270,7 +17136,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Space Hulk: Ascension Edition", "game_detection": [ @@ -18285,7 +17150,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mafia III", "game_detection": [ @@ -18300,7 +17164,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "realities", "game_detection": [ @@ -18316,7 +17179,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DreadOut", "game_detection": [ @@ -18331,7 +17193,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chernobyl Commando", "game_detection": [ @@ -18351,7 +17212,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead Synchronicity: Tomorrow Comes Today", "game_detection": [ @@ -18366,7 +17226,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Injustice 2", "game_detection": [ @@ -18387,7 +17246,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SENRAN KAGURA Peach Beach Splash", "game_detection": [ @@ -18401,7 +17259,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "R.U.S.E.", "game_detection": [ @@ -18416,7 +17273,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Waven", "game_detection": [ @@ -18427,7 +17283,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sam & Max: The Devil's Playhouse - The Tomb of Sammun-Mak", "game_detection": [ @@ -18442,7 +17297,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lost Lands: Mahjong", "game_detection": [ @@ -18457,7 +17311,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NHL 09", "game_detection": [ @@ -18469,7 +17322,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Back to the Future: The Game - Ep. 2: Get Tannen!", "game_detection": [ @@ -18489,7 +17341,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wind of Luck: Arena", "game_detection": [ @@ -18504,7 +17355,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Farming World", "game_detection": [ @@ -18519,7 +17369,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ultima Online", "game_detection": [ @@ -18546,7 +17395,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RoShamBo", "game_detection": [ @@ -18561,7 +17409,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Black Market", "game_detection": [ @@ -18574,7 +17421,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Darkstar", "game_detection": [ @@ -18586,7 +17432,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "To Be or Not To Be", "game_detection": [ @@ -18601,7 +17446,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Legion Arena", "game_detection": [ @@ -18613,7 +17457,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Trek Armada II", "game_detection": [ @@ -18625,7 +17468,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tank Operations: European Campaign", "game_detection": [ @@ -18640,7 +17482,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BattleSouls", "game_detection": [ @@ -18655,7 +17496,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The White Laboratory Demo", "game_detection": [ @@ -18670,7 +17510,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Solar Flux", "game_detection": [ @@ -18685,7 +17524,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nekro", "game_detection": [ @@ -18700,7 +17538,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Prototype 2", "game_detection": [ @@ -18715,7 +17552,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tom Clancy's Splinter Cell: Chaos Theory Demo", "game_detection": [ @@ -18729,7 +17565,6 @@ ] }, { - "force_display_capture": false, "region": "PL", "title": "Lineage II", "game_detection": [ @@ -18743,7 +17578,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Smash Party VR", "game_detection": [ @@ -18759,7 +17593,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "HuniePop", "game_detection": [ @@ -18774,7 +17607,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mega Man X Legacy Collection 2", "game_detection": [ @@ -18788,7 +17620,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Montague's Mount", "game_detection": [ @@ -18808,7 +17639,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Risk", "game_detection": [ @@ -18823,7 +17653,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Soldner Secret Wars", "game_detection": [ @@ -18836,7 +17665,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Call of Duty: Infinite Warfare", "game_detection": [ @@ -18851,7 +17679,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Trove", "game_detection": [ @@ -18875,7 +17702,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Race To Mars", "game_detection": [ @@ -18890,7 +17716,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Unreal Tournament 3 Demo", "game_detection": [ @@ -18909,7 +17734,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Breath of Death VII", "game_detection": [ @@ -18929,7 +17753,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ikaruga", "game_detection": [ @@ -18944,7 +17767,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hand Simulator", "game_detection": [ @@ -18958,7 +17780,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Celestial Tear: Demon's Revenge", "game_detection": [ @@ -18973,7 +17794,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Minecraft", "game_detection": [ @@ -19091,7 +17911,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Obscure: The Aftermath", "game_detection": [ @@ -19106,7 +17925,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "State of Decay", "game_detection": [ @@ -19121,7 +17939,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Galcon Fusion", "game_detection": [ @@ -19141,7 +17958,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "X-Tension", "game_detection": [ @@ -19156,7 +17972,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "4 Elements", "game_detection": [ @@ -19176,7 +17991,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deadbreed", "game_detection": [ @@ -19191,7 +18005,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Oblitus", "game_detection": [ @@ -19206,7 +18019,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jewel Quest Solitaire III", "game_detection": [ @@ -19218,7 +18030,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Angvik", "game_detection": [ @@ -19233,7 +18044,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ibb & obb", "game_detection": [ @@ -19248,7 +18058,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zombie Night Terror", "game_detection": [ @@ -19263,7 +18072,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tiger Woods PGA Tour 06", "game_detection": [ @@ -19276,7 +18084,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tiger Woods PGA Tour 08", "game_detection": [ @@ -19289,7 +18096,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Family Feud 3: Dream Home", "game_detection": [ @@ -19304,7 +18110,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Osmos", "game_detection": [ @@ -19329,7 +18134,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chrono Trigger", "game_detection": [ @@ -19343,7 +18147,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Abalone", "game_detection": [ @@ -19358,7 +18161,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sequence", "game_detection": [ @@ -19373,7 +18175,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Uebergame", "game_detection": [ @@ -19388,7 +18189,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tales of Monkey Island 1: Launch of the Screaming Narwhal", "game_detection": [ @@ -19408,7 +18208,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Out of the Park Baseball 17", "game_detection": [ @@ -19423,7 +18222,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Black Death", "game_detection": [ @@ -19438,7 +18236,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bioshock Demo", "game_detection": [ @@ -19460,7 +18257,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bone: The Great Cow Race", "game_detection": [ @@ -19480,7 +18276,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "World of Tanks Blitz", "game_detection": [ @@ -19495,7 +18290,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vigil: Blood Bitterness", "game_detection": [ @@ -19510,7 +18304,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MUD Motocross World Championship", "game_detection": [ @@ -19525,7 +18318,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shepherd Slaughter", "game_detection": [ @@ -19537,7 +18329,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Haunted Past: Realm of Ghosts", "game_detection": [ @@ -19552,7 +18343,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2013", "game_detection": [ @@ -19572,7 +18362,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hate Plus", "game_detection": [ @@ -19587,7 +18376,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Metro: Last Light Redux", "game_detection": [ @@ -19602,7 +18390,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RISK: Factions", "game_detection": [ @@ -19617,7 +18404,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MegaTagmension Blanc + Neptune VS Zombies", "game_detection": [ @@ -19632,7 +18418,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Far Cry Primal", "game_detection": [ @@ -19654,7 +18439,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Osu!", "game_detection": [ @@ -19672,7 +18456,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Duke Nukem Forever", "game_detection": [ @@ -19687,7 +18470,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gravity Error", "game_detection": [ @@ -19702,7 +18484,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tinker", "game_detection": [ @@ -19714,7 +18495,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Aquaria", "game_detection": [ @@ -19735,7 +18515,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Need For Speed: Underground 2", "game_detection": [ @@ -19747,7 +18526,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Streets of Rogue", "game_detection": [ @@ -19762,7 +18540,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Out of the Park Baseball 14", "game_detection": [ @@ -19782,7 +18559,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Joe Danger 2: The Movie", "game_detection": [ @@ -19803,7 +18579,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "E.Y.E.", "game_detection": [ @@ -19818,7 +18593,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Glitchspace", "game_detection": [ @@ -19833,7 +18607,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Out of the Park Baseball 9", "game_detection": [ @@ -19848,7 +18621,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Anmynor Puzzles", "game_detection": [ @@ -19868,7 +18640,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Adam's Venture II: Solomon's Secret", "game_detection": [ @@ -19883,7 +18654,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tom Clancy's Rainbow Six: Vegas 2", "game_detection": [ @@ -19905,7 +18675,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Outpost Kaloki", "game_detection": [ @@ -19922,7 +18691,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "World of Kung Fu", "game_detection": [ @@ -19935,7 +18703,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Massive Chalice", "game_detection": [ @@ -19950,7 +18717,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ronin", "game_detection": [ @@ -19965,7 +18731,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Atelier Lydie & Suelle ~The Alchemists and the Mysterious Paintings~", "game_detection": [ @@ -19979,7 +18744,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Wolves 3: Civil War", "game_detection": [ @@ -19999,7 +18763,6 @@ ] }, { - "force_display_capture": false, "region": "UK", "title": "Soul Captor", "game_detection": [ @@ -20013,7 +18776,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Interplanetary", "game_detection": [ @@ -20028,7 +18790,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fallout", "game_detection": [ @@ -20048,7 +18809,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Masochisia", "game_detection": [ @@ -20063,7 +18823,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kokurase: Episode 1", "game_detection": [ @@ -20078,7 +18837,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wildlife Park 2", "game_detection": [ @@ -20141,7 +18899,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Moto Racer", "game_detection": [ @@ -20154,7 +18911,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kill Fun Yeah", "game_detection": [ @@ -20176,7 +18932,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Transformers: Rise of the Dark Spark", "game_detection": [ @@ -20191,7 +18946,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Postal 2: Share The Pain", "game_detection": [ @@ -20213,7 +18967,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Darksiders", "game_detection": [ @@ -20228,7 +18981,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Destiny 2", "game_detection": [ @@ -20250,7 +19002,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "deltarune", "game_detection": [ @@ -20261,7 +19012,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Karmaflow: The Rock Opera Videogame", "game_detection": [ @@ -20276,7 +19026,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "QP Shooting: Dangerous!!", "game_detection": [ @@ -20291,7 +19040,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Windosill", "game_detection": [ @@ -20311,7 +19059,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Toy Soldiers", "game_detection": [ @@ -20326,7 +19073,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blast Em!", "game_detection": [ @@ -20341,7 +19087,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tales of Berseria", "game_detection": [ @@ -20355,7 +19100,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Contagion", "game_detection": [ @@ -20370,7 +19114,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "7 Wonders: Treasures of Seven", "game_detection": [ @@ -20384,7 +19127,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "Smite", "game_detection": [ @@ -20399,7 +19141,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FootLOL: Epic Fail League", "game_detection": [ @@ -20414,7 +19155,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stronghold Crusader II", "game_detection": [ @@ -20429,7 +19169,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Beyond Sol", "game_detection": [ @@ -20444,7 +19183,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Take-Out Weight Curling 2", "game_detection": [ @@ -20458,7 +19196,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Asheron's Call", "game_detection": [ @@ -20471,7 +19208,6 @@ ] }, { - "force_display_capture": false, "region": "RU", "title": "Royal Quest", "game_detection": [ @@ -20485,7 +19221,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Legend of Grimrock II", "game_detection": [ @@ -20500,7 +19235,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Icewind Dale II", "game_detection": [ @@ -20513,7 +19247,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SimCity 3000", "game_detection": [ @@ -20525,7 +19258,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Fallout: New Vegas", "game_detection": [ @@ -20540,7 +19272,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "QQ Speed", "game_detection": [ @@ -20556,7 +19287,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Paint the Town Red", "game_detection": [ @@ -20571,7 +19301,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SCHAR: Blue Shield Alliance", "game_detection": [ @@ -20586,7 +19315,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Primal Carnage", "game_detection": [ @@ -20601,7 +19329,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Underground Man", "game_detection": [ @@ -20616,7 +19343,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "King Arthur II", "game_detection": [ @@ -20631,7 +19357,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Remington Super Slam Hunting Alaska", "game_detection": [ @@ -20643,7 +19368,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pink Heaven", "game_detection": [ @@ -20658,7 +19382,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Last Dream", "game_detection": [ @@ -20673,7 +19396,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Massive Assault", "game_detection": [ @@ -20694,7 +19416,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark Lore Mysteries: The Hunt For Truth", "game_detection": [ @@ -20709,7 +19430,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dreaming Sarah", "game_detection": [ @@ -20724,7 +19444,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Patrician 2", "game_detection": [ @@ -20736,7 +19455,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Astroflux", "game_detection": [ @@ -20751,7 +19469,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sharpe Investigations: Death on the Seine", "game_detection": [ @@ -20766,7 +19483,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Amnesia: The Dark Descent", "game_detection": [ @@ -20793,7 +19509,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RuneScape", "game_detection": [ @@ -20823,7 +19538,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SPORT1 Live: Duel", "game_detection": [ @@ -20838,7 +19552,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Oil Blue", "game_detection": [ @@ -20855,7 +19568,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blazing Beaks", "game_detection": [ @@ -20866,7 +19578,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Flotilla", "game_detection": [ @@ -20881,7 +19592,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tom Clancy's HAWX Demo", "game_detection": [ @@ -20893,7 +19603,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dirt Rally 2", "game_detection": [ @@ -20904,7 +19613,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Yu-Gi-Oh! Legacy of the Duelist", "game_detection": [ @@ -20919,7 +19627,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "No Time To Explain Remastered", "game_detection": [ @@ -20934,7 +19641,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Khimera: Destroy All Monster Girls", "game_detection": [ @@ -20949,7 +19655,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Punch Planet", "game_detection": [ @@ -20964,7 +19669,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "1701 A.D.", "game_detection": [ @@ -20981,7 +19685,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Steins;Gate", "game_detection": [ @@ -20996,7 +19699,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Taito Legends 2", "game_detection": [ @@ -21008,7 +19710,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Notch: The Innocent LunA: Eclipsed SinnerS", "game_detection": [ @@ -21023,7 +19724,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SpellKnights", "game_detection": [ @@ -21038,7 +19738,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Metro 2033", "game_detection": [ @@ -21053,7 +19752,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "AERENA - Masters Edition", "game_detection": [ @@ -21068,7 +19766,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Interstellar Marines", "game_detection": [ @@ -21083,7 +19780,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Adventures of Shuggy", "game_detection": [ @@ -21098,7 +19794,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Call of Duty: Modern Warfare", "game_detection": [ @@ -21117,7 +19812,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hidden Expedition: Everest", "game_detection": [ @@ -21132,7 +19826,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spore", "game_detection": [ @@ -21154,7 +19847,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Squishy the Suicidal Pig", "game_detection": [ @@ -21169,7 +19861,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ankh: Battle of the Gods", "game_detection": [ @@ -21181,7 +19872,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Expand", "game_detection": [ @@ -21196,7 +19886,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Scrolls", "game_detection": [ @@ -21210,7 +19899,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SpaceChem", "game_detection": [ @@ -21225,7 +19913,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deity", "game_detection": [ @@ -21237,7 +19924,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "UNO", "game_detection": [ @@ -21248,7 +19934,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gundemonium Recollection", "game_detection": [ @@ -21263,7 +19948,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chessmaster Challenge", "game_detection": [ @@ -21278,7 +19962,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Poly Bridge", "game_detection": [ @@ -21293,7 +19976,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Outlast", "game_detection": [ @@ -21314,7 +19996,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warlords: Battlecry 2", "game_detection": [ @@ -21326,7 +20007,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Football Manager 2005", "game_detection": [ @@ -21338,7 +20018,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Clockwork Man: The Hidden World", "game_detection": [ @@ -21353,7 +20032,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A Slower Speed of Light", "game_detection": [ @@ -21365,7 +20043,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rift", "game_detection": [ @@ -21408,7 +20085,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Egg Time", "game_detection": [ @@ -21424,7 +20100,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Resident Evil 4", "game_detection": [ @@ -21439,7 +20114,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blackguards", "game_detection": [ @@ -21459,7 +20133,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Defense Task Force", "game_detection": [ @@ -21473,7 +20146,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dragon Age: Origins", "game_detection": [ @@ -21499,7 +20171,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeonbowl", "game_detection": [ @@ -21514,7 +20185,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ANNO 1800", "game_detection": [ @@ -21533,7 +20203,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Master Levels for Doom II", "game_detection": [ @@ -21548,7 +20217,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Putt-Putt and Pep's Dog on a Stick", "game_detection": [ @@ -21563,7 +20231,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Major Mayhem", "game_detection": [ @@ -21578,7 +20245,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Silent Hill: Homecoming", "game_detection": [ @@ -21593,7 +20259,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Symphony", "game_detection": [ @@ -21613,7 +20278,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Coil", "game_detection": [ @@ -21628,7 +20292,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wrack", "game_detection": [ @@ -21643,7 +20306,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Where is My Heart?", "game_detection": [ @@ -21658,7 +20320,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "8-Bit Commando", "game_detection": [ @@ -21673,7 +20334,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "rFactor", "game_detection": [ @@ -21693,7 +20353,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Phase Shift", "game_detection": [ @@ -21705,7 +20364,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Line Rider 2: Unbound", "game_detection": [ @@ -21726,7 +20384,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Death's Gambit", "game_detection": [ @@ -21740,7 +20397,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dysfunctional Systems: Learning to Manage Chaos", "game_detection": [ @@ -21755,7 +20411,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Skullgirls", "game_detection": [ @@ -21778,7 +20433,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Joe Danger", "game_detection": [ @@ -21793,7 +20447,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Transformice", "game_detection": [ @@ -21813,7 +20466,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "oO", "game_detection": [ @@ -21828,7 +20480,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Resident Evil: Revelations", "game_detection": [ @@ -21843,7 +20494,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Adventure Park", "game_detection": [ @@ -21858,7 +20508,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "All Is Dust", "game_detection": [ @@ -21873,7 +20522,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Harry Potter and the Prisoner of Azkaban", "game_detection": [ @@ -21886,7 +20534,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Area-X", "game_detection": [ @@ -21901,7 +20548,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "El Matador", "game_detection": [ @@ -21921,7 +20567,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Win Big Or Die", "game_detection": [ @@ -21936,7 +20581,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battle Princess Madelyn", "game_detection": [ @@ -21947,7 +20591,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Call of Duty: Modern Warfare 3", "game_detection": [ @@ -21970,7 +20613,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stories Untold", "game_detection": [ @@ -21981,7 +20623,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bit.Trip Runner", "game_detection": [ @@ -22001,7 +20642,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Grow Home", "game_detection": [ @@ -22016,7 +20656,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Making History: The Great War", "game_detection": [ @@ -22031,7 +20670,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ActiveWorlds", "game_detection": [ @@ -22043,7 +20681,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "D-Day Normandy", "game_detection": [ @@ -22056,7 +20693,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mahjong Quest 2", "game_detection": [ @@ -22071,7 +20707,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Uncanny Valley", "game_detection": [ @@ -22086,7 +20721,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hamlet or the Last Game without MMORPG Features, Shaders and Product Placement", "game_detection": [ @@ -22101,7 +20735,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Enforcer: Police Crime Action", "game_detection": [ @@ -22116,7 +20749,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "March of the Eagles", "game_detection": [ @@ -22131,7 +20763,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Scourge Project - Episode 1 and 2", "game_detection": [ @@ -22146,7 +20777,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Football Manager 2012", "game_detection": [ @@ -22161,7 +20791,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Might & Magic Heroes VII", "game_detection": [ @@ -22183,7 +20812,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Oil Rush", "game_detection": [ @@ -22204,7 +20832,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Trek Voyager: Elite Force", "game_detection": [ @@ -22228,7 +20855,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sam & Max Episode 102: Situation Comedy", "game_detection": [ @@ -22248,7 +20874,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "AquaNox", "game_detection": [ @@ -22263,7 +20888,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Watch Dogs 2", "game_detection": [ @@ -22292,7 +20916,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nancy Drew: The Creature of Kapu Cave", "game_detection": [ @@ -22307,7 +20930,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Paranormal", "game_detection": [ @@ -22319,7 +20941,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mars: War Logs", "game_detection": [ @@ -22334,7 +20955,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Turning Point: The Fall of Liberty", "game_detection": [ @@ -22347,7 +20967,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Slayers Online", "game_detection": [ @@ -22359,7 +20978,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kitten Cannon", "game_detection": [ @@ -22375,7 +20993,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NBA 2K12", "game_detection": [ @@ -22395,7 +21012,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rijn the Specpyre in... Manor of the Damned!", "game_detection": [ @@ -22412,7 +21028,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "CubeGun", "game_detection": [ @@ -22427,7 +21042,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Defy Gravity Extended", "game_detection": [ @@ -22442,7 +21056,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "how do you Do It?", "game_detection": [ @@ -22457,7 +21070,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Space Pirates And Zombies 2", "game_detection": [ @@ -22472,7 +21084,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Scythe: Digital Edition", "game_detection": [ @@ -22486,7 +21097,6 @@ ] }, { - "force_display_capture": false, "region": "RU", "title": "Black Desert", "game_detection": [ @@ -22503,7 +21113,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Powerboat GT", "game_detection": [ @@ -22516,7 +21125,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Atlantis Sky Patrol", "game_detection": [ @@ -22531,7 +21139,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zone of the Enders the 2nd Runner: Mars", "game_detection": [ @@ -22545,7 +21152,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Distance", "game_detection": [ @@ -22565,7 +21171,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "War Leaders: Clash of Nations", "game_detection": [ @@ -22578,7 +21183,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hot Lava", "game_detection": [ @@ -22589,7 +21193,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Roche Fusion", "game_detection": [ @@ -22604,7 +21207,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead Hungry Diner", "game_detection": [ @@ -22619,7 +21221,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Trek", "game_detection": [ @@ -22634,7 +21235,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mount Your Friends", "game_detection": [ @@ -22650,7 +21250,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Arx Fatalis", "game_detection": [ @@ -22665,7 +21264,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "You Have 10 Seconds 2", "game_detection": [ @@ -22680,7 +21278,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Angry Birds: Star Wars", "game_detection": [ @@ -22692,7 +21289,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Smite", "game_detection": [ @@ -22730,7 +21326,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Kill Team", "game_detection": [ @@ -22745,7 +21340,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "New Frontier", "game_detection": [ @@ -22756,7 +21350,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Enemy Mind", "game_detection": [ @@ -22771,7 +21364,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Hexagon", "game_detection": [ @@ -22791,7 +21383,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spy Fox In: Hold the Mustard", "game_detection": [ @@ -22806,7 +21397,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wind Slayer", "game_detection": [ @@ -22822,7 +21412,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "KWAAN", "game_detection": [ @@ -22837,7 +21426,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gumboy Crazy Features", "game_detection": [ @@ -22852,7 +21440,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Back to the Future: The Game - Ep. 1: It's About Time", "game_detection": [ @@ -22872,7 +21459,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Guilty Gear Xrd -REVELATOR-", "game_detection": [ @@ -22887,7 +21473,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Roogoo", "game_detection": [ @@ -22907,7 +21492,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Scarygirl", "game_detection": [ @@ -22922,7 +21506,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GALAK-Z", "game_detection": [ @@ -22937,7 +21520,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Train Fever", "game_detection": [ @@ -22952,7 +21534,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crysis 3", "game_detection": [ @@ -22964,7 +21545,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Daedalus: No Escape", "game_detection": [ @@ -22979,7 +21559,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Max Gentlemen", "game_detection": [ @@ -22994,7 +21573,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "RaiderZ", "game_detection": [ @@ -23007,7 +21585,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alice: Madness Returns", "game_detection": [ @@ -23028,7 +21605,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bully: Scholarship Edition", "game_detection": [ @@ -23048,7 +21624,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battlefield Hardline", "game_detection": [ @@ -23060,7 +21635,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Equilinox", "game_detection": [ @@ -23072,7 +21646,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shin Megami Tensei: Imagine", "game_detection": [ @@ -23098,7 +21671,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heroes and Titans: Online", "game_detection": [ @@ -23113,7 +21685,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "S4 League", "game_detection": [ @@ -23139,7 +21710,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rayman 2: The Great Escape", "game_detection": [ @@ -23157,7 +21727,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FIFA Manager 13", "game_detection": [ @@ -23169,7 +21738,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kick-Ass 2", "game_detection": [ @@ -23184,7 +21752,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gourmania 2: Kitchen Confidential", "game_detection": [ @@ -23197,7 +21764,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "Heroes of Kingdoms", "game_detection": [ @@ -23213,7 +21779,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hangeki", "game_detection": [ @@ -23228,7 +21793,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Riptide GP2", "game_detection": [ @@ -23243,7 +21807,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Baseball Mogul 2012", "game_detection": [ @@ -23256,7 +21819,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Enigmatis: The Mists of Ravenwood", "game_detection": [ @@ -23271,7 +21833,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hero of the Kingdom", "game_detection": [ @@ -23286,7 +21847,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jewel Quest: Solitaire", "game_detection": [ @@ -23298,7 +21858,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Momodora", "game_detection": [ @@ -23310,7 +21869,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Bard's Tale", "game_detection": [ @@ -23330,7 +21888,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Capsized", "game_detection": [ @@ -23350,7 +21907,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MoW: Face Off XL", "game_detection": [ @@ -23365,7 +21921,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spy Fox in Dry Cereal", "game_detection": [ @@ -23380,7 +21935,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "What The Box?", "game_detection": [ @@ -23395,7 +21949,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fluttabyes", "game_detection": [ @@ -23410,7 +21963,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spy Party", "game_detection": [ @@ -23424,7 +21976,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "AI War: Fleet Command", "game_detection": [ @@ -23444,7 +21995,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "From Dust", "game_detection": [ @@ -23459,7 +22009,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BlackSoul", "game_detection": [ @@ -23474,7 +22023,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deathspank: The Baconing", "game_detection": [ @@ -23489,7 +22037,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Street Fighter X Mega Man", "game_detection": [ @@ -23501,7 +22048,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "EverQuest II: The Shadow Odyssey", "game_detection": [ @@ -23514,7 +22060,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Railroad Tycoon II Platinum", "game_detection": [ @@ -23529,7 +22074,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark Messiah of Might & Magic", "game_detection": [ @@ -23557,7 +22101,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rekoil", "game_detection": [ @@ -23579,7 +22122,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cat Goes Fishing", "game_detection": [ @@ -23594,7 +22136,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Psi-Ops: The Mindgate Conspiracy", "game_detection": [ @@ -23607,7 +22148,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mega Man 11", "game_detection": [ @@ -23618,7 +22158,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Endless Legend", "game_detection": [ @@ -23633,7 +22172,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Upshift StrikeRacer", "game_detection": [ @@ -23647,7 +22185,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "John Woo Presents Stranglehold", "game_detection": [ @@ -23660,7 +22197,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Planet Centauri", "game_detection": [ @@ -23675,7 +22211,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MANDAGON", "game_detection": [ @@ -23690,7 +22225,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battlepaths", "game_detection": [ @@ -23705,7 +22239,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Football Manager 2011", "game_detection": [ @@ -23725,7 +22258,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "One Piece: Unlimited World Red", "game_detection": [ @@ -23740,7 +22272,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Broken Sword: The Shadow of the Templars", "game_detection": [ @@ -23755,7 +22286,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fairy Tale Mysteries: The Puppet Thief", "game_detection": [ @@ -23770,7 +22300,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "UberStrike", "game_detection": [ @@ -23790,7 +22319,6 @@ ] }, { - "force_display_capture": false, "region": "RU", "title": "Dishonored", "game_detection": [ @@ -23805,7 +22333,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jutland", "game_detection": [ @@ -23817,7 +22344,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Unturned", "game_detection": [ @@ -23832,7 +22358,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Darkwood", "game_detection": [ @@ -23847,7 +22372,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Darksiders Warmastered Edition", "game_detection": [ @@ -23862,7 +22386,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Grand Theft Auto V", "game_detection": [ @@ -23883,7 +22406,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Far Cry 5", "game_detection": [ @@ -23904,7 +22426,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Final Fantasy V", "game_detection": [ @@ -23919,7 +22440,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Dawn of War Demo", "game_detection": [ @@ -23932,7 +22452,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Westerado: Double Barreled", "game_detection": [ @@ -23947,7 +22466,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Duke Nukem: Manhattan Project", "game_detection": [ @@ -23968,7 +22486,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "AssaultCube", "game_detection": [ @@ -23982,7 +22499,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "End of Nations", "game_detection": [ @@ -23996,7 +22512,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Juiced", "game_detection": [ @@ -24008,7 +22523,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Borderlands 2", "game_detection": [ @@ -24023,7 +22537,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "To Burn in Memory", "game_detection": [ @@ -24038,7 +22551,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Savage XR", "game_detection": [ @@ -24052,7 +22564,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Freaking Meatbags", "game_detection": [ @@ -24067,7 +22578,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Wars: X-Wing Alliance", "game_detection": [ @@ -24079,7 +22589,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Azuga: Age of Chaos", "game_detection": [ @@ -24092,7 +22601,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Showtime!", "game_detection": [ @@ -24107,7 +22615,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "WorldShift", "game_detection": [ @@ -24128,7 +22635,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battleship: Fleet Command", "game_detection": [ @@ -24143,7 +22649,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Iron Man", "game_detection": [ @@ -24156,7 +22661,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spellforce 2: Gold Edition", "game_detection": [ @@ -24171,7 +22675,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims 2: University", "game_detection": [ @@ -24183,7 +22686,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bunny Must Die! Chelsea and the 7 Devils", "game_detection": [ @@ -24208,7 +22710,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kholat", "game_detection": [ @@ -24223,7 +22724,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tycoon City: New York", "game_detection": [ @@ -24235,7 +22735,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Donut County", "game_detection": [ @@ -24249,7 +22748,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ubinota", "game_detection": [ @@ -24264,7 +22762,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ashes of the Singularity: Escalation", "game_detection": [ @@ -24280,7 +22777,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Virtual Villagers: A New Home", "game_detection": [ @@ -24295,7 +22791,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alien Swarm", "game_detection": [ @@ -24310,7 +22805,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Civilization V", "game_detection": [ @@ -24325,7 +22819,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Original War", "game_detection": [ @@ -24350,7 +22843,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Batman Arkham City GOTY", "game_detection": [ @@ -24365,7 +22857,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sherlock Holmes The Mystery of the Persian Carpet", "game_detection": [ @@ -24380,7 +22871,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "1849", "game_detection": [ @@ -24395,7 +22885,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dirt 3: Complete Edition", "game_detection": [ @@ -24410,7 +22899,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BLOCKPOST", "game_detection": [ @@ -24421,7 +22909,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Back to the Future: The Game - Ep. 3: Citizen Brown", "game_detection": [ @@ -24440,7 +22927,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crimzon Clover World Ignition", "game_detection": [ @@ -24455,7 +22941,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "CellFactor: Revolution", "game_detection": [ @@ -24469,7 +22954,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rehearsals and Returns", "game_detection": [ @@ -24481,7 +22965,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "I Wanna Be The Guy The Movie: The Game", "game_detection": [ @@ -24500,7 +22983,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Receiver", "game_detection": [ @@ -24515,7 +22997,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ashen", "game_detection": [ @@ -24526,7 +23007,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sid Meier's Civilization: Beyond Earth", "game_detection": [ @@ -24541,7 +23021,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Final Fantasy XI: Online", "game_detection": [ @@ -24569,7 +23048,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MTV's Virtual World", "game_detection": [ @@ -24584,7 +23062,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tom Clancy's EndWar", "game_detection": [ @@ -24597,7 +23074,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gunpoint", "game_detection": [ @@ -24617,7 +23093,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Long Live The Queen", "game_detection": [ @@ -24632,7 +23107,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mega Man Legacy Collection 2", "game_detection": [ @@ -24647,7 +23121,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mechanic Escape", "game_detection": [ @@ -24662,7 +23135,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rayman 3: Hoodlum Havoc", "game_detection": [ @@ -24680,7 +23152,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "City of Heroes", "game_detection": [ @@ -24715,7 +23186,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Medal of Honor: Allied Assault", "game_detection": [ @@ -24728,7 +23198,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Silent Hunter III", "game_detection": [ @@ -24740,7 +23209,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Perfect World International", "game_detection": [ @@ -24774,7 +23242,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ARMA II Demo", "game_detection": [ @@ -24789,7 +23256,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Return to Castle Wolfenstein", "game_detection": [ @@ -24846,7 +23312,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hydrophobia: Prophecy", "game_detection": [ @@ -24861,7 +23326,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Storm", "game_detection": [ @@ -24876,7 +23340,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Elder Scrolls 3: Morrowind", "game_detection": [ @@ -24888,7 +23351,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alabama Smith in the Quest of Fate", "game_detection": [ @@ -24901,7 +23363,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Global Outbreak: Doomsday Edition", "game_detection": [ @@ -24916,7 +23377,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dokuro", "game_detection": [ @@ -24931,7 +23391,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gridiron Solitaire", "game_detection": [ @@ -24946,7 +23405,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nancy Drew: Alibi in Ashes", "game_detection": [ @@ -24961,7 +23419,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Penny Arcade Adventures: On the Rain-Slick Precipice of Darkness Episode Three", "game_detection": [ @@ -24976,7 +23433,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stranded", "game_detection": [ @@ -24997,7 +23453,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Xpand Rally Xtreme", "game_detection": [ @@ -25012,7 +23467,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "War of the Vikings", "game_detection": [ @@ -25027,7 +23481,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BattleBlock Theater", "game_detection": [ @@ -25042,7 +23495,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Evochron Legends", "game_detection": [ @@ -25054,7 +23506,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ArmA II: Operation Arrowhead", "game_detection": [ @@ -25075,7 +23526,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jagged Alliance 2: Wildfire", "game_detection": [ @@ -25100,7 +23550,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "I Wanna Be The Boshy", "game_detection": [ @@ -25111,7 +23560,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Platformance: Castle Pain", "game_detection": [ @@ -25123,7 +23571,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "R.I.P.D.: The Game", "game_detection": [ @@ -25138,7 +23585,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Old City: Leviathan", "game_detection": [ @@ -25153,7 +23599,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Black Clover: Quartet Knights", "game_detection": [ @@ -25167,7 +23612,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Incoming Forces", "game_detection": [ @@ -25182,7 +23626,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Overlord II", "game_detection": [ @@ -25202,7 +23645,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battlefield Heroes", "game_detection": [ @@ -25214,7 +23656,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Door Kickers", "game_detection": [ @@ -25234,7 +23675,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Legionwood: Tale of the Two Swords", "game_detection": [ @@ -25249,7 +23689,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Icy Tower", "game_detection": [ @@ -25261,7 +23700,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Razor2 Hidden Skies", "game_detection": [ @@ -25276,7 +23714,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FlatOut 2", "game_detection": [ @@ -25296,7 +23733,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tick Tock Bang Bang", "game_detection": [ @@ -25311,7 +23747,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Portal Knights", "game_detection": [ @@ -25326,7 +23761,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sugar Cube: Bittersweet Factory", "game_detection": [ @@ -25341,7 +23775,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Redux: Dark Matters", "game_detection": [ @@ -25356,7 +23789,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Trainz Railroad Simulator 2006", "game_detection": [ @@ -25368,7 +23800,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Void Destroyer", "game_detection": [ @@ -25383,7 +23814,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A Stroke of Fate: Operation Valkyrie", "game_detection": [ @@ -25398,7 +23828,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deathtrap Dungeon", "game_detection": [ @@ -25413,7 +23842,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sherlock Holmes: The Awakened - Remastered Edition", "game_detection": [ @@ -25428,7 +23856,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Autocraft", "game_detection": [ @@ -25443,7 +23870,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Craft The World", "game_detection": [ @@ -25458,7 +23884,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Broken Sword: The Sleeping Dragon", "game_detection": [ @@ -25478,7 +23903,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deer Hunter 2004", "game_detection": [ @@ -25490,7 +23914,6 @@ ] }, { - "force_display_capture": false, "region": "ES", "title": "Gobernators", "game_detection": [ @@ -25505,7 +23928,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battlefield V", "game_detection": [ @@ -25525,7 +23947,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hexen", "game_detection": [ @@ -25540,7 +23961,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Triple Town", "game_detection": [ @@ -25555,7 +23975,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "INVASION!", "game_detection": [ @@ -25571,7 +23990,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead or Alive 5: Last Round", "game_detection": [ @@ -25586,7 +24004,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fancy Skulls", "game_detection": [ @@ -25606,7 +24023,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Richie's Plank Experience", "game_detection": [ @@ -25622,7 +24038,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Far Cry 4", "game_detection": [ @@ -25644,7 +24059,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hexen 2", "game_detection": [ @@ -25659,7 +24073,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rumble Fighter", "game_detection": [ @@ -25680,7 +24093,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Turbo Pug DX", "game_detection": [ @@ -25695,7 +24107,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lionheart: Kings' Crusade", "game_detection": [ @@ -25710,7 +24121,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Extreme Roads USA", "game_detection": [ @@ -25725,7 +24135,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Testament of Sherlock Holmes", "game_detection": [ @@ -25740,7 +24149,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "City Life: Deluxe", "game_detection": [ @@ -25761,7 +24169,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Commander Cool 2", "game_detection": [ @@ -25776,7 +24183,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Trackmania Nations", "game_detection": [ @@ -25788,7 +24194,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tuebor", "game_detection": [ @@ -25803,7 +24208,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Family Feud 4: Battle of the Sexes", "game_detection": [ @@ -25818,7 +24222,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Trackmania 2 Valley", "game_detection": [ @@ -25833,7 +24236,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ash of Gods: Redemption", "game_detection": [ @@ -25847,7 +24249,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tactical Intervention", "game_detection": [ @@ -25871,7 +24272,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "I Want To Be Human", "game_detection": [ @@ -25886,7 +24286,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Age of Wonders III", "game_detection": [ @@ -25901,7 +24300,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "theHunter: Primal", "game_detection": [ @@ -25916,7 +24314,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Drakensang", "game_detection": [ @@ -25944,7 +24341,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bookworm Adventures Vol. 2", "game_detection": [ @@ -25959,7 +24355,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battle Fantasia -Revised Edition-", "game_detection": [ @@ -25974,7 +24369,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eye of the Owl: Bosch VR", "game_detection": [ @@ -25990,7 +24384,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Conflict", "game_detection": [ @@ -26005,7 +24398,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tallowmere", "game_detection": [ @@ -26020,7 +24412,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "X-COM: Interceptor", "game_detection": [ @@ -26040,7 +24431,6 @@ ] }, { - "force_display_capture": false, "region": "SG", "title": "FIFA Online 3", "game_detection": [ @@ -26055,7 +24445,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GemSweeper", "game_detection": [ @@ -26070,7 +24459,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "8BallClub", "game_detection": [ @@ -26083,7 +24471,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "CT Special Forces: Fire for Effect", "game_detection": [ @@ -26098,7 +24485,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mirror Mysteries", "game_detection": [ @@ -26113,7 +24499,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NASCAR SimRacing", "game_detection": [ @@ -26125,7 +24510,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cities in Motion", "game_detection": [ @@ -26140,7 +24524,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fallout Tactics: Brotherhood of Steel", "game_detection": [ @@ -26166,7 +24549,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Winning Eleven 9", "game_detection": [ @@ -26178,7 +24560,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Overkill VR", "game_detection": [ @@ -26194,7 +24575,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zuma Deluxe", "game_detection": [ @@ -26215,7 +24595,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Settlement: Colossus", "game_detection": [ @@ -26228,7 +24607,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "QQ Robo", "game_detection": [ @@ -26241,7 +24619,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Transformers: Revenge of the Fallen", "game_detection": [ @@ -26254,7 +24631,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Inkball", "game_detection": [ @@ -26271,7 +24647,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Redneck Racers", "game_detection": [ @@ -26286,7 +24661,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Europa Universalis III", "game_detection": [ @@ -26299,7 +24673,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pokemon Trading Card Game Online", "game_detection": [ @@ -26321,7 +24694,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro-Pinball: Big Race USA", "game_detection": [ @@ -26333,7 +24705,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BrainBread 2", "game_detection": [ @@ -26348,7 +24719,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ultimate Bet", "game_detection": [ @@ -26361,7 +24731,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alien Breed 3: Descent", "game_detection": [ @@ -26376,7 +24745,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fight The Dragon", "game_detection": [ @@ -26391,7 +24759,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pacify", "game_detection": [ @@ -26402,7 +24769,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Runbow", "game_detection": [ @@ -26417,7 +24783,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Terminator Salvation", "game_detection": [ @@ -26437,7 +24802,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "There Came an Echo", "game_detection": [ @@ -26452,7 +24816,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Back to the Future: The Game - Ep. 5: OUTATIME", "game_detection": [ @@ -26471,7 +24834,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sins of a Solar Empire: Entrenchment", "game_detection": [ @@ -26483,7 +24845,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "X-Men Origins: Wolverine", "game_detection": [ @@ -26496,7 +24857,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead in Vinland", "game_detection": [ @@ -26510,7 +24870,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Street Fighter IV Arcade Edition", "game_detection": [ @@ -26530,7 +24889,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Frozen Hearth", "game_detection": [ @@ -26545,7 +24903,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hunted: The Demon's Forge", "game_detection": [ @@ -26566,7 +24923,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mighty Gunvolt", "game_detection": [ @@ -26581,7 +24937,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Offspring Fling", "game_detection": [ @@ -26601,7 +24956,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SpellForce 2: Demons of the Past", "game_detection": [ @@ -26616,7 +24970,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Silkroad Online", "game_detection": [ @@ -26631,7 +24984,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Need for Speed World", "game_detection": [ @@ -26646,7 +24998,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Indigo Prophecy Remastered", "game_detection": [ @@ -26661,7 +25012,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Boiling Point", "game_detection": [ @@ -26673,7 +25023,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Disc Jam", "game_detection": [ @@ -26688,7 +25037,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Iron Warriors: T-72 Tank Command", "game_detection": [ @@ -26703,7 +25051,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DeadEnd: Cerebral Vortex", "game_detection": [ @@ -26715,7 +25062,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Orwell", "game_detection": [ @@ -26730,7 +25076,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Overlord", "game_detection": [ @@ -26742,7 +25087,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Paper Sorcerer", "game_detection": [ @@ -26762,7 +25106,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hoyle Slots", "game_detection": [ @@ -26774,7 +25117,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "PokerRoom", "game_detection": [ @@ -26795,7 +25137,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bright Shadow", "game_detection": [ @@ -26809,7 +25150,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MadBalls in Babo Invasion", "game_detection": [ @@ -26824,7 +25164,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Guild 2: Venice", "game_detection": [ @@ -26836,7 +25175,6 @@ ] }, { - "force_display_capture": false, "region": "JP", "title": "Tsukumogami", "game_detection": [ @@ -26851,7 +25189,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Parkan II", "game_detection": [ @@ -26866,7 +25203,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Grand Theft Auto", "game_detection": [ @@ -26886,7 +25222,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Louie Cooks", "game_detection": [ @@ -26901,7 +25236,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Two Worlds Demo", "game_detection": [ @@ -26914,7 +25248,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kicks Online", "game_detection": [ @@ -26928,7 +25261,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pinball FX 2", "game_detection": [ @@ -26943,7 +25275,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2010", "game_detection": [ @@ -26955,7 +25286,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "King's Bounty: The Legend", "game_detection": [ @@ -26975,7 +25305,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Football Superstars", "game_detection": [ @@ -26996,7 +25325,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Patterns", "game_detection": [ @@ -27011,7 +25339,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Guns of Icarus Online", "game_detection": [ @@ -27026,7 +25353,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hard Truck 2", "game_detection": [ @@ -27038,7 +25364,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stronghold HD", "game_detection": [ @@ -27063,7 +25388,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Runes of Magic", "game_detection": [ @@ -27076,7 +25400,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Painkiller Redemption", "game_detection": [ @@ -27091,7 +25414,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Icarus-X: Tides of Fire", "game_detection": [ @@ -27106,7 +25428,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "You Don't Know Jack", "game_detection": [ @@ -27121,7 +25442,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deponia", "game_detection": [ @@ -27136,7 +25456,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hegemony Gold: Wars of Ancient Greece", "game_detection": [ @@ -27151,7 +25470,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bicycle Texas Hold ‘Em Poker", "game_detection": [ @@ -27163,7 +25481,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spell Fighter VR", "game_detection": [ @@ -27179,7 +25496,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Reach for the Sun", "game_detection": [ @@ -27194,7 +25510,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sentris", "game_detection": [ @@ -27209,7 +25524,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Verdun", "game_detection": [ @@ -27224,7 +25538,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Resident Evil 7 biohazard", "game_detection": [ @@ -27247,7 +25560,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sniper Elite III", "game_detection": [ @@ -27261,7 +25573,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "From the Depths", "game_detection": [ @@ -27276,7 +25587,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Defcon", "game_detection": [ @@ -27296,7 +25606,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tradewinds Legends", "game_detection": [ @@ -27311,7 +25620,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Beasts of Bermuda", "game_detection": [ @@ -27326,7 +25634,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dragon's Prophet", "game_detection": [ @@ -27348,7 +25655,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Putt-Putt Goes to the Moon", "game_detection": [ @@ -27363,7 +25669,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "Ni Zhan", "game_detection": [ @@ -27377,7 +25682,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Victoria II", "game_detection": [ @@ -27397,7 +25701,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "iRacing", "game_detection": [ @@ -27421,7 +25724,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "Kartrider", "game_detection": [ @@ -27434,7 +25736,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shot Online", "game_detection": [ @@ -27455,7 +25756,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Trash TV Demo", "game_detection": [ @@ -27470,7 +25770,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Max: The Curse of Brotherhood", "game_detection": [ @@ -27485,7 +25784,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Quake 4 Demo", "game_detection": [ @@ -27500,7 +25798,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Worms W.M.D. All Stars", "game_detection": [ @@ -27515,7 +25812,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kohan II: Kings of War", "game_detection": [ @@ -27535,7 +25831,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Loren The Amazon Princess", "game_detection": [ @@ -27555,7 +25850,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Family Feud 2010 Edition", "game_detection": [ @@ -27570,7 +25864,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sudoku Ball: Detective", "game_detection": [ @@ -27585,7 +25878,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Order of War", "game_detection": [ @@ -27600,7 +25892,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dino D-Day", "game_detection": [ @@ -27615,7 +25906,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "18 Wheels of Steel: Pedal to the Metal", "game_detection": [ @@ -27629,7 +25919,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "WALL-E", "game_detection": [ @@ -27641,7 +25930,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Endless Sky", "game_detection": [ @@ -27656,7 +25944,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Another World: 20th Anniversary", "game_detection": [ @@ -27671,7 +25958,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Holic Online", "game_detection": [ @@ -27684,7 +25970,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Lord of the Rings: Battle for Middle Earth II", "game_detection": [ @@ -27698,7 +25983,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spy Fox 2: Some Assembly Required", "game_detection": [ @@ -27713,7 +25997,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Culling of the Cows", "game_detection": [ @@ -27728,7 +26011,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Monochroma", "game_detection": [ @@ -27743,7 +26025,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "You Don't Know Jack Vol. 1 XL", "game_detection": [ @@ -27758,7 +26039,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Voyage Century", "game_detection": [ @@ -27771,7 +26051,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Teslagrad", "game_detection": [ @@ -27791,7 +26070,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Aliens Versus Predator 2: Primal Hunt", "game_detection": [ @@ -27804,7 +26082,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kung Fu Strike: The Warrior's Rise", "game_detection": [ @@ -27819,7 +26096,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Madagascar: Escape 2 Africa", "game_detection": [ @@ -27831,7 +26107,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Mega Baseball 2", "game_detection": [ @@ -27845,7 +26120,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Monopoly", "game_detection": [ @@ -27860,7 +26134,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Princess and the Frog", "game_detection": [ @@ -27872,7 +26145,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "UEFA Euro 2008", "game_detection": [ @@ -27884,7 +26156,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Medieval Engineers", "game_detection": [ @@ -27895,7 +26166,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bridge It", "game_detection": [ @@ -27910,7 +26180,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Space Ark", "game_detection": [ @@ -27925,7 +26194,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NecroVisioN: Lost Company", "game_detection": [ @@ -27946,7 +26214,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Karma Online", "game_detection": [ @@ -27959,7 +26226,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BIOS", "game_detection": [ @@ -27974,7 +26240,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Weird Worlds: Return to Infinite Space", "game_detection": [ @@ -27989,7 +26254,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hinterland", "game_detection": [ @@ -28010,7 +26274,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fritz Chess 14", "game_detection": [ @@ -28025,7 +26288,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hitogata Happa", "game_detection": [ @@ -28040,7 +26302,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "World of Fishing", "game_detection": [ @@ -28055,7 +26316,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeon Lords", "game_detection": [ @@ -28067,7 +26327,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mahjong Titans", "game_detection": [ @@ -28086,7 +26345,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "One Way To Die", "game_detection": [ @@ -28101,7 +26359,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Slam Bolt Scrappers", "game_detection": [ @@ -28116,7 +26373,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Marble Blast Gold", "game_detection": [ @@ -28128,7 +26384,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer 40,000 Gladius - Relics of War", "game_detection": [ @@ -28142,7 +26397,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Moonbase Alpha", "game_detection": [ @@ -28157,7 +26411,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2017 Trial Edition", "game_detection": [ @@ -28172,7 +26425,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Elemental Heroes", "game_detection": [ @@ -28187,7 +26439,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Soldat", "game_detection": [ @@ -28204,7 +26455,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Championship Manager 2007", "game_detection": [ @@ -28216,7 +26466,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Glowfish", "game_detection": [ @@ -28231,7 +26480,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mahjong Towers Eternity", "game_detection": [ @@ -28246,7 +26494,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Racing Manager 2014", "game_detection": [ @@ -28261,7 +26508,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Graveyard Keeper", "game_detection": [ @@ -28275,7 +26521,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Roof Rage", "game_detection": [ @@ -28286,7 +26531,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Mighty Quest for Epic Loot", "game_detection": [ @@ -28308,7 +26552,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dear Esther", "game_detection": [ @@ -28328,7 +26571,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kingdoms of Amalur: Reckoning", "game_detection": [ @@ -28349,7 +26591,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Enslaved: Odyssey to the West", "game_detection": [ @@ -28364,7 +26605,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mystery Case Files Huntsville", "game_detection": [ @@ -28379,7 +26619,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NiGHTS into Dreams...", "game_detection": [ @@ -28394,7 +26633,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Might & Magic: Duel of Champions", "game_detection": [ @@ -28415,7 +26653,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FIFA Manager 11", "game_detection": [ @@ -28435,7 +26672,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ys: The Oath in Felghana", "game_detection": [ @@ -28461,7 +26697,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heroes of Havoc: Idle Adventures", "game_detection": [ @@ -28476,7 +26711,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Neverwinter Nights", "game_detection": [ @@ -28488,7 +26722,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lichdom: Battlemage", "game_detection": [ @@ -28503,7 +26736,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Habitat", "game_detection": [ @@ -28518,7 +26750,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fifa 15", "game_detection": [ @@ -28530,7 +26761,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hard Truck: Apocalypse", "game_detection": [ @@ -28545,7 +26775,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Retro City Rampage DX", "game_detection": [ @@ -28570,7 +26799,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Buccaneer: The Pursuit of Infamy", "game_detection": [ @@ -28585,7 +26813,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cricket 07", "game_detection": [ @@ -28597,7 +26824,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Navy Field 2", "game_detection": [ @@ -28611,7 +26837,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Axel & Pixel", "game_detection": [ @@ -28626,7 +26851,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Runner3", "game_detection": [ @@ -28640,7 +26864,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dangan Ronpa: Trigger Happy Havoc", "game_detection": [ @@ -28655,7 +26878,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Toukiden: Kiwami", "game_detection": [ @@ -28670,7 +26892,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Helicopter Simulator 2014: Search and Rescue", "game_detection": [ @@ -28685,7 +26906,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Delta Force 2", "game_detection": [ @@ -28706,7 +26926,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heat Online", "game_detection": [ @@ -28720,7 +26939,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Midnight Club II", "game_detection": [ @@ -28732,7 +26950,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Legend of Fae", "game_detection": [ @@ -28747,7 +26964,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "John Deere: Drive Green", "game_detection": [ @@ -28762,7 +26978,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Livelock", "game_detection": [ @@ -28777,7 +26992,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nancy Drew: Shadow at The Water's Edge", "game_detection": [ @@ -28792,7 +27006,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ground Pounders", "game_detection": [ @@ -28807,7 +27020,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tomb Raider Legend", "game_detection": [ @@ -28827,7 +27039,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Codename CURE", "game_detection": [ @@ -28842,7 +27053,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "CrossFire", "game_detection": [ @@ -28857,7 +27067,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alvin and the Chipmunks", "game_detection": [ @@ -28870,7 +27079,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "F.E.A.R. Online", "game_detection": [ @@ -28893,7 +27101,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Microsoft Flight Simulator 2004: A Century of Flight", "game_detection": [ @@ -28905,7 +27112,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Broken Sword: The Serpent's Curse", "game_detection": [ @@ -28925,7 +27131,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "1953: KGB Unleashed", "game_detection": [ @@ -28940,7 +27145,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Secrets of Grindea", "game_detection": [ @@ -28955,7 +27159,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Altis Gates", "game_detection": [ @@ -28968,7 +27171,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kalimba", "game_detection": [ @@ -28983,7 +27185,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Long Dark", "game_detection": [ @@ -28998,7 +27199,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pool Nation FX - Lite", "game_detection": [ @@ -29013,7 +27213,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NEKOPARA Vol. 1", "game_detection": [ @@ -29028,7 +27227,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ancient Space", "game_detection": [ @@ -29043,7 +27241,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MX vs. ATV Unleashed", "game_detection": [ @@ -29056,7 +27253,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ember Strike", "game_detection": [ @@ -29071,7 +27267,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "PC Building Simulator", "game_detection": [ @@ -29085,7 +27280,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Grand Theft Auto III", "game_detection": [ @@ -29105,7 +27299,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Aveyond: Lord of Twilight", "game_detection": [ @@ -29120,7 +27313,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cryostasis: Sleep of Reason", "game_detection": [ @@ -29132,7 +27324,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ride to Hell: Retribution", "game_detection": [ @@ -29147,7 +27338,6 @@ ] }, { - "force_display_capture": false, "region": "RU", "title": "Warface", "game_detection": [ @@ -29163,7 +27353,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FIFA Soccer 09", "game_detection": [ @@ -29175,7 +27364,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mu Online", "game_detection": [ @@ -29190,7 +27378,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Closure", "game_detection": [ @@ -29205,7 +27392,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Anima Gate of Memories", "game_detection": [ @@ -29220,7 +27406,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kingdom Rush", "game_detection": [ @@ -29240,7 +27425,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Movies", "game_detection": [ @@ -29252,7 +27436,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Malevolence: The Sword of Ahkranox", "game_detection": [ @@ -29267,7 +27450,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hearts of Iron III", "game_detection": [ @@ -29288,7 +27470,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "God Mode", "game_detection": [ @@ -29303,7 +27484,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "QQ Pool", "game_detection": [ @@ -29316,7 +27496,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Thief", "game_detection": [ @@ -29331,7 +27510,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blood Bowl: Dark Elves Edition", "game_detection": [ @@ -29346,7 +27524,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Resident Evil HD", "game_detection": [ @@ -29361,7 +27538,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Vanishing of Ethan Carter", "game_detection": [ @@ -29376,7 +27552,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BeatBlasters III", "game_detection": [ @@ -29396,7 +27571,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims 2: Celebration Stuff", "game_detection": [ @@ -29414,7 +27588,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Turbo Pug", "game_detection": [ @@ -29429,7 +27602,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fallen Doll", "game_detection": [ @@ -29440,7 +27612,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Unreal Tournament 2003", "game_detection": [ @@ -29458,7 +27629,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MechWarrior 4: Black Knight", "game_detection": [ @@ -29471,7 +27641,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Happy Hereafter", "game_detection": [ @@ -29486,7 +27655,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shoot Many Robots", "game_detection": [ @@ -29501,7 +27669,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Close Your Eyes", "game_detection": [ @@ -29516,7 +27683,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Distant Worlds: Universe", "game_detection": [ @@ -29531,7 +27697,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mighty Jill Off", "game_detection": [ @@ -29543,7 +27708,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sam & Max Episode 106: Bright Side of the Moon", "game_detection": [ @@ -29563,7 +27727,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Frets on Fire", "game_detection": [ @@ -29575,7 +27738,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eurofighter Typhoon", "game_detection": [ @@ -29590,7 +27752,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Minds Eyes", "game_detection": [ @@ -29605,7 +27766,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Death Track: Resurrection", "game_detection": [ @@ -29620,7 +27780,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ARGO", "game_detection": [ @@ -29634,7 +27793,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Triennale Game Collection", "game_detection": [ @@ -29649,7 +27807,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Jackbox Party Pack", "game_detection": [ @@ -29661,7 +27818,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ys Online: The Call of Solum", "game_detection": [ @@ -29676,7 +27832,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Danganronpa 2: Goodbye Despair", "game_detection": [ @@ -29691,7 +27846,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ghostbusters: Sanctum of Slime", "game_detection": [ @@ -29706,7 +27860,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Do Not Feed The Monkeys", "game_detection": [ @@ -29717,7 +27870,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cheesecake Cool Conrad", "game_detection": [ @@ -29732,7 +27884,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Volgarr the Viking", "game_detection": [ @@ -29752,7 +27903,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Apex Legends", "game_detection": [ @@ -29764,7 +27914,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Apex Legends", "game_detection": [ @@ -29779,7 +27928,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Klepto", "game_detection": [ @@ -29794,7 +27942,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bioshock Remastered", "game_detection": [ @@ -29809,7 +27956,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battle Battalions", "game_detection": [ @@ -29824,7 +27970,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lords of the Fallen", "game_detection": [ @@ -29839,7 +27984,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Post Master", "game_detection": [ @@ -29854,7 +27998,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dustforce", "game_detection": [ @@ -29874,7 +28017,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vanquish", "game_detection": [ @@ -29889,7 +28031,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gone Home", "game_detection": [ @@ -29909,7 +28050,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Descent 3", "game_detection": [ @@ -29924,7 +28064,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Two Worlds", "game_detection": [ @@ -29936,7 +28075,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Millie", "game_detection": [ @@ -29951,7 +28089,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Faster Than Light", "game_detection": [ @@ -29976,7 +28113,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Capitalism II", "game_detection": [ @@ -29988,7 +28124,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Falling Skies: The Game", "game_detection": [ @@ -30003,7 +28138,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bullet Witch", "game_detection": [ @@ -30017,7 +28151,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Planets Under Attack", "game_detection": [ @@ -30032,7 +28165,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Crew", "game_detection": [ @@ -30054,7 +28186,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead Effect", "game_detection": [ @@ -30069,7 +28200,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Penumbra Overture Episode One", "game_detection": [ @@ -30096,7 +28226,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Actual Sunlight", "game_detection": [ @@ -30111,7 +28240,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Rockin' Dead", "game_detection": [ @@ -30126,7 +28254,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sora", "game_detection": [ @@ -30141,7 +28268,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Icewind Dale", "game_detection": [ @@ -30153,7 +28279,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Suffering: Ties That Bind", "game_detection": [ @@ -30165,7 +28290,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Witcher", "game_detection": [ @@ -30178,7 +28302,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fate/EXTELLA LINK", "game_detection": [ @@ -30189,7 +28312,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Overwatch", "game_detection": [ @@ -30209,7 +28331,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rogue's Tale", "game_detection": [ @@ -30224,7 +28345,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bloodbath", "game_detection": [ @@ -30239,7 +28359,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Helldorado", "game_detection": [ @@ -30254,7 +28373,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Delta Force: Task Force Dagger", "game_detection": [ @@ -30269,7 +28387,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sid Meier's Pirates!", "game_detection": [ @@ -30289,7 +28406,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tiger Woods PGA Tour 2004", "game_detection": [ @@ -30301,7 +28417,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Franchise Hockey Manager 2014", "game_detection": [ @@ -30316,7 +28431,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Amazing World", "game_detection": [ @@ -30331,7 +28445,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warehouse and Logistics Simulator", "game_detection": [ @@ -30346,7 +28459,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ichi", "game_detection": [ @@ -30366,7 +28478,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Peggle Deluxe", "game_detection": [ @@ -30388,7 +28499,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Brainpipe", "game_detection": [ @@ -30403,7 +28513,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Left 4 Dead Demo", "game_detection": [ @@ -30418,7 +28527,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Project Root", "game_detection": [ @@ -30433,7 +28541,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cubic Castles", "game_detection": [ @@ -30448,7 +28555,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Red Alert: A Path Beyond", "game_detection": [ @@ -30461,7 +28567,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cabal Online", "game_detection": [ @@ -30490,7 +28595,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Damage Inc.: Pacific Squadron WWII", "game_detection": [ @@ -30504,7 +28608,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tower Unite", "game_detection": [ @@ -30519,7 +28622,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Walking Dead: The Final Season", "game_detection": [ @@ -30533,7 +28635,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BallisticNG", "game_detection": [ @@ -30548,7 +28649,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "F1 2012", "game_detection": [ @@ -30563,7 +28663,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stick It To The Man!", "game_detection": [ @@ -30583,7 +28682,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Repulse", "game_detection": [ @@ -30597,7 +28695,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Knights and Merchants", "game_detection": [ @@ -30612,7 +28709,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "AVSEQ", "game_detection": [ @@ -30627,7 +28723,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fallen: A2P Protocol", "game_detection": [ @@ -30642,7 +28737,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ELEX", "game_detection": [ @@ -30657,7 +28751,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "East India Company: Privateer", "game_detection": [ @@ -30672,7 +28765,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spirits", "game_detection": [ @@ -30687,7 +28779,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Knight Squad", "game_detection": [ @@ -30702,7 +28793,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Brief Karate Foolish", "game_detection": [ @@ -30717,7 +28807,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Arizona Sunshine", "game_detection": [ @@ -30733,7 +28822,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Project Zomboid", "game_detection": [ @@ -30754,7 +28842,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Black Ice", "game_detection": [ @@ -30769,7 +28856,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tom Clancy's Splinter Cell Double Agent", "game_detection": [ @@ -30791,7 +28877,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Labyrinth of Refrain: Coven of Dusk", "game_detection": [ @@ -30802,7 +28887,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Painkiller: Recurring Evil", "game_detection": [ @@ -30817,7 +28901,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Land of Chaos Online", "game_detection": [ @@ -30830,7 +28913,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DragonSoul", "game_detection": [ @@ -30843,7 +28925,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Maneki's Curse", "game_detection": [ @@ -30858,7 +28939,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nestopia", "game_detection": [ @@ -30870,7 +28950,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Collapse", "game_detection": [ @@ -30885,7 +28964,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fastigium", "game_detection": [ @@ -30901,7 +28979,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rock N' Roll Racing", "game_detection": [ @@ -30913,7 +28990,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Age of Empires III: The WarChiefs", "game_detection": [ @@ -30925,7 +29001,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Freddi Fish and the Case of the Missing Kelp Seeds", "game_detection": [ @@ -30940,7 +29015,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Commander Keen Complete Pack", "game_detection": [ @@ -30955,7 +29029,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Thirty Flights of Loving", "game_detection": [ @@ -30970,7 +29043,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Project \"Fire\"", "game_detection": [ @@ -30985,7 +29057,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Armada 2526 Gold Edition", "game_detection": [ @@ -31000,7 +29071,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nation Red", "game_detection": [ @@ -31015,7 +29085,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Putt-Putt Enters the Race", "game_detection": [ @@ -31030,7 +29099,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "So Many Me", "game_detection": [ @@ -31045,7 +29113,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Children of Morta", "game_detection": [ @@ -31056,7 +29123,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jalopy", "game_detection": [ @@ -31071,7 +29137,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mavis Beacon Teaches Typing Family Edition", "game_detection": [ @@ -31086,7 +29151,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Trine 3: The Artifacts of Power", "game_detection": [ @@ -31101,7 +29165,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeon League", "game_detection": [ @@ -31116,7 +29179,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Space Rogue", "game_detection": [ @@ -31131,7 +29193,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "WWE 2K19", "game_detection": [ @@ -31142,7 +29203,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dynasty Warriors 8 Empires", "game_detection": [ @@ -31157,7 +29217,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ascension to the Throne", "game_detection": [ @@ -31177,7 +29236,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RuneScape: Idle Adventures", "game_detection": [ @@ -31192,7 +29250,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eador: Genesis", "game_detection": [ @@ -31223,7 +29280,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeon Fighter Online", "game_detection": [ @@ -31246,7 +29302,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nuclear Throne", "game_detection": [ @@ -31266,7 +29321,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fleet Command", "game_detection": [ @@ -31281,7 +29335,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lost Chronicles of Zerzura", "game_detection": [ @@ -31296,7 +29349,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "X-Plane 11", "game_detection": [ @@ -31310,7 +29362,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rube Works", "game_detection": [ @@ -31325,7 +29376,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wallace and Gromit's Grand Adventures, Episode 3: Muzzled!", "game_detection": [ @@ -31340,7 +29390,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sym", "game_detection": [ @@ -31360,7 +29409,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rescue: Everyday Heroes", "game_detection": [ @@ -31375,7 +29423,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "KickBeat", "game_detection": [ @@ -31390,7 +29437,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ride'em Low Demo", "game_detection": [ @@ -31402,7 +29448,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sins of a Solar Empire: Rebellion", "game_detection": [ @@ -31417,7 +29462,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "JamSouls", "game_detection": [ @@ -31432,7 +29476,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Devil May Cry 4: Special Edition", "game_detection": [ @@ -31447,7 +29490,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Monsters and Medicine", "game_detection": [ @@ -31459,7 +29501,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tom Clancy's Splinter Cell: Pandora Tomorrow", "game_detection": [ @@ -31484,7 +29525,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pixel Puzzles: UndeadZ", "game_detection": [ @@ -31499,7 +29539,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Oddworld: Abe's Exoddus", "game_detection": [ @@ -31524,7 +29563,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hero 108 Online", "game_detection": [ @@ -31537,7 +29575,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tony Hawk's Pro Skater 3", "game_detection": [ @@ -31549,7 +29586,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "Elancia", "game_detection": [ @@ -31562,7 +29598,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fate: Undiscovered Realms", "game_detection": [ @@ -31583,7 +29618,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Saga", "game_detection": [ @@ -31604,7 +29638,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Let the Cat in", "game_detection": [ @@ -31619,7 +29652,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Viscera Clean Up Detail: Shadow Warrior", "game_detection": [ @@ -31634,7 +29666,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Moon Breakers", "game_detection": [ @@ -31649,7 +29680,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Orc Attack: Flatulent Rebellion", "game_detection": [ @@ -31664,7 +29694,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Princess Isabella: Rise of an Heir", "game_detection": [ @@ -31679,7 +29708,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ashes of Creation Apocalypse", "game_detection": [ @@ -31690,7 +29718,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cal Ripken's Real Baseball", "game_detection": [ @@ -31703,7 +29730,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spy Fox: Operation Ozone", "game_detection": [ @@ -31718,7 +29744,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hive Jump", "game_detection": [ @@ -31733,7 +29758,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Forward to the Sky", "game_detection": [ @@ -31748,7 +29772,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pound of Ground", "game_detection": [ @@ -31763,7 +29786,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Blackwell Convergence", "game_detection": [ @@ -31788,7 +29810,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Wizard's Pen", "game_detection": [ @@ -31803,7 +29824,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Myst Online: Uru Live", "game_detection": [ @@ -31816,7 +29836,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Grim Fandango", "game_detection": [ @@ -31828,7 +29847,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Undertale", "game_detection": [ @@ -31843,7 +29861,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Live for Speed", "game_detection": [ @@ -31860,7 +29877,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tropico 5", "game_detection": [ @@ -31875,7 +29891,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Welcome to the Game II", "game_detection": [ @@ -31889,7 +29904,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SWARMRIDERS", "game_detection": [ @@ -31904,7 +29918,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shadowrun", "game_detection": [ @@ -31916,7 +29929,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Football Manager 2006", "game_detection": [ @@ -31928,7 +29940,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Neighbors From Hell", "game_detection": [ @@ -31949,7 +29960,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ShellShock 2: Blood Trails", "game_detection": [ @@ -31961,7 +29971,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Banner Saga: Factions", "game_detection": [ @@ -31976,7 +29985,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Room Two", "game_detection": [ @@ -31991,7 +29999,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BlazBlue: Chronophantasma EXTEND", "game_detection": [ @@ -32006,7 +30013,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Say Goodbye", "game_detection": [ @@ -32021,7 +30027,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Long Journey Home", "game_detection": [ @@ -32036,7 +30041,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Escape Goat", "game_detection": [ @@ -32056,7 +30060,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sam & Max Episode 101: Culture Shock", "game_detection": [ @@ -32076,7 +30079,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "PT Boats: South Gambit", "game_detection": [ @@ -32091,7 +30093,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Howler", "game_detection": [ @@ -32106,7 +30107,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Epic Clicker Journey", "game_detection": [ @@ -32121,7 +30121,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Galactic Assault: Prisoner of Power", "game_detection": [ @@ -32134,7 +30133,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ArcheAge", "game_detection": [ @@ -32174,7 +30172,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Massive Assault: Phantom Renaissance", "game_detection": [ @@ -32189,7 +30186,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Harry Potter Quidditch World Cup", "game_detection": [ @@ -32201,7 +30197,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eragon", "game_detection": [ @@ -32213,7 +30208,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Puzzle Hero", "game_detection": [ @@ -32225,7 +30219,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Soulcaster", "game_detection": [ @@ -32237,7 +30230,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Wild Eight", "game_detection": [ @@ -32252,7 +30244,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Close Combat: First to Fight", "game_detection": [ @@ -32264,7 +30255,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Age of Empires II: The Conquerors", "game_detection": [ @@ -32276,7 +30266,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Surge", "game_detection": [ @@ -32292,7 +30281,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Batman: Arkham Knight", "game_detection": [ @@ -32311,7 +30299,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Breath of Fire IV", "game_detection": [ @@ -32323,7 +30310,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Space Wolf", "game_detection": [ @@ -32338,7 +30324,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "UP", "game_detection": [ @@ -32351,7 +30336,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Submerged", "game_detection": [ @@ -32366,7 +30350,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Manhunt 2", "game_detection": [ @@ -32378,7 +30361,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bounders and Cads", "game_detection": [ @@ -32393,7 +30375,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Salvation Prophecy", "game_detection": [ @@ -32408,7 +30389,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Confrontation", "game_detection": [ @@ -32423,7 +30403,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead Space", "game_detection": [ @@ -32443,7 +30422,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Frag Ops", "game_detection": [ @@ -32457,7 +30435,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hatoful Boyfriend", "game_detection": [ @@ -32477,7 +30454,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Keep Talking and Nobody Explodes", "game_detection": [ @@ -32492,7 +30468,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Black Watchmen", "game_detection": [ @@ -32507,7 +30482,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lexica", "game_detection": [ @@ -32522,7 +30496,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Outer Worlds", "game_detection": [ @@ -32537,7 +30510,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Scrap Garden: The Day Before", "game_detection": [ @@ -32552,7 +30524,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sniper Elite V2", "game_detection": [ @@ -32566,7 +30537,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crazy Taxi", "game_detection": [ @@ -32586,7 +30556,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bumbledore", "game_detection": [ @@ -32601,7 +30570,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Galactic Command Echo Squad SE", "game_detection": [ @@ -32616,7 +30584,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spectraball", "game_detection": [ @@ -32631,7 +30598,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Winged Sakura: Mindy's Arc", "game_detection": [ @@ -32646,7 +30612,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ghost 1.0", "game_detection": [ @@ -32661,7 +30626,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "School of Dragons", "game_detection": [ @@ -32676,7 +30640,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jagged Alliance: Crossfire", "game_detection": [ @@ -32690,7 +30653,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Witch's Yarn", "game_detection": [ @@ -32705,7 +30667,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Space Force Captains", "game_detection": [ @@ -32717,7 +30678,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeons & Dragons Online", "game_detection": [ @@ -32760,7 +30720,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Distant Worlds", "game_detection": [ @@ -32773,7 +30732,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Game Tycoon 1.5", "game_detection": [ @@ -32788,7 +30746,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A Dance of Fire and Ice", "game_detection": [ @@ -32799,7 +30756,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jibs Arcade", "game_detection": [ @@ -32811,7 +30767,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MudRunner", "game_detection": [ @@ -32822,7 +30777,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hold 'Em", "game_detection": [ @@ -32834,7 +30788,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Panzer Tactics HD", "game_detection": [ @@ -32849,7 +30802,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Arctic Combat", "game_detection": [ @@ -32870,7 +30822,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Airscape: The Fall of Gravity", "game_detection": [ @@ -32885,7 +30836,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Poker For Dummies", "game_detection": [ @@ -32897,7 +30847,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deadly Premonition: The Director's Cut", "game_detection": [ @@ -32912,7 +30861,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mercenary Kings", "game_detection": [ @@ -32927,7 +30875,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fatale: Exploring Salome", "game_detection": [ @@ -32942,7 +30889,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Air Conflicts: Pacific Carriers", "game_detection": [ @@ -32957,7 +30903,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Parcel", "game_detection": [ @@ -32972,7 +30917,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Homeworld Remastered Collection", "game_detection": [ @@ -32987,7 +30931,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Might & Magic Heroes Online", "game_detection": [ @@ -33002,7 +30945,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "#killallzombies", "game_detection": [ @@ -33017,7 +30959,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Control Monger", "game_detection": [ @@ -33029,7 +30970,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Under Night In-Birth Exe:Late[st]", "game_detection": [ @@ -33043,7 +30983,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Memoria", "game_detection": [ @@ -33063,7 +31002,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Dawn of War II", "game_detection": [ @@ -33086,7 +31024,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "Dragon Nest", "game_detection": [ @@ -33100,7 +31037,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Khan The Absolute Power", "game_detection": [ @@ -33115,7 +31051,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Surge", "game_detection": [ @@ -33130,7 +31065,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Walking Dead: Season 2", "game_detection": [ @@ -33150,7 +31084,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cult of the Wind", "game_detection": [ @@ -33165,7 +31098,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RADical ROACH", "game_detection": [ @@ -33186,7 +31118,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Summertime Saga", "game_detection": [ @@ -33197,7 +31128,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rooks Keep", "game_detection": [ @@ -33212,7 +31142,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FIFA Soccer 07", "game_detection": [ @@ -33229,7 +31158,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Infinite Game Works Episode 0", "game_detection": [ @@ -33244,7 +31172,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "OVERKILL's The Walking Dead", "game_detection": [ @@ -33259,7 +31186,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gears 5", "game_detection": [ @@ -33274,7 +31200,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Velocity Ultra", "game_detection": [ @@ -33289,7 +31214,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Riff Racer: Race Your Music!", "game_detection": [ @@ -33304,7 +31228,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Victory: The Age of Racing", "game_detection": [ @@ -33324,7 +31247,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ICY", "game_detection": [ @@ -33339,7 +31261,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Thimbleweed Park", "game_detection": [ @@ -33350,7 +31271,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dangerous Waters", "game_detection": [ @@ -33370,7 +31290,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Don't Starve Together", "game_detection": [ @@ -33385,7 +31304,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Codename: Gordon", "game_detection": [ @@ -33400,7 +31318,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Beginner's Guide", "game_detection": [ @@ -33415,7 +31332,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crusader Kings: Deus Vult", "game_detection": [ @@ -33427,7 +31343,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Age of Wushu", "game_detection": [ @@ -33448,7 +31363,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Freestyle Street Basketball", "game_detection": [ @@ -33464,7 +31378,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Toribash", "game_detection": [ @@ -33491,7 +31404,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "AaaaA! - A Reckless Disregard for Gravity", "game_detection": [ @@ -33506,7 +31418,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Medal of Honor: Airborne", "game_detection": [ @@ -33527,7 +31438,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Call of Duty: Black Ops III", "game_detection": [ @@ -33542,7 +31452,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Noct", "game_detection": [ @@ -33557,7 +31466,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Hazard Ops", "game_detection": [ @@ -33571,7 +31479,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zuma's Revenge! - Adventure", "game_detection": [ @@ -33586,7 +31493,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "You Don't Know Jack 6: The Lost Gold", "game_detection": [ @@ -33601,7 +31507,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Evolution RTS", "game_detection": [ @@ -33616,7 +31521,6 @@ ] }, { - "force_display_capture": false, "region": "BR", "title": "CrossFire", "game_detection": [ @@ -33631,7 +31535,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GunZ 2", "game_detection": [ @@ -33646,7 +31549,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BAJA: Edge of Control HD", "game_detection": [ @@ -33661,7 +31563,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "VR: Vacate the Room", "game_detection": [ @@ -33677,7 +31578,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stardew Valley", "game_detection": [ @@ -33697,7 +31597,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Need for Speed: Undercover", "game_detection": [ @@ -33717,7 +31616,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Portal 2", "game_detection": [ @@ -33732,7 +31630,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wake Up", "game_detection": [ @@ -33748,7 +31645,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dirt 3", "game_detection": [ @@ -33769,7 +31665,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Infested Planet", "game_detection": [ @@ -33789,7 +31684,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Dawn of War: Dark Crusade", "game_detection": [ @@ -33809,7 +31703,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ignite", "game_detection": [ @@ -33824,7 +31717,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "Blade & Soul", "game_detection": [ @@ -33838,7 +31730,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Satellite Reign", "game_detection": [ @@ -33858,7 +31749,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Scary Girl", "game_detection": [ @@ -33873,7 +31763,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "EVE Online", "game_detection": [ @@ -33909,7 +31798,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Earth Defense Force 4.1: The Shadow of New Despair", "game_detection": [ @@ -33924,7 +31812,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Marine Sharpshooter II", "game_detection": [ @@ -33939,7 +31826,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Carmageddon: Reincarnation", "game_detection": [ @@ -33954,7 +31840,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Has-Been Heroes", "game_detection": [ @@ -33969,7 +31854,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Flame in the Flood", "game_detection": [ @@ -33984,7 +31868,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Grotesque Tactics: Evil Heroes", "game_detection": [ @@ -33999,7 +31882,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Toca Race Driver 2", "game_detection": [ @@ -34011,7 +31893,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Miasmata", "game_detection": [ @@ -34026,7 +31907,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeon Party", "game_detection": [ @@ -34041,7 +31921,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Yosumin!", "game_detection": [ @@ -34056,7 +31935,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims 2: Kitchen & Bath Interior Design Stuff", "game_detection": [ @@ -34070,7 +31948,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Lord Of The Rings Online", "game_detection": [ @@ -34108,7 +31985,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "PixelJunk Eden", "game_detection": [ @@ -34123,7 +31999,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Urban Trial Freestyle", "game_detection": [ @@ -34138,7 +32013,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Valley", "game_detection": [ @@ -34153,7 +32027,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Turba", "game_detection": [ @@ -34168,7 +32041,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cinders", "game_detection": [ @@ -34188,7 +32060,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "Blade & Soul", "game_detection": [ @@ -34202,7 +32073,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bean's Quest", "game_detection": [ @@ -34214,7 +32084,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Need for Speed: The Run", "game_detection": [ @@ -34226,7 +32095,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Immortal Empire", "game_detection": [ @@ -34241,7 +32109,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Punisher", "game_detection": [ @@ -34255,7 +32122,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fernbus Simulator", "game_detection": [ @@ -34270,7 +32136,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jazzpunk", "game_detection": [ @@ -34290,7 +32155,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tales of Monkey Island 3: Lair of the Leviathan", "game_detection": [ @@ -34310,7 +32174,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Starpoint Gemini Warlords", "game_detection": [ @@ -34325,7 +32188,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dwarfs!? Free-2-Play", "game_detection": [ @@ -34340,7 +32202,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zombie Panic! Source", "game_detection": [ @@ -34355,7 +32216,6 @@ ] }, { - "force_display_capture": false, "region": "UK", "title": "Tom Clancy’s Splinter Cell: Blacklist", "game_detection": [ @@ -34372,7 +32232,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Half-Life 2: Sourceforts", "game_detection": [ @@ -34399,7 +32258,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Penguins Arena: Sedna's World", "game_detection": [ @@ -34414,7 +32272,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sphere III", "game_detection": [ @@ -34436,7 +32293,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Wars Battlefront II", "game_detection": [ @@ -34459,7 +32315,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Civilization III: Play the World", "game_detection": [ @@ -34471,7 +32326,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spelunx and the Caves of Mr. Seudo", "game_detection": [ @@ -34486,7 +32340,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Medal of Honor: Allied Assault: Breakthrough", "game_detection": [ @@ -34499,7 +32352,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lost Planet 3", "game_detection": [ @@ -34514,7 +32366,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "River City Super Sports Challenge ~All Stars Special~", "game_detection": [ @@ -34529,7 +32380,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark Souls II: Scholar of the First Sin", "game_detection": [ @@ -34544,7 +32394,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Convoy", "game_detection": [ @@ -34559,7 +32408,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Theatre of War 3 Korea", "game_detection": [ @@ -34574,7 +32422,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Saints Row: Gat Out of Hell", "game_detection": [ @@ -34589,7 +32436,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Geneforge 3", "game_detection": [ @@ -34604,7 +32450,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ThunderWheels Demo", "game_detection": [ @@ -34619,7 +32464,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Pirate: Caribbean Hunt", "game_detection": [ @@ -34634,7 +32478,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Silent Hunter: Wolves of the Pacific", "game_detection": [ @@ -34647,7 +32490,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Last Word", "game_detection": [ @@ -34662,7 +32504,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Party Hard 2", "game_detection": [ @@ -34673,7 +32514,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead Island Definitive Edition", "game_detection": [ @@ -34688,7 +32528,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Risk II", "game_detection": [ @@ -34708,7 +32547,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Midair", "game_detection": [ @@ -34723,7 +32561,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Farming Simulator 17", "game_detection": [ @@ -34742,7 +32579,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Bunker", "game_detection": [ @@ -34757,7 +32593,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "TrackMania United Forever", "game_detection": [ @@ -34778,7 +32613,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "New Gundam Breaker", "game_detection": [ @@ -34789,7 +32623,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Judge Dredd: Dredd VS Death", "game_detection": [ @@ -34804,7 +32637,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Driver: San Francisco", "game_detection": [ @@ -34824,7 +32656,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Anno Online", "game_detection": [ @@ -34839,7 +32670,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Indiana Jones and the Emperor's Tomb", "game_detection": [ @@ -34852,7 +32682,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Final Fantasy XIII", "game_detection": [ @@ -34868,7 +32697,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crysis Wars", "game_detection": [ @@ -34890,7 +32718,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Anachronox", "game_detection": [ @@ -34905,7 +32732,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Incredipede", "game_detection": [ @@ -34925,7 +32751,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tom Clancy's H.A.W.X.", "game_detection": [ @@ -34952,7 +32777,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Torchlight", "game_detection": [ @@ -34972,7 +32796,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BATTLETECH", "game_detection": [ @@ -34986,7 +32809,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Wars: Jedi Knight: Jedi Academy", "game_detection": [ @@ -35021,7 +32843,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The LEGO Movie Videogame", "game_detection": [ @@ -35044,7 +32865,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Airline Tycoon 2", "game_detection": [ @@ -35059,7 +32879,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Path of Exile", "game_detection": [ @@ -35080,7 +32899,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Procyon", "game_detection": [ @@ -35095,7 +32913,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Hat Man: Shadow Ward", "game_detection": [ @@ -35110,7 +32927,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Europa Universalis IV", "game_detection": [ @@ -35125,7 +32941,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "War Selection", "game_detection": [ @@ -35136,7 +32951,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crystals of Time", "game_detection": [ @@ -35151,7 +32965,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blockland", "game_detection": [ @@ -35171,7 +32984,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Need for Speed Heat", "game_detection": [ @@ -35186,7 +32998,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Adventures of Pip", "game_detection": [ @@ -35201,7 +33012,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Echo of the Wilds", "game_detection": [ @@ -35216,7 +33026,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NHL 07", "game_detection": [ @@ -35228,7 +33037,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hoard", "game_detection": [ @@ -35248,7 +33056,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fieldrunners", "game_detection": [ @@ -35268,7 +33075,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lantern Forge", "game_detection": [ @@ -35283,7 +33089,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Q.U.B.E.", "game_detection": [ @@ -35305,7 +33110,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rustbucket Rumble", "game_detection": [ @@ -35320,7 +33124,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hedgewars", "game_detection": [ @@ -35332,7 +33135,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Medieval II: Total War Kingdoms", "game_detection": [ @@ -35353,7 +33155,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sentinel 3: Homeworld", "game_detection": [ @@ -35368,7 +33169,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "stratO", "game_detection": [ @@ -35383,7 +33183,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Icewind Dale: Heart of Winter", "game_detection": [ @@ -35395,7 +33194,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shining Resonance Refrain", "game_detection": [ @@ -35409,7 +33207,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vortex: The Gateway", "game_detection": [ @@ -35424,7 +33221,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Panda Adventures", "game_detection": [ @@ -35439,7 +33235,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "In Verbis Virtus", "game_detection": [ @@ -35454,7 +33249,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "X: Beyond the Frontier", "game_detection": [ @@ -35469,7 +33263,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Luminary", "game_detection": [ @@ -35495,7 +33288,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rugby League Live 3", "game_detection": [ @@ -35510,7 +33302,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hexcells Infinite", "game_detection": [ @@ -35525,7 +33316,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cogs", "game_detection": [ @@ -35550,7 +33340,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LEGO The Incredibles", "game_detection": [ @@ -35561,7 +33350,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "3079", "game_detection": [ @@ -35574,7 +33362,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sid Meier's Civilization III: Conquests", "game_detection": [ @@ -35586,7 +33373,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Memento Mori 2", "game_detection": [ @@ -35601,7 +33387,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeon Dashers", "game_detection": [ @@ -35621,7 +33406,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Legend of Mir 3", "game_detection": [ @@ -35640,7 +33424,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Making History II: The War of the World", "game_detection": [ @@ -35660,7 +33443,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Abyss Odyssey", "game_detection": [ @@ -35675,7 +33457,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Narcissu 10th Anniversary Anthology Project", "game_detection": [ @@ -35690,7 +33471,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Big Kahuna Reef 2", "game_detection": [ @@ -35702,7 +33482,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nitro Stunt Racing", "game_detection": [ @@ -35715,7 +33494,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gigantic Army", "game_detection": [ @@ -35735,7 +33513,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eryi's Action", "game_detection": [ @@ -35755,7 +33532,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zoo Park", "game_detection": [ @@ -35770,7 +33546,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Counter-Strike Nexon: Zombies", "game_detection": [ @@ -35785,7 +33560,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "South Park: The Fractured But Whole", "game_detection": [ @@ -35808,7 +33582,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chuzzle Deluxe", "game_detection": [ @@ -35828,7 +33601,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MiG-29 Fulcrum", "game_detection": [ @@ -35843,7 +33615,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Holy Avatar vs. Maidens of the Dead", "game_detection": [ @@ -35858,7 +33629,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "XERA: Survival", "game_detection": [ @@ -35869,7 +33639,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Audition", "game_detection": [ @@ -35896,7 +33665,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Silent Hill 3", "game_detection": [ @@ -35908,7 +33676,6 @@ ] }, { - "force_display_capture": false, "region": "RU", "title": "Syndicates of Arkon", "game_detection": [ @@ -35920,7 +33687,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Blackwell Legacy", "game_detection": [ @@ -35945,7 +33711,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Traverser", "game_detection": [ @@ -35960,7 +33725,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Indigo Prophecy", "game_detection": [ @@ -35980,7 +33744,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cursed Mountain", "game_detection": [ @@ -35992,7 +33755,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stealth Bastard", "game_detection": [ @@ -36004,7 +33766,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rose and Time", "game_detection": [ @@ -36016,7 +33777,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Raiders", "game_detection": [ @@ -36031,7 +33791,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Lost Cases of Sherlock Holmes, Vol. 2", "game_detection": [ @@ -36044,7 +33803,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Knight Online", "game_detection": [ @@ -36072,7 +33830,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vampire Mansion: A Linda Hyde Mystery", "game_detection": [ @@ -36089,7 +33846,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Clean'Em Up", "game_detection": [ @@ -36104,7 +33860,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Grand Fantasia", "game_detection": [ @@ -36118,7 +33873,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Assassin's Creed", "game_detection": [ @@ -36139,7 +33893,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Settlers 7: Paths to a Kingdom", "game_detection": [ @@ -36160,7 +33913,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Raycatcher", "game_detection": [ @@ -36175,7 +33927,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heat", "game_detection": [ @@ -36186,7 +33937,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Boundless", "game_detection": [ @@ -36200,7 +33950,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Soul Gambler", "game_detection": [ @@ -36220,7 +33969,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blade & Soul", "game_detection": [ @@ -36235,7 +33983,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chronicles of Mystery: The Scorpio Ritual", "game_detection": [ @@ -36250,7 +33997,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Strike Suit Infinity", "game_detection": [ @@ -36265,7 +34011,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Steam Marines", "game_detection": [ @@ -36285,7 +34030,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Secret Files: Tunguska", "game_detection": [ @@ -36300,7 +34044,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SECRETS OF RÆTIKON", "game_detection": [ @@ -36321,7 +34064,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eldevin", "game_detection": [ @@ -36336,7 +34078,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bardbarian", "game_detection": [ @@ -36356,7 +34097,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mall Tycoon 2", "game_detection": [ @@ -36373,7 +34113,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mythos", "game_detection": [ @@ -36391,7 +34130,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fishing Planet", "game_detection": [ @@ -36406,7 +34144,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sacred Gold", "game_detection": [ @@ -36421,7 +34158,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Into the Dark", "game_detection": [ @@ -36436,7 +34172,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pi Story", "game_detection": [ @@ -36449,7 +34184,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Strategic Command: European Theater", "game_detection": [ @@ -36461,7 +34195,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wartune", "game_detection": [ @@ -36481,7 +34214,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Advent Rising", "game_detection": [ @@ -36508,7 +34240,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tropico 3", "game_detection": [ @@ -36528,7 +34259,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Project of Planets", "game_detection": [ @@ -36541,7 +34271,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blocks That Matter", "game_detection": [ @@ -36556,7 +34285,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "18 Wheels of Steel: Haulin'", "game_detection": [ @@ -36570,7 +34298,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blockstorm", "game_detection": [ @@ -36585,7 +34312,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GRAV", "game_detection": [ @@ -36600,7 +34326,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Penumbra: Black Plague", "game_detection": [ @@ -36621,7 +34346,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bob Came in Pieces", "game_detection": [ @@ -36641,7 +34365,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Clive Barker's Undying", "game_detection": [ @@ -36653,7 +34376,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pan-Pan", "game_detection": [ @@ -36668,7 +34390,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Virtua Tennis 4", "game_detection": [ @@ -36683,7 +34404,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Evil Genius", "game_detection": [ @@ -36704,7 +34424,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Europa 1400: The Guild", "game_detection": [ @@ -36723,7 +34442,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MDK 2 HD", "game_detection": [ @@ -36738,7 +34456,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Microsoft Flight Simulator X", "game_detection": [ @@ -36770,7 +34487,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cho Dengeki Stryker", "game_detection": [ @@ -36785,7 +34501,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Victory At Sea", "game_detection": [ @@ -36800,7 +34515,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "STAR WARS: The Old Republic", "game_detection": [ @@ -36813,7 +34527,6 @@ ] }, { - "force_display_capture": false, "region": "TH", "title": "Chaos Online", "game_detection": [ @@ -36826,7 +34539,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SHENZHEN I/O", "game_detection": [ @@ -36841,7 +34553,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crystal Catacombs", "game_detection": [ @@ -36853,7 +34564,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bloodsports.TV", "game_detection": [ @@ -36868,7 +34578,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Google Earth VR", "game_detection": [ @@ -36884,7 +34593,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "theHunter: Call of the Wild", "game_detection": [ @@ -36899,7 +34607,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Strange Brigade", "game_detection": [ @@ -36913,7 +34620,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Divinity: Original Sin", "game_detection": [ @@ -36938,7 +34644,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sid Meier's Civilization IV: Beyond the Sword", "game_detection": [ @@ -36964,7 +34669,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Grand Theft Auto: San Andreas", "game_detection": [ @@ -36985,7 +34689,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gal*Gun 2", "game_detection": [ @@ -36999,7 +34702,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shelter 2", "game_detection": [ @@ -37019,7 +34721,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Book of Legends", "game_detection": [ @@ -37034,7 +34735,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "My Pet Hotel", "game_detection": [ @@ -37049,7 +34749,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Duelyst", "game_detection": [ @@ -37064,7 +34763,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "I am Setsuna", "game_detection": [ @@ -37079,7 +34777,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chess Titans", "game_detection": [ @@ -37098,7 +34795,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dragon Ball Xenoverse 2", "game_detection": [ @@ -37113,7 +34809,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "Yu Long Zai Tian", "game_detection": [ @@ -37127,7 +34822,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Orcs Must Die! Unchained", "game_detection": [ @@ -37149,7 +34843,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Might & Magic: Clash of Heroes", "game_detection": [ @@ -37164,7 +34857,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Graal Online", "game_detection": [ @@ -37176,7 +34868,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "CSI: NY - The Game", "game_detection": [ @@ -37189,7 +34880,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eversion", "game_detection": [ @@ -37209,7 +34899,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Velocibox", "game_detection": [ @@ -37224,7 +34913,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Avadon 2: The Corruption", "game_detection": [ @@ -37239,7 +34927,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ZOMBI", "game_detection": [ @@ -37254,7 +34941,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ship Simulator Extremes", "game_detection": [ @@ -37269,7 +34955,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Beast of Lycan Isle", "game_detection": [ @@ -37284,7 +34969,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Men of War: Assault Squad 2", "game_detection": [ @@ -37299,7 +34983,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ascendant", "game_detection": [ @@ -37314,7 +34997,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Black & White Bushido", "game_detection": [ @@ -37329,7 +35011,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Trine", "game_detection": [ @@ -37368,7 +35049,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cosmic Trip", "game_detection": [ @@ -37384,7 +35064,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "War Front: Turning Point", "game_detection": [ @@ -37397,7 +35076,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stained", "game_detection": [ @@ -37412,7 +35090,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Amihailu in Dreamland", "game_detection": [ @@ -37427,7 +35104,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battlerite", "game_detection": [ @@ -37442,7 +35118,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jagged Alliance Online", "game_detection": [ @@ -37457,7 +35132,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Disney Infinity", "game_detection": [ @@ -37474,7 +35148,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blood Bowl II", "game_detection": [ @@ -37489,7 +35162,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mother Russia Bleeds", "game_detection": [ @@ -37504,7 +35176,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "PolyDome", "game_detection": [ @@ -37520,7 +35191,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bloop", "game_detection": [ @@ -37541,7 +35211,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2011", "game_detection": [ @@ -37553,7 +35222,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Everspace", "game_detection": [ @@ -37568,7 +35236,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Transcripted", "game_detection": [ @@ -37583,7 +35250,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tiny Troopers", "game_detection": [ @@ -37598,7 +35264,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lunnye Devitsy", "game_detection": [ @@ -37613,7 +35278,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Enemy Territory: Quake Wars", "game_detection": [ @@ -37633,7 +35297,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Archlord", "game_detection": [ @@ -37646,7 +35309,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cranky Cat", "game_detection": [ @@ -37661,7 +35323,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Racecar.io", "game_detection": [ @@ -37676,7 +35337,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Universal Combat", "game_detection": [ @@ -37709,7 +35369,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Commandos 3: Destination Berlin", "game_detection": [ @@ -37737,7 +35396,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Code of Princess", "game_detection": [ @@ -37752,7 +35410,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Half-Life: Blue Shift", "game_detection": [ @@ -37775,7 +35432,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Trainz Simulator 12", "game_detection": [ @@ -37790,7 +35446,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Limberjack", "game_detection": [ @@ -37806,7 +35461,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Niche: a genetics survival game", "game_detection": [ @@ -37821,7 +35475,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Purring Quest", "game_detection": [ @@ -37836,7 +35489,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Braid", "game_detection": [ @@ -37856,7 +35508,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "London Underground Simulator: World of Subways 3", "game_detection": [ @@ -37871,7 +35522,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Edge of Eternity", "game_detection": [ @@ -37882,7 +35532,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Blackwell Epiphany", "game_detection": [ @@ -37897,7 +35546,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Story of Legends", "game_detection": [ @@ -37909,7 +35557,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Core Masters", "game_detection": [ @@ -37923,7 +35570,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dominions 3", "game_detection": [ @@ -37938,7 +35584,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Munin", "game_detection": [ @@ -37953,7 +35598,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Clive Barker's Jericho", "game_detection": [ @@ -37974,7 +35618,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Afterfall: InSanity", "game_detection": [ @@ -37986,7 +35629,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stronghold 2", "game_detection": [ @@ -38006,7 +35648,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Waking Mars", "game_detection": [ @@ -38032,7 +35673,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Stanley Parable", "game_detection": [ @@ -38047,7 +35687,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Total Overdose: A Gunslingers Tale in Mexico", "game_detection": [ @@ -38059,7 +35698,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ice Age: Continental Drift - Arctic Games", "game_detection": [ @@ -38079,7 +35717,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Northgard", "game_detection": [ @@ -38094,7 +35731,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer: End Times - Vermintide", "game_detection": [ @@ -38117,7 +35753,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MTG Arena", "game_detection": [ @@ -38128,7 +35763,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Winning Putt", "game_detection": [ @@ -38150,7 +35784,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spellstone", "game_detection": [ @@ -38165,7 +35798,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dream", "game_detection": [ @@ -38180,7 +35812,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pirates of the Caribbean Online", "game_detection": [ @@ -38194,7 +35825,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RaceRoom Racing Experience", "game_detection": [ @@ -38213,7 +35843,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Time Gentlemen, Please!", "game_detection": [ @@ -38228,7 +35857,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The VR Museum of Fine Art", "game_detection": [ @@ -38244,7 +35872,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "City of Brass", "game_detection": [ @@ -38262,7 +35889,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cargo Commander", "game_detection": [ @@ -38277,7 +35903,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Circuits", "game_detection": [ @@ -38292,7 +35917,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zombie Bowl-O-Rama", "game_detection": [ @@ -38307,7 +35931,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fantasy Westward Journey 2", "game_detection": [ @@ -38321,7 +35944,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bloons TD 6", "game_detection": [ @@ -38332,7 +35954,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shutshimi", "game_detection": [ @@ -38347,7 +35968,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Big Bang Empire", "game_detection": [ @@ -38362,7 +35982,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mystery Case Files: Ravenhearst", "game_detection": [ @@ -38383,7 +36002,6 @@ ] }, { - "force_display_capture": false, "region": "FR", "title": "Dragomon Hunter", "game_detection": [ @@ -38397,7 +36015,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Beowulf", "game_detection": [ @@ -38410,7 +36027,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FlatOut 3", "game_detection": [ @@ -38425,7 +36041,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Wars: Rogue Squadron", "game_detection": [ @@ -38437,7 +36052,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Type: Rider", "game_detection": [ @@ -38457,7 +36071,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tales From The Dragon Mountain 2: The Lair", "game_detection": [ @@ -38472,7 +36085,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "1954 Alcatraz", "game_detection": [ @@ -38487,7 +36099,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SAMOLIOTIK", "game_detection": [ @@ -38502,7 +36113,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Barbie Dreamhouse Party", "game_detection": [ @@ -38517,7 +36127,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dracula: Love Kills", "game_detection": [ @@ -38532,7 +36141,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Workers & Resources: Soviet Republic", "game_detection": [ @@ -38543,7 +36151,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Full Spectrum Warrior: Ten Hammers", "game_detection": [ @@ -38563,7 +36170,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Swords of Ditto", "game_detection": [ @@ -38577,7 +36183,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Last Knight", "game_detection": [ @@ -38598,7 +36203,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Organ Quarter", "game_detection": [ @@ -38614,7 +36218,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Granado Espada", "game_detection": [ @@ -38635,7 +36238,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Brigador", "game_detection": [ @@ -38650,7 +36252,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Defence Alliance 2", "game_detection": [ @@ -38667,7 +36268,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Prison Tycoon 2: Maximum Security", "game_detection": [ @@ -38680,7 +36280,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Assassin's Creed III", "game_detection": [ @@ -38702,7 +36301,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Age of Cavemen", "game_detection": [ @@ -38717,7 +36315,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Happy Wars", "game_detection": [ @@ -38732,7 +36329,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tinertia", "game_detection": [ @@ -38747,7 +36343,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims Carnival: BumperBlast", "game_detection": [ @@ -38759,7 +36354,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "World of Tanks", "game_detection": [ @@ -38773,7 +36367,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alekhine's Gun", "game_detection": [ @@ -38788,7 +36381,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Second Sight", "game_detection": [ @@ -38807,7 +36399,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chaser", "game_detection": [ @@ -38827,7 +36418,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lara Croft and the Guardian of Light", "game_detection": [ @@ -38842,7 +36432,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crime Life: Gang Wars", "game_detection": [ @@ -38854,7 +36443,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "CLANNAD Side Stories", "game_detection": [ @@ -38869,7 +36457,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Conqueror's Blade", "game_detection": [ @@ -38880,7 +36467,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Haunted: Hells Reach", "game_detection": [ @@ -38895,7 +36481,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Walking Dead: A New Frontier", "game_detection": [ @@ -38910,7 +36495,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "I Shall Remain", "game_detection": [ @@ -38930,7 +36514,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rome Total War: Barbarian Invasion", "game_detection": [ @@ -38942,7 +36525,6 @@ ] }, { - "force_display_capture": false, "region": "RU", "title": "PlanetSide 2", "game_detection": [ @@ -38955,7 +36537,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Q*bert: Rebooted", "game_detection": [ @@ -38970,7 +36551,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Critter Crunch", "game_detection": [ @@ -38985,7 +36565,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "World of Final Fantasy", "game_detection": [ @@ -39000,7 +36579,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Castle of Illusion", "game_detection": [ @@ -39015,7 +36593,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hand of the Gods", "game_detection": [ @@ -39029,7 +36606,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Toontown Online", "game_detection": [ @@ -39053,7 +36629,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Tom Clancy's Ghost Recon: Future Soldier", "game_detection": [ @@ -39067,7 +36642,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shattered Galaxy", "game_detection": [ @@ -39079,7 +36653,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Doorways", "game_detection": [ @@ -39099,7 +36672,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Closers", "game_detection": [ @@ -39114,7 +36686,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead Man's Draw", "game_detection": [ @@ -39129,7 +36700,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Empire Earth 2: The Art of Supremacy", "game_detection": [ @@ -39141,7 +36711,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wayward Manor", "game_detection": [ @@ -39156,7 +36725,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Breed", "game_detection": [ @@ -39169,7 +36737,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Aarklash: Legacy", "game_detection": [ @@ -39184,7 +36751,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "UFO: Aftermath", "game_detection": [ @@ -39204,7 +36770,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Legend of Edda", "game_detection": [ @@ -39219,7 +36784,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DOOM 3 BFG Edition", "game_detection": [ @@ -39234,7 +36798,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Evolution VR", "game_detection": [ @@ -39250,7 +36813,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ashes Cricket 2013", "game_detection": [ @@ -39265,7 +36827,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Science Girls!", "game_detection": [ @@ -39280,7 +36841,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Descent 2", "game_detection": [ @@ -39300,7 +36860,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Freddi Fish and Luther's Maze Madness", "game_detection": [ @@ -39315,7 +36874,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Magic The Gathering Online", "game_detection": [ @@ -39333,7 +36891,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "F1 Race Stars", "game_detection": [ @@ -39348,7 +36905,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Countless Rooms of Death", "game_detection": [ @@ -39361,7 +36917,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Madden NFL 2004", "game_detection": [ @@ -39374,7 +36929,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SurrealVR", "game_detection": [ @@ -39390,7 +36944,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "JASF: Janes Advanced Strike Fighters", "game_detection": [ @@ -39411,7 +36964,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Luxor Evolved", "game_detection": [ @@ -39426,7 +36978,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ultimate Chicken Horse", "game_detection": [ @@ -39441,7 +36992,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lovers of Aether", "game_detection": [ @@ -39456,7 +37006,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Remnant: From the Ashes", "game_detection": [ @@ -39475,7 +37024,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Aura Kingdom", "game_detection": [ @@ -39499,7 +37047,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Runespell: Overture", "game_detection": [ @@ -39519,7 +37066,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "Digimon Masters Online", "game_detection": [ @@ -39532,7 +37078,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Scrap Mechanic", "game_detection": [ @@ -39547,7 +37092,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Divinity II: Developer's Cut", "game_detection": [ @@ -39568,7 +37112,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hack, Slash, Loot", "game_detection": [ @@ -39588,7 +37131,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Need for Speed Most Wanted", "game_detection": [ @@ -39600,7 +37142,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Onward", "game_detection": [ @@ -39615,7 +37156,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Hunter", "game_detection": [ @@ -39627,7 +37167,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nancy Drew: Danger on Deception Island", "game_detection": [ @@ -39642,7 +37181,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rulers of Nations", "game_detection": [ @@ -39654,7 +37192,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "J.U.L.I.A.: Among the Stars", "game_detection": [ @@ -39670,7 +37207,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Venice Deluxe", "game_detection": [ @@ -39691,7 +37227,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jump Force", "game_detection": [ @@ -39702,7 +37237,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tachyon: The Fringe", "game_detection": [ @@ -39717,7 +37251,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "it's always monday", "game_detection": [ @@ -39732,7 +37265,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bulletstorm: Full Clip Edition", "game_detection": [ @@ -39747,7 +37279,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Strife", "game_detection": [ @@ -39776,7 +37307,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Six Feet Under", "game_detection": [ @@ -39792,7 +37322,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wrestling MPire 2008: Career Edition", "game_detection": [ @@ -39805,7 +37334,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sacred 2: Fallen Angel", "game_detection": [ @@ -39825,7 +37353,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Din's Curse", "game_detection": [ @@ -39845,7 +37372,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Myst V: End of Ages", "game_detection": [ @@ -39871,7 +37397,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Prison Tycoon 3: Lockdown", "game_detection": [ @@ -39892,7 +37417,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Victoria: An Empire Under the Sun", "game_detection": [ @@ -39904,7 +37428,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "In Case of Emergency, Release Raptor", "game_detection": [ @@ -39919,7 +37442,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jack Nicklaus Perfect Golf", "game_detection": [ @@ -39934,7 +37456,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Brothers in Arms: Earned in Blood Demo", "game_detection": [ @@ -39948,7 +37469,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Strategic War in Europe", "game_detection": [ @@ -39968,7 +37488,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Cycle", "game_detection": [ @@ -39983,7 +37502,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stacking", "game_detection": [ @@ -40003,7 +37521,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Secret of Monkey Island: Special Edition", "game_detection": [ @@ -40018,7 +37535,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tactical Ops: Assault on Terror", "game_detection": [ @@ -40030,7 +37546,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Night of the Rabbit", "game_detection": [ @@ -40045,7 +37560,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Armageddon", "game_detection": [ @@ -40060,7 +37574,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Thinking with Time Machine", "game_detection": [ @@ -40075,7 +37588,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SteamHammerVR", "game_detection": [ @@ -40091,7 +37603,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "WonderKing", "game_detection": [ @@ -40110,7 +37621,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Band of Bugs", "game_detection": [ @@ -40122,7 +37632,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Westport Independent", "game_detection": [ @@ -40137,7 +37646,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bioshock 2 Remastered", "game_detection": [ @@ -40152,7 +37660,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Honor in Vengeance II", "game_detection": [ @@ -40164,7 +37671,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Maplestory 2", "game_detection": [ @@ -40179,7 +37685,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Maelstrom", "game_detection": [ @@ -40191,7 +37696,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Naruto Shippuden: Ultimate Ninja Storm Revolution", "game_detection": [ @@ -40206,7 +37710,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Silverfall", "game_detection": [ @@ -40226,7 +37729,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Garshasp: Temple of the Dragon", "game_detection": [ @@ -40241,7 +37743,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Flywrench", "game_detection": [ @@ -40256,7 +37757,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Krazy Aces", "game_detection": [ @@ -40268,7 +37768,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battlefield 2", "game_detection": [ @@ -40289,7 +37788,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nancy Drew: Curse of Blackmoor Manor", "game_detection": [ @@ -40304,7 +37802,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Steamalot: Epoch's Journey", "game_detection": [ @@ -40316,7 +37813,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark Horizons: Mechanized Corps", "game_detection": [ @@ -40331,7 +37827,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wasteland Angel", "game_detection": [ @@ -40346,7 +37841,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FAR: Lone Sails", "game_detection": [ @@ -40360,7 +37854,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Forest", "game_detection": [ @@ -40382,7 +37875,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Midnight Mysteries 3: Devil on the Mississippi", "game_detection": [ @@ -40397,7 +37889,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead Mountaineer's Hotel", "game_detection": [ @@ -40412,7 +37903,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Summoner", "game_detection": [ @@ -40427,7 +37917,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Theme Park Studio", "game_detection": [ @@ -40442,7 +37931,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Doodle God", "game_detection": [ @@ -40457,7 +37945,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "TrackMania Nations Forever", "game_detection": [ @@ -40478,7 +37965,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Disorder", "game_detection": [ @@ -40493,7 +37979,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FIST OF AWESOME", "game_detection": [ @@ -40513,7 +37998,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Multiwinia", "game_detection": [ @@ -40534,7 +38018,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Towtruck Simulator 2015", "game_detection": [ @@ -40549,7 +38032,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Powerboat Racing: Pure Power & Whiplash", "game_detection": [ @@ -40561,7 +38043,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pivvot", "game_detection": [ @@ -40576,7 +38057,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Simplz Zoo", "game_detection": [ @@ -40591,7 +38071,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Defender’s Quest", "game_detection": [ @@ -40606,7 +38085,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RIP 2: Strike Back", "game_detection": [ @@ -40621,7 +38099,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chester", "game_detection": [ @@ -40633,7 +38110,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Glest", "game_detection": [ @@ -40645,7 +38121,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RIDE 3", "game_detection": [ @@ -40656,7 +38131,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Worms: World Party", "game_detection": [ @@ -40668,7 +38142,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Putt-Putt Joins the Circus", "game_detection": [ @@ -40683,7 +38156,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Flyff: Fly for Fun!", "game_detection": [ @@ -40716,7 +38188,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shiftlings", "game_detection": [ @@ -40731,7 +38202,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Senko no Ronde 2", "game_detection": [ @@ -40746,7 +38216,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sniper Ghost Warrior 3", "game_detection": [ @@ -40761,7 +38230,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Aika Online", "game_detection": [ @@ -40780,7 +38248,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The SKIES", "game_detection": [ @@ -40795,7 +38262,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kynseed", "game_detection": [ @@ -40806,7 +38272,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lifeless Planet", "game_detection": [ @@ -40826,7 +38291,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "X4: Foundations", "game_detection": [ @@ -40837,7 +38301,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kaptain Brawe: A Brawe New World", "game_detection": [ @@ -40852,7 +38315,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Them's Fightin' Herds", "game_detection": [ @@ -40866,7 +38328,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cave Story Plus", "game_detection": [ @@ -40886,7 +38347,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Perfect World", "game_detection": [ @@ -40899,7 +38359,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pressure Demo", "game_detection": [ @@ -40911,7 +38370,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Doki Doki Literature Club!", "game_detection": [ @@ -40926,7 +38384,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gardens Inc. 2: The Road to Fame", "game_detection": [ @@ -40941,7 +38398,6 @@ ] }, { - "force_display_capture": false, "region": "BR", "title": "Warface", "game_detection": [ @@ -40955,7 +38411,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeon Warfare", "game_detection": [ @@ -40970,7 +38425,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "AquaNox 2: Revelation", "game_detection": [ @@ -40985,7 +38439,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Banished", "game_detection": [ @@ -41022,7 +38475,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Major/Minor", "game_detection": [ @@ -41037,7 +38489,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Darkout", "game_detection": [ @@ -41052,7 +38503,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Out There: Ω Edition", "game_detection": [ @@ -41067,7 +38517,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vintage Year", "game_detection": [ @@ -41082,7 +38531,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Agatha Christie: And Then There Were None", "game_detection": [ @@ -41097,7 +38545,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "WARSHIFT", "game_detection": [ @@ -41112,7 +38559,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alpha Zylon", "game_detection": [ @@ -41127,7 +38573,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Magical Battle Festa", "game_detection": [ @@ -41142,7 +38587,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Golf It!", "game_detection": [ @@ -41156,7 +38600,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "World of Battles", "game_detection": [ @@ -41170,7 +38613,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2018", "game_detection": [ @@ -41191,7 +38633,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dream of Mirror Online", "game_detection": [ @@ -41219,7 +38660,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Knight & Damsel", "game_detection": [ @@ -41234,7 +38674,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Duke Nukem Forever Demo", "game_detection": [ @@ -41249,7 +38688,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Life is Feudal: Your Own", "game_detection": [ @@ -41264,7 +38702,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nosferatu: The Wrath of Malachi", "game_detection": [ @@ -41279,7 +38716,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pinball Arcade", "game_detection": [ @@ -41294,7 +38730,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Assassin's Creed: Rogue", "game_detection": [ @@ -41316,7 +38751,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Catz 2", "game_detection": [ @@ -41328,7 +38762,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Audiosurf 2", "game_detection": [ @@ -41343,7 +38776,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Time Leap Paradise SUPER LIVE!", "game_detection": [ @@ -41359,7 +38791,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "You Are Empty", "game_detection": [ @@ -41371,7 +38802,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bad Hotel", "game_detection": [ @@ -41391,7 +38821,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shadowgate", "game_detection": [ @@ -41406,7 +38835,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Age of Pirates 2: City of Abandoned Ships", "game_detection": [ @@ -41418,7 +38846,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Colin Mcrae Rally 3", "game_detection": [ @@ -41430,7 +38857,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Red Bull X-Fighters", "game_detection": [ @@ -41445,7 +38871,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sacred 2 Gold", "game_detection": [ @@ -41460,7 +38885,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ku: Shroud of the Morrigan", "game_detection": [ @@ -41475,7 +38899,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Age of Empires III: Complete Collection", "game_detection": [ @@ -41506,7 +38929,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lunia Chronicles", "game_detection": [ @@ -41521,7 +38943,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Retro City Rampage", "game_detection": [ @@ -41541,7 +38962,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pixel Puzzles: Japan", "game_detection": [ @@ -41556,7 +38976,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alone in the Dark: The New Nightmare", "game_detection": [ @@ -41571,7 +38990,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Into The Unknown", "game_detection": [ @@ -41586,7 +39004,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Coldfire Keep", "game_detection": [ @@ -41601,7 +39018,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Worlds Adrift Island Creator", "game_detection": [ @@ -41616,7 +39032,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Organ Trail: Director's Cut", "game_detection": [ @@ -41636,7 +39051,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "1000 Amps", "game_detection": [ @@ -41651,7 +39065,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Samurai Warriors 4-II", "game_detection": [ @@ -41666,7 +39079,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Age of Empires: The Rise of Rome", "game_detection": [ @@ -41683,7 +39095,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shufflepuck Cantina Deluxe", "game_detection": [ @@ -41703,7 +39114,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DogFighter", "game_detection": [ @@ -41718,7 +39128,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Crossfire", "game_detection": [ @@ -41731,7 +39140,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stranded II", "game_detection": [ @@ -41743,7 +39151,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Prospekt", "game_detection": [ @@ -41758,7 +39165,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Major League Baseball 2K11", "game_detection": [ @@ -41778,7 +39184,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crown and Council", "game_detection": [ @@ -41793,7 +39198,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Birth of America", "game_detection": [ @@ -41805,7 +39209,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "7D Game", "game_detection": [ @@ -41821,7 +39224,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ascension", "game_detection": [ @@ -41833,7 +39235,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heroes & Generals", "game_detection": [ @@ -41848,7 +39249,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chicken Shoot 2", "game_detection": [ @@ -41863,7 +39263,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Everest Poker", "game_detection": [ @@ -41877,7 +39276,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Descent: Road to Legend", "game_detection": [ @@ -41892,7 +39290,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Harry Potter and the Deathly Hallows: Part 1", "game_detection": [ @@ -41905,7 +39302,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Humanity Asset", "game_detection": [ @@ -41920,7 +39316,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Killing Floor", "game_detection": [ @@ -41935,7 +39330,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eets", "game_detection": [ @@ -41956,7 +39350,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead Horde", "game_detection": [ @@ -41971,7 +39364,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "STAR WARS Jedi: Fallen Order™", "game_detection": [ @@ -41982,7 +39374,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Digger Online", "game_detection": [ @@ -41996,7 +39387,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Armello", "game_detection": [ @@ -42011,7 +39401,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rhiannon: Curse of the Four Branches", "game_detection": [ @@ -42033,7 +39422,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Last Man Standing", "game_detection": [ @@ -42048,7 +39436,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Holy Potatoes! A Spy Story?!", "game_detection": [ @@ -42059,7 +39446,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warframe", "game_detection": [ @@ -42100,7 +39486,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ninja Reflex: Steamworks Edition", "game_detection": [ @@ -42116,7 +39501,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Orcs Must Die! 2", "game_detection": [ @@ -42131,7 +39515,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Karateka", "game_detection": [ @@ -42146,7 +39529,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Dragon's Prophet", "game_detection": [ @@ -42160,7 +39542,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Homeworld", "game_detection": [ @@ -42177,7 +39558,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hello Neighbor", "game_detection": [ @@ -42200,7 +39580,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungelot: Shattered Lands", "game_detection": [ @@ -42215,7 +39594,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Arma Tactics", "game_detection": [ @@ -42230,7 +39608,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "STARWHAL: Just the Tip", "game_detection": [ @@ -42245,7 +39622,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dreadnought", "game_detection": [ @@ -42256,7 +39632,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Touhou Luna Nights", "game_detection": [ @@ -42267,7 +39642,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vertiginous Golf", "game_detection": [ @@ -42282,7 +39656,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "World War 3", "game_detection": [ @@ -42293,7 +39666,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Whispered World: Special Edition", "game_detection": [ @@ -42313,7 +39685,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NBA 2K14", "game_detection": [ @@ -42328,7 +39699,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dicey Dungeons", "game_detection": [ @@ -42339,7 +39709,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Penny Arcade Adventures: On the Rain-Slick Precipice of Darkness Episode Two", "game_detection": [ @@ -42351,7 +39720,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cradle of Persia", "game_detection": [ @@ -42366,7 +39734,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pineapple Smash Crew", "game_detection": [ @@ -42381,7 +39748,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cake Mania 2: Jill's Next Adventure!", "game_detection": [ @@ -42396,7 +39762,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Space Ace", "game_detection": [ @@ -42411,7 +39776,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nuclear Unicorn Force", "game_detection": [ @@ -42423,7 +39787,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Reverse Crawl", "game_detection": [ @@ -42438,7 +39801,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Unearthed", "game_detection": [ @@ -42453,7 +39815,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Yomawari: Night Alone", "game_detection": [ @@ -42468,7 +39829,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Call of Duty: World at War Beta", "game_detection": [ @@ -42480,7 +39840,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Waren Story", "game_detection": [ @@ -42495,7 +39854,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tom Clancy's Rainbow Six: Rogue Spear", "game_detection": [ @@ -42507,7 +39865,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Front Mission Evolved", "game_detection": [ @@ -42522,7 +39879,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "King Arthur: The Role-Playing Wargame", "game_detection": [ @@ -42537,7 +39893,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "How to Survive", "game_detection": [ @@ -42552,7 +39907,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Demolition Master 3D", "game_detection": [ @@ -42567,7 +39921,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wasteland Survival", "game_detection": [ @@ -42578,7 +39931,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark Age of Camelot: Labyrinth of the Minotaur", "game_detection": [ @@ -42591,7 +39943,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DinerTown Detective Agency", "game_detection": [ @@ -42606,7 +39957,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Unworthy", "game_detection": [ @@ -42620,7 +39970,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MAGIX Samplitude Music Studio 2014", "game_detection": [ @@ -42635,7 +39984,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sam & Max: The Devil's Playhouse - The Penal Zone", "game_detection": [ @@ -42650,7 +39998,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Revenge of the Titans", "game_detection": [ @@ -42670,7 +40017,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Line of Sight", "game_detection": [ @@ -42685,7 +40031,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deponia: The Complete Journey", "game_detection": [ @@ -42700,7 +40045,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hedone", "game_detection": [ @@ -42714,7 +40058,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Atooms to Moolecules Demo", "game_detection": [ @@ -42729,7 +40072,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cognition: Episode 1 - The Hangman", "game_detection": [ @@ -42741,7 +40083,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shop Heroes", "game_detection": [ @@ -42756,7 +40097,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Full Mojo Rampage", "game_detection": [ @@ -42777,7 +40117,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Epigenesis", "game_detection": [ @@ -42793,7 +40132,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Great Art Race", "game_detection": [ @@ -42808,7 +40146,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Toren", "game_detection": [ @@ -42823,7 +40160,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Ship", "game_detection": [ @@ -42838,7 +40174,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nobunaga's Ambition: Sphere of Influence", "game_detection": [ @@ -42853,7 +40188,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sun Will Rise", "game_detection": [ @@ -42868,7 +40202,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Silverfall: Earth Awakening", "game_detection": [ @@ -42883,7 +40216,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Princess Isabella: Return of the Curse", "game_detection": [ @@ -42898,7 +40230,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Oddworld: Stranger's Wrath", "game_detection": [ @@ -42925,7 +40256,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Legend of Dungeon", "game_detection": [ @@ -42945,7 +40275,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vagante", "game_detection": [ @@ -42960,7 +40289,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Wars Jedi Knight II: Jedi Outcast", "game_detection": [ @@ -43009,7 +40337,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sins of a Solar Empire: Trinity", "game_detection": [ @@ -43024,7 +40351,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battle: Los Angeles", "game_detection": [ @@ -43039,7 +40365,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tricky Towers", "game_detection": [ @@ -43053,7 +40378,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Numba", "game_detection": [ @@ -43068,7 +40392,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Diadra Empty", "game_detection": [ @@ -43083,7 +40406,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Color Symphony 2", "game_detection": [ @@ -43098,7 +40420,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Call of Duty: Ghosts", "game_detection": [ @@ -43121,7 +40442,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jewel Quest Solitaire 2", "game_detection": [ @@ -43133,7 +40453,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeon of the Endless", "game_detection": [ @@ -43148,7 +40467,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cube & Star: An Arbitrary Love", "game_detection": [ @@ -43175,7 +40493,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Passing Pineview Forest", "game_detection": [ @@ -43190,7 +40507,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Galacide", "game_detection": [ @@ -43205,7 +40521,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shaolin vs Wutang", "game_detection": [ @@ -43219,7 +40534,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vector Thrust", "game_detection": [ @@ -43239,7 +40553,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Starjack Online", "game_detection": [ @@ -43252,7 +40565,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "sZone Online", "game_detection": [ @@ -43267,7 +40579,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Monster Loves You!", "game_detection": [ @@ -43282,7 +40593,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "iBomber Defense", "game_detection": [ @@ -43297,7 +40607,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NASCAR The Game: 2013", "game_detection": [ @@ -43312,7 +40621,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Minesweeper", "game_detection": [ @@ -43343,7 +40651,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Half-Life: Deathmatch Source", "game_detection": [ @@ -43358,7 +40665,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LEGO Jurassic World", "game_detection": [ @@ -43373,7 +40679,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Arcane Worlds", "game_detection": [ @@ -43388,7 +40693,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Man Of Prey", "game_detection": [ @@ -43403,7 +40707,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shoppe Keep", "game_detection": [ @@ -43418,7 +40721,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DUSK", "game_detection": [ @@ -43432,7 +40734,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RaiderZ", "game_detection": [ @@ -43459,7 +40760,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "My Riding Stables: Life with Horses", "game_detection": [ @@ -43474,7 +40774,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crimsonland", "game_detection": [ @@ -43494,7 +40793,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shocking Void", "game_detection": [ @@ -43506,7 +40804,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims 2", "game_detection": [ @@ -43518,7 +40815,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nyctophilia", "game_detection": [ @@ -43533,7 +40829,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Machinarium", "game_detection": [ @@ -43565,7 +40860,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2019 Lite", "game_detection": [ @@ -43576,7 +40870,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mercenaries 2: World in Flames", "game_detection": [ @@ -43588,7 +40881,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spaceforce Homeworld", "game_detection": [ @@ -43603,7 +40895,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hired Guns: The Jagged Edge", "game_detection": [ @@ -43618,7 +40909,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "New Star Soccer 5", "game_detection": [ @@ -43638,7 +40928,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wizard of Legend", "game_detection": [ @@ -43652,7 +40941,6 @@ ] }, { - "force_display_capture": false, "region": "BR", "title": "Forsaken", "game_detection": [ @@ -43667,7 +40955,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Giana Sisters: Twisted Dreams", "game_detection": [ @@ -43689,7 +40976,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Imperial Glory", "game_detection": [ @@ -43709,7 +40995,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nuclear Unicorn Force Demo", "game_detection": [ @@ -43721,7 +41006,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Camera Obscura", "game_detection": [ @@ -43736,7 +41020,6 @@ ] }, { - "force_display_capture": false, "region": "RU", "title": "WarSide", "game_detection": [ @@ -43751,7 +41034,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Law & Order: Legacies", "game_detection": [ @@ -43766,7 +41048,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Elven Legacy: Siege", "game_detection": [ @@ -43781,7 +41062,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Call of Duty: Advanced Warfare", "game_detection": [ @@ -43804,7 +41084,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Will Fight for Food", "game_detection": [ @@ -43816,7 +41095,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Holy Potatoes! We’re in Space?!", "game_detection": [ @@ -43831,7 +41109,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "Legend of Darkness", "game_detection": [ @@ -43844,7 +41121,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MotoGP 2", "game_detection": [ @@ -43856,7 +41132,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Grandia II", "game_detection": [ @@ -43868,7 +41143,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Worms Blast", "game_detection": [ @@ -43883,7 +41157,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nancy Drew: Warnings at Waverly Academy", "game_detection": [ @@ -43898,7 +41171,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Luxor 2 HD", "game_detection": [ @@ -43913,7 +41185,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fish Tycoon", "game_detection": [ @@ -43928,7 +41199,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heroes of the Storm", "game_detection": [ @@ -43948,7 +41218,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Opus Magnum", "game_detection": [ @@ -43962,7 +41231,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warsow", "game_detection": [ @@ -43974,7 +41242,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chip", "game_detection": [ @@ -43989,7 +41256,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "TalesWeaver", "game_detection": [ @@ -44002,7 +41268,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Scratches: Directors Cut", "game_detection": [ @@ -44017,7 +41282,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Indiana Jones and the Infernal Machine", "game_detection": [ @@ -44030,7 +41294,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Age of Magic", "game_detection": [ @@ -44045,7 +41308,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MOBIUS FINAL FANTASY", "game_detection": [ @@ -44060,7 +41322,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FIFA Soccer 06", "game_detection": [ @@ -44072,7 +41333,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Flesh Eaters", "game_detection": [ @@ -44087,7 +41347,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Insurgency: Modern Infantry Combat", "game_detection": [ @@ -44102,7 +41361,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Everyday Genius SquareLogic", "game_detection": [ @@ -44122,7 +41380,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FIFA 18", "game_detection": [ @@ -44134,7 +41391,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hacker Evolution Duality", "game_detection": [ @@ -44149,7 +41405,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bus Driver", "game_detection": [ @@ -44171,7 +41426,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Influent", "game_detection": [ @@ -44191,7 +41445,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Storm of Spears", "game_detection": [ @@ -44206,7 +41459,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Color Symphony", "game_detection": [ @@ -44221,7 +41473,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Puzzle Platformer Deluxe", "game_detection": [ @@ -44236,7 +41487,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "Freestyle2: Street Basketball", "game_detection": [ @@ -44249,7 +41499,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Reigns", "game_detection": [ @@ -44264,7 +41513,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Planescape: Torment", "game_detection": [ @@ -44276,7 +41524,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "How To Survive: Third Person", "game_detection": [ @@ -44291,7 +41538,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GRID", "game_detection": [ @@ -44311,7 +41557,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "eXceed 3rd – Jade Penetrate Black Package", "game_detection": [ @@ -44332,7 +41577,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Edna and Harvey: The Breakout", "game_detection": [ @@ -44357,7 +41601,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cyto", "game_detection": [ @@ -44372,7 +41615,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Runaway: A Twist of Fate", "game_detection": [ @@ -44387,7 +41629,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pirate Galaxy", "game_detection": [ @@ -44401,7 +41642,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Faces of War", "game_detection": [ @@ -44421,7 +41661,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Galactic Civilizations II: Twilight of the Arnor", "game_detection": [ @@ -44434,7 +41673,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Skylanders: Spyro's Adventure", "game_detection": [ @@ -44446,7 +41684,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Silence", "game_detection": [ @@ -44461,7 +41698,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Grass Simulator", "game_detection": [ @@ -44476,7 +41712,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Recruits", "game_detection": [ @@ -44488,7 +41723,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dyscourse", "game_detection": [ @@ -44503,7 +41737,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Majesty", "game_detection": [ @@ -44516,7 +41749,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BZFlag", "game_detection": [ @@ -44529,7 +41761,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Theatre Of The Absurd", "game_detection": [ @@ -44544,7 +41775,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Warlords", "game_detection": [ @@ -44557,7 +41787,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Riders of Icarus", "game_detection": [ @@ -44572,7 +41801,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FIFA Manager 12", "game_detection": [ @@ -44584,7 +41812,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Trace Vector", "game_detection": [ @@ -44599,7 +41826,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "The Elder Scrolls Online", "game_detection": [ @@ -44613,7 +41839,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SpeedRunners", "game_detection": [ @@ -44628,7 +41853,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hades", "game_detection": [ @@ -44643,7 +41867,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jotun", "game_detection": [ @@ -44658,7 +41881,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chroma", "game_detection": [ @@ -44673,7 +41895,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Found", "game_detection": [ @@ -44689,7 +41910,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Bridge", "game_detection": [ @@ -44709,7 +41929,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "1... 2... 3... Kick It!", "game_detection": [ @@ -44724,7 +41943,6 @@ ] }, { - "force_display_capture": false, "region": "BR", "title": "Combat Arms", "game_detection": [ @@ -44738,7 +41956,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SWIFT☆STITCH", "game_detection": [ @@ -44750,7 +41967,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shadow Ops: Red Mercury", "game_detection": [ @@ -44765,7 +41981,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tom Clancy’s EndWar Online", "game_detection": [ @@ -44780,7 +41995,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Divinity: Dragon Commander", "game_detection": [ @@ -44800,7 +42014,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "UTOPIA 9", "game_detection": [ @@ -44815,7 +42028,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heileen 2: The Hands of Fate", "game_detection": [ @@ -44830,7 +42042,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Exile's End", "game_detection": [ @@ -44845,7 +42056,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "James Bond 007: Nightfire", "game_detection": [ @@ -44857,7 +42067,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dawn of Man", "game_detection": [ @@ -44869,7 +42078,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Asteria", "game_detection": [ @@ -44884,7 +42092,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dragon's Lair II: Time Warp", "game_detection": [ @@ -44899,7 +42106,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "StarDrive", "game_detection": [ @@ -44914,7 +42120,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A Walk in the Dark", "game_detection": [ @@ -44934,7 +42139,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cosmochoria", "game_detection": [ @@ -44950,7 +42154,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eximius: Seize the Frontline", "game_detection": [ @@ -44961,7 +42164,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ms. Splosion Man", "game_detection": [ @@ -44976,7 +42178,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Metal Gear Solid V: The Phantom Pain", "game_detection": [ @@ -44991,7 +42192,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fibrillation", "game_detection": [ @@ -45005,7 +42205,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro Cycling Manager 2014", "game_detection": [ @@ -45020,7 +42219,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Monaco: What's Yours is Mine", "game_detection": [ @@ -45040,7 +42238,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sonic Lost World", "game_detection": [ @@ -45055,7 +42252,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zombie Army Trilogy", "game_detection": [ @@ -45070,7 +42266,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Colin McRae Rally 04", "game_detection": [ @@ -45082,7 +42277,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wargame: European Escalation", "game_detection": [ @@ -45097,7 +42291,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "TesserAct", "game_detection": [ @@ -45112,7 +42305,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Obduction", "game_detection": [ @@ -45127,7 +42319,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NASCAR Racing 3", "game_detection": [ @@ -45139,7 +42330,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Floating Point", "game_detection": [ @@ -45159,7 +42349,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Everlight of Magic & Power", "game_detection": [ @@ -45172,7 +42361,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Binding of Isaac", "game_detection": [ @@ -45197,7 +42385,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Magic Workstation", "game_detection": [ @@ -45209,7 +42396,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nancy Drew: Ransom of the Seven Ships", "game_detection": [ @@ -45224,7 +42410,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead Space 3", "game_detection": [ @@ -45236,7 +42421,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Check vs Mate", "game_detection": [ @@ -45259,7 +42443,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tiny and Big: Grandpa's Leftovers", "game_detection": [ @@ -45280,7 +42463,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Castle Doctrine", "game_detection": [ @@ -45295,7 +42477,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rocket Mania Deluxe", "game_detection": [ @@ -45317,7 +42498,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fallout 2", "game_detection": [ @@ -45337,7 +42517,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NieR: Automata", "game_detection": [ @@ -45352,7 +42531,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "School Bus Fun", "game_detection": [ @@ -45367,7 +42545,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DEADBOLT", "game_detection": [ @@ -45382,7 +42559,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Elements", "game_detection": [ @@ -45395,7 +42571,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2019", "game_detection": [ @@ -45406,7 +42581,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LawBreakers", "game_detection": [ @@ -45421,7 +42595,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ironclads: High Seas", "game_detection": [ @@ -45436,7 +42609,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Outpost 13", "game_detection": [ @@ -45451,7 +42623,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Worms 4: Mayhem", "game_detection": [ @@ -45464,7 +42635,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Concursion", "game_detection": [ @@ -45479,7 +42649,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battlerite Royale", "game_detection": [ @@ -45490,7 +42659,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Enter the Gungeon", "game_detection": [ @@ -45505,7 +42673,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Laser Racer", "game_detection": [ @@ -45520,7 +42687,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heroine Anthem Zero", "game_detection": [ @@ -45535,7 +42701,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BlazBlue: Continuum Shift Extend", "game_detection": [ @@ -45550,7 +42715,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Aliens Versus Predator 2", "game_detection": [ @@ -45564,7 +42728,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shot In The Dark", "game_detection": [ @@ -45579,7 +42742,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gomo", "game_detection": [ @@ -45599,7 +42761,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "Age of Wushu", "game_detection": [ @@ -45613,7 +42774,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heroes of Steel", "game_detection": [ @@ -45628,7 +42788,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "TDP5 Arena 3D", "game_detection": [ @@ -45643,7 +42802,6 @@ ] }, { - "force_display_capture": false, "region": "JP", "title": "SEGA NET Mahjong MJ", "game_detection": [ @@ -45657,7 +42815,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gates of Andaron", "game_detection": [ @@ -45670,7 +42827,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Resident Evil: Operation Raccoon City", "game_detection": [ @@ -45685,7 +42841,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "System Shock 2", "game_detection": [ @@ -45715,7 +42870,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fortune Summoners", "game_detection": [ @@ -45730,7 +42884,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lost Marbles", "game_detection": [ @@ -45745,7 +42898,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Galactic Bowling", "game_detection": [ @@ -45760,7 +42912,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cold Fear", "game_detection": [ @@ -45772,7 +42923,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Amazing Adventures Around the World", "game_detection": [ @@ -45787,7 +42937,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fingerbones", "game_detection": [ @@ -45802,7 +42951,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dishonored", "game_detection": [ @@ -45817,7 +42965,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Littlest Pet Shop", "game_detection": [ @@ -45829,7 +42976,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shower With Your Dad Simulator 2015: Do You Still Shower With Your Dad", "game_detection": [ @@ -45844,7 +42990,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Diablo III", "game_detection": [ @@ -45864,7 +43009,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Division 2", "game_detection": [ @@ -45876,7 +43020,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "F1 2015", "game_detection": [ @@ -45891,7 +43034,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ZAMB! Biomutant Extermination", "game_detection": [ @@ -45906,7 +43048,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "My Summer Car", "game_detection": [ @@ -45925,7 +43066,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Galactic Civilizations III", "game_detection": [ @@ -45940,7 +43080,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sakura Angels", "game_detection": [ @@ -45955,7 +43094,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Inferno 2", "game_detection": [ @@ -45970,7 +43108,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mount & Blade", "game_detection": [ @@ -45996,7 +43133,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tortuga: Two Treasures", "game_detection": [ @@ -46009,7 +43145,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rack N Ruin", "game_detection": [ @@ -46024,7 +43159,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cloudy with a Chance of Meatballs", "game_detection": [ @@ -46044,7 +43178,6 @@ ] }, { - "force_display_capture": false, "region": "RU", "title": "Atlantica Online", "game_detection": [ @@ -46057,7 +43190,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cannon Brawl", "game_detection": [ @@ -46072,7 +43204,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hatred", "game_detection": [ @@ -46087,7 +43218,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Randal's Monday", "game_detection": [ @@ -46102,7 +43232,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeon Punks", "game_detection": [ @@ -46117,7 +43246,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dragon Oath", "game_detection": [ @@ -46131,7 +43259,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rambo: The Video Game", "game_detection": [ @@ -46146,7 +43273,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DeathSpank: Thongs of Virtue", "game_detection": [ @@ -46161,7 +43287,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The House of the Dead 3", "game_detection": [ @@ -46174,7 +43299,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tony Hawk's Pro Skater HD", "game_detection": [ @@ -46189,7 +43313,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "TrackMania", "game_detection": [ @@ -46210,7 +43333,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Champions Online", "game_detection": [ @@ -46244,7 +43366,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gwent: The Witcher Card Game", "game_detection": [ @@ -46257,7 +43378,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Empress Of The Deep", "game_detection": [ @@ -46272,7 +43392,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ROCKETSROCKETSROCKETS", "game_detection": [ @@ -46287,7 +43406,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Silver Creek Falls: Chapter 1", "game_detection": [ @@ -46302,7 +43420,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fantasy Blacksmith", "game_detection": [ @@ -46313,7 +43430,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Linkrealms", "game_detection": [ @@ -46328,7 +43444,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Strike Vector", "game_detection": [ @@ -46343,7 +43458,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Still Life 2", "game_detection": [ @@ -46363,7 +43477,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mega Coin Squad", "game_detection": [ @@ -46378,7 +43491,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dev Guy", "game_detection": [ @@ -46393,7 +43505,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stronghold Crusader Extreme", "game_detection": [ @@ -46413,7 +43524,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark Age of Camelot: Darkness Rising", "game_detection": [ @@ -46433,7 +43543,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sanctum", "game_detection": [ @@ -46448,7 +43557,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Driftmoon", "game_detection": [ @@ -46463,7 +43571,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark Sector", "game_detection": [ @@ -46483,7 +43590,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Day of the Tentacle Remastered", "game_detection": [ @@ -46498,7 +43604,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Serious Sam: The Random Encounter", "game_detection": [ @@ -46524,7 +43629,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Rayman Legends", "game_detection": [ @@ -46538,7 +43642,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fortix", "game_detection": [ @@ -46553,7 +43656,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "StepMania 5", "game_detection": [ @@ -46567,7 +43669,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Waveform", "game_detection": [ @@ -46587,7 +43688,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sunset's Ashes", "game_detection": [ @@ -46602,7 +43702,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Clans", "game_detection": [ @@ -46617,7 +43716,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Delta Force: Black Hawk Down", "game_detection": [ @@ -46637,7 +43735,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "I Wanna Be The Guy: Gaiden", "game_detection": [ @@ -46649,7 +43746,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ragnarok Online 2", "game_detection": [ @@ -46677,7 +43773,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dragon Raja", "game_detection": [ @@ -46691,7 +43786,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "TRON 2.0", "game_detection": [ @@ -46704,7 +43798,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ring Runner: Flight of the Sages", "game_detection": [ @@ -46719,7 +43812,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mystery P.I.: The Vegas Heist", "game_detection": [ @@ -46734,7 +43826,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Breach & Clear: Deadline", "game_detection": [ @@ -46749,7 +43840,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dauntless", "game_detection": [ @@ -46768,7 +43858,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mahjong Quest", "game_detection": [ @@ -46783,7 +43872,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Scions of Fate", "game_detection": [ @@ -46796,7 +43884,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fallout 4", "game_detection": [ @@ -46818,7 +43905,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cart Life", "game_detection": [ @@ -46838,7 +43924,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Flora's Fruit Farm", "game_detection": [ @@ -46853,7 +43938,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sacra Terra: Angelic Night", "game_detection": [ @@ -46866,7 +43950,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Space Hulk: Deathwing", "game_detection": [ @@ -46881,7 +43964,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Re-Volt", "game_detection": [ @@ -46893,7 +43975,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pajama Sam's Sock Works", "game_detection": [ @@ -46908,7 +43989,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Football Manager 2007", "game_detection": [ @@ -46920,7 +44000,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Unity of Command", "game_detection": [ @@ -46935,7 +44014,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Huxley: The Dystopia", "game_detection": [ @@ -46948,7 +44026,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shift Happens", "game_detection": [ @@ -46963,7 +44040,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeon of Elements", "game_detection": [ @@ -46983,7 +44059,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lost: Via Domus", "game_detection": [ @@ -46996,7 +44071,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rugby Challenge 2", "game_detection": [ @@ -47011,7 +44085,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cities XL Platinum", "game_detection": [ @@ -47026,7 +44099,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MX vs. ATV Unleashed Demo", "game_detection": [ @@ -47040,7 +44112,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "TerraTech", "game_detection": [ @@ -47059,7 +44130,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Space Hulk", "game_detection": [ @@ -47074,7 +44144,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Spiderwick Chronicles", "game_detection": [ @@ -47086,7 +44155,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead Rising 2: Off the Record", "game_detection": [ @@ -47106,7 +44174,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "EMERGENCY 4 Deluxe", "game_detection": [ @@ -47117,7 +44184,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "Seal Online", "game_detection": [ @@ -47131,7 +44197,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Amnesia: A Machine for Pigs", "game_detection": [ @@ -47153,7 +44218,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DiRT Showdown", "game_detection": [ @@ -47168,7 +44232,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Major League Baseball 2K10", "game_detection": [ @@ -47180,7 +44243,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Frankenstein: Master of Death", "game_detection": [ @@ -47195,7 +44257,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Starlight Inception", "game_detection": [ @@ -47210,7 +44271,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Elder Scrolls V: Skyrim Special Edition", "game_detection": [ @@ -47225,7 +44285,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Balls of Steel Demo", "game_detection": [ @@ -47237,7 +44296,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Blackwell Deception", "game_detection": [ @@ -47262,7 +44320,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hyperdimension Neptunia U: Action Unleashed", "game_detection": [ @@ -47277,7 +44334,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Etherlords II", "game_detection": [ @@ -47292,7 +44348,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eternal Silence", "game_detection": [ @@ -47307,7 +44362,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jump King", "game_detection": [ @@ -47318,7 +44372,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Chaos Engine", "game_detection": [ @@ -47333,7 +44386,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Azzura Avventura", "game_detection": [ @@ -47345,7 +44397,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Harvester", "game_detection": [ @@ -47360,7 +44411,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FIFA Soccer 13", "game_detection": [ @@ -47374,7 +44424,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Miner Wars 2081", "game_detection": [ @@ -47389,7 +44438,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gotham City Impostors", "game_detection": [ @@ -47410,7 +44458,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "N.E.O. Online", "game_detection": [ @@ -47425,7 +44472,6 @@ ] }, { - "force_display_capture": false, "region": "DE", "title": "Gunblade Saga", "game_detection": [ @@ -47438,7 +44484,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Space Channel 5: Part 2", "game_detection": [ @@ -47453,7 +44498,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GTR: FIA GT Racing Game", "game_detection": [ @@ -47473,7 +44517,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "One Finger Death Punch 2", "game_detection": [ @@ -47484,7 +44527,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Seven Seas Deluxe", "game_detection": [ @@ -47497,7 +44539,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Take On Mars", "game_detection": [ @@ -47512,7 +44553,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Conan Exiles", "game_detection": [ @@ -47527,7 +44567,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Okami HD", "game_detection": [ @@ -47542,7 +44581,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Aerofly FS 2 Flight Simulator", "game_detection": [ @@ -47557,7 +44595,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "A.I.M. Racing", "game_detection": [ @@ -47572,7 +44609,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Farming Simulator 2013", "game_detection": [ @@ -47587,7 +44623,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wolfenstein: The Old Blood", "game_detection": [ @@ -47602,7 +44637,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Drakensang Online", "game_detection": [ @@ -47616,7 +44650,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Trials 2: Second Edition", "game_detection": [ @@ -47631,7 +44664,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chainz 2: Relinked", "game_detection": [ @@ -47646,7 +44678,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Grand Ages: Rome", "game_detection": [ @@ -47666,7 +44697,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rock Zombie", "game_detection": [ @@ -47681,7 +44711,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blackshot", "game_detection": [ @@ -47703,7 +44732,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Horsez", "game_detection": [ @@ -47720,7 +44748,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "One Way Heroics", "game_detection": [ @@ -47735,7 +44762,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Naval Action", "game_detection": [ @@ -47762,7 +44788,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeon Defenders II", "game_detection": [ @@ -47777,7 +44802,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ancient Wars: Sparta", "game_detection": [ @@ -47789,7 +44813,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Putt-Putt Joins the Parade", "game_detection": [ @@ -47804,7 +44827,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shenmue 2", "game_detection": [ @@ -47818,7 +44840,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Space Run Galaxy", "game_detection": [ @@ -47833,7 +44854,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Monster Energy Supercross The Official Videogame 2", "game_detection": [ @@ -47844,7 +44864,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Terra: Battle for the Outlands", "game_detection": [ @@ -47857,7 +44876,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Singularity", "game_detection": [ @@ -47878,7 +44896,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shaq Fu: A Legend Reborn", "game_detection": [ @@ -47892,7 +44909,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeons", "game_detection": [ @@ -47913,7 +44929,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Humans Must Answer", "game_detection": [ @@ -47928,7 +44943,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SWAT 3: Close Quarters Battle", "game_detection": [ @@ -47941,7 +44955,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Railroad Tycoon 3", "game_detection": [ @@ -47953,7 +44966,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Astebreed", "game_detection": [ @@ -47973,7 +44985,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Risen 3: Titan Lords", "game_detection": [ @@ -47988,7 +44999,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Art of Murder: Cards of Destiny", "game_detection": [ @@ -48001,7 +45011,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Qbeh-1: The Atlas Cube", "game_detection": [ @@ -48016,7 +45025,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Scribblenauts Unlimited", "game_detection": [ @@ -48031,7 +45039,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ice Age 3: Dawn of the Dinosaurs", "game_detection": [ @@ -48043,7 +45050,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Dwarves", "game_detection": [ @@ -48058,7 +45064,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Whispered Legends: Tales of Middleport", "game_detection": [ @@ -48073,7 +45078,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Outlaws of the Old West", "game_detection": [ @@ -48084,7 +45088,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "7 Wonders: Ancient Alien Makeover", "game_detection": [ @@ -48099,7 +45102,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spooky's House of Jump Scares", "game_detection": [ @@ -48114,7 +45116,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lylian: Episode One: Paranoid Friendship", "game_detection": [ @@ -48127,7 +45128,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Racer 8", "game_detection": [ @@ -48142,7 +45142,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "EvilQuest", "game_detection": [ @@ -48157,7 +45156,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fallen Enchantress: Legendary Heroes", "game_detection": [ @@ -48172,7 +45170,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hotline Miami", "game_detection": [ @@ -48204,7 +45201,6 @@ ] }, { - "force_display_capture": false, "region": "FR", "title": "Forsaken World", "game_detection": [ @@ -48218,7 +45214,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "S.T.A.L.K.E.R. Call of Pripyat", "game_detection": [ @@ -48239,7 +45234,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bejeweled 2 Deluxe", "game_detection": [ @@ -48260,7 +45254,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Requiem: Memento Mori", "game_detection": [ @@ -48281,7 +45274,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Night Shift", "game_detection": [ @@ -48296,7 +45288,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Pro Cycling Manager Season 2012", "game_detection": [ @@ -48311,7 +45302,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Survivor Squad", "game_detection": [ @@ -48331,7 +45321,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dynasty Warriors 6", "game_detection": [ @@ -48343,7 +45332,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "You Must Build A Boat", "game_detection": [ @@ -48358,7 +45346,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Masquerada: Songs and Shadows", "game_detection": [ @@ -48373,7 +45360,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LEGO Star Wars: The Complete Saga", "game_detection": [ @@ -48393,7 +45379,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SMASH+GRAB", "game_detection": [ @@ -48408,7 +45393,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blazing Angels 2: Secret Missions of WWII", "game_detection": [ @@ -48428,7 +45412,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Grim Dawn", "game_detection": [ @@ -48447,7 +45430,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SmashMuck Champions", "game_detection": [ @@ -48468,7 +45450,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heroes Rise: The Hero Project", "game_detection": [ @@ -48483,7 +45464,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "GunZ 2", "game_detection": [ @@ -48497,7 +45477,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bloodline Champions", "game_detection": [ @@ -48518,7 +45497,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shantae and the Pirate's Curse", "game_detection": [ @@ -48532,7 +45510,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Princess Isabella: A Witch's Curse", "game_detection": [ @@ -48547,7 +45524,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Risk", "game_detection": [ @@ -48567,7 +45543,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "hack_me", "game_detection": [ @@ -48582,7 +45557,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Meridian 59", "game_detection": [ @@ -48594,7 +45568,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "JX Online 3", "game_detection": [ @@ -48615,7 +45588,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warlock: Master of the Arcane", "game_detection": [ @@ -48630,7 +45602,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Radiant Defense", "game_detection": [ @@ -48645,7 +45616,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Lion's Song: Episode 1 - Silence", "game_detection": [ @@ -48660,7 +45630,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Machine Learning: Episode I", "game_detection": [ @@ -48676,7 +45645,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Adventure Time: Finn and Jake Investigations", "game_detection": [ @@ -48691,7 +45659,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Atlas", "game_detection": [ @@ -48702,7 +45669,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wings of Prey", "game_detection": [ @@ -48723,7 +45689,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Legends of Aethereus", "game_detection": [ @@ -48738,7 +45703,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "OBEY", "game_detection": [ @@ -48758,7 +45722,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Scarface: The World Is Yours", "game_detection": [ @@ -48770,7 +45733,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Koikatsu Party", "game_detection": [ @@ -48781,7 +45743,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Worldwide Soccer Manager 2008", "game_detection": [ @@ -48793,7 +45754,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Republique Remastered", "game_detection": [ @@ -48813,7 +45773,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Brütal Legend", "game_detection": [ @@ -48833,7 +45792,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Guild of Dungeoneering", "game_detection": [ @@ -48848,7 +45806,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sonic Generations", "game_detection": [ @@ -48863,7 +45820,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sam & Max Episode 205: What's New, Beelzebub?", "game_detection": [ @@ -48883,7 +45839,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Death to Spies", "game_detection": [ @@ -48895,7 +45850,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Secret of the Solstice", "game_detection": [ @@ -48935,7 +45889,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Halo Wars: Definitive Edition", "game_detection": [ @@ -48950,7 +45903,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Akiba's Trip: Undead & Undressed", "game_detection": [ @@ -48965,7 +45917,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Etch A Sketch", "game_detection": [ @@ -48980,7 +45931,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gas Guzzlers Extreme", "game_detection": [ @@ -48995,7 +45945,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Behind The Reflection", "game_detection": [ @@ -49008,7 +45957,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tomb Raider 3", "game_detection": [ @@ -49023,7 +45971,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "World War Z", "game_detection": [ @@ -49038,7 +45985,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LaserCat", "game_detection": [ @@ -49050,7 +45996,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "CSI: Deadly Intent", "game_detection": [ @@ -49063,7 +46008,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Trek: Bridge Commander", "game_detection": [ @@ -49075,7 +46019,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A New Beginning", "game_detection": [ @@ -49095,7 +46038,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bullet Candy", "game_detection": [ @@ -49110,7 +46052,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sins of a Dark Age", "game_detection": [ @@ -49123,7 +46064,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "HeroClix Online", "game_detection": [ @@ -49136,7 +46076,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pink Hour", "game_detection": [ @@ -49151,7 +46090,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "System Protocol One", "game_detection": [ @@ -49166,7 +46104,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tom Clancy's Splinter Cell", "game_detection": [ @@ -49186,7 +46123,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BorderZone", "game_detection": [ @@ -49201,7 +46137,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Regions of Ruin", "game_detection": [ @@ -49216,7 +46151,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DieselStormers", "game_detection": [ @@ -49231,7 +46165,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Epic Battle Fantasy 4", "game_detection": [ @@ -49246,7 +46179,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "They Breathe", "game_detection": [ @@ -49261,7 +46193,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Infinite Black", "game_detection": [ @@ -49276,7 +46207,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ascend: Hand of Kul", "game_detection": [ @@ -49291,7 +46221,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fading Hearts", "game_detection": [ @@ -49306,7 +46235,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DISSIDIA FINAL FANTASY NT Free Edition", "game_detection": [ @@ -49317,7 +46245,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Level R", "game_detection": [ @@ -49330,7 +46257,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shovel Knight: Specter of Torment", "game_detection": [ @@ -49346,7 +46272,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Defense Grid: The Awakening", "game_detection": [ @@ -49366,7 +46291,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hello Kitty Online", "game_detection": [ @@ -49379,7 +46303,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Frozen Synapse", "game_detection": [ @@ -49403,7 +46326,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mystery Case Files: Prime Suspects", "game_detection": [ @@ -49418,7 +46340,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rail Simulator", "game_detection": [ @@ -49430,7 +46351,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Elite: Dangerous", "game_detection": [ @@ -49449,7 +46369,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "XEvil", "game_detection": [ @@ -49461,7 +46380,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Armies of Exigo", "game_detection": [ @@ -49473,7 +46391,6 @@ ] }, { - "force_display_capture": false, "region": "RU", "title": "Blood and Soul", "game_detection": [ @@ -49488,7 +46405,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pirates of the Burning Sea", "game_detection": [ @@ -49535,7 +46451,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spiral Knights", "game_detection": [ @@ -49550,7 +46465,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Children of the Nile: Alexandria", "game_detection": [ @@ -49565,7 +46479,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Helbreath", "game_detection": [ @@ -49579,7 +46492,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Astro Tripper", "game_detection": [ @@ -49600,7 +46512,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Timelines: Assault on America", "game_detection": [ @@ -49615,7 +46526,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jagged Alliance: Back in Action", "game_detection": [ @@ -49630,7 +46540,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tesla VR", "game_detection": [ @@ -49646,7 +46555,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "Asgard", "game_detection": [ @@ -49659,7 +46567,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Escape Rosecliff Island", "game_detection": [ @@ -49674,7 +46581,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FIFA Soccer 08", "game_detection": [ @@ -49686,7 +46592,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dovetail Games Fishing", "game_detection": [ @@ -49701,7 +46606,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rokh", "game_detection": [ @@ -49716,7 +46620,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Area 51", "game_detection": [ @@ -49735,7 +46638,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pac-Man and the Ghostly Adventures", "game_detection": [ @@ -49750,7 +46652,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Viridi", "game_detection": [ @@ -49765,7 +46666,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crash Bandicoot N. Sane Trilogy", "game_detection": [ @@ -49779,7 +46679,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Night in the Woods", "game_detection": [ @@ -49794,7 +46693,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rayman Raving Rabbids", "game_detection": [ @@ -49807,7 +46705,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Discovery!: A Seek and Find Adventure", "game_detection": [ @@ -49822,7 +46719,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bird Assassin", "game_detection": [ @@ -49837,7 +46733,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Never Alone", "game_detection": [ @@ -49852,7 +46747,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Penny Arcade Adventures: On the Rain-Slick Precipice of Darkness: Episode One", "game_detection": [ @@ -49872,7 +46766,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rocket League", "game_detection": [ @@ -49887,7 +46780,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ChronoClock", "game_detection": [ @@ -49902,7 +46794,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Affected Zone Tactics", "game_detection": [ @@ -49917,7 +46808,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Battle of Sol", "game_detection": [ @@ -49932,7 +46822,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Titanfall 2", "game_detection": [ @@ -49944,7 +46833,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Aqua Kitty: Milk Mine Defender", "game_detection": [ @@ -49964,7 +46852,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Redshirt", "game_detection": [ @@ -49984,7 +46871,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Reflex", "game_detection": [ @@ -49999,7 +46885,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "I Am Vegend: Zombiegeddon", "game_detection": [ @@ -50014,7 +46899,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Production Line", "game_detection": [ @@ -50025,7 +46909,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wolfenstein II: The New Colossus", "game_detection": [ @@ -50040,7 +46923,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Explodemon!", "game_detection": [ @@ -50060,7 +46942,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heritage of Kings: The Settlers", "game_detection": [ @@ -50073,7 +46954,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Transference", "game_detection": [ @@ -50088,7 +46968,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Loki: Heroes of Mythology", "game_detection": [ @@ -50109,7 +46988,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "TDP4: Team Battle", "game_detection": [ @@ -50124,7 +47002,6 @@ ] }, { - "force_display_capture": false, "region": "BR", "title": "Smite", "game_detection": [ @@ -50147,7 +47024,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SUGURI Perfect Edition", "game_detection": [ @@ -50162,7 +47038,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LEGO Worlds", "game_detection": [ @@ -50177,7 +47052,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NASCAR Racing 2002 Season", "game_detection": [ @@ -50189,7 +47063,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Virtual Villagers 3: The Secret City", "game_detection": [ @@ -50204,7 +47077,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A dead world's dream", "game_detection": [ @@ -50219,7 +47091,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Guild Wars 2", "game_detection": [ @@ -50241,7 +47112,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alien Shooter: Vengeance", "game_detection": [ @@ -50253,7 +47123,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Coloring Pixels", "game_detection": [ @@ -50264,7 +47133,6 @@ ] }, { - "force_display_capture": false, "region": "ES", "title": "Cerdocornio", "game_detection": [ @@ -50279,7 +47147,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cabela's African Adventures", "game_detection": [ @@ -50294,7 +47161,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ryzom", "game_detection": [ @@ -50314,7 +47180,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Call of Duty: United Offensive", "game_detection": [ @@ -50349,7 +47214,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Insaniquarium Deluxe", "game_detection": [ @@ -50370,7 +47234,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "URU: Complete Chronicles", "game_detection": [ @@ -50385,7 +47248,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Panzer Corps", "game_detection": [ @@ -50400,7 +47262,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Midtown Madness", "game_detection": [ @@ -50412,7 +47273,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead Space 2", "game_detection": [ @@ -50432,7 +47292,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mojo Master", "game_detection": [ @@ -50467,7 +47326,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gods & Heroes: Rome Rising", "game_detection": [ @@ -50487,7 +47345,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kitsu Saga", "game_detection": [ @@ -50502,7 +47359,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pulstar", "game_detection": [ @@ -50522,7 +47378,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gravity Badgers", "game_detection": [ @@ -50537,7 +47392,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cook, Serve, Delicious! 2!!", "game_detection": [ @@ -50552,7 +47406,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Epic Space Online", "game_detection": [ @@ -50567,7 +47420,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Dream Machine", "game_detection": [ @@ -50582,7 +47434,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Light of Altair", "game_detection": [ @@ -50597,7 +47448,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Guise of the Wolf", "game_detection": [ @@ -50612,7 +47462,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "rFactor 2", "game_detection": [ @@ -50625,7 +47474,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zodiac Online", "game_detection": [ @@ -50639,7 +47487,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NBA 2K13", "game_detection": [ @@ -50659,7 +47506,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Prince of Persia: The Two Thrones", "game_detection": [ @@ -50673,7 +47519,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alone in the Dark: Illumination", "game_detection": [ @@ -50688,7 +47533,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NetGammon", "game_detection": [ @@ -50700,7 +47544,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nekopara Vol. 0", "game_detection": [ @@ -50715,7 +47558,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tadpole Treble", "game_detection": [ @@ -50730,7 +47572,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Storm Over the Pacific", "game_detection": [ @@ -50745,7 +47586,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GASP", "game_detection": [ @@ -50760,7 +47600,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alex Hunter: Lord of the Mind", "game_detection": [ @@ -50775,7 +47614,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sky Break", "game_detection": [ @@ -50790,7 +47628,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Iron Front: Liberation 1944", "game_detection": [ @@ -50804,7 +47641,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeon Defenders", "game_detection": [ @@ -50824,7 +47660,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jagged Alliance: Gold Edition", "game_detection": [ @@ -50839,7 +47674,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sakura Dungeon", "game_detection": [ @@ -50854,7 +47688,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gravi", "game_detection": [ @@ -50869,7 +47702,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Monkey Island 2: Special Edition LeChucks Revenge", "game_detection": [ @@ -50884,7 +47716,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "PAC-MAN Championship Edition DX+", "game_detection": [ @@ -50899,7 +47730,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark Souls: Prepare to Die Edition", "game_detection": [ @@ -50914,7 +47744,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Call of Duty: World at War", "game_detection": [ @@ -50949,7 +47778,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NASCAR '15", "game_detection": [ @@ -50964,7 +47792,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nancy Drew: Ghost of Thornton Hall", "game_detection": [ @@ -50979,7 +47806,6 @@ ] }, { - "force_display_capture": false, "region": "RU", "title": "Perfect World", "game_detection": [ @@ -50995,7 +47821,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Commandos: Beyond the Call of Duty", "game_detection": [ @@ -51017,7 +47842,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Assassin's Creed: Unity", "game_detection": [ @@ -51037,7 +47861,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Under Night In-Birth Exe:Late", "game_detection": [ @@ -51052,7 +47875,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Space Engineers", "game_detection": [ @@ -51067,7 +47889,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Clustertruck", "game_detection": [ @@ -51086,7 +47907,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Celestian Tales: Old North", "game_detection": [ @@ -51101,7 +47921,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jamestown: Legend of the Lost Colony", "game_detection": [ @@ -51121,7 +47940,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wheelman", "game_detection": [ @@ -51142,7 +47960,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 4", "game_detection": [ @@ -51154,7 +47971,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "PsychoToxic", "game_detection": [ @@ -51167,7 +47983,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ride", "game_detection": [ @@ -51182,7 +47997,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rogue Trooper", "game_detection": [ @@ -51202,7 +48016,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Evil Genome", "game_detection": [ @@ -51217,7 +48030,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Saints Row IV", "game_detection": [ @@ -51236,7 +48048,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Walking Dead: Michonne", "game_detection": [ @@ -51251,7 +48062,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Helldivers", "game_detection": [ @@ -51266,7 +48076,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Polychromatic Funk Monkey", "game_detection": [ @@ -51278,7 +48087,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heroes Rise: HeroFall", "game_detection": [ @@ -51293,7 +48101,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Phantasy Star Universe", "game_detection": [ @@ -51308,7 +48115,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Osiris: New Dawn", "game_detection": [ @@ -51323,7 +48129,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cities in Motion 2", "game_detection": [ @@ -51338,7 +48143,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Split/Second Demo", "game_detection": [ @@ -51350,7 +48154,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MotoGP 15", "game_detection": [ @@ -51365,7 +48168,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Professional Farmer 2014", "game_detection": [ @@ -51380,7 +48182,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Raw Data", "game_detection": [ @@ -51396,7 +48197,6 @@ ] }, { - "force_display_capture": false, "region": "UK", "title": "Hex: Shards of Fate", "game_detection": [ @@ -51410,7 +48210,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bit.Trip Fate", "game_detection": [ @@ -51425,7 +48224,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dota Underlords", "game_detection": [ @@ -51436,7 +48234,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "MapleStory", "game_detection": [ @@ -51450,7 +48247,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sid Meier's Starships", "game_detection": [ @@ -51465,7 +48261,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Punch Club", "game_detection": [ @@ -51480,7 +48275,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "X2: The Threat", "game_detection": [ @@ -51492,7 +48286,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "God Eater Resurrection", "game_detection": [ @@ -51507,7 +48300,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "PLATFORMANCE: Temple Death", "game_detection": [ @@ -51520,7 +48312,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Farming Simulator 15", "game_detection": [ @@ -51534,7 +48325,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "No One Lives Forever", "game_detection": [ @@ -51548,7 +48338,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Imperium Romanum", "game_detection": [ @@ -51569,7 +48358,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "REALITY", "game_detection": [ @@ -51584,7 +48372,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Endless Space 2", "game_detection": [ @@ -51599,7 +48386,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "PooShooter: Toilet Invaders", "game_detection": [ @@ -51614,7 +48400,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Serious Sam: The Greek Encounter", "game_detection": [ @@ -51632,7 +48417,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Castlevania: Lords of Shadow - Mirror of Fate HD", "game_detection": [ @@ -51647,7 +48431,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Evochron Mercenary", "game_detection": [ @@ -51662,7 +48445,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Job Simulator", "game_detection": [ @@ -51678,7 +48460,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fallout 3", "game_detection": [ @@ -51714,7 +48495,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sunset Overdrive", "game_detection": [ @@ -51725,7 +48505,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hammerfight", "game_detection": [ @@ -51740,7 +48519,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alone in the Dark", "game_detection": [ @@ -51760,7 +48538,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Block N Load", "game_detection": [ @@ -51775,7 +48552,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Batman: Arkham City", "game_detection": [ @@ -51803,7 +48579,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deponia Doomsday", "game_detection": [ @@ -51818,7 +48593,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gothic 3: Forsaken Gods", "game_detection": [ @@ -51840,7 +48614,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "1931: Scheherazade at the Library of Pergamum", "game_detection": [ @@ -51853,7 +48626,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Glare", "game_detection": [ @@ -51873,7 +48645,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Duke Nukem", "game_detection": [ @@ -51888,7 +48659,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Grandia II Anniversary Edition", "game_detection": [ @@ -51903,7 +48673,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Swag and Sorcery", "game_detection": [ @@ -51914,7 +48683,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eterium", "game_detection": [ @@ -51929,7 +48697,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lamia Must Die", "game_detection": [ @@ -51944,7 +48711,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zavix Tower", "game_detection": [ @@ -51959,7 +48725,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Forts", "game_detection": [ @@ -51974,7 +48739,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pet Vet: 3D: Animal Hospital", "game_detection": [ @@ -51986,7 +48750,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ultima Online: Kingdom Reborn", "game_detection": [ @@ -51999,7 +48762,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Peter Jackson's King Kong", "game_detection": [ @@ -52020,7 +48782,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Fahrenheit", "game_detection": [ @@ -52032,7 +48793,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Disciples: Sacred Lands", "game_detection": [ @@ -52044,7 +48804,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tribloos 2", "game_detection": [ @@ -52059,7 +48818,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mafia", "game_detection": [ @@ -52074,7 +48832,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mage Knight: Apocalypse", "game_detection": [ @@ -52086,7 +48843,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fallen City", "game_detection": [ @@ -52098,7 +48854,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Harry Potter and the Order of the Phoenix", "game_detection": [ @@ -52110,7 +48865,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Youtubers Life", "game_detection": [ @@ -52125,7 +48879,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pandora Saga", "game_detection": [ @@ -52147,7 +48900,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ephemerid: A Musical Adventure", "game_detection": [ @@ -52162,7 +48914,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dragon Saga", "game_detection": [ @@ -52183,7 +48934,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Business Tour", "game_detection": [ @@ -52197,7 +48947,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ticket to Ride", "game_detection": [ @@ -52217,7 +48966,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Command & Conquer 3: Tiberium Wars Demo", "game_detection": [ @@ -52231,7 +48979,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BioShock Infinite", "game_detection": [ @@ -52246,7 +48993,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeon Siege: Legends of Aranna", "game_detection": [ @@ -52258,7 +49004,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Europa Universalis IV Demo", "game_detection": [ @@ -52273,7 +49018,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Elder Scrolls 4: Oblivion", "game_detection": [ @@ -52295,7 +49039,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Holy Potatoes! A Weapon Shop?!", "game_detection": [ @@ -52310,7 +49053,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Back to Dinosaur Island Part 2", "game_detection": [ @@ -52326,7 +49068,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Panda Rampage", "game_detection": [ @@ -52339,7 +49080,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Walkover", "game_detection": [ @@ -52354,7 +49094,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cosmic DJ", "game_detection": [ @@ -52374,7 +49113,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NARUTO SHIPPUDEN: Ultimate Ninja STORM 2", "game_detection": [ @@ -52389,7 +49127,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Panzar", "game_detection": [ @@ -52403,7 +49140,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Operation Flashpoint: Red River", "game_detection": [ @@ -52424,7 +49160,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RPG Maker VX Ace", "game_detection": [ @@ -52444,7 +49179,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SNOW", "game_detection": [ @@ -52459,7 +49193,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bridge Constructor Playground", "game_detection": [ @@ -52474,7 +49207,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Martial Arts: Capoeira", "game_detection": [ @@ -52489,7 +49221,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lumino City", "game_detection": [ @@ -52504,7 +49235,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims 2: Family Fun Stuff", "game_detection": [ @@ -52516,7 +49246,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Grey's Anatomy: The Video Game", "game_detection": [ @@ -52528,7 +49257,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Geneforge", "game_detection": [ @@ -52543,7 +49271,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Final Fantasy XIII-2", "game_detection": [ @@ -52558,7 +49285,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MouseCraft", "game_detection": [ @@ -52573,7 +49299,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hellblade: Senua's Sacrifice", "game_detection": [ @@ -52588,7 +49313,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Final Doom", "game_detection": [ @@ -52603,7 +49327,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dreamlords: The Reawakening", "game_detection": [ @@ -52615,7 +49338,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cid the Dummy", "game_detection": [ @@ -52630,7 +49352,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deadly Sin 2", "game_detection": [ @@ -52645,7 +49366,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Signs of Life", "game_detection": [ @@ -52665,7 +49385,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ghost Master", "game_detection": [ @@ -52680,7 +49399,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LA Cops", "game_detection": [ @@ -52695,7 +49413,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "AdventureQuest 3D", "game_detection": [ @@ -52710,7 +49427,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NEStalgia", "game_detection": [ @@ -52725,7 +49441,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Legends", "game_detection": [ @@ -52739,7 +49454,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ORION: Dino Beatdown", "game_detection": [ @@ -52754,7 +49468,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Last Year The Nightmare", "game_detection": [ @@ -52766,7 +49479,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ShotForge", "game_detection": [ @@ -52782,7 +49494,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tactical Craft Online", "game_detection": [ @@ -52797,7 +49508,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Day of Defeat: Source", "game_detection": [ @@ -52819,7 +49529,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Evil Within 2", "game_detection": [ @@ -52834,7 +49543,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SEGA Genesis & Mega Drive Classics", "game_detection": [ @@ -52855,7 +49563,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deus Ex", "game_detection": [ @@ -52875,7 +49582,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hexodius", "game_detection": [ @@ -52890,7 +49596,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Age of Wonders II: The Wizard's Throne", "game_detection": [ @@ -52911,7 +49616,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GunMetal", "game_detection": [ @@ -52926,7 +49630,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Salammbo: Battle for Carthage", "game_detection": [ @@ -52941,7 +49644,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Folk Tale", "game_detection": [ @@ -52956,7 +49658,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Run and Fire", "game_detection": [ @@ -52971,7 +49672,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eschatos", "game_detection": [ @@ -52986,7 +49686,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Edna & Harvey: Harvey's New Eyes", "game_detection": [ @@ -53006,7 +49705,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Assassin's Creed Chronicles: China", "game_detection": [ @@ -53028,7 +49726,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Soldier Front 2", "game_detection": [ @@ -53051,7 +49748,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "4x4 Evo 2", "game_detection": [ @@ -53063,7 +49759,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "One Piece Pirate Warriors 3", "game_detection": [ @@ -53078,7 +49773,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Karos Returns", "game_detection": [ @@ -53100,7 +49794,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spellforce: The Order of Dawn", "game_detection": [ @@ -53112,7 +49805,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stray Souls: Dollhouse Story", "game_detection": [ @@ -53125,7 +49817,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Quake 2", "game_detection": [ @@ -53156,7 +49847,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Atelier Firis: The Alchemist and the Mysterious Journey", "game_detection": [ @@ -53171,7 +49861,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Crew 2", "game_detection": [ @@ -53195,7 +49884,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Park", "game_detection": [ @@ -53210,7 +49898,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FACTIONS: Origins of Malu", "game_detection": [ @@ -53226,7 +49913,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Reveal The Deep", "game_detection": [ @@ -53241,7 +49927,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Party Of Sin", "game_detection": [ @@ -53256,7 +49941,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Football Manager 2016", "game_detection": [ @@ -53271,7 +49955,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lost Sector", "game_detection": [ @@ -53284,7 +49967,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LEGO Marvel Super Heroes 2", "game_detection": [ @@ -53298,7 +49980,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Prius Online", "game_detection": [ @@ -53311,7 +49992,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Empire Earth II", "game_detection": [ @@ -53328,7 +50008,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chivalry: Medieval Warfare", "game_detection": [ @@ -53343,7 +50022,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fate: The Traitor Soul", "game_detection": [ @@ -53356,7 +50034,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Test Drive Unlimited", "game_detection": [ @@ -53368,7 +50045,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Protocell", "game_detection": [ @@ -53383,7 +50059,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SOMA", "game_detection": [ @@ -53398,7 +50073,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "L.A.W – Living After War", "game_detection": [ @@ -53411,7 +50085,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Signal Ops", "game_detection": [ @@ -53429,7 +50102,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sam & Max: The Devil's Playhouse - The City that Dares Not Sleep", "game_detection": [ @@ -53444,7 +50116,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battlestations: Pacific", "game_detection": [ @@ -53465,7 +50136,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Valdis Story: Abyssal City", "game_detection": [ @@ -53486,7 +50156,6 @@ ] }, { - "force_display_capture": false, "region": "RU", "title": "R2 Online", "game_detection": [ @@ -53499,7 +50168,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Clicker Heroes", "game_detection": [ @@ -53514,7 +50182,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fire", "game_detection": [ @@ -53529,7 +50196,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "UEFA Champions League 2006-2007", "game_detection": [ @@ -53541,7 +50207,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "M.U.D. TV", "game_detection": [ @@ -53556,7 +50221,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battlefield 3 Open Beta", "game_detection": [ @@ -53569,7 +50233,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "QPlay", "game_detection": [ @@ -53582,7 +50245,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Emily is Away", "game_detection": [ @@ -53597,7 +50259,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "PlanetSide Arena", "game_detection": [ @@ -53608,7 +50269,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tomb Raider", "game_detection": [ @@ -53623,7 +50283,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Infection: Humanity's Last Gasp", "game_detection": [ @@ -53638,7 +50297,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gangland", "game_detection": [ @@ -53651,7 +50309,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Necronomicon: The Dawning of Darkness", "game_detection": [ @@ -53666,7 +50323,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DARIUSBURST Chronicle Saviours", "game_detection": [ @@ -53681,7 +50337,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Plan of Attack", "game_detection": [ @@ -53697,7 +50352,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "IS Defense", "game_detection": [ @@ -53712,7 +50366,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Not The Robots", "game_detection": [ @@ -53732,7 +50385,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DeadCore", "game_detection": [ @@ -53747,7 +50399,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Geneforge 5: Overthrow", "game_detection": [ @@ -53762,7 +50413,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Worms 2", "game_detection": [ @@ -53775,7 +50425,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zup!", "game_detection": [ @@ -53790,7 +50439,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Postmortem: one must die", "game_detection": [ @@ -53805,7 +50453,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Five Nights at Freddy's", "game_detection": [ @@ -53820,7 +50467,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Samaritan Paradox", "game_detection": [ @@ -53835,7 +50481,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Valdis Story", "game_detection": [ @@ -53847,7 +50492,6 @@ ] }, { - "force_display_capture": false, "region": "PT", "title": "Grand Fantasia", "game_detection": [ @@ -53861,7 +50505,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Prime World: Defenders", "game_detection": [ @@ -53876,7 +50519,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "UFO: Extraterrestrials", "game_detection": [ @@ -53888,7 +50530,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Please, Don't Touch Anything", "game_detection": [ @@ -53900,7 +50541,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Detective Case and Clown Bot in: Murder in the Hotel Lisbon", "game_detection": [ @@ -53915,7 +50555,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Over 9000 Zombies!", "game_detection": [ @@ -53930,7 +50569,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Big Brain Wolf", "game_detection": [ @@ -53945,7 +50583,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Go Home Dinosaurs", "game_detection": [ @@ -53960,7 +50597,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Purino Party", "game_detection": [ @@ -53975,7 +50611,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tabula Rasa", "game_detection": [ @@ -53987,7 +50622,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Perimeter: Emperor's Testament", "game_detection": [ @@ -54007,7 +50641,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Yakuza Kiwami", "game_detection": [ @@ -54019,7 +50652,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Farming Simulator 2019", "game_detection": [ @@ -54030,7 +50662,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Old Tree", "game_detection": [ @@ -54045,7 +50676,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Microsoft Combat Flight Simulator 3: Battle for Europe", "game_detection": [ @@ -54057,7 +50687,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FIFA Soccer 10", "game_detection": [ @@ -54069,7 +50698,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dragon Age II", "game_detection": [ @@ -54089,7 +50717,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Steam Bandits: Outpost", "game_detection": [ @@ -54104,7 +50731,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Transformers: War for Cybertron", "game_detection": [ @@ -54125,7 +50751,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mass Effect: Andromeda", "game_detection": [ @@ -54138,7 +50763,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "CreaVures", "game_detection": [ @@ -54153,7 +50777,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Triad Wars", "game_detection": [ @@ -54166,7 +50789,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Soldier of Fortune", "game_detection": [ @@ -54178,7 +50800,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Breach & Clear", "game_detection": [ @@ -54198,7 +50819,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RefleX", "game_detection": [ @@ -54213,7 +50833,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NOT A HERO", "game_detection": [ @@ -54228,7 +50847,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Aliens Versus Predator: Gold Edition", "game_detection": [ @@ -54240,7 +50858,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "When the Darkness comes", "game_detection": [ @@ -54251,7 +50868,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Magical Otoge Ciel", "game_detection": [ @@ -54266,7 +50882,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "7 Grand Steps", "game_detection": [ @@ -54286,7 +50901,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A Vampyre Story", "game_detection": [ @@ -54298,7 +50912,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Arena Wars 2", "game_detection": [ @@ -54313,7 +50926,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Carpe Diem", "game_detection": [ @@ -54328,7 +50940,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Legendary", "game_detection": [ @@ -54343,7 +50954,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Descent: Freespace - The Great War", "game_detection": [ @@ -54364,7 +50974,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Dark Eye: Demonicon", "game_detection": [ @@ -54379,7 +50988,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RollerCoaster Tycoon 3: Soaked!", "game_detection": [ @@ -54391,7 +50999,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tale of Wuxia", "game_detection": [ @@ -54406,7 +51013,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chameleon Gems", "game_detection": [ @@ -54421,7 +51027,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Medusa's Labyrinth", "game_detection": [ @@ -54436,7 +51041,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark Souls III", "game_detection": [ @@ -54451,7 +51055,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kaiju-A-GoGo", "game_detection": [ @@ -54466,7 +51069,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Red Orchestra 2: Heroes of Stalingrad Multiplayer", "game_detection": [ @@ -54481,7 +51083,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Age of Empires III: The Asian Dynasties", "game_detection": [ @@ -54493,7 +51094,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Commandos 2: Men of Courage", "game_detection": [ @@ -54515,7 +51115,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SolForge", "game_detection": [ @@ -54530,7 +51129,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dishonored: Death of the Outsider", "game_detection": [ @@ -54545,7 +51143,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Defense Zone 2", "game_detection": [ @@ -54560,7 +51157,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shakes and Fidget", "game_detection": [ @@ -54575,7 +51171,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Beyond Good and Evil", "game_detection": [ @@ -54588,7 +51183,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Skater XL", "game_detection": [ @@ -54599,7 +51193,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Steins;Gate 0", "game_detection": [ @@ -54613,7 +51206,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeon Crawl Stone Soup", "game_detection": [ @@ -54626,7 +51218,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Oxenfree", "game_detection": [ @@ -54645,7 +51236,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Primal Carnage: Extinction", "game_detection": [ @@ -54660,7 +51250,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Platformines", "game_detection": [ @@ -54675,7 +51264,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Richard & Alice", "game_detection": [ @@ -54705,7 +51293,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tom Clancy's Splinter Cell: Conviction", "game_detection": [ @@ -54727,7 +51314,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Motte Island", "game_detection": [ @@ -54742,7 +51328,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cyberdimension Neptunia: 4 Goddesses Online", "game_detection": [ @@ -54756,7 +51341,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Peggle Extreme", "game_detection": [ @@ -54771,7 +51355,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "WWE 2K16", "game_detection": [ @@ -54786,7 +51369,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jewel Quest Mysteries", "game_detection": [ @@ -54801,7 +51383,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Madden NFL 2005", "game_detection": [ @@ -54814,7 +51395,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Woody Two-Legs Attack of the Zombie Pirates", "game_detection": [ @@ -54829,7 +51409,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gryphon Knight Epic", "game_detection": [ @@ -54844,7 +51423,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lost Saga", "game_detection": [ @@ -54865,7 +51443,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Assetto Corsa Competizio", "game_detection": [ @@ -54879,7 +51456,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "F1 2013", "game_detection": [ @@ -54894,7 +51470,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mirror's Edge: Catalyst", "game_detection": [ @@ -54906,7 +51481,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shadow Warrior", "game_detection": [ @@ -54921,7 +51495,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wanderland", "game_detection": [ @@ -54936,7 +51509,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pirates of the Caribbean: The Legend of Jack Sparrow", "game_detection": [ @@ -54948,7 +51520,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Millennium 3: Cry Wolf", "game_detection": [ @@ -54963,7 +51534,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Planet Alpha", "game_detection": [ @@ -54977,7 +51547,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "D.I.R.T.: Origin of the Species", "game_detection": [ @@ -54989,7 +51558,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Lab", "game_detection": [ @@ -55005,7 +51573,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crimes & Punishments: Sherlock Holmes", "game_detection": [ @@ -55020,7 +51587,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "8Bit Fiesta", "game_detection": [ @@ -55035,7 +51601,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Clannad", "game_detection": [ @@ -55050,7 +51615,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mana Crusher", "game_detection": [ @@ -55065,7 +51629,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "Crazy Arcade", "game_detection": [ @@ -55078,7 +51641,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Attractio", "game_detection": [ @@ -55093,7 +51655,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sonic Mania", "game_detection": [ @@ -55108,7 +51669,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "This Is the Police", "game_detection": [ @@ -55123,7 +51683,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Emergency 2013", "game_detection": [ @@ -55138,7 +51697,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Devil's Dare", "game_detection": [ @@ -55153,7 +51711,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Regeria Hope: Episode 1", "game_detection": [ @@ -55168,7 +51725,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vancouver 2010", "game_detection": [ @@ -55183,7 +51739,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dragon Quest Heroes: Slime Edition", "game_detection": [ @@ -55198,7 +51753,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Alpha Polaris", "game_detection": [ @@ -55210,7 +51764,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Middle-Earth: Shadow of War", "game_detection": [ @@ -55229,7 +51782,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Totally Reliable Delivery Service", "game_detection": [ @@ -55240,7 +51792,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Black Forest", "game_detection": [ @@ -55255,7 +51806,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lucidity", "game_detection": [ @@ -55270,7 +51820,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "PartyPoker", "game_detection": [ @@ -55283,7 +51832,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dracula 2: The Last Sanctuary", "game_detection": [ @@ -55298,7 +51846,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Slime Rancher", "game_detection": [ @@ -55318,7 +51865,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Smooth Operators", "game_detection": [ @@ -55333,7 +51879,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "HALP!", "game_detection": [ @@ -55349,7 +51894,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FIFA Manager 08", "game_detection": [ @@ -55361,7 +51905,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hob", "game_detection": [ @@ -55376,7 +51919,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Prominence Poker", "game_detection": [ @@ -55391,7 +51933,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Space Farmers", "game_detection": [ @@ -55406,7 +51947,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cars 2", "game_detection": [ @@ -55418,7 +51958,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fairway Solitaire", "game_detection": [ @@ -55433,7 +51972,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Guardians of Graxia", "game_detection": [ @@ -55448,7 +51986,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Oddworld: Munch's Oddysee", "game_detection": [ @@ -55463,7 +52000,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Let Hawaii Happen VR", "game_detection": [ @@ -55479,7 +52015,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kingpin: Life of Crime", "game_detection": [ @@ -55505,7 +52040,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Painkiller", "game_detection": [ @@ -55532,7 +52066,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Assassin’s Creed Chronicles: Russia", "game_detection": [ @@ -55547,7 +52080,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jack Orlando", "game_detection": [ @@ -55562,7 +52094,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Defenders of Ardania", "game_detection": [ @@ -55577,7 +52108,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Plants vs. Zombies: Garden Warfare", "game_detection": [ @@ -55589,7 +52119,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Starpoint Gemini 2", "game_detection": [ @@ -55604,7 +52133,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "/N.P.P.D. RUSH/- The milk of Ultraviolet", "game_detection": [ @@ -55619,7 +52147,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heroes of Might & Magic IV", "game_detection": [ @@ -55637,7 +52164,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tree of Life", "game_detection": [ @@ -55652,7 +52178,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "CastleMiner Z", "game_detection": [ @@ -55667,7 +52192,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "TERA: Rising", "game_detection": [ @@ -55696,7 +52220,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Iron Fisticle", "game_detection": [ @@ -55711,7 +52234,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nancy Drew: The Haunting of Castle Malloy", "game_detection": [ @@ -55726,7 +52248,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "NBA2K Online", "game_detection": [ @@ -55740,7 +52261,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tiger Woods PGA Tour 12: The Masters", "game_detection": [ @@ -55753,7 +52273,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "You Have to Win the Game", "game_detection": [ @@ -55773,7 +52292,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Need for Speed: Carbon Demo", "game_detection": [ @@ -55786,7 +52304,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "King's Quest: Mask of Eternity", "game_detection": [ @@ -55804,7 +52321,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gravel", "game_detection": [ @@ -55818,7 +52334,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Everlasting Summer", "game_detection": [ @@ -55833,7 +52348,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Blood Hockey", "game_detection": [ @@ -55848,7 +52362,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims 2 Apartment Life", "game_detection": [ @@ -55862,7 +52375,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wizardry Online", "game_detection": [ @@ -55884,7 +52396,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Furi", "game_detection": [ @@ -55899,7 +52410,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Company of Heroes 2", "game_detection": [ @@ -55914,7 +52424,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hearts of Iron 2", "game_detection": [ @@ -55926,7 +52435,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vertex Dispenser", "game_detection": [ @@ -55941,7 +52449,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 5", "game_detection": [ @@ -55953,7 +52460,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Death Road to Canada", "game_detection": [ @@ -55968,7 +52474,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Real Warfare II: Northern Crusades", "game_detection": [ @@ -55983,7 +52488,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Earth 2150: Lost Souls", "game_detection": [ @@ -55998,7 +52502,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Overcooked! 2", "game_detection": [ @@ -56012,7 +52515,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Operation Flashpoint: Cold War Crisis", "game_detection": [ @@ -56024,7 +52526,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rayman Origins", "game_detection": [ @@ -56045,7 +52546,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Styx: Master of Shadows", "game_detection": [ @@ -56060,7 +52560,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "QQ Black Jack", "game_detection": [ @@ -56073,7 +52572,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Divinity II: The Dragon Knight Saga", "game_detection": [ @@ -56094,7 +52592,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Age Of Empires III", "game_detection": [ @@ -56107,7 +52604,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tekken 7", "game_detection": [ @@ -56122,7 +52618,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Brookhaven Experiment", "game_detection": [ @@ -56138,7 +52633,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sang-Froid: Tales of Werewolves", "game_detection": [ @@ -56158,7 +52652,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zombie Solitaire", "game_detection": [ @@ -56173,7 +52666,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro Cycling Manager 2016", "game_detection": [ @@ -56188,7 +52680,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shadow Harvest: Phantom Ops", "game_detection": [ @@ -56203,7 +52694,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "InMind VR", "game_detection": [ @@ -56218,7 +52708,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Accounting", "game_detection": [ @@ -56234,7 +52723,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Avernum 5", "game_detection": [ @@ -56249,7 +52737,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "20XX", "game_detection": [ @@ -56264,7 +52751,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cthulhu Saves the World", "game_detection": [ @@ -56284,7 +52770,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Monster Challenge Circus", "game_detection": [ @@ -56299,7 +52784,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Borderlands", "game_detection": [ @@ -56319,7 +52803,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FiveM", "game_detection": [ @@ -56334,33 +52817,20 @@ ] }, { - "force_display_capture": true, - "region": null, - "title": "Counter-Strike 2", - "game_detection": [ - { - "gameexe": "cs2\\.exe$", - "launchexe": "/steam\\.exe", - "launchflags": "-applaunch 730", - "regkey": "HKEY_LOCAL_MACHINE/SOFTWARE/Valve/Steam/InstallPath", - "longname": "Counter-Strike 2 -Steam", - "edition": "(Steam)" - } - ] - }, - { - "force_display_capture": false, "region": null, "title": "RedM", "game_detection": [ { "gameexe": "/RedM_b.*_GTAProcess\\.exe|/RedM.app/cache/subprocess/RedM_GTAProcess\\.exe", "longname": "RedM" + }, + { + "gameexe": "/cache/subprocess/RedM_GTAProcess\\.exe", + "longname": "RedM" } ] }, { - "force_display_capture": false, "region": null, "title": "Crysis 3 Multiplayer Beta", "game_detection": [ @@ -56372,7 +52842,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Magicians & Looters", "game_detection": [ @@ -56387,7 +52856,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Elf Bowling: Hawaiian Vacation", "game_detection": [ @@ -56402,7 +52870,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Agarest: Generations of War", "game_detection": [ @@ -56417,7 +52884,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Out There Somewhere", "game_detection": [ @@ -56432,7 +52898,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "Rescue the Great Demon 2", "game_detection": [ @@ -56447,7 +52912,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mass Effect", "game_detection": [ @@ -56468,7 +52932,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Acan's Call: Act 1", "game_detection": [ @@ -56484,7 +52947,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Uncrowded", "game_detection": [ @@ -56499,7 +52961,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Omega Quintet", "game_detection": [ @@ -56514,7 +52975,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fly'N", "game_detection": [ @@ -56529,7 +52989,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Party Hard Tycoon", "game_detection": [ @@ -56544,7 +53003,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sengoku", "game_detection": [ @@ -56565,7 +53023,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Written in the Sky", "game_detection": [ @@ -56580,7 +53037,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Counter-Strike: Source", "game_detection": [ @@ -56596,7 +53052,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heroes of Might and Magic V: Hammers of Fate", "game_detection": [ @@ -56623,7 +53078,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "VALKYRIE DRIVE -BHIKKHUNI-", "game_detection": [ @@ -56638,7 +53092,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hurtworld", "game_detection": [ @@ -56657,7 +53110,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Border Officer", "game_detection": [ @@ -56668,7 +53120,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Elminage Gothic", "game_detection": [ @@ -56683,7 +53134,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nancy Drew Dossier: Lights, Camera, Curses!", "game_detection": [ @@ -56698,7 +53148,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NBA Live 2005", "game_detection": [ @@ -56710,7 +53159,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Conflict: Denied Ops", "game_detection": [ @@ -56730,7 +53178,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Madden NFL 19", "game_detection": [ @@ -56742,7 +53189,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cut the Rope", "game_detection": [ @@ -56757,7 +53203,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mortal Kombat 11", "game_detection": [ @@ -56772,7 +53217,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Flight Unlimited: Las Vegas", "game_detection": [ @@ -56787,7 +53231,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 6", "game_detection": [ @@ -56799,7 +53242,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fairy Bloom Freesia", "game_detection": [ @@ -56814,7 +53256,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "White Night", "game_detection": [ @@ -56829,7 +53270,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Farm Frenzy 4", "game_detection": [ @@ -56844,7 +53284,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spirit Tales", "game_detection": [ @@ -56858,7 +53297,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Holdfast: Nations At War", "game_detection": [ @@ -56873,7 +53311,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Twilight Struggle", "game_detection": [ @@ -56888,7 +53325,6 @@ ] }, { - "force_display_capture": false, "region": "JP", "title": "Chaos Heroes Online", "game_detection": [ @@ -56902,7 +53338,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BeamNG.drive", "game_detection": [ @@ -56917,7 +53352,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Legend of Heroes: Trails in the Sky SC", "game_detection": [ @@ -56932,7 +53366,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Anarcute", "game_detection": [ @@ -56947,7 +53380,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "World of Warcraft", "game_detection": [ @@ -57003,7 +53435,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Marvel's Guardians of the Galaxy: The Telltale Series", "game_detection": [ @@ -57018,7 +53449,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zigfrak", "game_detection": [ @@ -57033,7 +53463,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Void Bastards", "game_detection": [ @@ -57044,7 +53473,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The King of Fighters XIII: Steam Edition", "game_detection": [ @@ -57059,7 +53487,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Watchmen: The End Is Nigh Part 2", "game_detection": [ @@ -57074,7 +53501,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Slip", "game_detection": [ @@ -57095,7 +53521,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Edge Of Space", "game_detection": [ @@ -57110,7 +53535,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nancy Drew: Secrets Can Kill 2010", "game_detection": [ @@ -57125,7 +53549,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ossuary", "game_detection": [ @@ -57137,7 +53560,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ghost Recon Phantoms", "game_detection": [ @@ -57172,7 +53594,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bioshock", "game_detection": [ @@ -57193,7 +53614,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mount Your Friends 3D: A Hard Man Is Good To Climb", "game_detection": [ @@ -57207,7 +53627,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Company of Heroes Demo", "game_detection": [ @@ -57220,7 +53639,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Continuum", "game_detection": [ @@ -57232,7 +53650,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Red Crow Mysteries: Legion", "game_detection": [ @@ -57245,7 +53662,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Patriots: A Nation Under Fire", "game_detection": [ @@ -57258,7 +53674,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ravensword: Shadowlands", "game_detection": [ @@ -57278,7 +53693,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mooch", "game_detection": [ @@ -57293,7 +53707,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Quantum Break", "game_detection": [ @@ -57308,7 +53721,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "VEGA Conflict", "game_detection": [ @@ -57323,7 +53735,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sid Meier's Railroads!", "game_detection": [ @@ -57343,7 +53754,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Long Night", "game_detection": [ @@ -57358,7 +53768,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hearts of Iron IV", "game_detection": [ @@ -57377,7 +53786,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Far Cry 3: Blood Dragon", "game_detection": [ @@ -57399,7 +53807,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Governor of Poker 3", "game_detection": [ @@ -57414,7 +53821,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Carnivores: Dinosaur Hunter Reborn", "game_detection": [ @@ -57429,7 +53835,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Teeworlds", "game_detection": [ @@ -57449,7 +53854,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zeno Clash II", "game_detection": [ @@ -57464,7 +53868,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Old Man's Journey", "game_detection": [ @@ -57475,7 +53878,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Block'hood", "game_detection": [ @@ -57490,7 +53892,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Krunch", "game_detection": [ @@ -57510,7 +53911,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Puppet Master", "game_detection": [ @@ -57525,7 +53925,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tomb Raider: Underworld", "game_detection": [ @@ -57546,7 +53945,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bomberman Online", "game_detection": [ @@ -57559,7 +53957,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Painkiller: Hell & Damnation", "game_detection": [ @@ -57574,7 +53971,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zombies Monsters Robots", "game_detection": [ @@ -57596,7 +53992,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Adventure Chronicles: The Search For Lost Treasure", "game_detection": [ @@ -57611,7 +54006,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Mechanicus", "game_detection": [ @@ -57622,7 +54016,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Culling", "game_detection": [ @@ -57637,7 +54030,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MotoGP 3", "game_detection": [ @@ -57649,7 +54041,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Assassin's Creed II", "game_detection": [ @@ -57670,7 +54061,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pony Island", "game_detection": [ @@ -57685,7 +54075,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BossConstructor", "game_detection": [ @@ -57700,7 +54089,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Family Feud II", "game_detection": [ @@ -57715,7 +54103,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rigs of Rods", "game_detection": [ @@ -57736,7 +54123,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark Scavenger", "game_detection": [ @@ -57751,7 +54137,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Doom 3", "game_detection": [ @@ -57773,7 +54158,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Night Cafe", "game_detection": [ @@ -57788,7 +54172,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Action Henk", "game_detection": [ @@ -57803,7 +54186,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Better Late Than DEAD", "game_detection": [ @@ -57818,7 +54200,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "My Best Friends: Cats & Dogs", "game_detection": [ @@ -57833,7 +54214,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Adventurer Manager", "game_detection": [ @@ -57848,7 +54228,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Mysterious Cities of Gold", "game_detection": [ @@ -57863,7 +54242,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Defense Technica", "game_detection": [ @@ -57878,7 +54256,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Get Off My Lawn!", "game_detection": [ @@ -57893,7 +54270,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Planetary Annihilation", "game_detection": [ @@ -57915,7 +54291,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Far Cry", "game_detection": [ @@ -57935,7 +54310,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "WWE 2K15", "game_detection": [ @@ -57950,7 +54324,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Steven Universe: Save the Light", "game_detection": [ @@ -57964,7 +54337,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Naval Warfare", "game_detection": [ @@ -57979,7 +54351,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Batla", "game_detection": [ @@ -57994,7 +54365,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Divide by Sheep", "game_detection": [ @@ -58009,7 +54379,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LEGO Batman 3: Beyond Gotham", "game_detection": [ @@ -58028,7 +54397,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wings Over Europe: Cold War Gone Hot", "game_detection": [ @@ -58054,7 +54422,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Elizabeth Find MD: Diagnosis Mystery - Season 2", "game_detection": [ @@ -58069,7 +54436,6 @@ ] }, { - "force_display_capture": false, "region": "UK", "title": "Sudeki", "game_detection": [ @@ -58090,7 +54456,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Conflict: Desert Storm", "game_detection": [ @@ -58104,7 +54469,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Atom Zombie Smasher", "game_detection": [ @@ -58125,7 +54489,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Supernova", "game_detection": [ @@ -58139,7 +54502,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gemini Rue", "game_detection": [ @@ -58159,7 +54521,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Final Rush", "game_detection": [ @@ -58174,7 +54535,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Starseed Pilgrim", "game_detection": [ @@ -58194,7 +54554,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims Life Stories", "game_detection": [ @@ -58207,7 +54566,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeons & Dragons: Daggerdale", "game_detection": [ @@ -58222,7 +54580,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Assassin's Creed: Revelations", "game_detection": [ @@ -58243,7 +54600,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Putt-Putt and Fatty Bear's Activity Pack", "game_detection": [ @@ -58258,7 +54614,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gary the Gull", "game_detection": [ @@ -58274,7 +54629,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Roller Coaster Rampage", "game_detection": [ @@ -58289,7 +54643,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hyperspace Invaders II: Pixel Edition", "game_detection": [ @@ -58304,7 +54657,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crouching Pony Hidden Dragon", "game_detection": [ @@ -58319,7 +54671,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Beijing Olympics 2008", "game_detection": [ @@ -58331,7 +54682,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Starsiege: Tribes", "game_detection": [ @@ -58343,7 +54693,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Geometry Dash", "game_detection": [ @@ -58358,7 +54707,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "fault milestone one", "game_detection": [ @@ -58373,7 +54721,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rogue Shooter: The FPS Roguelike", "game_detection": [ @@ -58388,7 +54735,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Off-Road Drive", "game_detection": [ @@ -58403,7 +54749,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Neighbors From Hell: On Vacation", "game_detection": [ @@ -58424,7 +54769,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead Sky", "game_detection": [ @@ -58439,7 +54783,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The First Templar", "game_detection": [ @@ -58460,7 +54803,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rez Infinite", "game_detection": [ @@ -58475,7 +54817,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Project Torque", "game_detection": [ @@ -58488,7 +54829,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MINERVA", "game_detection": [ @@ -58503,7 +54843,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer Online: Age of Reckoning", "game_detection": [ @@ -58565,7 +54904,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bonnie's Bookstore Deluxe", "game_detection": [ @@ -58579,7 +54917,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Raiden IV: OverKill", "game_detection": [ @@ -58594,7 +54931,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Skyforge", "game_detection": [ @@ -58607,7 +54943,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "StarCraft Remastered", "game_detection": [ @@ -58621,7 +54956,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Depths of Peril", "game_detection": [ @@ -58641,7 +54975,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Recettear: An Item Shop's Tale", "game_detection": [ @@ -58661,7 +54994,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Viking Brothers", "game_detection": [ @@ -58676,7 +55008,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zombie Driver", "game_detection": [ @@ -58691,7 +55022,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spider Solitaire", "game_detection": [ @@ -58722,7 +55052,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Postal", "game_detection": [ @@ -58748,7 +55077,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warface", "game_detection": [ @@ -58777,7 +55105,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Empire Earth", "game_detection": [ @@ -58789,7 +55116,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Krater", "game_detection": [ @@ -58804,7 +55130,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Freddi Fish and Luther's Water Worries", "game_detection": [ @@ -58819,7 +55144,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Boss Monster", "game_detection": [ @@ -58834,7 +55158,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cubetractor", "game_detection": [ @@ -58856,7 +55179,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sakura Santa", "game_detection": [ @@ -58871,7 +55193,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Creature", "game_detection": [ @@ -58883,7 +55204,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Flock", "game_detection": [ @@ -58898,7 +55218,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Watchmen: The End Is Nigh", "game_detection": [ @@ -58913,7 +55232,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MSI Electric City", "game_detection": [ @@ -58929,7 +55247,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DCS World", "game_detection": [ @@ -58944,7 +55261,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mega Man X Legacy Collection", "game_detection": [ @@ -58958,7 +55274,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Angeldust", "game_detection": [ @@ -58973,7 +55288,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hollywood Mogul 3", "game_detection": [ @@ -58985,7 +55299,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Surgeon Simulator 2013", "game_detection": [ @@ -59005,7 +55318,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DarkStar One", "game_detection": [ @@ -59025,7 +55337,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims Carnival: SnapCity", "game_detection": [ @@ -59037,7 +55348,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dawn of Discovery: Venice", "game_detection": [ @@ -59049,7 +55359,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro Cycling Manager Season 2008", "game_detection": [ @@ -59069,7 +55378,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Special Forces: Team X", "game_detection": [ @@ -59084,7 +55392,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Harry Potter and the Sorcerer's Stone", "game_detection": [ @@ -59098,7 +55405,6 @@ ] }, { - "force_display_capture": false, "region": "BR", "title": "Eligium", "game_detection": [ @@ -59112,7 +55418,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ANNO 2070", "game_detection": [ @@ -59133,7 +55438,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Twin Sector", "game_detection": [ @@ -59148,7 +55452,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Binary Domain", "game_detection": [ @@ -59162,7 +55465,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Terrian Saga: KR-17", "game_detection": [ @@ -59177,7 +55479,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Castlevania: Lords of Shadow 2", "game_detection": [ @@ -59192,7 +55493,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Factorio", "game_detection": [ @@ -59207,7 +55507,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark Void", "game_detection": [ @@ -59222,7 +55521,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Treasure Adventure Game", "game_detection": [ @@ -59234,7 +55532,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Party Jousting", "game_detection": [ @@ -59249,7 +55546,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sword of the Stars II: Enhanced Edition", "game_detection": [ @@ -59264,7 +55560,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Book of Legends", "game_detection": [ @@ -59279,7 +55574,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Amazing Princess Sarah", "game_detection": [ @@ -59294,7 +55588,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "X-Plane 10", "game_detection": [ @@ -59309,7 +55602,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battle Islands", "game_detection": [ @@ -59324,7 +55616,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "War of the Immortals", "game_detection": [ @@ -59351,7 +55642,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pets Fun House", "game_detection": [ @@ -59366,7 +55656,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rooms: The Unsolvable Puzzle", "game_detection": [ @@ -59381,7 +55670,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Steep", "game_detection": [ @@ -59410,7 +55698,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mutant Mudds Deluxe", "game_detection": [ @@ -59425,7 +55712,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mystic Destinies: Serendipity of Aeons", "game_detection": [ @@ -59440,7 +55726,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bloodwood Reload", "game_detection": [ @@ -59455,7 +55740,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bodog Poker", "game_detection": [ @@ -59467,7 +55751,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Just Cause 4", "game_detection": [ @@ -59478,7 +55761,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Geometry Wars 3: Dimensions", "game_detection": [ @@ -59493,7 +55775,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mutant Football League", "game_detection": [ @@ -59507,7 +55788,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "CAGE", "game_detection": [ @@ -59522,7 +55802,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark Matter", "game_detection": [ @@ -59537,7 +55816,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GGPO", "game_detection": [ @@ -59550,7 +55828,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Saira", "game_detection": [ @@ -59565,7 +55842,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Real Horror Stories Ultimate Edition", "game_detection": [ @@ -59580,7 +55856,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DarkEden", "game_detection": [ @@ -59602,7 +55877,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Lost Crown: A Ghosthunting Adventure", "game_detection": [ @@ -59617,7 +55891,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "PixelJunk Monsters Ultimate", "game_detection": [ @@ -59637,7 +55910,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Call of Juarez: Bound in Blood", "game_detection": [ @@ -59657,7 +55929,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Seven: The Days Long Gone", "game_detection": [ @@ -59672,7 +55943,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Army of Earth", "game_detection": [ @@ -59684,7 +55954,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Fleets of Sol", "game_detection": [ @@ -59699,7 +55968,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Planet of the Eyes", "game_detection": [ @@ -59714,7 +55982,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tomb Raider: The Angel of Darkness", "game_detection": [ @@ -59727,7 +55994,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pixelus Deluxe", "game_detection": [ @@ -59741,7 +56007,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mechwarrior 3", "game_detection": [ @@ -59753,7 +56018,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BLOCKADE 3D", "game_detection": [ @@ -59768,7 +56032,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hammerwatch", "game_detection": [ @@ -59788,7 +56051,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heroes of Annihilated Empires", "game_detection": [ @@ -59800,7 +56062,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pillars of Eternity II: Deadfire", "game_detection": [ @@ -59814,7 +56075,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Chronicles of Spellborn", "game_detection": [ @@ -59828,7 +56088,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eleven: Table Tennis VR", "game_detection": [ @@ -59844,7 +56103,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zentia", "game_detection": [ @@ -59858,7 +56116,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Project Genom", "game_detection": [ @@ -59873,7 +56130,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Pandora Directive", "game_detection": [ @@ -59888,7 +56144,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Potioneer: The VR Gardening Simulator", "game_detection": [ @@ -59904,7 +56159,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nandeyanen!? - The 1st Sûtra", "game_detection": [ @@ -59919,7 +56173,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "CRIMSON ROOM: DECADE", "game_detection": [ @@ -59934,7 +56187,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Knights of Honor", "game_detection": [ @@ -59949,7 +56201,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Black Rainbow", "game_detection": [ @@ -59964,7 +56215,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The King Of Fighters '97 Global Match", "game_detection": [ @@ -59978,7 +56228,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Robin's Quest", "game_detection": [ @@ -59993,7 +56242,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Corpse of Discovery", "game_detection": [ @@ -60008,7 +56256,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tom Clancy's Rainbow Six 3 Gold Edition", "game_detection": [ @@ -60023,7 +56270,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mist Survival", "game_detection": [ @@ -60034,7 +56280,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "4PM", "game_detection": [ @@ -60049,7 +56294,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Garshasp: The Monster Slayer", "game_detection": [ @@ -60064,7 +56308,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Skeet: VR Target Shooting", "game_detection": [ @@ -60080,7 +56323,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Project CARS 2", "game_detection": [ @@ -60095,7 +56337,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ys: Memories of Celceta", "game_detection": [ @@ -60109,7 +56350,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tom Clancy's Splinter Cell: Chaos Theory", "game_detection": [ @@ -60140,7 +56380,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gunnheim", "game_detection": [ @@ -60155,7 +56394,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LEGO The Hobbit", "game_detection": [ @@ -60170,7 +56408,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Post Scriptum", "game_detection": [ @@ -60184,7 +56421,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Catch Me", "game_detection": [ @@ -60199,7 +56435,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Replay: VHS is not dead", "game_detection": [ @@ -60214,7 +56449,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Portal", "game_detection": [ @@ -60229,7 +56463,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pariah", "game_detection": [ @@ -60242,7 +56475,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nancy Drew: Ghost Dogs of Moon Lake", "game_detection": [ @@ -60257,7 +56489,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Faeria", "game_detection": [ @@ -60272,7 +56503,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Real Myst", "game_detection": [ @@ -60287,7 +56517,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Clones", "game_detection": [ @@ -60302,7 +56531,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A.R.E.S.: Extinction Agenda", "game_detection": [ @@ -60317,7 +56545,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Injustice: Gods Among Us", "game_detection": [ @@ -60332,7 +56559,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "7 Days to Die", "game_detection": [ @@ -60348,7 +56574,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead Island: Epidemic", "game_detection": [ @@ -60363,7 +56588,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Harvest Moon: Light of Hope", "game_detection": [ @@ -60378,7 +56602,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bejeweled Deluxe", "game_detection": [ @@ -60399,7 +56622,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "East India Company: Pirate Bay", "game_detection": [ @@ -60414,7 +56636,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FIFA Manager 10", "game_detection": [ @@ -60429,7 +56650,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Galactic Civilizations: Altarian Prophecy", "game_detection": [ @@ -60443,7 +56663,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Doom II", "game_detection": [ @@ -60458,7 +56677,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nethergate: Resurrection", "game_detection": [ @@ -60473,7 +56691,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Delta Force: Black Hawk Down Team Sabre", "game_detection": [ @@ -60488,7 +56705,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Brick-Force", "game_detection": [ @@ -60508,7 +56724,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hailan Rising", "game_detection": [ @@ -60520,7 +56735,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "WWII Battle Tanks: T-34 vs. Tiger", "game_detection": [ @@ -60532,7 +56746,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Metal Gear Solid", "game_detection": [ @@ -60545,7 +56758,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rebel Galaxy", "game_detection": [ @@ -60564,7 +56776,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Screencheat", "game_detection": [ @@ -60579,7 +56790,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kopanito All-Stars Soccer", "game_detection": [ @@ -60595,7 +56805,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Campaign Clicker", "game_detection": [ @@ -60610,7 +56819,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Magicka", "game_detection": [ @@ -60625,7 +56833,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Avadon: The Black Fortress", "game_detection": [ @@ -60650,7 +56857,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dropsy", "game_detection": [ @@ -60665,7 +56871,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lost Orbit", "game_detection": [ @@ -60680,7 +56885,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Darwinia", "game_detection": [ @@ -60705,7 +56909,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wooden Sen'SeY", "game_detection": [ @@ -60720,7 +56923,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Total War: WARHAMMER", "game_detection": [ @@ -60735,7 +56937,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Luvinia", "game_detection": [ @@ -60748,7 +56949,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Forgotten Ones", "game_detection": [ @@ -60763,7 +56963,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Longest Journey", "game_detection": [ @@ -60778,7 +56977,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Culpa Innata", "game_detection": [ @@ -60793,7 +56991,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crazy Killer", "game_detection": [ @@ -60808,7 +57005,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "AaaaaAAaaaAAAaaAAAAaAAAAA!!! for the Awesome", "game_detection": [ @@ -60828,7 +57024,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungelot", "game_detection": [ @@ -60840,7 +57035,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Painkiller: Black Edition", "game_detection": [ @@ -60855,7 +57049,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Wars Empire At War - Forces Of Corruption", "game_detection": [ @@ -60867,7 +57060,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Legacy of Kain: Soul Reaver", "game_detection": [ @@ -60887,7 +57079,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Clickr", "game_detection": [ @@ -60902,7 +57093,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Subnautica", "game_detection": [ @@ -60917,7 +57107,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Serious Sam HD: The First Encounter", "game_detection": [ @@ -60932,7 +57121,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crysis Warhead", "game_detection": [ @@ -60954,7 +57142,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Codename: Rogue Fleet", "game_detection": [ @@ -60969,7 +57156,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "eden*", "game_detection": [ @@ -60984,7 +57170,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ROD: Revolt Of Defense", "game_detection": [ @@ -60999,7 +57184,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FIFA Soccer 09 Demo", "game_detection": [ @@ -61011,7 +57195,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hatoful Boyfriend: Holiday Star", "game_detection": [ @@ -61026,7 +57209,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Codename: Panzers Phase 1", "game_detection": [ @@ -61045,7 +57227,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Secret of Tremendous Corporation", "game_detection": [ @@ -61060,7 +57241,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Mega Baseball: Extra Innings", "game_detection": [ @@ -61075,7 +57255,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Swarm Arena", "game_detection": [ @@ -61090,7 +57269,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battle Chef Brigade", "game_detection": [ @@ -61105,7 +57283,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "King's Bounty: Dark Side", "game_detection": [ @@ -61120,7 +57297,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "StarCraft II: Heart of the Swarm", "game_detection": [ @@ -61134,7 +57310,6 @@ ] }, { - "force_display_capture": false, "region": "TR", "title": "ZombiRock", "game_detection": [ @@ -61148,7 +57323,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Who's That Flying?!", "game_detection": [ @@ -61163,7 +57337,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Drox Operative", "game_detection": [ @@ -61183,7 +57356,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "XIII Century Gold Edition", "game_detection": [ @@ -61198,7 +57370,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Full Tilt Poker", "game_detection": [ @@ -61218,7 +57389,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hide and Shriek", "game_detection": [ @@ -61233,7 +57403,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rise of the Triad", "game_detection": [ @@ -61248,7 +57417,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Finn and Jake's Epic Quest", "game_detection": [ @@ -61263,7 +57431,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ground Control 2", "game_detection": [ @@ -61275,7 +57442,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Atom Universe", "game_detection": [ @@ -61290,7 +57456,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tradewinds Caravans", "game_detection": [ @@ -61305,7 +57470,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Black Squad", "game_detection": [ @@ -61324,7 +57488,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ceres", "game_detection": [ @@ -61339,7 +57502,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "James Bond: 007 Legends", "game_detection": [ @@ -61354,7 +57516,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Afterfall: InSanity Extended Edition", "game_detection": [ @@ -61369,7 +57530,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Golf Club VR", "game_detection": [ @@ -61385,7 +57545,6 @@ ] }, { - "force_display_capture": false, "region": "RU", "title": "Planet Alcatraz", "game_detection": [ @@ -61400,7 +57559,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cabela's Hunting Expeditions", "game_detection": [ @@ -61415,7 +57573,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pirates of Black Cove", "game_detection": [ @@ -61430,7 +57587,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Darkfall Online", "game_detection": [ @@ -61453,7 +57609,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Noah's Ark Deluxe", "game_detection": [ @@ -61467,7 +57622,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lords Mobile", "game_detection": [ @@ -61478,7 +57632,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Magnetic By Nature", "game_detection": [ @@ -61498,7 +57651,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FIFA World", "game_detection": [ @@ -61510,7 +57662,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mass Effect 3", "game_detection": [ @@ -61523,7 +57674,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Transistor", "game_detection": [ @@ -61538,7 +57688,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Age of Mythology: The Titans", "game_detection": [ @@ -61550,7 +57699,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Panty Party", "game_detection": [ @@ -61565,7 +57713,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Karos Online", "game_detection": [ @@ -61587,7 +57734,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Phun", "game_detection": [ @@ -61599,7 +57745,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Monster Prom", "game_detection": [ @@ -61613,7 +57758,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Loong Online", "game_detection": [ @@ -61626,7 +57770,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Don't Starve", "game_detection": [ @@ -61646,7 +57789,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "World in Conflict", "game_detection": [ @@ -61673,7 +57815,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LEGO Lord of the Rings", "game_detection": [ @@ -61693,7 +57834,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tony Hawk's Pro Skater 4", "game_detection": [ @@ -61706,7 +57846,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Motherload", "game_detection": [ @@ -61721,7 +57860,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Guild Wars", "game_detection": [ @@ -61742,7 +57880,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Into The Breach", "game_detection": [ @@ -61756,7 +57893,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Millionaire Manor", "game_detection": [ @@ -61771,7 +57907,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Trek: Legacy", "game_detection": [ @@ -61783,7 +57918,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Project Freedom", "game_detection": [ @@ -61798,7 +57932,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Corporate Lifestyle Simulator", "game_detection": [ @@ -61813,7 +57946,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chris Sawyer's: Locomotion", "game_detection": [ @@ -61825,7 +57957,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Cane Magic ZERO", "game_detection": [ @@ -61840,7 +57971,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Claire", "game_detection": [ @@ -61855,7 +57985,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MXGP - The Official Motocross Videogame", "game_detection": [ @@ -61870,7 +57999,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SoulCalibur VI", "game_detection": [ @@ -61881,7 +58009,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Life is Feudal MMO", "game_detection": [ @@ -61892,7 +58019,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Hipster Lumberjack", "game_detection": [ @@ -61907,7 +58033,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Melody's Escape", "game_detection": [ @@ -61922,7 +58047,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shadow of Kingdoms", "game_detection": [ @@ -61937,7 +58061,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Unearthed Inc: The Lost Temple", "game_detection": [ @@ -61952,7 +58075,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Akane the Kunoichi", "game_detection": [ @@ -61967,7 +58089,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spartans Vs Zombies Defense", "game_detection": [ @@ -61982,7 +58103,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Subsistence", "game_detection": [ @@ -61997,7 +58117,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FRACT OSC", "game_detection": [ @@ -62017,7 +58136,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Proun", "game_detection": [ @@ -62030,7 +58148,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Impire", "game_detection": [ @@ -62045,7 +58162,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Toybox Turbos", "game_detection": [ @@ -62060,7 +58176,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Binding of Isaac: Rebirth", "game_detection": [ @@ -62075,7 +58190,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spellweaver", "game_detection": [ @@ -62095,7 +58209,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Combat Monsters", "game_detection": [ @@ -62110,7 +58223,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Moonrise", "game_detection": [ @@ -62125,7 +58237,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shank", "game_detection": [ @@ -62145,7 +58256,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Afterfall: Insanity - Dirty Arena Edition", "game_detection": [ @@ -62160,7 +58270,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spacewar!", "game_detection": [ @@ -62175,7 +58284,6 @@ ] }, { - "force_display_capture": false, "region": "BR", "title": "Elsword", "game_detection": [ @@ -62190,7 +58298,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "X-COM: Apocalypse", "game_detection": [ @@ -62205,7 +58312,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hunt: Showdown", "game_detection": [ @@ -62227,7 +58333,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cosmonautica", "game_detection": [ @@ -62242,7 +58347,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Duke Nukem 3D: 20th Anniversary World Tour", "game_detection": [ @@ -62258,7 +58362,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Amphora", "game_detection": [ @@ -62278,7 +58381,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sho Online", "game_detection": [ @@ -62291,7 +58393,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Taito Legends", "game_detection": [ @@ -62303,7 +58404,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Forgotton Anne", "game_detection": [ @@ -62317,7 +58417,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kingdoms and Castles", "game_detection": [ @@ -62332,7 +58431,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Conquest of Champions", "game_detection": [ @@ -62347,7 +58445,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eador: Masters of the Broken World", "game_detection": [ @@ -62379,7 +58476,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Age of Empires", "game_detection": [ @@ -62391,7 +58487,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The White Birch", "game_detection": [ @@ -62411,7 +58506,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Port Royale 2", "game_detection": [ @@ -62432,7 +58526,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Agricultural Simulator: Historical Farming", "game_detection": [ @@ -62447,7 +58540,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "InFlux", "game_detection": [ @@ -62462,7 +58554,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ItzaZoo", "game_detection": [ @@ -62477,7 +58568,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Air Conflicts: Vietnam", "game_detection": [ @@ -62492,7 +58582,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Underhero", "game_detection": [ @@ -62503,7 +58592,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "99 Levels To Hell", "game_detection": [ @@ -62518,7 +58606,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Bomberman R", "game_detection": [ @@ -62529,7 +58616,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Lemonade Factory", "game_detection": [ @@ -62544,7 +58630,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Qvadriga", "game_detection": [ @@ -62559,7 +58644,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Trino", "game_detection": [ @@ -62574,7 +58658,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Satazius", "game_detection": [ @@ -62589,7 +58672,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Elder Sign: Omens", "game_detection": [ @@ -62604,7 +58686,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Children of Zodiarcs", "game_detection": [ @@ -62619,7 +58700,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Aperture Tag", "game_detection": [ @@ -62634,7 +58714,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cesar Millan's Dog Whisperer", "game_detection": [ @@ -62646,7 +58725,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Need For Speed 3: Hot Pursuit", "game_detection": [ @@ -62658,7 +58736,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Aggression: Europe Under Fire", "game_detection": [ @@ -62673,7 +58750,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Assassin's Creed Origins", "game_detection": [ @@ -62696,7 +58772,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2008", "game_detection": [ @@ -62708,7 +58783,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battleline: Steel Warfare", "game_detection": [ @@ -62721,7 +58795,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Homeworld: Deserts of Kharak", "game_detection": [ @@ -62736,7 +58809,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Achtung Panzer: Kharkov 1943", "game_detection": [ @@ -62748,7 +58820,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Light Bearers", "game_detection": [ @@ -62759,7 +58830,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crossing Souls", "game_detection": [ @@ -62773,7 +58843,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims 4", "game_detection": [ @@ -62790,7 +58859,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lost Horizon", "game_detection": [ @@ -62810,7 +58878,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Inversion", "game_detection": [ @@ -62825,7 +58892,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Virtual Families", "game_detection": [ @@ -62840,7 +58906,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Future Wars", "game_detection": [ @@ -62855,7 +58920,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Anthem", "game_detection": [ @@ -62870,7 +58934,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Harry Potter and the Deathly Hallows: Part 2", "game_detection": [ @@ -62882,7 +58945,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MySims", "game_detection": [ @@ -62895,7 +58957,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Roaming Fortress", "game_detection": [ @@ -62915,7 +58976,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Interstate '76", "game_detection": [ @@ -62927,7 +58987,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Five Nights at Freddy's 4", "game_detection": [ @@ -62942,7 +59001,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Splash Fighters", "game_detection": [ @@ -62955,7 +59013,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dustwind", "game_detection": [ @@ -62969,7 +59026,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Brian Lara International Cricket 2007", "game_detection": [ @@ -62981,7 +59037,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Luxor 3", "game_detection": [ @@ -62996,7 +59051,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shadowrun Returns", "game_detection": [ @@ -63022,7 +59076,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cook, Serve, Delicious!", "game_detection": [ @@ -63043,7 +59096,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lethal Tactics", "game_detection": [ @@ -63058,7 +59110,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battlefield 2142 Demo", "game_detection": [ @@ -63073,7 +59124,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Light", "game_detection": [ @@ -63088,7 +59138,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Clicker Guild", "game_detection": [ @@ -63103,7 +59152,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Portal 2: Sixense Perceptual Pack", "game_detection": [ @@ -63118,7 +59166,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Toy Soldiers: War Chest", "game_detection": [ @@ -63133,7 +59180,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Steel Legions", "game_detection": [ @@ -63148,7 +59194,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Temporal", "game_detection": [ @@ -63160,7 +59205,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "James Cameron's Avatar: The Game", "game_detection": [ @@ -63175,7 +59219,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "CrossFire", "game_detection": [ @@ -63190,7 +59233,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kairo", "game_detection": [ @@ -63205,7 +59247,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "O.R.B.", "game_detection": [ @@ -63220,7 +59261,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Strata", "game_detection": [ @@ -63235,7 +59275,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lost girl`s [diary]", "game_detection": [ @@ -63250,7 +59289,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sine Mora", "game_detection": [ @@ -63265,7 +59303,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stonehearth", "game_detection": [ @@ -63279,7 +59316,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Model Train 3D", "game_detection": [ @@ -63291,7 +59327,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tom Clancy's Rainbow Six Rogue Spear: Urban Operations", "game_detection": [ @@ -63303,7 +59338,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "UFO: Extraterrestrials Gold Edition", "game_detection": [ @@ -63318,7 +59352,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A.R.E.S. Extinction Agenda EX", "game_detection": [ @@ -63334,7 +59367,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hearts of Iron 2: Doomsday", "game_detection": [ @@ -63355,7 +59387,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Desperate Housewives", "game_detection": [ @@ -63367,7 +59398,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fist Puncher", "game_detection": [ @@ -63382,7 +59412,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shadowgrounds Survivor", "game_detection": [ @@ -63403,7 +59432,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Insecticide", "game_detection": [ @@ -63418,7 +59446,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "World War 3: Black Gold", "game_detection": [ @@ -63433,7 +59460,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Flanker 2.5", "game_detection": [ @@ -63445,7 +59471,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MechWarrior Online", "game_detection": [ @@ -63480,7 +59505,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rugby 15", "game_detection": [ @@ -63495,7 +59519,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hotline Miami 2: Wrong Number", "game_detection": [ @@ -63515,7 +59538,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "Tales Runner", "game_detection": [ @@ -63533,7 +59555,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blitz1941", "game_detection": [ @@ -63546,7 +59567,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeonland", "game_detection": [ @@ -63561,7 +59581,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Payday: The Heist", "game_detection": [ @@ -63576,7 +59595,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mugen Souls", "game_detection": [ @@ -63591,7 +59609,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Urban Terror", "game_detection": [ @@ -63617,7 +59634,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeonmans", "game_detection": [ @@ -63632,7 +59648,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Disgaea PC", "game_detection": [ @@ -63647,7 +59662,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hide & Spook: The Haunted Alchemist", "game_detection": [ @@ -63662,7 +59676,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Omerta: City of Gangsters", "game_detection": [ @@ -63677,7 +59690,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ashes of the Singularity", "game_detection": [ @@ -63693,7 +59705,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Trucks & Trailers", "game_detection": [ @@ -63708,7 +59719,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FIFA 16", "game_detection": [ @@ -63720,7 +59730,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Master Reboot", "game_detection": [ @@ -63735,7 +59744,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Madden NFL 07", "game_detection": [ @@ -63754,7 +59762,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Demolition Company Gold", "game_detection": [ @@ -63769,7 +59776,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Watch Dogs", "game_detection": [ @@ -63791,7 +59797,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Golden Compass", "game_detection": [ @@ -63804,7 +59809,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Settlers III", "game_detection": [ @@ -63816,7 +59820,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LEGO Batman: The Videogame", "game_detection": [ @@ -63836,7 +59839,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dystopia", "game_detection": [ @@ -63851,7 +59853,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ARMA: Cold War Assault", "game_detection": [ @@ -63866,7 +59867,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Trainz Simulator 2009: World Builder Edition", "game_detection": [ @@ -63888,7 +59888,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mitsurugi Kamui Hikae", "game_detection": [ @@ -63908,7 +59907,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ARAYA", "game_detection": [ @@ -63923,7 +59921,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Section 8: Prejudice", "game_detection": [ @@ -63944,7 +59941,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Victoria: Revolutions", "game_detection": [ @@ -63959,7 +59955,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Azure Striker Gunvolt", "game_detection": [ @@ -63974,7 +59969,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "World of Warships", "game_detection": [ @@ -64003,7 +59997,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Transcendence", "game_detection": [ @@ -64015,7 +60008,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Farming Giant", "game_detection": [ @@ -64030,7 +60022,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cobi Treasure Deluxe", "game_detection": [ @@ -64045,7 +60036,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Unravel", "game_detection": [ @@ -64058,7 +60048,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Serious Sam Double D", "game_detection": [ @@ -64084,7 +60073,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kenshi", "game_detection": [ @@ -64109,7 +60097,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zero Time Dilemma", "game_detection": [ @@ -64124,7 +60111,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sea Will Claim Everything", "game_detection": [ @@ -64137,7 +60123,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bloop Reloaded", "game_detection": [ @@ -64152,7 +60137,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tribes 2", "game_detection": [ @@ -64166,7 +60150,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MORDHAU", "game_detection": [ @@ -64185,7 +60168,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LEVEL 22", "game_detection": [ @@ -64200,7 +60182,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Iconoclasts", "game_detection": [ @@ -64219,7 +60200,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shadow Man", "game_detection": [ @@ -64234,7 +60214,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Knight Age", "game_detection": [ @@ -64247,7 +60226,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Soldier of Fortune: Payback", "game_detection": [ @@ -64259,7 +60237,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SD Gundam Capsule Fighter", "game_detection": [ @@ -64274,7 +60251,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Insanely Twisted Shadow Planet", "game_detection": [ @@ -64294,7 +60270,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Teleglitch", "game_detection": [ @@ -64314,7 +60289,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Piercing Blow", "game_detection": [ @@ -64343,7 +60317,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Plane Mechanic Simulator", "game_detection": [ @@ -64354,7 +60327,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "King Arthur: Fallen Champions", "game_detection": [ @@ -64369,7 +60341,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Missing Translation", "game_detection": [ @@ -64384,7 +60355,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nancy Drew Dossier: Resorting to Danger", "game_detection": [ @@ -64399,7 +60369,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Stomping Land", "game_detection": [ @@ -64414,7 +60383,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Galactic Arms Race", "game_detection": [ @@ -64434,7 +60402,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FLASHOUT 2", "game_detection": [ @@ -64449,7 +60416,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vault Cracker", "game_detection": [ @@ -64464,7 +60430,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Creeper World III: Arc Eternal", "game_detection": [ @@ -64479,7 +60444,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sword of the Stars: Born of Blood", "game_detection": [ @@ -64491,7 +60455,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Eternal Crusade", "game_detection": [ @@ -64506,7 +60469,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The King of Fighters XIV", "game_detection": [ @@ -64529,7 +60491,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nidhogg", "game_detection": [ @@ -64544,7 +60505,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A Bird Story", "game_detection": [ @@ -64564,7 +60524,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Transport Fever", "game_detection": [ @@ -64579,7 +60538,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Senran Kagura: Bon Appetit! - Full Course", "game_detection": [ @@ -64594,7 +60552,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Frederic: Resurrection of Music", "game_detection": [ @@ -64609,7 +60566,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Smoke and Sacrifice", "game_detection": [ @@ -64623,7 +60579,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Putt-Putt and Pep's Balloon-o-Rama", "game_detection": [ @@ -64638,7 +60593,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Attack Heroes", "game_detection": [ @@ -64653,7 +60607,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ys I Chronicles+", "game_detection": [ @@ -64668,7 +60621,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tooth and Tail", "game_detection": [ @@ -64683,7 +60635,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "There's Poop In My Soup", "game_detection": [ @@ -64698,7 +60649,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tokyo 42", "game_detection": [ @@ -64713,7 +60663,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Wonderful End of the World", "game_detection": [ @@ -64728,7 +60677,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Omerta: City of Gangsters", "game_detection": [ @@ -64740,7 +60688,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Treasures Of Montezuma 2", "game_detection": [ @@ -64753,7 +60700,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "US and THEM", "game_detection": [ @@ -64768,7 +60714,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battle Academy", "game_detection": [ @@ -64783,7 +60728,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alien Hallway", "game_detection": [ @@ -64798,7 +60742,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Berserk Online", "game_detection": [ @@ -64810,7 +60753,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wallace & Gromit's Grand Adventures, Episode 1: Fright of the Bumblebees", "game_detection": [ @@ -64825,7 +60767,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battle Islands: Commanders", "game_detection": [ @@ -64840,7 +60781,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Soccer Manager 2016", "game_detection": [ @@ -64855,7 +60795,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Soccer Manager", "game_detection": [ @@ -64870,7 +60809,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "inSynch", "game_detection": [ @@ -64885,7 +60823,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tom Clancy's Rainbow Six: Vegas", "game_detection": [ @@ -64906,7 +60843,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blueprint Tycoon", "game_detection": [ @@ -64921,7 +60857,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Infestation: The New Z", "game_detection": [ @@ -64936,7 +60871,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pirates: Treasure Hunters", "game_detection": [ @@ -64951,7 +60885,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Among The Sleep", "game_detection": [ @@ -64971,7 +60904,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alien Shooter 2 - Reloaded", "game_detection": [ @@ -64986,7 +60918,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Baseball Mogul 2008", "game_detection": [ @@ -64998,7 +60929,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Destiny of Ancient Kingdoms", "game_detection": [ @@ -65013,7 +60943,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Navy Field", "game_detection": [ @@ -65043,7 +60972,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rush for Glory", "game_detection": [ @@ -65058,7 +60986,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "World of Tanks", "game_detection": [ @@ -65072,7 +60999,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Furcadia", "game_detection": [ @@ -65084,7 +61010,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Savage Lands", "game_detection": [ @@ -65099,7 +61024,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer: Vermintide VR", "game_detection": [ @@ -65115,7 +61039,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Death Rally", "game_detection": [ @@ -65130,7 +61053,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Surviving Mars", "game_detection": [ @@ -65144,7 +61066,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Supreme Commander: Forged Alliance", "game_detection": [ @@ -65165,7 +61086,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Anima Gate of Memories: The Nameless Chronicles", "game_detection": [ @@ -65179,7 +61099,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spy Chameleon - RGB Agent", "game_detection": [ @@ -65194,7 +61113,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rain Blood Chronicles: Mirage", "game_detection": [ @@ -65209,7 +61127,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Loadout", "game_detection": [ @@ -65224,7 +61141,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Conflicks: Revolutionary Space Battles", "game_detection": [ @@ -65239,7 +61155,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Emily Wants To Play", "game_detection": [ @@ -65254,7 +61169,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dex", "game_detection": [ @@ -65274,7 +61188,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "CSI: Hard Evidence", "game_detection": [ @@ -65287,7 +61200,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nancy Drew: The Phantom of Venice", "game_detection": [ @@ -65302,7 +61214,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ultimate Marvel Vs. Capcom 3", "game_detection": [ @@ -65317,7 +61228,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ori and the Blind Forest: Definitive Edition", "game_detection": [ @@ -65336,7 +61246,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Monster Mash", "game_detection": [ @@ -65351,7 +61260,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fable: The Lost Chapters", "game_detection": [ @@ -65371,7 +61279,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LEGO Star Wars: The Force Awakens", "game_detection": [ @@ -65386,7 +61293,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Samantha Swift and the Hidden Roses of Athena", "game_detection": [ @@ -65401,7 +61307,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Age of Empires: Online", "game_detection": [ @@ -65429,7 +61334,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Firefall", "game_detection": [ @@ -65451,7 +61355,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Carmageddon 2: Carpocalypse Now", "game_detection": [ @@ -65464,7 +61367,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Indiana Jones and the Fate of Atlantis", "game_detection": [ @@ -65479,7 +61381,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Absolute Drift", "game_detection": [ @@ -65494,7 +61395,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "F1 2018", "game_detection": [ @@ -65505,7 +61405,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pressure", "game_detection": [ @@ -65520,7 +61419,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Professional Lumberjack 2015", "game_detection": [ @@ -65535,7 +61433,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bus-Simulator 2012", "game_detection": [ @@ -65550,7 +61447,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sword Art Online: Fatal Bullet", "game_detection": [ @@ -65564,7 +61460,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rising Angels: Reborn", "game_detection": [ @@ -65579,7 +61474,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Escape the Museum", "game_detection": [ @@ -65594,7 +61488,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hammer Heads Deluxe", "game_detection": [ @@ -65615,7 +61508,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sisyphus Reborn", "game_detection": [ @@ -65630,7 +61522,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Command & Conquer", "game_detection": [ @@ -65650,7 +61541,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Command & Conquer: Yuri's Revenge", "game_detection": [ @@ -65664,7 +61554,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DLC Quest", "game_detection": [ @@ -65684,7 +61573,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Asheron's Call 2", "game_detection": [ @@ -65696,7 +61584,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pokémon: Dawn of Darkness", "game_detection": [ @@ -65708,7 +61595,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cheap Amateur Film in Space", "game_detection": [ @@ -65720,7 +61606,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Delta Force", "game_detection": [ @@ -65741,7 +61626,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Luxor Mahjong", "game_detection": [ @@ -65756,7 +61640,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Text Twist", "game_detection": [ @@ -65769,7 +61652,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hot Wheels: World's Best Driver", "game_detection": [ @@ -65784,7 +61666,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Toy Story 3", "game_detection": [ @@ -65796,7 +61677,6 @@ ] }, { - "force_display_capture": false, "region": "RU", "title": "Point Blank", "game_detection": [ @@ -65809,7 +61689,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rampage Knights", "game_detection": [ @@ -65824,7 +61703,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stronghold Crusader HD", "game_detection": [ @@ -65844,7 +61722,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tower Alliance Online", "game_detection": [ @@ -65856,7 +61733,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Albert & Otto", "game_detection": [ @@ -65871,7 +61747,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Line Of Defense Tactics", "game_detection": [ @@ -65886,7 +61761,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "America's Army", "game_detection": [ @@ -65898,7 +61772,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Yet Another Zombie Defense", "game_detection": [ @@ -65913,7 +61786,6 @@ ] }, { - "force_display_capture": false, "region": "UK", "title": "BlazBlue: Calamity Trigger", "game_detection": [ @@ -65926,7 +61798,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lights Out: Dark Fall 2", "game_detection": [ @@ -65947,7 +61818,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stardust Galaxy Warriors", "game_detection": [ @@ -65962,7 +61832,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Atlantica Online", "game_detection": [ @@ -65983,7 +61852,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Graveyard", "game_detection": [ @@ -65998,7 +61866,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sacred Underworld", "game_detection": [ @@ -66011,7 +61878,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Draconian Wars", "game_detection": [ @@ -66026,7 +61892,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Meridian: New World", "game_detection": [ @@ -66041,7 +61906,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Puzzler World 2", "game_detection": [ @@ -66056,7 +61920,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Crusade CCG", "game_detection": [ @@ -66071,7 +61934,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Freespace 2", "game_detection": [ @@ -66096,7 +61958,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Out of Reach", "game_detection": [ @@ -66111,7 +61972,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Agatha Christie: Evil Under the Sun", "game_detection": [ @@ -66126,7 +61986,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gothic 2", "game_detection": [ @@ -66145,7 +62004,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pat & Mat", "game_detection": [ @@ -66160,7 +62018,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MURI", "game_detection": [ @@ -66175,7 +62032,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Squirreltopia", "game_detection": [ @@ -66190,7 +62046,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battlestations: Midway", "game_detection": [ @@ -66210,7 +62065,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stargate Resistance", "game_detection": [ @@ -66232,7 +62086,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Puzzle Pirates", "game_detection": [ @@ -66247,7 +62100,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeon Siege", "game_detection": [ @@ -66267,7 +62119,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Iron Roses", "game_detection": [ @@ -66282,7 +62133,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Snake Pass", "game_detection": [ @@ -66293,7 +62143,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Lord of the Rings: War in the North", "game_detection": [ @@ -66308,7 +62157,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Viscera Cleanup Detail", "game_detection": [ @@ -66334,7 +62182,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RoboBlitz", "game_detection": [ @@ -66349,7 +62196,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gundog", "game_detection": [ @@ -66366,7 +62212,6 @@ ] }, { - "force_display_capture": false, "region": "Ult", "title": "Dragon Age: Origins Ultimate Edition", "game_detection": [ @@ -66381,7 +62226,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hoyle Card Games", "game_detection": [ @@ -66393,7 +62237,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Golf Club", "game_detection": [ @@ -66408,7 +62251,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wickland", "game_detection": [ @@ -66423,7 +62265,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Omensight", "game_detection": [ @@ -66437,7 +62278,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "18 Wheels of Steel Extreme Trucker", "game_detection": [ @@ -66452,7 +62292,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FIFA 19", "game_detection": [ @@ -66467,7 +62306,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "4X4 Evolution", "game_detection": [ @@ -66479,7 +62317,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Burning Cars", "game_detection": [ @@ -66494,7 +62331,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lovely Planet", "game_detection": [ @@ -66509,7 +62345,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Only If", "game_detection": [ @@ -66524,7 +62359,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pitiri 1977", "game_detection": [ @@ -66537,7 +62371,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Little Inferno", "game_detection": [ @@ -66557,7 +62390,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sundered", "game_detection": [ @@ -66571,7 +62403,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zero Online", "game_detection": [ @@ -66584,7 +62415,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "WW1 Game Series", "game_detection": [ @@ -66595,7 +62425,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Project D Online", "game_detection": [ @@ -66610,7 +62439,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battle Group 2", "game_detection": [ @@ -66625,7 +62453,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Command & Conquer: Generals", "game_detection": [ @@ -66652,7 +62479,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Midnight Mysteries 4: Haunted Houdini", "game_detection": [ @@ -66667,7 +62493,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "House of 1000 Doors: The Palm of Zoroaster", "game_detection": [ @@ -66682,7 +62507,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Down To One", "game_detection": [ @@ -66697,7 +62521,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chaos Reborn", "game_detection": [ @@ -66712,7 +62535,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Crossfire", "game_detection": [ @@ -66724,7 +62546,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Booster Trooper", "game_detection": [ @@ -66739,7 +62560,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Neverwinter", "game_detection": [ @@ -66760,7 +62580,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jazz Jackrabbit 2", "game_detection": [ @@ -66777,7 +62596,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Master X Master", "game_detection": [ @@ -66792,7 +62610,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Quake 3: Arena", "game_detection": [ @@ -66819,7 +62636,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stick Fight: The Game", "game_detection": [ @@ -66834,7 +62650,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Brigade E5: New Jagged Union", "game_detection": [ @@ -66849,7 +62664,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Narcissu 1st & 2nd", "game_detection": [ @@ -66864,7 +62678,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rise of Flight: The First Great Air War", "game_detection": [ @@ -66878,7 +62691,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro-Pinball: The Web", "game_detection": [ @@ -66891,7 +62703,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wasteland", "game_detection": [ @@ -66906,7 +62717,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Avernum 4", "game_detection": [ @@ -66921,7 +62731,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The LEGO NINJAGO Movie Video Game", "game_detection": [ @@ -66936,7 +62745,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "R.B.I. Baseball 16", "game_detection": [ @@ -66951,7 +62759,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fractured Soul", "game_detection": [ @@ -66966,7 +62773,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Skydrift", "game_detection": [ @@ -66981,7 +62787,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Freddi Fish 5: The Case of the Creature of Coral Cove", "game_detection": [ @@ -66996,7 +62801,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Elliot Quest", "game_detection": [ @@ -67016,7 +62820,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rise & Fall: Civilizations At War", "game_detection": [ @@ -67029,7 +62832,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Legendary Champions", "game_detection": [ @@ -67049,7 +62851,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Colin McRae Rally 2005", "game_detection": [ @@ -67061,7 +62862,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "INSURGENCY", "game_detection": [ @@ -67076,7 +62876,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "WRC 4 FIA World Rally Championship", "game_detection": [ @@ -67091,7 +62890,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battle Realms", "game_detection": [ @@ -67103,7 +62901,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Boggle!", "game_detection": [ @@ -67118,7 +62915,6 @@ ] }, { - "force_display_capture": false, "region": "SG", "title": "Counter-Strike Online", "game_detection": [ @@ -67133,7 +62929,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dusty Revenge", "game_detection": [ @@ -67155,7 +62950,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Far Cry 3", "game_detection": [ @@ -67177,7 +62971,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Apogee Throwback Pack", "game_detection": [ @@ -67192,7 +62985,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LuckCatchers", "game_detection": [ @@ -67207,7 +62999,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Emporea: Realms of War & Magic", "game_detection": [ @@ -67222,7 +63013,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Megadimension Neptunia VII", "game_detection": [ @@ -67237,7 +63027,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jewel Quest", "game_detection": [ @@ -67257,7 +63046,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Robocraft", "game_detection": [ @@ -67273,7 +63061,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Transformers Devastation", "game_detection": [ @@ -67288,7 +63075,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Windforge", "game_detection": [ @@ -67308,7 +63094,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lumini", "game_detection": [ @@ -67323,7 +63108,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spirited Heart", "game_detection": [ @@ -67338,7 +63122,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Red War: Edem's Curse", "game_detection": [ @@ -67351,7 +63134,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Space Marine", "game_detection": [ @@ -67366,7 +63148,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Balls of Steel", "game_detection": [ @@ -67379,7 +63160,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fearless Fantasy", "game_detection": [ @@ -67394,7 +63174,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Manual Samuel", "game_detection": [ @@ -67409,7 +63188,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Harry Potter and the Half-Blood Prince", "game_detection": [ @@ -67422,7 +63200,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ninja Blade", "game_detection": [ @@ -67437,7 +63214,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Reaxxion", "game_detection": [ @@ -67452,7 +63228,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SIN Episodes: Emergence", "game_detection": [ @@ -67467,7 +63242,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Instinct", "game_detection": [ @@ -67479,7 +63253,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Legions of Ashworld", "game_detection": [ @@ -67494,7 +63267,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Girls Like Robots", "game_detection": [ @@ -67509,7 +63281,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Team Fortress Classic", "game_detection": [ @@ -67532,7 +63303,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sword of the Stars", "game_detection": [ @@ -67569,7 +63339,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims 2: Free Time", "game_detection": [ @@ -67583,7 +63352,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DOTA 2", "game_detection": [ @@ -67598,7 +63366,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vitrum", "game_detection": [ @@ -67613,7 +63380,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battle of the Immortals", "game_detection": [ @@ -67632,7 +63398,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Anomaly Korea", "game_detection": [ @@ -67652,7 +63417,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chaos Heroes Online", "game_detection": [ @@ -67674,7 +63438,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Worldwide Soccer Manager 2009", "game_detection": [ @@ -67689,7 +63452,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Azada", "game_detection": [ @@ -67704,7 +63466,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Project CARS: Pagani Edition", "game_detection": [ @@ -67719,7 +63480,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Napoleon: Total War", "game_detection": [ @@ -67734,7 +63494,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cities XL 2012", "game_detection": [ @@ -67754,7 +63513,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Unrest", "game_detection": [ @@ -67769,7 +63527,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vanguards", "game_detection": [ @@ -67784,7 +63541,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "American Truck Simulator", "game_detection": [ @@ -67799,7 +63555,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gorky 17", "game_detection": [ @@ -67814,7 +63569,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wizardry 7: Crusaders of the Dark Savant", "game_detection": [ @@ -67829,7 +63583,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shakes and Fidget Remastered", "game_detection": [ @@ -67844,7 +63597,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Soundodger+", "game_detection": [ @@ -67859,7 +63611,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Trick & Treat", "game_detection": [ @@ -67874,7 +63625,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Planet Explorers", "game_detection": [ @@ -67889,7 +63639,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dwarf Fortress", "game_detection": [ @@ -67901,7 +63650,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Medal of Honor", "game_detection": [ @@ -67940,7 +63688,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "eXceed 2nd – Vampire REX", "game_detection": [ @@ -67961,7 +63708,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Monster Trucks Nitro", "game_detection": [ @@ -67976,7 +63722,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deep Black: Reloaded", "game_detection": [ @@ -67991,7 +63736,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Serious Sam: The First Encounter", "game_detection": [ @@ -68012,7 +63756,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "WARMODE", "game_detection": [ @@ -68027,7 +63770,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Legends of Persia", "game_detection": [ @@ -68042,7 +63784,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Maestia", "game_detection": [ @@ -68062,7 +63803,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Incredibles", "game_detection": [ @@ -68075,7 +63815,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bloody Trapland", "game_detection": [ @@ -68095,7 +63834,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ben There, Dan That", "game_detection": [ @@ -68109,7 +63847,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "TMNT", "game_detection": [ @@ -68122,7 +63859,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Auto Club Revolution", "game_detection": [ @@ -68135,7 +63871,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sproggiwood", "game_detection": [ @@ -68150,7 +63885,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cuphead", "game_detection": [ @@ -68169,7 +63903,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hounds: The Last Hope", "game_detection": [ @@ -68190,7 +63923,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Istaria: Chronicles of the Gifted", "game_detection": [ @@ -68204,7 +63936,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Return to Mysterious Island 2", "game_detection": [ @@ -68219,7 +63950,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A-men", "game_detection": [ @@ -68234,7 +63964,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Total Annihilation: Kingdoms", "game_detection": [ @@ -68246,7 +63975,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "tricone lab", "game_detection": [ @@ -68261,7 +63989,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Avatar The Last Airbender: Path of Zuko", "game_detection": [ @@ -68273,7 +64000,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ROGUS: Kingdom of The Lost Souls", "game_detection": [ @@ -68288,7 +64014,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cabela's Dangerous Hunts 2013", "game_detection": [ @@ -68303,7 +64028,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Total Club Manager 2005", "game_detection": [ @@ -68315,7 +64039,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Operation Mania", "game_detection": [ @@ -68327,7 +64050,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hex: Shards of Fate", "game_detection": [ @@ -68348,7 +64070,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Real Texas", "game_detection": [ @@ -68360,7 +64081,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Creatures: Exodus", "game_detection": [ @@ -68373,7 +64093,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cricket Revolution", "game_detection": [ @@ -68388,7 +64107,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Monster Truck Madness 2", "game_detection": [ @@ -68400,7 +64118,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Titan Quest", "game_detection": [ @@ -68420,7 +64137,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "F1 2010", "game_detection": [ @@ -68441,7 +64157,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Escape The Lost Kingdom: The Forgotten Pharaoh", "game_detection": [ @@ -68456,7 +64171,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Castle In The Darkness", "game_detection": [ @@ -68471,7 +64185,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Indie Pogo", "game_detection": [ @@ -68485,7 +64198,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Viscera Cleanup Detail: Santa's Rampage", "game_detection": [ @@ -68500,7 +64212,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tom Clancy's Ghost Recon Breakpoint", "game_detection": [ @@ -68515,7 +64226,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Legend of Mir II", "game_detection": [ @@ -68528,7 +64238,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Brain Spa", "game_detection": [ @@ -68541,7 +64250,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "Xiao Ao Jiang Hu", "game_detection": [ @@ -68555,7 +64263,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Disney Infinity 3.0", "game_detection": [ @@ -68575,7 +64282,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Knytt Underground", "game_detection": [ @@ -68595,7 +64301,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Typer Shark Deluxe", "game_detection": [ @@ -68616,7 +64321,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Naruto to Boruto: Shinobi Striker", "game_detection": [ @@ -68630,7 +64334,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alien Shooter - Revisited", "game_detection": [ @@ -68645,7 +64348,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Drawn: The Painted Tower", "game_detection": [ @@ -68660,7 +64362,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Braveland", "game_detection": [ @@ -68680,7 +64381,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Transformers: The Game", "game_detection": [ @@ -68692,7 +64392,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Agricultural Simulator 2013", "game_detection": [ @@ -68707,7 +64406,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeons & Dragons: Chronicles of Mystara", "game_detection": [ @@ -68722,7 +64420,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deer Hunter 2003: Legendary Hunting", "game_detection": [ @@ -68736,7 +64433,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Age of Chivalry", "game_detection": [ @@ -68751,7 +64447,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Banner Saga 3", "game_detection": [ @@ -68765,7 +64460,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Guacamelee! 2", "game_detection": [ @@ -68779,7 +64473,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Joint Operations: Escalation", "game_detection": [ @@ -68793,7 +64486,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Roundabout", "game_detection": [ @@ -68808,7 +64500,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Skyshine's BEDLAM", "game_detection": [ @@ -68823,7 +64514,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bitardia Cards: Memes of 2ch", "game_detection": [ @@ -68838,7 +64528,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Savage 2: A Tortured Soul", "game_detection": [ @@ -68850,7 +64539,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Remember Me", "game_detection": [ @@ -68865,7 +64553,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sacred", "game_detection": [ @@ -68877,7 +64564,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NFL Head Coach", "game_detection": [ @@ -68889,7 +64575,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eco", "game_detection": [ @@ -68903,7 +64588,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shadow Warrior Classic Redux", "game_detection": [ @@ -68918,7 +64602,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DEATHGARDEN", "game_detection": [ @@ -68939,7 +64622,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wolfenstein 3D", "game_detection": [ @@ -68954,7 +64636,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deadlight", "game_detection": [ @@ -68969,7 +64650,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Parkitect", "game_detection": [ @@ -68984,7 +64664,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rake", "game_detection": [ @@ -68999,7 +64678,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hunting Unlimited 2010", "game_detection": [ @@ -69014,7 +64692,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rome: Total War", "game_detection": [ @@ -69026,7 +64703,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rogue Continuum", "game_detection": [ @@ -69041,7 +64717,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Soda Dungeon", "game_detection": [ @@ -69056,7 +64731,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Urban Chaos", "game_detection": [ @@ -69071,7 +64745,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pajama Sam's Lost & Found", "game_detection": [ @@ -69086,7 +64759,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "City of Steam: Arkadia", "game_detection": [ @@ -69101,7 +64773,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Splatter", "game_detection": [ @@ -69116,7 +64787,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GT Legends", "game_detection": [ @@ -69136,7 +64806,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Catan", "game_detection": [ @@ -69148,7 +64817,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Titan Quest Anniversary Edition", "game_detection": [ @@ -69167,7 +64835,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nexagon Deathmatch", "game_detection": [ @@ -69180,7 +64847,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Last Tinker: City of Colors", "game_detection": [ @@ -69195,7 +64861,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sacraboar", "game_detection": [ @@ -69210,7 +64875,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "UnSummoning: The Spectral Horde", "game_detection": [ @@ -69222,7 +64886,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rise of Prussia", "game_detection": [ @@ -69243,7 +64906,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mirage: Arcane Warfare", "game_detection": [ @@ -69266,7 +64928,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wolf Team", "game_detection": [ @@ -69287,7 +64948,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Halo: Combat Evolved", "game_detection": [ @@ -69299,7 +64959,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Counter-Strike: Global Offensive", "game_detection": [ @@ -69314,7 +64973,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Scourge: Outbreak", "game_detection": [ @@ -69329,7 +64987,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeons II", "game_detection": [ @@ -69344,7 +65001,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sam & Max Episode 204: Chariots of the Dogs", "game_detection": [ @@ -69364,7 +65020,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dreamfall: The Longest Journey", "game_detection": [ @@ -69385,7 +65040,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "XIII", "game_detection": [ @@ -69397,7 +65051,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shogun: Total War", "game_detection": [ @@ -69409,7 +65062,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Burnout Paradise: The Ultimate Box", "game_detection": [ @@ -69430,7 +65082,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hippocampal", "game_detection": [ @@ -69445,7 +65096,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Woodle Tree Adventures", "game_detection": [ @@ -69465,7 +65115,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Test Drive: Ferrari Racing Legends", "game_detection": [ @@ -69480,7 +65129,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bientôt l'été", "game_detection": [ @@ -69495,7 +65143,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Anomaly Warzone Earth: Mobile Campaign", "game_detection": [ @@ -69510,7 +65157,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Among Ripples", "game_detection": [ @@ -69525,7 +65171,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cinderella Escape! R12", "game_detection": [ @@ -69540,7 +65185,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hover Junkers", "game_detection": [ @@ -69555,7 +65199,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MotoGP 14 Compact", "game_detection": [ @@ -69570,7 +65213,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Grimind", "game_detection": [ @@ -69590,7 +65232,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ironclad Tactics", "game_detection": [ @@ -69605,7 +65246,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sauerbraten", "game_detection": [ @@ -69617,7 +65257,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Echo Prime", "game_detection": [ @@ -69632,7 +65271,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cloudberry Kingdom", "game_detection": [ @@ -69647,7 +65285,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spyro Reignited Trilogy", "game_detection": [ @@ -69658,7 +65295,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "F-16 Multirole Fighter", "game_detection": [ @@ -69673,7 +65309,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "To the Moon", "game_detection": [ @@ -69693,7 +65328,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Supreme Commander 2", "game_detection": [ @@ -69708,7 +65342,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Strong Bad's Cool Game for Attractive People - Episode 1: Homestar Ruiner", "game_detection": [ @@ -69731,7 +65364,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Quintet", "game_detection": [ @@ -69746,7 +65378,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Avernum: Escape From the Pit", "game_detection": [ @@ -69761,7 +65392,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Resonance of Fate", "game_detection": [ @@ -69772,7 +65402,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "X-Men Legends II: Rise of Apocalypse", "game_detection": [ @@ -69784,7 +65413,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A.I.M. 2: Clan Wars", "game_detection": [ @@ -69804,7 +65432,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Manhunter", "game_detection": [ @@ -69824,7 +65451,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Metro Conflict", "game_detection": [ @@ -69839,7 +65465,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Picaroon", "game_detection": [ @@ -69852,7 +65477,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Enlightened League of Bone Builders and the Osseous", "game_detection": [ @@ -69868,7 +65492,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bierzerkers", "game_detection": [ @@ -69883,7 +65506,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Serious Sam VR: The Last Hope", "game_detection": [ @@ -69900,7 +65522,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Second Life", "game_detection": [ @@ -69924,7 +65545,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nancy Drew: The White Wolf of Icicle Creek", "game_detection": [ @@ -69939,7 +65559,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Echoes+", "game_detection": [ @@ -69954,7 +65573,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Freddi Fish 2: The Case of the Haunted Schoolhouse", "game_detection": [ @@ -69969,7 +65587,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nertz Solitaire", "game_detection": [ @@ -69984,7 +65601,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Genesis Rising: The Universal Crusade", "game_detection": [ @@ -69997,7 +65613,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Paddle Up", "game_detection": [ @@ -70013,7 +65628,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Europa: Universalis", "game_detection": [ @@ -70025,7 +65639,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Secondearth: Faction Wars", "game_detection": [ @@ -70039,7 +65652,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Last Door: Collector's Edition", "game_detection": [ @@ -70054,7 +65666,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Unreal Tournament 3", "game_detection": [ @@ -70075,7 +65686,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crazy Machines Elements", "game_detection": [ @@ -70090,7 +65700,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ethan: Meteor Hunter", "game_detection": [ @@ -70110,7 +65719,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Darkness II", "game_detection": [ @@ -70125,7 +65733,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deepworld", "game_detection": [ @@ -70140,7 +65747,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Death Skid Marks", "game_detection": [ @@ -70155,7 +65761,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gunship!", "game_detection": [ @@ -70170,7 +65775,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Galaxy Combat Wargames", "game_detection": [ @@ -70185,7 +65789,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sisterly Lust", "game_detection": [ @@ -70196,7 +65799,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zombie Tycoon 2: Brainhov's Revenge", "game_detection": [ @@ -70211,7 +65813,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vampire Saga: Pandora's Box", "game_detection": [ @@ -70224,7 +65825,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "WWE 2K17", "game_detection": [ @@ -70239,7 +65839,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crusaders: Thy Kingdom Come", "game_detection": [ @@ -70268,7 +65867,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tomb Raider Chronicles", "game_detection": [ @@ -70283,7 +65881,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Quest of Dungeons", "game_detection": [ @@ -70303,7 +65900,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Avatar: Legends of the Arena", "game_detection": [ @@ -70315,7 +65911,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Moebius: Empire Rising", "game_detection": [ @@ -70330,7 +65925,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark Horizon", "game_detection": [ @@ -70342,7 +65936,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jolly Rover", "game_detection": [ @@ -70357,7 +65950,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Trek: Elite Force 2", "game_detection": [ @@ -70369,7 +65961,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Company of Heroes", "game_detection": [ @@ -70402,7 +65993,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Revelations 2012", "game_detection": [ @@ -70416,7 +66006,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kingdom Two Crowns", "game_detection": [ @@ -70427,7 +66016,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Galaxy on Fire 2 Full HD", "game_detection": [ @@ -70442,7 +66030,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark Strokes", "game_detection": [ @@ -70455,7 +66042,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Carmageddon: Max Damage", "game_detection": [ @@ -70470,7 +66056,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Duke Nukem 3D: Megaton Edition", "game_detection": [ @@ -70485,7 +66070,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Desert Ride Coaster", "game_detection": [ @@ -70501,7 +66085,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Puddle", "game_detection": [ @@ -70524,7 +66107,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "My Name is Mayo", "game_detection": [ @@ -70539,7 +66121,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Penny Arcade's On the Rain-Slick Precipice of Darkness 4", "game_detection": [ @@ -70554,7 +66135,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "POP: METHODOLOGY EXPERIMENT ONE", "game_detection": [ @@ -70569,7 +66149,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pony World 3", "game_detection": [ @@ -70580,7 +66159,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warzone 2100", "game_detection": [ @@ -70592,7 +66170,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Text Twist 2", "game_detection": [ @@ -70605,7 +66182,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Army Rage", "game_detection": [ @@ -70618,7 +66194,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Divo Demo", "game_detection": [ @@ -70633,7 +66208,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zero G Arena", "game_detection": [ @@ -70648,7 +66222,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Red Faction: Armageddon", "game_detection": [ @@ -70663,7 +66236,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "March of War", "game_detection": [ @@ -70678,7 +66250,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Soccer Manager 2017", "game_detection": [ @@ -70693,7 +66264,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crea", "game_detection": [ @@ -70713,7 +66283,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Parallax", "game_detection": [ @@ -70728,7 +66297,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ittle Dew", "game_detection": [ @@ -70753,7 +66321,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Command & Conquer 3: Tiberium Wars", "game_detection": [ @@ -70774,7 +66341,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nostradamus: The Last Prophecy", "game_detection": [ @@ -70794,7 +66360,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DUCATI: 90th Anniversary", "game_detection": [ @@ -70809,7 +66374,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Diner Dash: Hometown Hero", "game_detection": [ @@ -70824,7 +66388,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Build-a-lot 4", "game_detection": [ @@ -70839,7 +66402,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Born to Fire", "game_detection": [ @@ -70853,7 +66415,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Forsaken World", "game_detection": [ @@ -70882,7 +66443,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hitman: Blood Money", "game_detection": [ @@ -70902,7 +66462,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Navy Field 2", "game_detection": [ @@ -70924,7 +66483,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Antisquad", "game_detection": [ @@ -70939,7 +66497,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tachyon Project", "game_detection": [ @@ -70954,7 +66511,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "My Time At Portia", "game_detection": [ @@ -70965,7 +66521,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "CrossCode", "game_detection": [ @@ -70981,7 +66536,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Empires", "game_detection": [ @@ -70995,7 +66549,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dawn of Fantasy Demo", "game_detection": [ @@ -71007,7 +66560,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zombs Royale", "game_detection": [ @@ -71019,7 +66571,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Total Influence", "game_detection": [ @@ -71033,7 +66584,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warriors Orochi", "game_detection": [ @@ -71046,7 +66596,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Darkest Hour: A Hearts of Iron Game", "game_detection": [ @@ -71067,7 +66616,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Magic: The Gathering: Duels of the Planeswalkers", "game_detection": [ @@ -71082,7 +66630,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Renowned Explorers: International Society", "game_detection": [ @@ -71097,7 +66644,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Five Nights at Freddy's 2", "game_detection": [ @@ -71112,7 +66658,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Adventure Time: Explore the Dungeon Because I DON'T KNOW!", "game_detection": [ @@ -71127,7 +66672,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Need For Speed Most Wanted", "game_detection": [ @@ -71140,7 +66684,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SGZH: School Girl/Zombie Hunter", "game_detection": [ @@ -71154,7 +66697,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Landmark", "game_detection": [ @@ -71177,7 +66719,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Baezult", "game_detection": [ @@ -71192,7 +66733,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead Pixels", "game_detection": [ @@ -71207,7 +66747,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Frontline: Road to Moscow", "game_detection": [ @@ -71222,7 +66761,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hearts of Iron III: Semper Fi", "game_detection": [ @@ -71238,7 +66776,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Smugglers V: Invasion", "game_detection": [ @@ -71253,7 +66790,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Black & White 2: Battle of the Gods", "game_detection": [ @@ -71265,7 +66801,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mortal Kombat X", "game_detection": [ @@ -71280,7 +66815,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "TowerFall", "game_detection": [ @@ -71295,7 +66829,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Wars: The Clone Wars - Republic Heroes", "game_detection": [ @@ -71316,7 +66849,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "New Westward Journey 2", "game_detection": [ @@ -71330,7 +66862,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Electronic Super Joy", "game_detection": [ @@ -71345,7 +66876,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gladiators Online", "game_detection": [ @@ -71360,7 +66890,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "My Lovely Daughter", "game_detection": [ @@ -71374,7 +66903,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Megabyte Punch", "game_detection": [ @@ -71401,7 +66929,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "STORM: Frontline Nation", "game_detection": [ @@ -71416,7 +66943,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Caster", "game_detection": [ @@ -71431,7 +66957,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nights of Azure", "game_detection": [ @@ -71446,7 +66971,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chronicles of Mystery: The Legend of the Sacred Treasure", "game_detection": [ @@ -71458,7 +66982,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "CODE VEIN", "game_detection": [ @@ -71469,7 +66992,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shad'O", "game_detection": [ @@ -71489,7 +67011,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Freedom Fall", "game_detection": [ @@ -71504,7 +67025,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Divine Souls", "game_detection": [ @@ -71519,7 +67039,6 @@ ] }, { - "force_display_capture": false, "region": "RU", "title": "Dragon Nest", "game_detection": [ @@ -71535,7 +67054,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A New Reckoning", "game_detection": [ @@ -71550,7 +67068,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spacebase DF-9", "game_detection": [ @@ -71579,7 +67096,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Myst: Masterpiece Edition", "game_detection": [ @@ -71594,7 +67110,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Victor Vran", "game_detection": [ @@ -71610,7 +67125,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "35MM", "game_detection": [ @@ -71625,7 +67139,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "EDGE", "game_detection": [ @@ -71645,7 +67158,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Showdown Effect", "game_detection": [ @@ -71660,7 +67172,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dogs of War Online", "game_detection": [ @@ -71675,7 +67186,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Anarchy Online", "game_detection": [ @@ -71688,7 +67198,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Final Fantasy IX", "game_detection": [ @@ -71703,7 +67212,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mount & Blade: With Fire & Sword", "game_detection": [ @@ -71723,7 +67231,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cabela's Dangerous Hunts II", "game_detection": [ @@ -71736,7 +67243,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LASTFIGHT", "game_detection": [ @@ -71751,7 +67257,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Albino Lullaby", "game_detection": [ @@ -71766,7 +67271,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Grow Up", "game_detection": [ @@ -71781,7 +67285,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Elizabeth Find MD: Diagnosis Mystery", "game_detection": [ @@ -71796,7 +67299,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dollar Dash", "game_detection": [ @@ -71811,7 +67313,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2014", "game_detection": [ @@ -71826,7 +67327,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gunslingers", "game_detection": [ @@ -71841,7 +67341,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sepia Tears", "game_detection": [ @@ -71856,7 +67355,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vox", "game_detection": [ @@ -71871,7 +67369,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Konung 3: Ties of the Dynasty", "game_detection": [ @@ -71886,7 +67383,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Grotesque Tactics 2: Dungeons and Donuts", "game_detection": [ @@ -71906,7 +67402,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro Cycling Manager: Tour de France 2011", "game_detection": [ @@ -71918,7 +67413,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Serious Sam: Kamikaze Attack!", "game_detection": [ @@ -71936,7 +67430,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GRIP", "game_detection": [ @@ -71951,7 +67444,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LEGO Batman 2: DC Super Heroes", "game_detection": [ @@ -71971,7 +67463,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "I must kill...: Fresh Meat", "game_detection": [ @@ -71986,7 +67477,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Magic: The Gathering: Duels of the Planeswalkers 2014", "game_detection": [ @@ -72001,7 +67491,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hidden & Dangerous 2: Sabre Squadron", "game_detection": [ @@ -72014,7 +67503,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Artifact", "game_detection": [ @@ -72025,7 +67513,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sheltered", "game_detection": [ @@ -72040,7 +67527,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "WARMACHINE: Tactics", "game_detection": [ @@ -72055,7 +67541,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hitman 2", "game_detection": [ @@ -72066,7 +67551,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jagged Alliance 2", "game_detection": [ @@ -72083,7 +67567,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nihilumbra", "game_detection": [ @@ -72103,7 +67586,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NosTale", "game_detection": [ @@ -72116,7 +67598,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Duck Game", "game_detection": [ @@ -72131,7 +67612,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Elder Scrolls Online", "game_detection": [ @@ -72159,7 +67639,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Great Jitters: Pudding Panic", "game_detection": [ @@ -72174,7 +67653,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Draw a Stickman: EPIC", "game_detection": [ @@ -72194,7 +67672,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Krosmaster Arena", "game_detection": [ @@ -72215,7 +67692,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FIFA Manager 06", "game_detection": [ @@ -72227,7 +67703,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Twelve Sky", "game_detection": [ @@ -72241,7 +67716,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Skulltag", "game_detection": [ @@ -72254,7 +67728,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Worlds Of Magic", "game_detection": [ @@ -72269,7 +67742,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Momodora III", "game_detection": [ @@ -72284,7 +67756,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tom Clancy's Ghost Recon: Advanced Warfighter 2", "game_detection": [ @@ -72304,7 +67775,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Putt Putt: Pep's Birthday Surprise", "game_detection": [ @@ -72319,7 +67789,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zombie Defense", "game_detection": [ @@ -72334,7 +67803,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sledge Hammer", "game_detection": [ @@ -72349,7 +67817,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Soldiers: Heroes Of World War II", "game_detection": [ @@ -72369,7 +67836,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alien Breed 2: Assault", "game_detection": [ @@ -72383,7 +67849,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Weaponographist", "game_detection": [ @@ -72398,7 +67863,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "X3: Terran Conflict", "game_detection": [ @@ -72418,7 +67882,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mars Colony: Challenger", "game_detection": [ @@ -72433,7 +67896,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "eFootball PES 2020", "game_detection": [ @@ -72448,7 +67910,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Creed: Rise to Glory", "game_detection": [ @@ -72459,7 +67920,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Police Quest: SWAT 2", "game_detection": [ @@ -72477,7 +67937,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Prison Tycoon 4: SuperMax", "game_detection": [ @@ -72497,7 +67956,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Giana Sisters: Twisted Dreams - Rise of the Owlverlord", "game_detection": [ @@ -72519,7 +67977,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Legends of Runeterra", "game_detection": [ @@ -72530,7 +67987,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Epoch", "game_detection": [ @@ -72545,7 +68001,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Koihime Enbu", "game_detection": [ @@ -72560,7 +68015,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dance! Online", "game_detection": [ @@ -72573,7 +68027,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims 2: Seasons", "game_detection": [ @@ -72591,7 +68044,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Elder Scrolls V: Skyrim", "game_detection": [ @@ -72613,7 +68065,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "25 to Life", "game_detection": [ @@ -72625,7 +68076,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "Blitz II", "game_detection": [ @@ -72639,7 +68089,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nicole", "game_detection": [ @@ -72654,7 +68103,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cossacks: Back to War", "game_detection": [ @@ -72669,7 +68117,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "TMNT Demo", "game_detection": [ @@ -72683,7 +68130,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rebel Inc: Escalation", "game_detection": [ @@ -72694,7 +68140,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warrior Kings", "game_detection": [ @@ -72709,7 +68154,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bit.Trip Void", "game_detection": [ @@ -72724,7 +68168,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Journal", "game_detection": [ @@ -72739,7 +68182,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bookworm Deluxe", "game_detection": [ @@ -72760,7 +68202,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "G-Police", "game_detection": [ @@ -72772,7 +68213,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Valkyria Chronicles 4", "game_detection": [ @@ -72783,7 +68223,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zero Gear", "game_detection": [ @@ -72798,7 +68237,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Luftrausers", "game_detection": [ @@ -72818,7 +68256,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Plague Inc: Evolved", "game_detection": [ @@ -72833,7 +68270,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bridge to Nowhere", "game_detection": [ @@ -72849,7 +68285,6 @@ ] }, { - "force_display_capture": false, "region": "BR", "title": "Point Blank", "game_detection": [ @@ -72863,7 +68298,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Enclave", "game_detection": [ @@ -72883,7 +68317,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spate", "game_detection": [ @@ -72898,7 +68331,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DIG IT! - A Digger Simulator", "game_detection": [ @@ -72913,7 +68345,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Delta Force: Land Warrior", "game_detection": [ @@ -72928,7 +68359,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sonic & SEGA All-Stars Racing", "game_detection": [ @@ -72940,7 +68370,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "1701 A.D. - The Sunken Dragon", "game_detection": [ @@ -72957,7 +68386,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Princess Evangile", "game_detection": [ @@ -72972,7 +68400,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Funfair", "game_detection": [ @@ -72988,7 +68415,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Talisman Online", "game_detection": [ @@ -73001,7 +68427,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Voodoo Dice", "game_detection": [ @@ -73016,7 +68441,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MachineCraft", "game_detection": [ @@ -73031,7 +68455,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Obulis", "game_detection": [ @@ -73046,7 +68469,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blood Knights", "game_detection": [ @@ -73061,7 +68483,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims 2: IKEA Home Stuff", "game_detection": [ @@ -73075,7 +68496,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bit.Trip Core", "game_detection": [ @@ -73090,7 +68510,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Back to the Future: The Game - Ep.4: Double Visions", "game_detection": [ @@ -73110,7 +68529,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Neon Chrome", "game_detection": [ @@ -73121,7 +68539,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rise of Incarnates", "game_detection": [ @@ -73136,7 +68553,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hidden Mysteries: Civil War", "game_detection": [ @@ -73148,7 +68564,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Happy Feet", "game_detection": [ @@ -73161,7 +68576,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gates of Troy", "game_detection": [ @@ -73173,7 +68587,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gothic", "game_detection": [ @@ -73187,7 +68600,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Professor FizzWhizzle", "game_detection": [ @@ -73202,7 +68614,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spaceforce Constellations", "game_detection": [ @@ -73217,7 +68628,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Chronicles of Riddick: Escape From Butcher Bay", "game_detection": [ @@ -73231,7 +68641,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sword Art Online: Hollow Realization", "game_detection": [ @@ -73246,7 +68655,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Pro Evolution Soccer 2012", "game_detection": [ @@ -73258,7 +68666,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Toca Race Driver 3", "game_detection": [ @@ -73278,7 +68685,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ceville", "game_detection": [ @@ -73293,7 +68699,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Twelve Sky 2", "game_detection": [ @@ -73312,7 +68717,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Firefighters 2014", "game_detection": [ @@ -73327,7 +68731,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battlefield 3", "game_detection": [ @@ -73339,7 +68742,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wallace and Gromit's Grand Adventures, Episode 2: The Last Resort", "game_detection": [ @@ -73354,7 +68756,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ORION: Dino Horde", "game_detection": [ @@ -73369,7 +68770,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dracula 3: Path of the Dragon", "game_detection": [ @@ -73389,7 +68789,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "APOX", "game_detection": [ @@ -73404,7 +68803,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eschalon: Book II", "game_detection": [ @@ -73419,7 +68817,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "Mu Blue", "game_detection": [ @@ -73433,7 +68830,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sherlock Holmes: Nemesis", "game_detection": [ @@ -73448,7 +68844,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Brawl Busters", "game_detection": [ @@ -73470,7 +68865,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Call of Duty 4: Modern Warfare Demo", "game_detection": [ @@ -73483,7 +68877,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tales of Pirates Online", "game_detection": [ @@ -73496,7 +68889,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Myst 3: Exile", "game_detection": [ @@ -73509,7 +68901,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Not Tetris 2", "game_detection": [ @@ -73521,7 +68912,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Earth 2140", "game_detection": [ @@ -73536,7 +68926,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Imperia Online", "game_detection": [ @@ -73551,7 +68940,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Team Fortress 2", "game_detection": [ @@ -73566,7 +68954,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "UberSoldier II", "game_detection": [ @@ -73581,7 +68968,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fray", "game_detection": [ @@ -73596,7 +68982,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Realms", "game_detection": [ @@ -73611,7 +68996,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NASCAR Racing 4", "game_detection": [ @@ -73623,7 +69007,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blade Symphony", "game_detection": [ @@ -73638,7 +69021,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ultratron", "game_detection": [ @@ -73659,7 +69041,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Art of Murder: Hunt for the Puppeteer", "game_detection": [ @@ -73672,7 +69053,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FortressCraft Evolved!", "game_detection": [ @@ -73687,7 +69067,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Magic 2015: Duels of the Planeswalkers", "game_detection": [ @@ -73702,7 +69081,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dragon's Lair", "game_detection": [ @@ -73717,7 +69095,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Navy Training Exercise: Strike and Retrive", "game_detection": [ @@ -73729,7 +69106,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "East India Company", "game_detection": [ @@ -73749,7 +69125,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blade & Sorcery", "game_detection": [ @@ -73764,7 +69139,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tropico", "game_detection": [ @@ -73784,7 +69158,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Assault Android Cactus", "game_detection": [ @@ -73799,7 +69172,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Man O' War: Corsair", "game_detection": [ @@ -73814,7 +69186,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Max & the Magic Marker", "game_detection": [ @@ -73826,7 +69197,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Motocross Madness 2", "game_detection": [ @@ -73838,7 +69208,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Troopers: Dawn of Destiny", "game_detection": [ @@ -73853,7 +69222,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Euro Truck Simulator 2", "game_detection": [ @@ -73876,7 +69244,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Comboman", "game_detection": [ @@ -73891,7 +69258,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Wars: Battlefront II", "game_detection": [ @@ -73917,7 +69283,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Prince of Persia", "game_detection": [ @@ -73938,7 +69303,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Shivah", "game_detection": [ @@ -73953,7 +69317,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Toy Soldiers: Complete", "game_detection": [ @@ -73968,7 +69331,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lunar Flight", "game_detection": [ @@ -73988,7 +69350,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tower Wars", "game_detection": [ @@ -74003,7 +69364,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Altitude0: Lower & Faster", "game_detection": [ @@ -74018,7 +69378,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Aveyond: Gates of Night", "game_detection": [ @@ -74033,7 +69392,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "XCOM 2: War of the Chosen", "game_detection": [ @@ -74048,7 +69406,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Back to Bed", "game_detection": [ @@ -74063,7 +69420,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Exodus", "game_detection": [ @@ -74078,7 +69434,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battlefield 1942 Demo", "game_detection": [ @@ -74100,7 +69455,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Moirai", "game_detection": [ @@ -74115,7 +69469,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "HoPiKo", "game_detection": [ @@ -74130,7 +69483,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead Cells", "game_detection": [ @@ -74149,7 +69501,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "I, Zombie", "game_detection": [ @@ -74164,7 +69515,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hegemony Rome: The Rise of Caesar", "game_detection": [ @@ -74179,7 +69529,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer: Mark Of Chaos", "game_detection": [ @@ -74191,7 +69540,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Maui", "game_detection": [ @@ -74206,7 +69554,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Avernum 6", "game_detection": [ @@ -74221,7 +69568,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Black Prophecy", "game_detection": [ @@ -74235,7 +69581,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Frontlines: Fuel of War", "game_detection": [ @@ -74256,7 +69601,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Turok", "game_detection": [ @@ -74269,7 +69613,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GoNNER", "game_detection": [ @@ -74287,7 +69630,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lethal League", "game_detection": [ @@ -74302,7 +69644,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MechWarrior 4: Vengeance", "game_detection": [ @@ -74314,7 +69655,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Secret Service", "game_detection": [ @@ -74326,7 +69666,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Airport Tycoon", "game_detection": [ @@ -74338,7 +69677,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dawngate", "game_detection": [ @@ -74352,7 +69690,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Z", "game_detection": [ @@ -74367,7 +69704,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kabod Online", "game_detection": [ @@ -74381,7 +69717,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "InMomentum", "game_detection": [ @@ -74396,7 +69731,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Arcana Heart 3 LOVE MAX!!!!!", "game_detection": [ @@ -74411,7 +69745,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Elemental: War of Magic", "game_detection": [ @@ -74423,7 +69756,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dragon Fin Soup", "game_detection": [ @@ -74438,7 +69770,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "CivCity: Rome", "game_detection": [ @@ -74455,7 +69786,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tribes: Ascend", "game_detection": [ @@ -74487,7 +69817,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Civil War II", "game_detection": [ @@ -74502,7 +69831,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "King Arthur’s Gold", "game_detection": [ @@ -74522,7 +69850,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sniper: Art of Victory", "game_detection": [ @@ -74542,7 +69869,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The King of Fighters 2002: Unlimited Match", "game_detection": [ @@ -74557,7 +69883,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fortnite", "game_detection": [ @@ -74570,7 +69895,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Thronebreaker: The Witcher Tales", "game_detection": [ @@ -74585,7 +69909,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "M.U.G.E.N", "game_detection": [ @@ -74596,7 +69919,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Elder Scrolls III: Morrowind - Game of the Year Edition", "game_detection": [ @@ -74611,7 +69933,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Evoland", "game_detection": [ @@ -74641,7 +69962,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Repopulation", "game_detection": [ @@ -74656,7 +69976,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Touhou Scarlet Curiosity", "game_detection": [ @@ -74670,7 +69989,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FreeJack", "game_detection": [ @@ -74683,7 +70001,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "VR Battle Grid", "game_detection": [ @@ -74699,7 +70016,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "K.O.S. Secret Operations", "game_detection": [ @@ -74712,7 +70028,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kingdom: New Lands", "game_detection": [ @@ -74727,7 +70042,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Synthesia", "game_detection": [ @@ -74738,7 +70052,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "I Am The Hero", "game_detection": [ @@ -74753,7 +70066,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pathfinder: Kingmaker", "game_detection": [ @@ -74764,7 +70076,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spartan", "game_detection": [ @@ -74776,7 +70087,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Project Nimbus", "game_detection": [ @@ -74791,7 +70101,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Baba Is You", "game_detection": [ @@ -74802,7 +70111,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Starion Tactics", "game_detection": [ @@ -74817,7 +70125,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Counter Agents", "game_detection": [ @@ -74832,7 +70139,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Soul of the Ultimate Nation", "game_detection": [ @@ -74847,7 +70153,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Ocean - The Last Hope", "game_detection": [ @@ -74861,7 +70166,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "IL-2 Sturmovik: 1946", "game_detection": [ @@ -74873,7 +70177,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Starpoint Gemini", "game_detection": [ @@ -74888,7 +70191,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims 2: Glamour Life Stuff", "game_detection": [ @@ -74900,7 +70202,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Transmissions: Element 120", "game_detection": [ @@ -74915,7 +70216,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Campaign Series: Fall Weiss", "game_detection": [ @@ -74930,7 +70230,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sid Meier's Civilization IV: Warlords", "game_detection": [ @@ -74963,7 +70262,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "Tian Long Ba Bu", "game_detection": [ @@ -74978,7 +70276,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Angry Birds Space", "game_detection": [ @@ -74993,7 +70290,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Space Run", "game_detection": [ @@ -75008,7 +70304,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Magical Diary", "game_detection": [ @@ -75023,7 +70318,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RAN Online", "game_detection": [ @@ -75036,7 +70330,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Imagine Earth Demo", "game_detection": [ @@ -75051,7 +70344,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Floor is Jelly", "game_detection": [ @@ -75071,7 +70363,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Counter-Strike ProMod", "game_detection": [ @@ -75088,7 +70379,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Worms Clan Wars", "game_detection": [ @@ -75103,7 +70393,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pool Nation FX", "game_detection": [ @@ -75118,7 +70407,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Telepath Tactics", "game_detection": [ @@ -75133,7 +70421,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Continue?9876543210", "game_detection": [ @@ -75153,7 +70440,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hostile Waters: Antaeus Rising", "game_detection": [ @@ -75168,7 +70454,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "We Were Here Too", "game_detection": [ @@ -75179,7 +70464,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Quatros Origins", "game_detection": [ @@ -75194,7 +70478,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Masterspace", "game_detection": [ @@ -75209,7 +70492,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Muv-Luv", "game_detection": [ @@ -75224,7 +70506,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NBA 2K15", "game_detection": [ @@ -75239,7 +70520,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Simply Chess", "game_detection": [ @@ -75254,7 +70534,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cannons Lasers Rockets", "game_detection": [ @@ -75269,7 +70548,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stranded Deep", "game_detection": [ @@ -75280,7 +70558,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "King of the Hat", "game_detection": [ @@ -75292,7 +70569,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shantae: Risky's Revenge", "game_detection": [ @@ -75307,7 +70583,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Luxor: 5th Passage", "game_detection": [ @@ -75322,7 +70597,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Poker Night 2", "game_detection": [ @@ -75337,7 +70611,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Waves²", "game_detection": [ @@ -75352,7 +70625,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Haegemonia: Legions of Iron", "game_detection": [ @@ -75372,7 +70644,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deadly 30", "game_detection": [ @@ -75392,7 +70663,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Scribblenauts Unmasked: A DC Comics Adventure", "game_detection": [ @@ -75407,7 +70677,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dragon Age: Inquisition", "game_detection": [ @@ -75419,7 +70688,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Desert Gunner", "game_detection": [ @@ -75434,7 +70702,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alchemy", "game_detection": [ @@ -75448,7 +70715,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sea of Thieves", "game_detection": [ @@ -75459,7 +70725,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dreamkiller", "game_detection": [ @@ -75474,7 +70739,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Slay the Spire", "game_detection": [ @@ -75488,7 +70752,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Universal Combat: A World Apart", "game_detection": [ @@ -75508,7 +70771,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hover: Revolt Of Gamers", "game_detection": [ @@ -75523,7 +70785,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Oh...Sir!", "game_detection": [ @@ -75538,7 +70799,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Swapper", "game_detection": [ @@ -75558,7 +70818,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gods Will Be Watching", "game_detection": [ @@ -75579,7 +70838,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Garry's Mod", "game_detection": [ @@ -75612,7 +70870,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NBA 2K10", "game_detection": [ @@ -75632,7 +70889,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Planet Busters", "game_detection": [ @@ -75647,7 +70903,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warmonger Operation: Downtown Destruction", "game_detection": [ @@ -75660,7 +70915,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Neverdaunt: 8Bit", "game_detection": [ @@ -75673,7 +70927,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Roller Champions", "game_detection": [ @@ -75684,7 +70937,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Legend of Heroes: Trails in the Sky", "game_detection": [ @@ -75699,7 +70951,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Next Big Thing", "game_detection": [ @@ -75714,7 +70965,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Scooby Doo & Looney Tunes Cartoon Universe: Adventure", "game_detection": [ @@ -75729,7 +70979,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Grim Fandango Remastered", "game_detection": [ @@ -75749,7 +70998,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Freddi Fish 4: The Case of the Hogfish Rustlers of Briny Gulch", "game_detection": [ @@ -75764,7 +71012,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vietcong 2", "game_detection": [ @@ -75777,7 +71024,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Plants vs. Zombies: Battle for Neighborville", "game_detection": [ @@ -75788,7 +71034,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eternal Senia", "game_detection": [ @@ -75803,7 +71048,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mahjong Quest 3", "game_detection": [ @@ -75818,7 +71062,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rocksmith 2014 Edition", "game_detection": [ @@ -75833,7 +71076,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Overload", "game_detection": [ @@ -75855,7 +71097,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Castlevania: Lords of Shadow", "game_detection": [ @@ -75870,7 +71111,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eden Star", "game_detection": [ @@ -75885,7 +71125,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ricochet: Lost Worlds", "game_detection": [ @@ -75908,7 +71147,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "killer7", "game_detection": [ @@ -75919,7 +71157,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Celtic Kings: Rage Of War", "game_detection": [ @@ -75931,7 +71168,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Scrapland", "game_detection": [ @@ -75943,7 +71179,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Build-A-Lot 2", "game_detection": [ @@ -75958,7 +71193,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Obscure", "game_detection": [ @@ -75973,7 +71207,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nom Nom Galaxy", "game_detection": [ @@ -75988,7 +71221,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Fall", "game_detection": [ @@ -76008,7 +71240,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Legend of Heroes: Trails of Cold Steel II", "game_detection": [ @@ -76029,7 +71260,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Life Goes On", "game_detection": [ @@ -76049,7 +71279,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "R. Y. L. Path of the Emperor", "game_detection": [ @@ -76069,7 +71298,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Lord of the Rings: The Battle for Middle-Earth", "game_detection": [ @@ -76082,7 +71310,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Naval War: Arctic Circle", "game_detection": [ @@ -76097,7 +71324,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Memoir 44 Online", "game_detection": [ @@ -76112,7 +71338,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heroes of Newerth", "game_detection": [ @@ -76131,7 +71356,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Puzzle Dimension", "game_detection": [ @@ -76146,7 +71370,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Smashing Toys", "game_detection": [ @@ -76161,7 +71384,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Reversion - The Meeting", "game_detection": [ @@ -76176,7 +71398,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Renegade Ops", "game_detection": [ @@ -76191,7 +71412,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Catz", "game_detection": [ @@ -76203,7 +71423,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Villagers & Heroes", "game_detection": [ @@ -76218,7 +71437,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lightfish", "game_detection": [ @@ -76233,7 +71451,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Probably Archery", "game_detection": [ @@ -76253,7 +71470,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Venetica", "game_detection": [ @@ -76266,7 +71482,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Audioshield", "game_detection": [ @@ -76282,7 +71497,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Traders: Frontiers", "game_detection": [ @@ -76296,7 +71510,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jurassic World Evolution", "game_detection": [ @@ -76307,7 +71520,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rise of Venice", "game_detection": [ @@ -76322,7 +71534,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Xiah Rebirth", "game_detection": [ @@ -76335,7 +71546,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Continent of the Ninth Seal", "game_detection": [ @@ -76356,7 +71566,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cloney", "game_detection": [ @@ -76371,7 +71580,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Chronicles of Narnia: Prince Caspian", "game_detection": [ @@ -76384,7 +71592,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ERR: 001", "game_detection": [ @@ -76399,7 +71606,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FORCED", "game_detection": [ @@ -76414,7 +71620,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tales of Monkey Island 5: Rise of the Pirate God", "game_detection": [ @@ -76434,7 +71639,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Counter-Strike: Condition Zero", "game_detection": [ @@ -76456,7 +71660,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Supreme Ruler 2020", "game_detection": [ @@ -76476,7 +71679,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Beholder 2", "game_detection": [ @@ -76487,7 +71689,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Who Is Mike - A Visual Novel", "game_detection": [ @@ -76502,7 +71703,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Euro Fishing", "game_detection": [ @@ -76517,7 +71717,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Police Simulator", "game_detection": [ @@ -76534,7 +71733,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gems of War", "game_detection": [ @@ -76549,7 +71747,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Football Manager 2013", "game_detection": [ @@ -76564,7 +71761,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fishing Craze", "game_detection": [ @@ -76579,7 +71775,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Carnage Racing", "game_detection": [ @@ -76594,7 +71789,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gray Matter", "game_detection": [ @@ -76609,7 +71803,6 @@ ] }, { - "force_display_capture": false, "region": "ES", "title": "Sevencore", "game_detection": [ @@ -76624,7 +71817,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Valkyria Chronicles", "game_detection": [ @@ -76639,7 +71831,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Strong Bad's Cool Game for Attractive People Episode 3: Baddest of the Bands", "game_detection": [ @@ -76661,7 +71852,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gimbal", "game_detection": [ @@ -76676,7 +71866,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crossout", "game_detection": [ @@ -76691,7 +71880,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Left 4 Dead 2 Demo", "game_detection": [ @@ -76706,7 +71894,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Banner Saga", "game_detection": [ @@ -76721,7 +71908,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shadowrun Chronicles", "game_detection": [ @@ -76736,7 +71922,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Royal Quest", "game_detection": [ @@ -76760,7 +71945,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alganon", "game_detection": [ @@ -76781,7 +71965,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Minecraft: Story Mode", "game_detection": [ @@ -76796,7 +71979,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "TERA: Rising", "game_detection": [ @@ -76817,7 +71999,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mortyr 2", "game_detection": [ @@ -76829,7 +72010,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "City Life 2008", "game_detection": [ @@ -76843,7 +72023,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fez", "game_detection": [ @@ -76873,7 +72052,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hearts of Iron 2: Complete", "game_detection": [ @@ -76888,7 +72066,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Code Hero", "game_detection": [ @@ -76901,7 +72078,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rising Storm 2: Vietnam", "game_detection": [ @@ -76916,7 +72092,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Volo Airsport", "game_detection": [ @@ -76928,7 +72103,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Chosen: Well of Souls", "game_detection": [ @@ -76941,7 +72115,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mining & Tunneling Simulator", "game_detection": [ @@ -76956,7 +72129,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Officers", "game_detection": [ @@ -76977,7 +72149,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stormworks: Build and Rescue", "game_detection": [ @@ -76992,7 +72163,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battlefield 2 Demo", "game_detection": [ @@ -77006,7 +72176,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Vagrant", "game_detection": [ @@ -77020,7 +72189,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Realms of Arkania: Blade of Destiny", "game_detection": [ @@ -77035,7 +72203,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Oceanhorn: Monster of Uncharted Seas", "game_detection": [ @@ -77050,7 +72217,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Moonlight Online", "game_detection": [ @@ -77063,7 +72229,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Galcon Legends", "game_detection": [ @@ -77083,7 +72248,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Elsword", "game_detection": [ @@ -77106,7 +72270,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ymir", "game_detection": [ @@ -77117,7 +72280,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chronicon", "game_detection": [ @@ -77128,7 +72290,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battlefield 1942", "game_detection": [ @@ -77141,7 +72302,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Retro Game Crunch", "game_detection": [ @@ -77161,7 +72321,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gettysburg: Armored Warfare", "game_detection": [ @@ -77176,7 +72335,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DiRT 4", "game_detection": [ @@ -77191,7 +72349,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Witcher 2", "game_detection": [ @@ -77212,7 +72369,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Speed Kills", "game_detection": [ @@ -77227,7 +72383,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "TRON RUN/r", "game_detection": [ @@ -77242,7 +72397,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Onimusha 3: Demon Siege", "game_detection": [ @@ -77254,7 +72408,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tesla Effect", "game_detection": [ @@ -77274,7 +72427,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hidden Mysteries: Notre Dame: Secrets of Paris", "game_detection": [ @@ -77286,7 +72438,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Serious Sam Classics: Revolution", "game_detection": [ @@ -77301,7 +72452,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ABE VR", "game_detection": [ @@ -77317,7 +72467,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sentinel", "game_detection": [ @@ -77332,7 +72481,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "UberSoldier", "game_detection": [ @@ -77344,7 +72492,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Epistory: Typing Chronicles", "game_detection": [ @@ -77359,7 +72506,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ShootMania Storm", "game_detection": [ @@ -77374,7 +72520,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Freedom Planet", "game_detection": [ @@ -77394,7 +72539,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MXGP 2", "game_detection": [ @@ -77409,7 +72553,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Iron Soul", "game_detection": [ @@ -77424,7 +72567,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Breach", "game_detection": [ @@ -77439,7 +72581,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MDK 2", "game_detection": [ @@ -77461,7 +72602,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Last Federation", "game_detection": [ @@ -77481,7 +72621,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Red Goddess: Inner World", "game_detection": [ @@ -77496,7 +72635,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "AudioSurf", "game_detection": [ @@ -77517,7 +72655,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Port of Call", "game_detection": [ @@ -77532,7 +72669,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Xeodrifter", "game_detection": [ @@ -77547,7 +72683,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "TrackMania Sunrise", "game_detection": [ @@ -77559,7 +72694,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heavy Bullets", "game_detection": [ @@ -77579,7 +72713,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Retrobooster", "game_detection": [ @@ -77600,7 +72733,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SteamWorld Dig", "game_detection": [ @@ -77620,7 +72752,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stronghold 3", "game_detection": [ @@ -77635,7 +72766,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Q.U.B.E: Director's Cut", "game_detection": [ @@ -77650,7 +72780,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hegemony: Philip of Macedon", "game_detection": [ @@ -77665,7 +72794,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tales from the Borderlands", "game_detection": [ @@ -77680,7 +72808,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dangerous High School Girls in Trouble", "game_detection": [ @@ -77695,7 +72822,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DRAGON QUEST HEROES II", "game_detection": [ @@ -77709,7 +72835,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BLUE REFLECTION", "game_detection": [ @@ -77724,7 +72849,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Need For Speed: High Stakes", "game_detection": [ @@ -77737,7 +72861,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Torchlight II", "game_detection": [ @@ -77759,7 +72882,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wandersong", "game_detection": [ @@ -77770,7 +72892,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Titan Quest Demo", "game_detection": [ @@ -77783,7 +72904,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "TRI", "game_detection": [ @@ -77798,7 +72918,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "M.A.V.", "game_detection": [ @@ -77813,7 +72932,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Atlas Reactor", "game_detection": [ @@ -77836,7 +72954,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dangerous Golf", "game_detection": [ @@ -77851,7 +72968,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rochard", "game_detection": [ @@ -77871,7 +72987,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Trench Attack!", "game_detection": [ @@ -77886,7 +73001,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mystery Maze Of Balthasar Castle", "game_detection": [ @@ -77901,7 +73015,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Homeworld 2", "game_detection": [ @@ -77914,7 +73027,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sid Meier’s Civilization VI", "game_detection": [ @@ -77929,7 +73041,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Darkwind: War on Wheels", "game_detection": [ @@ -77944,7 +73055,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Lady", "game_detection": [ @@ -77959,7 +73069,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Age of Wonders", "game_detection": [ @@ -77987,7 +73096,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blasphemous", "game_detection": [ @@ -77998,7 +73106,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Global Agenda", "game_detection": [ @@ -78029,7 +73136,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Paranautical Activity", "game_detection": [ @@ -78049,7 +73155,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Solstice Arena", "game_detection": [ @@ -78064,7 +73169,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Next Car Game", "game_detection": [ @@ -78079,7 +73183,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zenzizenzic", "game_detection": [ @@ -78094,7 +73197,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Full Spectrum Warrior", "game_detection": [ @@ -78109,7 +73211,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Panzer Command: Operation Winter Storm", "game_detection": [ @@ -78121,7 +73222,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Football Manager 2014", "game_detection": [ @@ -78136,7 +73236,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cognition: Episode 2 - The Wise Monkey", "game_detection": [ @@ -78148,7 +73247,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Out of the Park Baseball 15", "game_detection": [ @@ -78163,7 +73261,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Worms Crazy Golf", "game_detection": [ @@ -78178,7 +73275,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Euro Truck Simulator", "game_detection": [ @@ -78193,7 +73289,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Aces Wild", "game_detection": [ @@ -78208,7 +73303,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dig or Die", "game_detection": [ @@ -78222,7 +73316,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tom Clancy's Ghost Recon Advanced Warfighter Demo", "game_detection": [ @@ -78235,7 +73328,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Call of Duty: WWII", "game_detection": [ @@ -78258,7 +73350,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Escapists: The Walking Dead", "game_detection": [ @@ -78273,7 +73364,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NBA 2K19", "game_detection": [ @@ -78287,7 +73377,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DuckTales: Remastered", "game_detection": [ @@ -78302,7 +73391,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Brick Rigs", "game_detection": [ @@ -78313,7 +73401,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nancy Drew: Last Train to Blue Moon Canyon", "game_detection": [ @@ -78328,7 +73415,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nancy Drew: The Haunted Carousel", "game_detection": [ @@ -78343,7 +73429,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Privates", "game_detection": [ @@ -78355,7 +73440,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lifeless", "game_detection": [ @@ -78375,7 +73459,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rohan: Blood Feud", "game_detection": [ @@ -78401,7 +73484,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hello Kitty: Cutie World", "game_detection": [ @@ -78413,7 +73495,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vendetta: Curse of Raven's Cry", "game_detection": [ @@ -78428,7 +73509,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "S.T.A.L.K.E.R. Clear Sky", "game_detection": [ @@ -78449,7 +73529,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fragmented", "game_detection": [ @@ -78464,7 +73543,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Ultimate Doom", "game_detection": [ @@ -78479,7 +73557,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ancestor's Legacy", "game_detection": [ @@ -78493,7 +73570,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Emerald City Confidential", "game_detection": [ @@ -78508,7 +73584,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Master of Orion", "game_detection": [ @@ -78523,7 +73598,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "Special Force", "game_detection": [ @@ -78537,7 +73611,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ace Combat 7", "game_detection": [ @@ -78548,7 +73621,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "F1 2014", "game_detection": [ @@ -78563,7 +73635,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nioh", "game_detection": [ @@ -78577,7 +73648,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Earth Defense Force: Insect Armageddon", "game_detection": [ @@ -78592,7 +73662,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warrior Epic", "game_detection": [ @@ -78617,7 +73686,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "2029 Online", "game_detection": [ @@ -78631,7 +73699,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Air Forte", "game_detection": [ @@ -78646,7 +73713,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "War Inc. Battle Zone", "game_detection": [ @@ -78667,7 +73733,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Starvoid", "game_detection": [ @@ -78681,7 +73746,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zheng Tu 2S", "game_detection": [ @@ -78695,7 +73759,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Anomaly: Warzone Earth", "game_detection": [ @@ -78715,7 +73778,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Magic: The Gathering: Duels of the Planeswalkers 2012", "game_detection": [ @@ -78730,7 +73792,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Picross Touch", "game_detection": [ @@ -78745,7 +73806,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zen Bound 2", "game_detection": [ @@ -78765,7 +73825,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Asda Story", "game_detection": [ @@ -78779,7 +73838,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Democracy 3", "game_detection": [ @@ -78799,7 +73857,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hyperdimension Neptunia Re;Birth3: V Generation", "game_detection": [ @@ -78814,7 +73871,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Devil Whiskey", "game_detection": [ @@ -78827,7 +73883,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Strike Suit Zero: Director's Cut", "game_detection": [ @@ -78842,7 +73897,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Serious Sam HD: The Second Encounter", "game_detection": [ @@ -78857,7 +73911,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Achron", "game_detection": [ @@ -78872,7 +73925,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warfork", "game_detection": [ @@ -78883,7 +73935,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Average Everyday Adventures of Samantha Browne", "game_detection": [ @@ -78898,7 +73949,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hard Reset", "game_detection": [ @@ -78918,7 +73968,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Poöf", "game_detection": [ @@ -78940,7 +73989,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fighting EX Layer", "game_detection": [ @@ -78951,7 +73999,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deus Machina Demonbane", "game_detection": [ @@ -78963,7 +74010,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "McDROID", "game_detection": [ @@ -78978,7 +74024,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Larva Mortus", "game_detection": [ @@ -78993,7 +74038,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Settlers: Fourth Edition", "game_detection": [ @@ -79007,7 +74051,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FORGE", "game_detection": [ @@ -79028,7 +74071,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Electric Highways", "game_detection": [ @@ -79043,7 +74085,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Garry's Mod 13 Beta", "game_detection": [ @@ -79058,7 +74099,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Probability 0", "game_detection": [ @@ -79073,7 +74113,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Football Manager Live", "game_detection": [ @@ -79085,7 +74124,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Feist", "game_detection": [ @@ -79100,7 +74138,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gumboy Tournament", "game_detection": [ @@ -79115,7 +74152,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Creature Conflict: The Clan Wars", "game_detection": [ @@ -79127,7 +74163,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ONE PIECE World Seeker", "game_detection": [ @@ -79138,7 +74173,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Aerena", "game_detection": [ @@ -79153,7 +74187,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "INVERSUS", "game_detection": [ @@ -79168,7 +74201,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deus Ex: Revision", "game_detection": [ @@ -79183,7 +74215,6 @@ ] }, { - "force_display_capture": false, "region": "BR", "title": "Allods Online", "game_detection": [ @@ -79197,7 +74228,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lonely Mountains: Downhill", "game_detection": [ @@ -79208,7 +74238,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sam & Max Episode 201: Ice Station Santa", "game_detection": [ @@ -79228,7 +74257,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wild Metal Country", "game_detection": [ @@ -79244,7 +74272,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Petz: Dogz 2", "game_detection": [ @@ -79259,7 +74286,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "War for the Overworld", "game_detection": [ @@ -79274,7 +74300,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "IL-2 Sturmovik: Forgotten Battles", "game_detection": [ @@ -79286,7 +74311,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gunjack", "game_detection": [ @@ -79302,7 +74326,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eon Altar", "game_detection": [ @@ -79317,7 +74340,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Room Three", "game_detection": [ @@ -79328,7 +74350,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hellgate: London Demo", "game_detection": [ @@ -79342,7 +74363,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lone Survivor", "game_detection": [ @@ -79356,7 +74376,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blade of Destiny", "game_detection": [ @@ -79369,7 +74388,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Joint Operations: Combined Arms Gold", "game_detection": [ @@ -79384,7 +74402,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "KYOTO TANOJI QUEST", "game_detection": [ @@ -79399,7 +74416,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blacklight Retribution", "game_detection": [ @@ -79439,7 +74455,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Dragonica Online", "game_detection": [ @@ -79475,7 +74490,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Act of Aggression", "game_detection": [ @@ -79490,7 +74504,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Air Control", "game_detection": [ @@ -79505,7 +74518,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Split/Second", "game_detection": [ @@ -79525,7 +74537,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Path", "game_detection": [ @@ -79540,7 +74551,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Psychonauts", "game_detection": [ @@ -79565,7 +74575,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Quantum Conundrum", "game_detection": [ @@ -79580,7 +74589,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Victim of Xen", "game_detection": [ @@ -79595,7 +74603,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "District 187: Sin Streets", "game_detection": [ @@ -79617,7 +74624,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MashON SPORE Comic Book Creator", "game_detection": [ @@ -79629,7 +74635,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2015", "game_detection": [ @@ -79644,7 +74649,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ARMA II", "game_detection": [ @@ -79664,7 +74668,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Serena", "game_detection": [ @@ -79679,7 +74682,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hexen: Deathkings of the Dark Citadel", "game_detection": [ @@ -79694,7 +74696,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rocket Knight", "game_detection": [ @@ -79709,7 +74710,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hard Truck Apocalypse: Arcade", "game_detection": [ @@ -79724,7 +74724,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Under a Killing Moon", "game_detection": [ @@ -79739,7 +74738,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Metro 2033 Redux", "game_detection": [ @@ -79754,7 +74752,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "My Riding Stables", "game_detection": [ @@ -79769,7 +74766,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "COR", "game_detection": [ @@ -79783,7 +74779,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Legend of Heroes: Trails of Cold Steel", "game_detection": [ @@ -79798,7 +74793,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bejeweled Blitz", "game_detection": [ @@ -79811,7 +74805,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sword Art Online: Lost Song", "game_detection": [ @@ -79822,7 +74815,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tales of Monkey Island 2: The Siege of Spinner Cay", "game_detection": [ @@ -79842,7 +74834,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Full Metal Furies", "game_detection": [ @@ -79856,7 +74847,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Silent Storm", "game_detection": [ @@ -79871,7 +74861,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Running with Rifles", "game_detection": [ @@ -79886,7 +74875,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Demolition Inc.", "game_detection": [ @@ -79901,7 +74889,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Medal of Honor: Pacific Assault", "game_detection": [ @@ -79914,7 +74901,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Colin McRae Rally 2.0", "game_detection": [ @@ -79926,7 +74912,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Forager", "game_detection": [ @@ -79937,7 +74922,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mall Tycoon", "game_detection": [ @@ -79950,7 +74934,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FreeOrion", "game_detection": [ @@ -79963,7 +74946,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Farm Frenzy", "game_detection": [ @@ -79978,7 +74960,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nights of Azure 2", "game_detection": [ @@ -79993,7 +74974,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Operation Flashpoint: Dragon Rising", "game_detection": [ @@ -80013,7 +74993,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "Black Desert", "game_detection": [ @@ -80027,7 +75006,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Agarest: Generations of War 2", "game_detection": [ @@ -80042,7 +75020,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NHL 2006", "game_detection": [ @@ -80054,7 +75031,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims 2: Open for Business", "game_detection": [ @@ -80066,7 +75042,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "TV Trouble", "game_detection": [ @@ -80081,7 +75056,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Outlast 2", "game_detection": [ @@ -80092,7 +75066,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wolcen: Lords of Mayhem", "game_detection": [ @@ -80103,7 +75076,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Call of Duty", "game_detection": [ @@ -80138,7 +75110,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "WolfQuest", "game_detection": [ @@ -80150,7 +75121,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ROSE Online", "game_detection": [ @@ -80178,7 +75148,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Divinia", "game_detection": [ @@ -80192,7 +75161,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "CHAOS CODE -NEW SIGN OF CATASTROPHE-", "game_detection": [ @@ -80207,7 +75175,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Plant Tycoon", "game_detection": [ @@ -80222,7 +75189,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Yu-Gi-Oh! Online: Duel Evolution", "game_detection": [ @@ -80236,7 +75202,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "CardMon Hero", "game_detection": [ @@ -80250,7 +75215,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "VVVVVV", "game_detection": [ @@ -80274,7 +75238,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Delta Force: Xtreme 2", "game_detection": [ @@ -80294,7 +75257,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shadowgrounds", "game_detection": [ @@ -80314,7 +75276,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sonic Forces", "game_detection": [ @@ -80328,7 +75289,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rexodus: A VR Story Experience", "game_detection": [ @@ -80344,7 +75304,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Paradise Poker.com", "game_detection": [ @@ -80363,7 +75322,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hero Online", "game_detection": [ @@ -80376,7 +75334,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Call of Duty 2 Demo", "game_detection": [ @@ -80389,7 +75346,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Insanity Clicker", "game_detection": [ @@ -80404,7 +75360,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nodiatis", "game_detection": [ @@ -80419,7 +75374,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Governor of Poker 2", "game_detection": [ @@ -80434,7 +75388,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MirrorMoon EP", "game_detection": [ @@ -80454,7 +75407,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rust", "game_detection": [ @@ -80469,7 +75421,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Angry Video Game Nerd Adventures", "game_detection": [ @@ -80484,7 +75435,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mini Fighter", "game_detection": [ @@ -80497,7 +75447,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Doom Rails", "game_detection": [ @@ -80512,7 +75461,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MapleStory", "game_detection": [ @@ -80540,7 +75488,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mr. Bree+", "game_detection": [ @@ -80560,7 +75507,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sum of All Fears", "game_detection": [ @@ -80575,7 +75521,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lemma", "game_detection": [ @@ -80590,7 +75535,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pokémon World Online", "game_detection": [ @@ -80613,7 +75557,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Resident Evil 0 Remaster", "game_detection": [ @@ -80628,7 +75571,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Half-Life 2", "game_detection": [ @@ -80644,7 +75586,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cake Mania", "game_detection": [ @@ -80659,7 +75600,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LEGO Star Wars III: The Clone Wars", "game_detection": [ @@ -80679,7 +75619,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Construction Machines 2014", "game_detection": [ @@ -80694,7 +75633,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Farming Simulator 2011", "game_detection": [ @@ -80709,7 +75647,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dragon Spear", "game_detection": [ @@ -80723,7 +75660,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tropico 4", "game_detection": [ @@ -80748,7 +75684,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NaissanceE", "game_detection": [ @@ -80763,7 +75698,6 @@ ] }, { - "force_display_capture": false, "region": "UK", "title": "Lucent Heart", "game_detection": [ @@ -80777,7 +75711,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lost Empire: Immortals", "game_detection": [ @@ -80790,7 +75723,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mutant Storm Reloaded", "game_detection": [ @@ -80805,7 +75737,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cloud Nine", "game_detection": [ @@ -80818,7 +75749,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Unepic", "game_detection": [ @@ -80844,7 +75774,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Velocity 2X", "game_detection": [ @@ -80859,7 +75788,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Novelist", "game_detection": [ @@ -80879,7 +75807,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sherlock Holmes: The Mystery of the Mummy", "game_detection": [ @@ -80894,7 +75821,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Black Mesa", "game_detection": [ @@ -80915,7 +75841,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Legions of Steel", "game_detection": [ @@ -80930,7 +75855,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mutant Year Zero: Road to Eden", "game_detection": [ @@ -80941,7 +75865,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bloodstained: Ritual of the Night", "game_detection": [ @@ -80956,7 +75879,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blueberry Garden", "game_detection": [ @@ -80971,7 +75893,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Uncharted Waters Online", "game_detection": [ @@ -81008,7 +75929,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Art of War: Red Tides", "game_detection": [ @@ -81023,7 +75943,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hyper Fighters", "game_detection": [ @@ -81038,7 +75957,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Divergence", "game_detection": [ @@ -81053,7 +75971,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Halo: Custom Edition", "game_detection": [ @@ -81065,7 +75982,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battle For Graxia", "game_detection": [ @@ -81086,7 +76002,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ankh: Heart of Osiris", "game_detection": [ @@ -81098,7 +76013,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Xonotic", "game_detection": [ @@ -81110,7 +76024,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Game Tycoon", "game_detection": [ @@ -81127,7 +76040,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Of Orcs and Men", "game_detection": [ @@ -81142,7 +76054,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deceit", "game_detection": [ @@ -81157,7 +76068,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zombie Shooter", "game_detection": [ @@ -81172,7 +76082,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "John Deere American Farmer", "game_detection": [ @@ -81184,7 +76093,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chompy Chomp Chomp", "game_detection": [ @@ -81204,7 +76112,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Out of the Park Baseball 20", "game_detection": [ @@ -81219,7 +76126,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rules of Survival", "game_detection": [ @@ -81245,7 +76151,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Grand Chase", "game_detection": [ @@ -81288,7 +76193,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crysis Demo", "game_detection": [ @@ -81302,7 +76206,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Planet Coaster", "game_detection": [ @@ -81317,7 +76220,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spelunky!", "game_detection": [ @@ -81337,7 +76239,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Deer God", "game_detection": [ @@ -81352,7 +76253,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alternativa", "game_detection": [ @@ -81367,7 +76267,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ultionus: A Tale of Petty Revenge", "game_detection": [ @@ -81382,7 +76281,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "METAL GEAR SURVIVE", "game_detection": [ @@ -81396,7 +76294,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Unstoppable Gorg", "game_detection": [ @@ -81416,7 +76313,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mystery P.I.: The New York Fortune", "game_detection": [ @@ -81431,7 +76327,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "XEN Online", "game_detection": [ @@ -81444,7 +76339,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Killer is Dead - Nightmare Edition", "game_detection": [ @@ -81459,7 +76353,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MX Simulator", "game_detection": [ @@ -81470,7 +76363,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Champions of Regnum", "game_detection": [ @@ -81483,7 +76375,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hell's Kitchen", "game_detection": [ @@ -81495,7 +76386,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DiRT 2", "game_detection": [ @@ -81516,7 +76406,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ACE Academy", "game_detection": [ @@ -81531,7 +76420,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shelter", "game_detection": [ @@ -81551,7 +76439,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Two Worlds II", "game_detection": [ @@ -81572,7 +76459,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tiger Knight: Empire War", "game_detection": [ @@ -81587,7 +76473,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Scarlet Blade", "game_detection": [ @@ -81602,7 +76487,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lionheart: Legacy of the Crusader", "game_detection": [ @@ -81619,7 +76503,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Council", "game_detection": [ @@ -81630,7 +76513,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tales of Pirates II", "game_detection": [ @@ -81644,7 +76526,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deer Hunter Tournament", "game_detection": [ @@ -81656,7 +76537,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MVP Baseball 2005", "game_detection": [ @@ -81668,7 +76548,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Monday Night Combat", "game_detection": [ @@ -81695,7 +76574,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Medal of Honor: Airborne Demo", "game_detection": [ @@ -81709,7 +76587,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "AdVenture Capitalist", "game_detection": [ @@ -81724,7 +76601,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GM Rally", "game_detection": [ @@ -81744,7 +76620,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Great War Nations: The Spartans", "game_detection": [ @@ -81761,7 +76636,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BROFORCE", "game_detection": [ @@ -81786,7 +76660,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DEAD OR ALIVE Xtreme Venus Vacation", "game_detection": [ @@ -81801,7 +76674,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tomb Raider 2", "game_detection": [ @@ -81821,7 +76693,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dropzone", "game_detection": [ @@ -81836,7 +76707,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "eXceed – Gun Bullet Children", "game_detection": [ @@ -81857,7 +76727,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heroes of SoulCraft", "game_detection": [ @@ -81872,7 +76741,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Imagine Me", "game_detection": [ @@ -81887,7 +76755,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Space Cowboy Online", "game_detection": [ @@ -81908,7 +76775,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rogue Legacy", "game_detection": [ @@ -81928,7 +76794,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alien Rage", "game_detection": [ @@ -81943,7 +76808,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tokyo Xanadu eX+", "game_detection": [ @@ -81957,7 +76821,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Carte", "game_detection": [ @@ -81971,7 +76834,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead Rising 3", "game_detection": [ @@ -81986,7 +76848,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Putt-Putt Saves the Zoo", "game_detection": [ @@ -82001,7 +76862,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Voodoo Whisperer Curse of a Legend", "game_detection": [ @@ -82016,7 +76876,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Age of Mythology", "game_detection": [ @@ -82037,7 +76896,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Soul Order Online", "game_detection": [ @@ -82051,7 +76909,6 @@ ] }, { - "force_display_capture": false, "region": "VN", "title": "World of Tanks", "game_detection": [ @@ -82065,7 +76922,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "PT Boats: Knights of the Sea", "game_detection": [ @@ -82080,7 +76936,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Huntsman: Winter's Curse", "game_detection": [ @@ -82095,7 +76950,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sins of a Solar Empire", "game_detection": [ @@ -82107,7 +76961,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cloud Chamber", "game_detection": [ @@ -82122,7 +76975,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Idling to Rule the Gods", "game_detection": [ @@ -82141,7 +76993,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hard West", "game_detection": [ @@ -82156,7 +77007,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Harley Davidson: Race to the Rally", "game_detection": [ @@ -82169,7 +77019,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "Audition Dance", "game_detection": [ @@ -82183,7 +77032,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dynasty Warriors 7: Xtreme Legends Definitive Edition", "game_detection": [ @@ -82202,7 +77050,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Loom", "game_detection": [ @@ -82217,7 +77064,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kingdom Heroes", "game_detection": [ @@ -82231,7 +77077,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Echoes of Sorrow", "game_detection": [ @@ -82244,7 +77089,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zafehouse: Diaries", "game_detection": [ @@ -82259,7 +77103,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dynasty Warriors 8 Xtreme Legends", "game_detection": [ @@ -82274,7 +77117,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Devil May Cry 2", "game_detection": [ @@ -82288,7 +77130,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "8BitBoy", "game_detection": [ @@ -82303,7 +77144,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer Online: Wrath of Heroes", "game_detection": [ @@ -82316,7 +77156,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Prince of Persia: Warrior Within", "game_detection": [ @@ -82329,7 +77168,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Realms of Arkania III: Shadows Over Riva", "game_detection": [ @@ -82344,7 +77182,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Yaiba: Ninja Gaiden Z", "game_detection": [ @@ -82359,7 +77196,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Auto Assault", "game_detection": [ @@ -82373,7 +77209,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Raven - Legacy of a Master Thief", "game_detection": [ @@ -82388,7 +77223,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Breached", "game_detection": [ @@ -82403,7 +77237,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Great Battles: Medieval", "game_detection": [ @@ -82420,7 +77253,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cognition: Episode 1 - The Hangman Demo", "game_detection": [ @@ -82432,7 +77264,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Need For Speed: Porsche Unleashed", "game_detection": [ @@ -82445,7 +77276,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Basketball Pro Management 2014", "game_detection": [ @@ -82460,7 +77290,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "World of Battles", "game_detection": [ @@ -82481,7 +77310,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Space Rangers 2: The Rise of the Dominators", "game_detection": [ @@ -82493,7 +77321,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Football Manager 2009", "game_detection": [ @@ -82513,7 +77340,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Monopoly Tycoon", "game_detection": [ @@ -82525,7 +77351,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Perimeter II: New Earth", "game_detection": [ @@ -82545,7 +77370,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warrior Kings: Battles", "game_detection": [ @@ -82560,7 +77384,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Moving Hazard", "game_detection": [ @@ -82575,7 +77398,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dragon of Heaven", "game_detection": [ @@ -82589,7 +77411,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Holy Potatoes! What the Hell?!", "game_detection": [ @@ -82603,7 +77424,6 @@ ] }, { - "force_display_capture": false, "region": "JP", "title": "Phantasy Star Online 2", "game_detection": [ @@ -82616,7 +77436,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "KnightShift", "game_detection": [ @@ -82631,7 +77450,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Clown House", "game_detection": [ @@ -82646,7 +77464,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Epic Battle Fantasy 3", "game_detection": [ @@ -82662,7 +77479,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ISLANDERS", "game_detection": [ @@ -82681,7 +77497,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Year Walk", "game_detection": [ @@ -82701,7 +77516,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Codename Panzers: Cold War", "game_detection": [ @@ -82713,7 +77527,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crysis 2 Demo", "game_detection": [ @@ -82735,7 +77548,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MacGuffin's Curse", "game_detection": [ @@ -82749,7 +77561,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Word Harmony Deluxe", "game_detection": [ @@ -82762,7 +77573,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Batman: Arkham Origins", "game_detection": [ @@ -82777,7 +77587,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kaneva", "game_detection": [ @@ -82791,7 +77600,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sword of the Stars: A Murder of Crows", "game_detection": [ @@ -82804,7 +77612,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Portal Stories: VR", "game_detection": [ @@ -82820,7 +77627,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BloodRayne: Betrayal", "game_detection": [ @@ -82835,7 +77641,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Elven Legacy", "game_detection": [ @@ -82855,7 +77660,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sevencore", "game_detection": [ @@ -82868,7 +77672,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Darkfall: Unholy Wars", "game_detection": [ @@ -82883,7 +77686,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "X Rebirth", "game_detection": [ @@ -82898,7 +77700,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Purble Place", "game_detection": [ @@ -82917,7 +77718,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shiny The Firefly", "game_detection": [ @@ -82932,7 +77732,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Space Empires V", "game_detection": [ @@ -82952,7 +77751,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RollerCoaster Tycoon 3", "game_detection": [ @@ -82974,7 +77772,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sacred Tears TRUE", "game_detection": [ @@ -82989,7 +77786,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "World War II: Time of Wrath", "game_detection": [ @@ -83004,7 +77800,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "One Troll Army", "game_detection": [ @@ -83019,7 +77814,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crysis", "game_detection": [ @@ -83046,7 +77840,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Puzzle Quest: Galactrix", "game_detection": [ @@ -83066,7 +77859,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deus Ex: Invisible War", "game_detection": [ @@ -83094,7 +77886,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Big Mutha Truckers 2", "game_detection": [ @@ -83107,7 +77898,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spice Road", "game_detection": [ @@ -83122,7 +77912,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Settlers: Rise of an Empire", "game_detection": [ @@ -83135,7 +77924,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Guild 2: Renaissance", "game_detection": [ @@ -83155,7 +77943,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Motor Rock", "game_detection": [ @@ -83170,7 +77957,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Deer", "game_detection": [ @@ -83185,7 +77971,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Darkspore", "game_detection": [ @@ -83225,7 +78010,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FlatOut: Ultimate Carnage", "game_detection": [ @@ -83246,7 +78030,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "枪神纪", "game_detection": [ @@ -83260,7 +78043,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Open Sonic", "game_detection": [ @@ -83272,7 +78054,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Getsuei Gakuen -kou-", "game_detection": [ @@ -83287,7 +78068,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heaven Benchmark", "game_detection": [ @@ -83302,7 +78082,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "WORLD END ECONOMiCA episode.03", "game_detection": [ @@ -83317,7 +78096,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Grey Goo", "game_detection": [ @@ -83332,7 +78110,6 @@ ] }, { - "force_display_capture": false, "region": "TR", "title": "MStar", "game_detection": [ @@ -83345,7 +78122,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sol Survivor", "game_detection": [ @@ -83360,7 +78136,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "QQ Match Master", "game_detection": [ @@ -83373,7 +78148,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ARK: Survival Evolved", "game_detection": [ @@ -83388,7 +78162,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Reign Of Kings", "game_detection": [ @@ -83404,7 +78177,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sleeping Dogs", "game_detection": [ @@ -83419,7 +78191,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "City of Heroes Going Rogue", "game_detection": [ @@ -83434,7 +78205,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ironclads: Chincha Islands War 1866", "game_detection": [ @@ -83449,7 +78219,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tom Clancy's The Division", "game_detection": [ @@ -83478,7 +78247,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Quake 4", "game_detection": [ @@ -83499,7 +78267,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "OMG Zombies!", "game_detection": [ @@ -83514,7 +78281,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "AirMech", "game_detection": [ @@ -83534,7 +78300,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Coma: Mortuary", "game_detection": [ @@ -83549,7 +78314,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "You Have 10 Seconds", "game_detection": [ @@ -83564,7 +78328,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Yakuza 0", "game_detection": [ @@ -83578,7 +78341,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro Cycling Manager: Tour de France 2009", "game_detection": [ @@ -83593,7 +78355,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Men of War: Assault Squad", "game_detection": [ @@ -83608,7 +78369,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Championship Manager 2006", "game_detection": [ @@ -83620,7 +78380,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Glory of the Roman Empire", "game_detection": [ @@ -83633,7 +78392,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hacker Evolution: Untold", "game_detection": [ @@ -83648,7 +78406,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Poker Stars", "game_detection": [ @@ -83661,7 +78418,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Coffin Dodgers", "game_detection": [ @@ -83676,7 +78432,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Combat Arms: Reloaded", "game_detection": [ @@ -83687,7 +78442,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Smash Cars", "game_detection": [ @@ -83702,7 +78456,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "Counter-Strike Online 2", "game_detection": [ @@ -83724,7 +78477,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Farm Frenzy 3", "game_detection": [ @@ -83739,7 +78491,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Madden NFL 08", "game_detection": [ @@ -83752,7 +78503,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Wars: Republic Commando", "game_detection": [ @@ -83773,7 +78523,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blokus World Tour", "game_detection": [ @@ -83786,7 +78535,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Populous The Beginning Undiscovered Worlds", "game_detection": [ @@ -83799,7 +78547,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mystery Case Files Madame Fate", "game_detection": [ @@ -83814,7 +78561,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Numen: Contest of Heroes", "game_detection": [ @@ -83829,7 +78575,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "F.E.A.R. 2: Project Origin", "game_detection": [ @@ -83849,7 +78594,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chicken Shoot", "game_detection": [ @@ -83864,7 +78608,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fortix 2", "game_detection": [ @@ -83878,7 +78621,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tomb Raider", "game_detection": [ @@ -83893,7 +78635,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DRAGON BALL FighterZ", "game_detection": [ @@ -83907,7 +78648,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Strikers Edge", "game_detection": [ @@ -83921,7 +78661,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Knock-knock", "game_detection": [ @@ -83941,7 +78680,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fallout Shelter", "game_detection": [ @@ -83954,7 +78692,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sword Coast Legends", "game_detection": [ @@ -83969,7 +78706,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battleplan: American Civil War", "game_detection": [ @@ -83984,7 +78720,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rise of Nations: Rise of Legends", "game_detection": [ @@ -83996,7 +78731,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LMA Manager 2007", "game_detection": [ @@ -84008,7 +78742,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Baldur's Gate II: Shadows of Amn", "game_detection": [ @@ -84029,7 +78762,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NARUTO: Ultimate Ninja STORM", "game_detection": [ @@ -84044,7 +78776,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Goat Simulator", "game_detection": [ @@ -84063,7 +78794,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Dragon Nest", "game_detection": [ @@ -84084,7 +78814,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims Online", "game_detection": [ @@ -84097,7 +78826,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hyper Light Drifter", "game_detection": [ @@ -84112,7 +78840,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Murdered: Soul Suspect", "game_detection": [ @@ -84127,7 +78854,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Colour Bind", "game_detection": [ @@ -84142,7 +78868,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tradewinds Odyssey", "game_detection": [ @@ -84157,7 +78882,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Mario Bros: Revenge of Bowser", "game_detection": [ @@ -84169,7 +78893,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Project Syria", "game_detection": [ @@ -84185,7 +78908,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mark of the Ninja", "game_detection": [ @@ -84206,7 +78928,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "aerofly FS", "game_detection": [ @@ -84221,7 +78942,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "UltraStar", "game_detection": [ @@ -84234,7 +78954,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Chosen", "game_detection": [ @@ -84248,7 +78967,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Water Bears VR", "game_detection": [ @@ -84263,7 +78981,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Wars Galaxies: An Empire Divided", "game_detection": [ @@ -84316,7 +79033,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Trek Online", "game_detection": [ @@ -84348,7 +79064,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Secret World", "game_detection": [ @@ -84383,7 +79098,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark Age of Camelot: Shrouded Isles", "game_detection": [ @@ -84397,7 +79111,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Frederic: Evil Strikes Back", "game_detection": [ @@ -84412,7 +79125,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Prince of Persia: The Forgotten Sands", "game_detection": [ @@ -84432,7 +79144,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Little Racers STREET", "game_detection": [ @@ -84447,7 +79158,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Wars: Battlefront", "game_detection": [ @@ -84460,7 +79170,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Romance of Rome", "game_detection": [ @@ -84475,7 +79184,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Borderlands: The Pre-Sequel", "game_detection": [ @@ -84490,7 +79198,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Road Redemption", "game_detection": [ @@ -84511,7 +79218,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gatling Gears", "game_detection": [ @@ -84531,7 +79237,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SimCity: Societies", "game_detection": [ @@ -84543,7 +79248,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Teenage Mutant Ninja Turtles: Out of the Shadows", "game_detection": [ @@ -84558,7 +79262,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Halcyon 6", "game_detection": [ @@ -84573,7 +79276,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Spatials", "game_detection": [ @@ -84588,7 +79290,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ridge Racer Driftopia", "game_detection": [ @@ -84603,7 +79304,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Bottom of the Well", "game_detection": [ @@ -84618,7 +79318,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Command & Conquer: Red Alert 3 Beta", "game_detection": [ @@ -84631,7 +79330,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Football Manager 2010", "game_detection": [ @@ -84651,7 +79349,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Reign: Conflict of Nations", "game_detection": [ @@ -84666,7 +79363,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Clockwork Man", "game_detection": [ @@ -84681,7 +79377,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Manga Fighter", "game_detection": [ @@ -84695,7 +79390,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Act of War: Direct Action", "game_detection": [ @@ -84715,7 +79409,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Young Justice: Legacy", "game_detection": [ @@ -84730,7 +79423,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Atelier Sophie: The Alchemist of the Mysterious Book", "game_detection": [ @@ -84745,7 +79437,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Escapists", "game_detection": [ @@ -84760,7 +79451,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Armageddon - Da Orks", "game_detection": [ @@ -84775,7 +79465,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mortal Kombat Komplete Edition", "game_detection": [ @@ -84790,7 +79479,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Narco Terror", "game_detection": [ @@ -84805,7 +79493,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Richard Burns Rally", "game_detection": [ @@ -84823,7 +79510,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A.I. Invasion", "game_detection": [ @@ -84838,7 +79524,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RIP", "game_detection": [ @@ -84853,7 +79538,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Burnstar", "game_detection": [ @@ -84868,7 +79552,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Unreal Gold", "game_detection": [ @@ -84883,7 +79566,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "bit Dungeon II", "game_detection": [ @@ -84898,7 +79580,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Please State Your Name", "game_detection": [ @@ -84914,7 +79595,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Soccer Rage", "game_detection": [ @@ -84929,7 +79609,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Lord of the Rings: The Battle for Middle-Earth 2: The Rise of the Witch-King", "game_detection": [ @@ -84943,7 +79622,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "F1 2019", "game_detection": [ @@ -84962,7 +79640,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heroes Over Europe", "game_detection": [ @@ -84982,7 +79659,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warriors Orochi 4", "game_detection": [ @@ -84993,7 +79669,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gentlemen!", "game_detection": [ @@ -85008,7 +79683,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Echo Of Soul", "game_detection": [ @@ -85030,7 +79704,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jets 'n' Guns", "game_detection": [ @@ -85045,7 +79718,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shadowbound", "game_detection": [ @@ -85058,7 +79730,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hotel Giant 2", "game_detection": [ @@ -85078,7 +79749,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Painkiller: Resurrection", "game_detection": [ @@ -85099,7 +79769,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rocketbirds: Hardboiled Chicken", "game_detection": [ @@ -85114,7 +79783,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Project I/O", "game_detection": [ @@ -85126,7 +79794,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Brothers in Arms: Hell's Highway", "game_detection": [ @@ -85147,7 +79814,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SUPERFIGHT", "game_detection": [ @@ -85162,7 +79828,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Guns and Robots", "game_detection": [ @@ -85177,7 +79842,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Age of Conquest IV", "game_detection": [ @@ -85192,7 +79856,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Microsoft Flight", "game_detection": [ @@ -85212,7 +79875,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims", "game_detection": [ @@ -85224,7 +79886,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Age of Conan: Unchained", "game_detection": [ @@ -85258,7 +79919,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mausoleum of the Medusa", "game_detection": [ @@ -85273,7 +79933,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Son of Nor", "game_detection": [ @@ -85288,7 +79947,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims: Castaway Stories", "game_detection": [ @@ -85300,7 +79958,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "1602 A.D.", "game_detection": [ @@ -85312,7 +79969,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Thumper", "game_detection": [ @@ -85327,7 +79983,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Enemy Territory: Quake Wars Demo", "game_detection": [ @@ -85340,7 +79995,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rome: Total War Gold Edition", "game_detection": [ @@ -85360,7 +80014,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Surgeon Simulator: Experience Reality", "game_detection": [ @@ -85376,7 +80029,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battle Nations", "game_detection": [ @@ -85391,7 +80043,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Thomas Was Alone", "game_detection": [ @@ -85416,7 +80067,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Minit", "game_detection": [ @@ -85427,7 +80077,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Marvel vs. Capcom: Infinite", "game_detection": [ @@ -85442,7 +80091,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warcraft III: The Frozen Throne", "game_detection": [ @@ -85472,7 +80120,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Resonance", "game_detection": [ @@ -85487,7 +80134,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wave of Darkness", "game_detection": [ @@ -85502,7 +80148,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Miss Popularity", "game_detection": [ @@ -85517,7 +80162,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "War of Angels", "game_detection": [ @@ -85530,7 +80174,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dino Run SE", "game_detection": [ @@ -85542,7 +80185,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Juiced 2: Hot Import Nights", "game_detection": [ @@ -85564,7 +80206,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rune", "game_detection": [ @@ -85581,7 +80222,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Postal 2", "game_detection": [ @@ -85594,7 +80234,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark Echo", "game_detection": [ @@ -85609,7 +80248,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Papo & Yo", "game_detection": [ @@ -85629,7 +80267,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fate of the World", "game_detection": [ @@ -85644,7 +80281,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Oh...Sir! The Hollywood Roast", "game_detection": [ @@ -85659,7 +80295,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SMASHING THE BATTLE", "game_detection": [ @@ -85674,7 +80309,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Evoland II", "game_detection": [ @@ -85689,7 +80323,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Smugglers V", "game_detection": [ @@ -85704,7 +80337,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Bounty Bay Online", "game_detection": [ @@ -85717,7 +80349,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Frozen Endzone", "game_detection": [ @@ -85732,7 +80363,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battlefield 1", "game_detection": [ @@ -85749,7 +80379,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dynasty Warriors Online", "game_detection": [ @@ -85763,7 +80392,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Paragon", "game_detection": [ @@ -85778,7 +80406,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LEGO Harry Potter Years 1-4", "game_detection": [ @@ -85803,7 +80430,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Honey Rose: Underdog Fighter Extraordinaire", "game_detection": [ @@ -85819,7 +80445,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "My Pet Hotel 2", "game_detection": [ @@ -85834,7 +80459,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Citizen", "game_detection": [ @@ -85857,7 +80481,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Saviors", "game_detection": [ @@ -85872,7 +80495,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SoulWorker", "game_detection": [ @@ -85890,7 +80512,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sakura Nova", "game_detection": [ @@ -85905,7 +80526,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Horrid Henry: Missions of Mischief", "game_detection": [ @@ -85920,7 +80540,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Dark Pictures Anthology: Man of Medan", "game_detection": [ @@ -85931,7 +80550,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fat Chicken", "game_detection": [ @@ -85946,7 +80564,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sword Art Online Re: Hollow Fragment", "game_detection": [ @@ -85960,7 +80577,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Magicka: Wizards of the Square Tablet", "game_detection": [ @@ -85975,7 +80591,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vindictus", "game_detection": [ @@ -85999,7 +80614,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gaming Club Poker", "game_detection": [ @@ -86011,7 +80625,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Aliens vs. Predator", "game_detection": [ @@ -86026,7 +80639,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Diablo III Beta", "game_detection": [ @@ -86039,7 +80651,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tales From Space: Mutant Blobs Attack", "game_detection": [ @@ -86054,7 +80665,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chroma Squad", "game_detection": [ @@ -86074,7 +80684,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Amazing Adventures: The Caribbean Secret", "game_detection": [ @@ -86087,7 +80696,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bet And Race", "game_detection": [ @@ -86099,7 +80707,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gunnihilation", "game_detection": [ @@ -86114,7 +80721,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Arcadecraft", "game_detection": [ @@ -86134,7 +80740,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "D.I.P.R.I.P. Warm Up", "game_detection": [ @@ -86149,7 +80754,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NeonXSZ", "game_detection": [ @@ -86164,7 +80768,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Control", "game_detection": [ @@ -86183,7 +80786,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Creatures: Village", "game_detection": [ @@ -86195,7 +80797,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Men of War: Condemned Heroes", "game_detection": [ @@ -86210,7 +80811,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gemini Lost", "game_detection": [ @@ -86225,7 +80825,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Grand Theft Auto IV", "game_detection": [ @@ -86246,7 +80845,6 @@ ] }, { - "force_display_capture": false, "region": "PT", "title": "Luna Plus", "game_detection": [ @@ -86259,7 +80857,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cargo! The Quest for Gravity", "game_detection": [ @@ -86274,7 +80871,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Medal of Honor: Allied Assault: Spearhead", "game_detection": [ @@ -86287,7 +80883,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Disciples II: Gallean's Return", "game_detection": [ @@ -86307,7 +80902,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro Cycling Manager 2010", "game_detection": [ @@ -86322,7 +80916,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Beat Hazard", "game_detection": [ @@ -86342,7 +80935,6 @@ ] }, { - "force_display_capture": false, "region": "RU", "title": "Aion", "game_detection": [ @@ -86355,7 +80947,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vietcong", "game_detection": [ @@ -86368,7 +80959,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Burstfire", "game_detection": [ @@ -86383,7 +80973,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RAGE 2", "game_detection": [ @@ -86394,7 +80983,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Aeon Command", "game_detection": [ @@ -86409,7 +80997,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "WYD", "game_detection": [ @@ -86422,7 +81009,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Who Wants To Be A Millionaire? Special Editions", "game_detection": [ @@ -86437,7 +81023,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hearthstone: Heroes of Warcraft", "game_detection": [ @@ -86468,7 +81053,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "X-COM: Enforcer", "game_detection": [ @@ -86488,7 +81072,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Absolver", "game_detection": [ @@ -86503,7 +81086,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FarSky", "game_detection": [ @@ -86515,7 +81097,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Red Orchestra: Ostfront 41-45", "game_detection": [ @@ -86538,7 +81119,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dofus", "game_detection": [ @@ -86583,7 +81163,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Day of Infamy", "game_detection": [ @@ -86602,7 +81181,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Wars: Knights of the Old Republic", "game_detection": [ @@ -86624,7 +81202,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Samurai Gunn", "game_detection": [ @@ -86643,7 +81220,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "God Eater 2: Rage Burst", "game_detection": [ @@ -86658,7 +81234,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Half-Life", "game_detection": [ @@ -86683,7 +81258,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GEARCRACK Arena", "game_detection": [ @@ -86698,7 +81272,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mercenary Wars", "game_detection": [ @@ -86711,7 +81284,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sid Meier's Civilization III", "game_detection": [ @@ -86731,7 +81303,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "C-RUSH", "game_detection": [ @@ -86746,7 +81317,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Worms Armageddon", "game_detection": [ @@ -86766,7 +81336,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ether Vapor Remaster", "game_detection": [ @@ -86781,7 +81350,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tree of Savior", "game_detection": [ @@ -86796,7 +81364,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rage", "game_detection": [ @@ -86811,7 +81378,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Revolver360 Re:Actor", "game_detection": [ @@ -86826,7 +81392,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Retrovirus", "game_detection": [ @@ -86841,7 +81406,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shogun 2: Total War", "game_detection": [ @@ -86856,7 +81420,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lumines Remastered", "game_detection": [ @@ -86870,7 +81433,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Taikodom", "game_detection": [ @@ -86883,7 +81445,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tiger Woods PGA Tour 2005", "game_detection": [ @@ -86896,7 +81457,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Texas Cheat 'Em", "game_detection": [ @@ -86911,7 +81471,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Toukiden 2", "game_detection": [ @@ -86926,7 +81485,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Onechanbara Z2: Chaos", "game_detection": [ @@ -86941,7 +81499,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lambda Wars", "game_detection": [ @@ -86956,7 +81513,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Volt", "game_detection": [ @@ -86971,7 +81527,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Whispering Willows", "game_detection": [ @@ -86986,7 +81541,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "AirBuccaneers", "game_detection": [ @@ -87001,7 +81555,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hard Truck: Apocalypse - Rise of Clans", "game_detection": [ @@ -87016,7 +81569,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Where No Fear Was", "game_detection": [ @@ -87028,7 +81580,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GetAmped", "game_detection": [ @@ -87040,7 +81591,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Undead Overlord", "game_detection": [ @@ -87055,7 +81605,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Take-Out Weight Curling", "game_detection": [ @@ -87076,7 +81625,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Need For Speed 2", "game_detection": [ @@ -87088,7 +81636,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Spookening", "game_detection": [ @@ -87103,7 +81650,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gemini Wars", "game_detection": [ @@ -87118,7 +81664,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Family Guy: Back to the Multiverse", "game_detection": [ @@ -87133,7 +81678,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mystery Case Files: Return to Ravenhearst", "game_detection": [ @@ -87154,7 +81698,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bionic Dues", "game_detection": [ @@ -87169,7 +81712,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DeathSpank", "game_detection": [ @@ -87184,7 +81726,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Welcome to the Game", "game_detection": [ @@ -87199,7 +81740,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Steel Storm A.M.M.O.", "game_detection": [ @@ -87214,7 +81754,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Depths of Fear :: Knossos", "game_detection": [ @@ -87229,7 +81768,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Faxion Online", "game_detection": [ @@ -87243,7 +81781,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Forge of Gods", "game_detection": [ @@ -87258,7 +81795,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Half-Life 2: Lost Coast", "game_detection": [ @@ -87285,7 +81821,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Inquisitor - Martyr", "game_detection": [ @@ -87300,7 +81835,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heroes Rise: The Prodigy", "game_detection": [ @@ -87315,7 +81849,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "XCOM 2", "game_detection": [ @@ -87330,7 +81863,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battle Academy 2: Eastern Front", "game_detection": [ @@ -87345,7 +81877,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rabi-Ribi", "game_detection": [ @@ -87360,7 +81891,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "X-COM: UFO Defense", "game_detection": [ @@ -87376,7 +81906,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Expeditions: Conquistador", "game_detection": [ @@ -87391,7 +81920,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Godfather II", "game_detection": [ @@ -87411,7 +81939,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GhostControl Inc.", "game_detection": [ @@ -87426,7 +81953,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NBA 2K16", "game_detection": [ @@ -87441,7 +81967,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Armored Fist 3", "game_detection": [ @@ -87456,7 +81981,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hold the door!", "game_detection": [ @@ -87472,7 +81996,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "OutRun 2006: Coast 2 Coast", "game_detection": [ @@ -87492,7 +82015,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spin Rhythm XD", "game_detection": [ @@ -87503,7 +82025,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blood Omen 2", "game_detection": [ @@ -87518,7 +82039,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Majesty: The Northern Expansion", "game_detection": [ @@ -87531,7 +82051,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A Valley Without Wind 2", "game_detection": [ @@ -87546,7 +82065,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mr.President!", "game_detection": [ @@ -87561,7 +82079,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Two Worlds II: Castle Defense", "game_detection": [ @@ -87576,7 +82093,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cooking Simulator", "game_detection": [ @@ -87587,7 +82103,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wasteland 2 Director's Cut", "game_detection": [ @@ -87602,7 +82117,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Comedy Quest", "game_detection": [ @@ -87617,7 +82131,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Final Fantasy IV: The After Years", "game_detection": [ @@ -87632,7 +82145,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Odyssey Reborn", "game_detection": [ @@ -87647,7 +82159,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bejeweled Twist", "game_detection": [ @@ -87668,7 +82179,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Far Wilds", "game_detection": [ @@ -87682,7 +82192,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Giants: Citizen Kabuto", "game_detection": [ @@ -87694,7 +82203,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "One Tower", "game_detection": [ @@ -87709,7 +82217,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Paper Dungeons", "game_detection": [ @@ -87729,7 +82236,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BigScreen", "game_detection": [ @@ -87745,7 +82251,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Guilty Gear Isuka", "game_detection": [ @@ -87760,7 +82265,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dysan the Shapeshifter", "game_detection": [ @@ -87775,7 +82279,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Age of Wonders: Shadow Magic", "game_detection": [ @@ -87796,7 +82299,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Time Rifters", "game_detection": [ @@ -87811,7 +82313,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Contrast", "game_detection": [ @@ -87826,7 +82327,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alien Zombie Megadeath", "game_detection": [ @@ -87847,7 +82347,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Subject 9", "game_detection": [ @@ -87862,7 +82361,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ballpoint Universe", "game_detection": [ @@ -87877,7 +82375,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Overcast - Walden and the Werewolf", "game_detection": [ @@ -87889,7 +82386,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Real World Racing", "game_detection": [ @@ -87904,7 +82400,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Torment: Tides of Numenera", "game_detection": [ @@ -87919,7 +82414,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "WRC 6 FIA World Rally Championship", "game_detection": [ @@ -87934,7 +82428,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Action Unreal Tournament", "game_detection": [ @@ -87948,7 +82441,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Serious Sam VR: The First Encounter", "game_detection": [ @@ -87964,7 +82456,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dominions 4: Thrones of Ascension", "game_detection": [ @@ -87979,7 +82470,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jack Lumber", "game_detection": [ @@ -87999,7 +82489,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Left 4 Dead 2", "game_detection": [ @@ -88014,7 +82503,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Desert Thunder", "game_detection": [ @@ -88029,7 +82517,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pit People", "game_detection": [ @@ -88044,7 +82531,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Freestyle", "game_detection": [ @@ -88059,7 +82545,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Power 2", "game_detection": [ @@ -88079,7 +82564,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cannon Fodder 3", "game_detection": [ @@ -88094,7 +82578,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spoiler Alert", "game_detection": [ @@ -88109,7 +82592,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Commandos: Strike Force", "game_detection": [ @@ -88129,7 +82611,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lugaru HD", "game_detection": [ @@ -88144,7 +82625,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rotastic", "game_detection": [ @@ -88159,7 +82639,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spectromancer", "game_detection": [ @@ -88174,7 +82653,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sparkle 2 Evo", "game_detection": [ @@ -88189,7 +82667,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jewel Quest II", "game_detection": [ @@ -88209,7 +82686,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Golfstar", "game_detection": [ @@ -88222,7 +82698,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Axis & Allies", "game_detection": [ @@ -88234,7 +82709,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Generation Zero", "game_detection": [ @@ -88245,7 +82719,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eudemons Online", "game_detection": [ @@ -88258,7 +82731,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DJMax Trilogy", "game_detection": [ @@ -88272,7 +82744,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Akaneiro: Demon Hunters", "game_detection": [ @@ -88287,7 +82758,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "9 Clues: The Secret of Serpent Creek", "game_detection": [ @@ -88302,7 +82772,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Final Fantasy IV", "game_detection": [ @@ -88317,7 +82786,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Angelica Weaver: Catch Me When You Can", "game_detection": [ @@ -88332,7 +82800,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead Frontier 2", "game_detection": [ @@ -88346,7 +82813,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nancy Drew: Legend of the Crystal Skull", "game_detection": [ @@ -88361,7 +82827,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Need For Speed: Hot Pursuit 2", "game_detection": [ @@ -88373,7 +82838,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eternal Card Game", "game_detection": [ @@ -88388,7 +82852,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Go! Go! Nippon! ~My First Trip to Japan~", "game_detection": [ @@ -88403,7 +82866,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "My Friend Pedro", "game_detection": [ @@ -88418,7 +82880,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Divo", "game_detection": [ @@ -88433,7 +82894,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FIFA Soccer 12", "game_detection": [ @@ -88446,7 +82906,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Myth Angels Online", "game_detection": [ @@ -88459,7 +82918,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Subspace Continuum", "game_detection": [ @@ -88479,7 +82937,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Colonial Defence Force Ghostship", "game_detection": [ @@ -88494,7 +82951,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mirror Mysteries 2", "game_detection": [ @@ -88509,7 +82965,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Labyrinthine Dreams", "game_detection": [ @@ -88524,7 +82979,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Polynomial", "game_detection": [ @@ -88539,7 +82993,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sniper Elite", "game_detection": [ @@ -88564,7 +83017,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battle Squares", "game_detection": [ @@ -88578,7 +83030,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "4Story", "game_detection": [ @@ -88591,7 +83042,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Coloropus", "game_detection": [ @@ -88603,7 +83053,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Red Orchestra 2: Heroes of Stalingrad Single Player", "game_detection": [ @@ -88618,7 +83067,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mole Control", "game_detection": [ @@ -88643,7 +83091,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cry of Fear", "game_detection": [ @@ -88658,7 +83105,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "UNLOVED", "game_detection": [ @@ -88673,7 +83119,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tempest", "game_detection": [ @@ -88688,7 +83133,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Divine Divinity", "game_detection": [ @@ -88720,7 +83164,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Dead Linger", "game_detection": [ @@ -88735,7 +83178,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Omikron: The Nomad Soul", "game_detection": [ @@ -88750,7 +83192,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Death Dojo", "game_detection": [ @@ -88766,7 +83207,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dynasty Warriors 9", "game_detection": [ @@ -88780,7 +83220,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gigantic", "game_detection": [ @@ -88804,7 +83243,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "I of the Dragon", "game_detection": [ @@ -88816,7 +83254,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FOX n FORESTS", "game_detection": [ @@ -88830,7 +83267,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Championship Manager 5", "game_detection": [ @@ -88842,7 +83278,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Penguins' Journey", "game_detection": [ @@ -88857,7 +83292,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hidden & Dangerous 2", "game_detection": [ @@ -88869,7 +83303,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Smokin' Guns", "game_detection": [ @@ -88886,7 +83319,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vizati", "game_detection": [ @@ -88898,7 +83330,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "1001 Spikes", "game_detection": [ @@ -88913,7 +83344,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Turmoil", "game_detection": [ @@ -88924,7 +83354,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Journey Down: Chapter Two", "game_detection": [ @@ -88939,7 +83368,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Counter Strike Condition Zero: Deleted Scenes", "game_detection": [ @@ -88960,7 +83388,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Haydee", "game_detection": [ @@ -88975,7 +83402,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Elven Legacy: Ranger", "game_detection": [ @@ -88990,7 +83416,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "March of War: Face Off", "game_detection": [ @@ -89005,7 +83430,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ghost in the Sheet", "game_detection": [ @@ -89018,7 +83442,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heileen: Sail Away", "game_detection": [ @@ -89033,7 +83456,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Champions of Anteria", "game_detection": [ @@ -89055,7 +83477,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Quake", "game_detection": [ @@ -89090,7 +83511,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BeatBuddy: Tale of the Guardians", "game_detection": [ @@ -89110,7 +83530,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Armada 2526", "game_detection": [ @@ -89124,7 +83543,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dragon Nest", "game_detection": [ @@ -89145,7 +83563,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gotcha! Extreme Paintball", "game_detection": [ @@ -89157,7 +83574,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stormrise", "game_detection": [ @@ -89177,7 +83593,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Air Brawl", "game_detection": [ @@ -89192,7 +83607,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hard to be a God Demo", "game_detection": [ @@ -89205,7 +83619,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Angels Online", "game_detection": [ @@ -89218,7 +83631,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gardens Inc. – From Rakes to Riches", "game_detection": [ @@ -89233,7 +83645,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Yar's Revenge", "game_detection": [ @@ -89248,7 +83659,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Emoticons", "game_detection": [ @@ -89263,7 +83673,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Theme Hospital", "game_detection": [ @@ -89275,7 +83684,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Offworld Trading Company", "game_detection": [ @@ -89290,7 +83698,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Space Rangers 2: Reboot", "game_detection": [ @@ -89310,7 +83717,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Serious Sam 3: BFE", "game_detection": [ @@ -89325,7 +83731,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Siege Online", "game_detection": [ @@ -89338,7 +83743,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lisa", "game_detection": [ @@ -89353,7 +83757,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Guitar Hero: Aerosmith", "game_detection": [ @@ -89365,7 +83768,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "IHF Handball Challenge 14", "game_detection": [ @@ -89380,7 +83782,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "HomeBehind", "game_detection": [ @@ -89395,7 +83796,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ricochet Infinity", "game_detection": [ @@ -89407,7 +83807,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bioshock 2", "game_detection": [ @@ -89443,7 +83842,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "WASTED", "game_detection": [ @@ -89458,7 +83856,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "KurtzPel", "game_detection": [ @@ -89469,7 +83866,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Okhlos", "game_detection": [ @@ -89484,7 +83880,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Sanctus Reach", "game_detection": [ @@ -89499,7 +83894,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Snes9x", "game_detection": [ @@ -89518,7 +83912,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Marvel Ultimate Alliance 2", "game_detection": [ @@ -89532,7 +83925,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "XAM", "game_detection": [ @@ -89547,7 +83939,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "International Snooker 2012", "game_detection": [ @@ -89562,7 +83953,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kingdom Come: Deliverance", "game_detection": [ @@ -89577,7 +83967,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Them: The Summoning", "game_detection": [ @@ -89592,7 +83981,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blade Strangers", "game_detection": [ @@ -89606,7 +83994,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ether One", "game_detection": [ @@ -89626,7 +84013,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Just Cause", "game_detection": [ @@ -89646,7 +84032,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cake Mania 3", "game_detection": [ @@ -89666,7 +84051,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Square Brawl", "game_detection": [ @@ -89681,7 +84065,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Neo Steam: The Shattered Continent", "game_detection": [ @@ -89694,7 +84077,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "Atlantica Online", "game_detection": [ @@ -89708,7 +84090,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zombie Vikings: Stab-a-thon", "game_detection": [ @@ -89723,7 +84104,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Insane 2", "game_detection": [ @@ -89738,7 +84118,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Among Us", "game_detection": [ @@ -89749,7 +84128,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chainsaw Warrior", "game_detection": [ @@ -89764,7 +84142,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "King's Bounty: Warriors of the North", "game_detection": [ @@ -89779,7 +84156,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "PixelJunk Shooter", "game_detection": [ @@ -89799,7 +84175,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DETOUR", "game_detection": [ @@ -89813,7 +84188,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Next Penelope", "game_detection": [ @@ -89828,7 +84202,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Apotheon", "game_detection": [ @@ -89843,7 +84216,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Martians Memorandum", "game_detection": [ @@ -89858,7 +84230,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Fruit of Grisaia", "game_detection": [ @@ -89873,7 +84244,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Iron Snout", "game_detection": [ @@ -89888,7 +84258,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Criminal Girls: Invite Only", "game_detection": [ @@ -89903,7 +84272,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rise of Flight: Channel Battles Edition", "game_detection": [ @@ -89918,7 +84286,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DubWars", "game_detection": [ @@ -89933,7 +84300,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Lord of the Rings: Conquest", "game_detection": [ @@ -89945,7 +84311,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rise of the Tomb Raider", "game_detection": [ @@ -89960,7 +84325,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A Farewell to Dragons", "game_detection": [ @@ -89975,7 +84339,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heroes Must Die", "game_detection": [ @@ -89990,7 +84353,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Unwell Mel", "game_detection": [ @@ -90005,7 +84367,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SkillGround", "game_detection": [ @@ -90017,7 +84378,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "APB", "game_detection": [ @@ -90050,7 +84410,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "World End Economica: Episode 1", "game_detection": [ @@ -90065,7 +84424,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "S.K.I.L.L. - Special Force 2", "game_detection": [ @@ -90078,7 +84436,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Doom 3: Resurrection of Evil", "game_detection": [ @@ -90103,7 +84460,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NecroVisioN", "game_detection": [ @@ -90124,7 +84480,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Galactic Civilizations 2: Dark Avatar", "game_detection": [ @@ -90138,7 +84493,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Trek: Away Team", "game_detection": [ @@ -90150,7 +84504,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "TalesWeaver", "game_detection": [ @@ -90169,7 +84522,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BIT.TRIP BEAT", "game_detection": [ @@ -90189,7 +84541,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NHL 2005", "game_detection": [ @@ -90201,7 +84552,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Plants vs. Zombies", "game_detection": [ @@ -90233,7 +84583,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "We Were Here", "game_detection": [ @@ -90244,7 +84593,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Max Payne", "game_detection": [ @@ -90264,7 +84612,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Millennium 2: Take Me Higher", "game_detection": [ @@ -90279,7 +84626,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "60 Seconds!", "game_detection": [ @@ -90294,7 +84640,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GRID Autosport", "game_detection": [ @@ -90309,7 +84654,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Homeworld Cataclysm", "game_detection": [ @@ -90321,7 +84665,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "All Zombies Must Die!", "game_detection": [ @@ -90336,7 +84679,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "OMSI 2", "game_detection": [ @@ -90351,7 +84693,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Aaru's Awakening", "game_detection": [ @@ -90366,7 +84707,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ARMA: Gold Edition", "game_detection": [ @@ -90381,7 +84721,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Machineers: Episode 1 - Tivoli Town", "game_detection": [ @@ -90396,7 +84735,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RollerCoaster Tycoon 2", "game_detection": [ @@ -90416,7 +84754,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Twisted Lands: Shadow Town", "game_detection": [ @@ -90429,7 +84766,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Lost Saga", "game_detection": [ @@ -90452,7 +84788,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Lost Vikings", "game_detection": [ @@ -90464,7 +84799,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Riding Club Championship", "game_detection": [ @@ -90479,7 +84813,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Project CARS", "game_detection": [ @@ -90494,7 +84827,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Take the Dream IX", "game_detection": [ @@ -90509,7 +84841,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Totally Accurate Battle Simulator", "game_detection": [ @@ -90520,7 +84851,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Damned", "game_detection": [ @@ -90535,7 +84865,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "CRYPTARK", "game_detection": [ @@ -90550,7 +84879,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gunman Clive", "game_detection": [ @@ -90570,7 +84898,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hacktag", "game_detection": [ @@ -90584,7 +84911,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blue Toad Murder Files: The Mysteries of Little Riddle", "game_detection": [ @@ -90599,7 +84925,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battle Chasers: Nightwar", "game_detection": [ @@ -90618,7 +84943,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Defense Zone", "game_detection": [ @@ -90633,7 +84957,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dyad", "game_detection": [ @@ -90658,7 +84981,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Reversion - The Escape", "game_detection": [ @@ -90673,7 +84995,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Imperialism II: Age of Exploration", "game_detection": [ @@ -90685,7 +85006,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "CroNix", "game_detection": [ @@ -90700,7 +85020,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rescuties! VR", "game_detection": [ @@ -90716,7 +85035,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pixel Piracy", "game_detection": [ @@ -90731,7 +85049,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Awkward Dimensions Redux", "game_detection": [ @@ -90746,7 +85063,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Titan Attacks", "game_detection": [ @@ -90766,7 +85082,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Entente", "game_detection": [ @@ -90781,7 +85096,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Guitar Hero III: Legends of Rock", "game_detection": [ @@ -90793,7 +85107,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Earth 2150: The Moon Project", "game_detection": [ @@ -90808,7 +85121,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "EmpirePoker", "game_detection": [ @@ -90821,7 +85133,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stick RPG 2", "game_detection": [ @@ -90836,7 +85147,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Curse of Monkey Island", "game_detection": [ @@ -90850,7 +85160,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hidden Dimensions 3", "game_detection": [ @@ -90865,7 +85174,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Small World 2", "game_detection": [ @@ -90880,7 +85188,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Driving School Simulator", "game_detection": [ @@ -90895,7 +85202,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Defense Grid 2", "game_detection": [ @@ -90910,7 +85216,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Promised Land", "game_detection": [ @@ -90925,7 +85230,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Of Kings And Men", "game_detection": [ @@ -90940,7 +85244,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Temtem", "game_detection": [ @@ -90955,7 +85258,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Populous: The Beginning", "game_detection": [ @@ -90982,7 +85284,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Football Manager 2008", "game_detection": [ @@ -90994,7 +85295,6 @@ ] }, { - "force_display_capture": false, "region": "RU", "title": "CrossFire", "game_detection": [ @@ -91010,7 +85310,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RollerCoaster Tycoon", "game_detection": [ @@ -91030,7 +85329,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tex Murphy: Overseer", "game_detection": [ @@ -91045,7 +85343,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bad Rats", "game_detection": [ @@ -91060,7 +85357,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Book of Unwritten Tales", "game_detection": [ @@ -91075,7 +85371,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "True Crime: New York City", "game_detection": [ @@ -91088,7 +85383,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sniper Elite 4", "game_detection": [ @@ -91103,7 +85397,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead Island", "game_detection": [ @@ -91118,7 +85411,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Arcana Heart 3 LOVEMAX SIXSTARS!!!!!!", "game_detection": [ @@ -91133,7 +85425,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fester Mudd: Curse of the Gold - Episode 1", "game_detection": [ @@ -91148,7 +85439,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mini Metro", "game_detection": [ @@ -91160,7 +85450,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cryptic Sea EP", "game_detection": [ @@ -91172,7 +85461,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "realMyst: Masterpiece Edition", "game_detection": [ @@ -91192,7 +85480,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Paladins", "game_detection": [ @@ -91218,7 +85505,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Typing of the Dead: Overkill", "game_detection": [ @@ -91233,7 +85519,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bejeweled 3", "game_detection": [ @@ -91254,7 +85539,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zoo Tycoon 2 Endangered Species", "game_detection": [ @@ -91267,7 +85551,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Path of War", "game_detection": [ @@ -91282,7 +85565,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RECYCLE", "game_detection": [ @@ -91297,7 +85579,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warlocks vs Shadows", "game_detection": [ @@ -91312,7 +85593,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LYNE", "game_detection": [ @@ -91327,7 +85607,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Strong Bad's Cool Game for Attractive People - Episode 5: 8-Bit Is Enough", "game_detection": [ @@ -91349,7 +85628,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shadows: Price For Our Sins", "game_detection": [ @@ -91364,7 +85642,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Betrayer", "game_detection": [ @@ -91379,7 +85656,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pid", "game_detection": [ @@ -91399,7 +85675,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "JumpJet Rex", "game_detection": [ @@ -91414,7 +85689,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeon Keeper 2", "game_detection": [ @@ -91426,7 +85700,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Starward Rogue", "game_detection": [ @@ -91441,7 +85714,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lineage", "game_detection": [ @@ -91462,7 +85734,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wargame: Airland Battle", "game_detection": [ @@ -91477,7 +85748,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Disturbed", "game_detection": [ @@ -91492,7 +85762,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Seven Kingdoms: Conquest", "game_detection": [ @@ -91504,7 +85773,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Really Big Sky", "game_detection": [ @@ -91529,7 +85797,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wanted: Weapons of Fate", "game_detection": [ @@ -91549,7 +85816,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims 2: Pets", "game_detection": [ @@ -91568,7 +85834,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Botanicula", "game_detection": [ @@ -91599,7 +85864,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "No Time to Explain", "game_detection": [ @@ -91614,7 +85878,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Arachnophobia", "game_detection": [ @@ -91630,7 +85893,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bet On Soldier: Blood Sport", "game_detection": [ @@ -91642,7 +85904,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tyranny", "game_detection": [ @@ -91657,7 +85918,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Close Quarters Conflict", "game_detection": [ @@ -91671,7 +85931,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Aviary Attorney", "game_detection": [ @@ -91686,7 +85945,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Monster Truck Destruction", "game_detection": [ @@ -91698,7 +85956,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Castle Crashers", "game_detection": [ @@ -91713,7 +85970,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "National Zombie Park", "game_detection": [ @@ -91728,7 +85984,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Feeding Frenzy 2 Deluxe", "game_detection": [ @@ -91749,7 +86004,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Lost Mythologies", "game_detection": [ @@ -91764,7 +86018,6 @@ ] }, { - "force_display_capture": false, "region": "UK", "title": "Batman Arkham City GOTY", "game_detection": [ @@ -91779,7 +86032,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vietcong: Fist Alpha", "game_detection": [ @@ -91794,7 +86046,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Inside", "game_detection": [ @@ -91809,7 +86060,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Shield", "game_detection": [ @@ -91821,7 +86071,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "I-Fluid", "game_detection": [ @@ -91836,7 +86085,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "Regulus Legend", "game_detection": [ @@ -91850,7 +86098,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Atomica", "game_detection": [ @@ -91864,7 +86111,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spellforce 2: Shadow Wars", "game_detection": [ @@ -91881,7 +86127,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Valhalla Hills", "game_detection": [ @@ -91896,7 +86141,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Grand Ages: Medieval", "game_detection": [ @@ -91911,7 +86155,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "T.E.C. 3001", "game_detection": [ @@ -91926,7 +86169,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Vindictus", "game_detection": [ @@ -91939,7 +86181,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A Kingdom for Keflings", "game_detection": [ @@ -91951,7 +86192,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Double Dragon: Neon", "game_detection": [ @@ -91966,7 +86206,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "John Deere: North American Farmer", "game_detection": [ @@ -91978,7 +86217,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Volume", "game_detection": [ @@ -91993,7 +86231,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ChuSingura46+1 S", "game_detection": [ @@ -92008,7 +86245,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Berserk: The Cataclysm", "game_detection": [ @@ -92023,7 +86259,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Angels Fall First", "game_detection": [ @@ -92038,7 +86273,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hitman", "game_detection": [ @@ -92053,7 +86287,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Magic World Online", "game_detection": [ @@ -92066,7 +86299,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dinner Date", "game_detection": [ @@ -92081,7 +86313,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Last Leviathan", "game_detection": [ @@ -92096,7 +86327,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bang Bang Racing", "game_detection": [ @@ -92111,7 +86341,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Saturday Morning RPG", "game_detection": [ @@ -92131,7 +86360,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Darwinia Demo", "game_detection": [ @@ -92148,7 +86376,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Nightmare Cooperative", "game_detection": [ @@ -92163,7 +86390,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Session", "game_detection": [ @@ -92174,7 +86400,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Concentration", "game_detection": [ @@ -92189,7 +86414,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fowl Space", "game_detection": [ @@ -92204,7 +86428,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dust: An Elysian Tail", "game_detection": [ @@ -92224,7 +86447,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Dawn of War III", "game_detection": [ @@ -92239,7 +86461,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sven Co-op", "game_detection": [ @@ -92250,7 +86471,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Yooka Laylee", "game_detection": [ @@ -92265,7 +86485,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battlefield: Bad Co. 2 BETA", "game_detection": [ @@ -92286,7 +86505,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Luxor: Quest for the Afterlife", "game_detection": [ @@ -92301,7 +86519,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Immune Attack", "game_detection": [ @@ -92313,7 +86530,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tiny Tanks Online", "game_detection": [ @@ -92325,7 +86541,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "American Mensa Academy", "game_detection": [ @@ -92340,7 +86555,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Growing Pains", "game_detection": [ @@ -92355,7 +86569,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Genital Jousting", "game_detection": [ @@ -92370,7 +86583,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warp", "game_detection": [ @@ -92390,7 +86602,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "I SPY: Treasure Hunt", "game_detection": [ @@ -92404,7 +86615,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rocko's Quest", "game_detection": [ @@ -92419,7 +86629,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Marlow Briggs", "game_detection": [ @@ -92434,7 +86643,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Aura: Fate of the Ages", "game_detection": [ @@ -92449,7 +86657,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Assassin's Creed: Freedom Cry", "game_detection": [ @@ -92464,7 +86671,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shadow Warrior", "game_detection": [ @@ -92484,7 +86690,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cube World", "game_detection": [ @@ -92502,7 +86707,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eets Munchies", "game_detection": [ @@ -92523,7 +86727,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bastion", "game_detection": [ @@ -92543,7 +86746,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Constant C", "game_detection": [ @@ -92558,7 +86760,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "Asura", "game_detection": [ @@ -92572,7 +86773,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DiRT", "game_detection": [ @@ -92592,7 +86792,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heavenstrike Rivals", "game_detection": [ @@ -92607,7 +86806,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Glacier 3: Meltdown", "game_detection": [ @@ -92622,7 +86820,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sam & Max Episode 104: Abe Lincoln Must Die!", "game_detection": [ @@ -92642,7 +86839,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FIFA Soccer 2005", "game_detection": [ @@ -92654,7 +86850,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tompi Jones", "game_detection": [ @@ -92666,7 +86861,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Inescapable", "game_detection": [ @@ -92681,7 +86875,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Universe at War: Earth Assault", "game_detection": [ @@ -92704,7 +86897,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dirty Dancing", "game_detection": [ @@ -92717,7 +86909,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dominique Pamplemousse in “It’s All Over Once the Fat Lady Sings!”", "game_detection": [ @@ -92739,7 +86930,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "IGI 2: Covert Strike", "game_detection": [ @@ -92752,7 +86942,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rebuild: Gangs of Deadsville", "game_detection": [ @@ -92767,7 +86956,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stealth Inc 2: A Game of Clones", "game_detection": [ @@ -92786,7 +86974,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Football Manager 2017", "game_detection": [ @@ -92801,7 +86988,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BC Kings", "game_detection": [ @@ -92816,7 +87002,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Derrick the Deathfin", "game_detection": [ @@ -92836,7 +87021,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Petz Catz 2", "game_detection": [ @@ -92851,7 +87035,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nightmares from the Deep: The Cursed Heart", "game_detection": [ @@ -92866,7 +87049,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Waves", "game_detection": [ @@ -92881,7 +87063,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "16 Bit Arena", "game_detection": [ @@ -92896,7 +87077,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "Pro Baseball 2K", "game_detection": [ @@ -92909,7 +87089,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zombie Shooter 2", "game_detection": [ @@ -92924,7 +87103,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Freight Tycoon Inc.", "game_detection": [ @@ -92939,7 +87117,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dragonshard", "game_detection": [ @@ -92951,7 +87128,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Trials on Tatooine", "game_detection": [ @@ -92967,7 +87143,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zooloretto", "game_detection": [ @@ -92982,7 +87157,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "AdVenture Communist", "game_detection": [ @@ -92997,7 +87171,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cities XXL", "game_detection": [ @@ -93012,7 +87185,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Origin Of Destiny", "game_detection": [ @@ -93027,7 +87199,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Out of the Park Baseball 16", "game_detection": [ @@ -93042,7 +87213,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GetAmped II", "game_detection": [ @@ -93054,7 +87224,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Drunken Robot Pornography", "game_detection": [ @@ -93069,7 +87238,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Dark Souls: Prepare to Die Edition", "game_detection": [ @@ -93083,7 +87251,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tradewinds 2", "game_detection": [ @@ -93098,7 +87265,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Inquisitor", "game_detection": [ @@ -93113,7 +87279,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pharaoh", "game_detection": [ @@ -93130,7 +87295,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Romancing SaGa 2", "game_detection": [ @@ -93144,7 +87308,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Trainz: A New Era", "game_detection": [ @@ -93159,7 +87322,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Technobabylon", "game_detection": [ @@ -93171,7 +87333,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Freedom Fighters", "game_detection": [ @@ -93183,7 +87344,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Geneforge 2", "game_detection": [ @@ -93198,7 +87358,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Granny 3", "game_detection": [ @@ -93213,7 +87372,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Arkhelom 3D", "game_detection": [ @@ -93225,7 +87383,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Assassin's Creed IV: Black Flag", "game_detection": [ @@ -93261,7 +87418,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Wars Galactic Battlegrounds: Clone Campaigns", "game_detection": [ @@ -93275,7 +87431,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hector: Badge of Carnage - Episode 2", "game_detection": [ @@ -93295,7 +87450,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Yesterday", "game_detection": [ @@ -93316,7 +87470,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NASCAR '14", "game_detection": [ @@ -93331,7 +87484,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cloudbuilt", "game_detection": [ @@ -93346,7 +87498,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "HyperSonic 4", "game_detection": [ @@ -93360,7 +87511,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mind: Path to Thalamus", "game_detection": [ @@ -93375,7 +87525,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wizardry 8", "game_detection": [ @@ -93390,7 +87539,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mushihimesama", "game_detection": [ @@ -93405,7 +87553,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sudden Strike 3: Arms For Victory", "game_detection": [ @@ -93417,7 +87564,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Riding Star", "game_detection": [ @@ -93432,7 +87578,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rezrog", "game_detection": [ @@ -93447,7 +87592,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A Hat in Time", "game_detection": [ @@ -93462,7 +87606,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Anna's Quest", "game_detection": [ @@ -93477,7 +87620,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Foosball - Street Edition", "game_detection": [ @@ -93492,7 +87634,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Windward", "game_detection": [ @@ -93507,7 +87648,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Flight Control HD", "game_detection": [ @@ -93522,7 +87662,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "Counter-Strike Online", "game_detection": [ @@ -93544,7 +87683,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Unholy Heights", "game_detection": [ @@ -93564,7 +87702,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A3: The Age of Sovereign", "game_detection": [ @@ -93579,7 +87716,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "American Conquest", "game_detection": [ @@ -93594,7 +87730,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Devil May Cry 4", "game_detection": [ @@ -93622,7 +87757,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Game of Thrones: A Telltale Games Series", "game_detection": [ @@ -93637,7 +87771,6 @@ ] }, { - "force_display_capture": false, "region": "RU", "title": "Ground War Tanks", "game_detection": [ @@ -93652,7 +87785,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Isomer", "game_detection": [ @@ -93667,7 +87799,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lost Lands: A Hidden Object Adventure", "game_detection": [ @@ -93682,7 +87813,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bless Online", "game_detection": [ @@ -93696,7 +87826,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Infinity Wars", "game_detection": [ @@ -93711,7 +87840,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Angels & Demigods", "game_detection": [ @@ -93727,7 +87855,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Coconut Queen", "game_detection": [ @@ -93742,7 +87869,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "John Wick Hex", "game_detection": [ @@ -93753,7 +87879,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eador: Imperium", "game_detection": [ @@ -93768,7 +87893,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RumorFeller", "game_detection": [ @@ -93780,7 +87904,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Witness", "game_detection": [ @@ -93799,7 +87922,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tropico 6", "game_detection": [ @@ -93811,7 +87933,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mechanic Infantry", "game_detection": [ @@ -93823,7 +87944,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MoonBase Commander", "game_detection": [ @@ -93838,7 +87958,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Need for Speed: Rivals", "game_detection": [ @@ -93856,7 +87975,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vega$: Make it B!g", "game_detection": [ @@ -93871,7 +87989,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hard Truck: 18 Wheels of Steel", "game_detection": [ @@ -93885,7 +88002,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Final Fantasy XIV Online", "game_detection": [ @@ -93905,7 +88021,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Supreme Ruler 1936", "game_detection": [ @@ -93920,7 +88035,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fairy Fencer F", "game_detection": [ @@ -93935,7 +88049,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Raft", "game_detection": [ @@ -93949,7 +88062,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Thunder Wolves", "game_detection": [ @@ -93964,7 +88076,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "KovaaK's FPS Aim Trainer", "game_detection": [ @@ -93980,7 +88091,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Noitu Love 2: Devolution", "game_detection": [ @@ -94000,7 +88110,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Honey Select", "game_detection": [ @@ -94011,7 +88120,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "PokeMMO", "game_detection": [ @@ -94024,7 +88132,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blackguards 2", "game_detection": [ @@ -94039,7 +88146,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mini Ninjas", "game_detection": [ @@ -94060,7 +88166,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Auditorium", "game_detection": [ @@ -94080,7 +88185,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Realm Royale", "game_detection": [ @@ -94094,7 +88198,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Momodora 2", "game_detection": [ @@ -94106,7 +88209,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dracula 4 and 5", "game_detection": [ @@ -94121,7 +88223,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ACE Online", "game_detection": [ @@ -94134,7 +88235,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Breeders of the Nephelym: Alpha", "game_detection": [ @@ -94145,7 +88245,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "RF Online", "game_detection": [ @@ -94159,7 +88258,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Neopets Puzzle Adventure", "game_detection": [ @@ -94174,7 +88272,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A Valley Without Wind", "game_detection": [ @@ -94189,7 +88286,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Red Trigger", "game_detection": [ @@ -94204,7 +88300,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cossacks: The Art of War", "game_detection": [ @@ -94224,7 +88319,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "TY the Tasmanian Tiger 4", "game_detection": [ @@ -94239,7 +88333,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "300 Dwarves", "game_detection": [ @@ -94254,7 +88347,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Card Hunter", "game_detection": [ @@ -94269,7 +88361,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "XCOM: Enemy Unknown", "game_detection": [ @@ -94292,7 +88383,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Theatre of War", "game_detection": [ @@ -94312,7 +88402,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Transport Giant", "game_detection": [ @@ -94324,7 +88413,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NS2: Combat", "game_detection": [ @@ -94339,7 +88427,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Grimmwood", "game_detection": [ @@ -94353,7 +88440,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lumines", "game_detection": [ @@ -94368,7 +88454,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Emergency 2014", "game_detection": [ @@ -94383,7 +88468,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mabinogi", "game_detection": [ @@ -94405,7 +88489,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Axiom Verge", "game_detection": [ @@ -94417,7 +88500,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dream Daddy: A Dad Dating Simulator", "game_detection": [ @@ -94432,7 +88514,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Wars: Imperial Assault - Legends of the Alliance", "game_detection": [ @@ -94447,7 +88528,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Breaking The Rules: The Roman Tournament", "game_detection": [ @@ -94459,7 +88539,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark Colony", "game_detection": [ @@ -94471,7 +88550,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cities XL 2011", "game_detection": [ @@ -94491,7 +88569,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Terminal Hacker", "game_detection": [ @@ -94506,7 +88583,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tom Clancy’s Splinter Cell: Blacklist", "game_detection": [ @@ -94521,7 +88597,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Prophour23", "game_detection": [ @@ -94536,7 +88611,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Worms Revolution", "game_detection": [ @@ -94551,7 +88625,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eschalon: Book I", "game_detection": [ @@ -94571,7 +88644,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NyxQuest: Kindred Spirits", "game_detection": [ @@ -94586,7 +88658,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "One Manga Day", "game_detection": [ @@ -94601,7 +88672,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gore", "game_detection": [ @@ -94613,7 +88683,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ghostship Aftermath", "game_detection": [ @@ -94628,7 +88697,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nightmares from the Deep: The Siren's Call", "game_detection": [ @@ -94643,7 +88711,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Men of War: Red Tide", "game_detection": [ @@ -94658,7 +88725,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Trackday Manager", "game_detection": [ @@ -94673,7 +88739,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fictorum", "game_detection": [ @@ -94687,7 +88752,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Orcs Must Die!", "game_detection": [ @@ -94702,7 +88766,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "TipTop Deluxe", "game_detection": [ @@ -94715,7 +88778,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deus Ex: The Fall", "game_detection": [ @@ -94730,7 +88792,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "688(I) Hunter/Killer", "game_detection": [ @@ -94745,7 +88806,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Captain Morgane and the Golden Turtle", "game_detection": [ @@ -94760,7 +88820,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Codename: Panzers Phase 2", "game_detection": [ @@ -94779,7 +88838,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "18 Wheels of Steel: Convoy", "game_detection": [ @@ -94794,7 +88852,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bookworm Adventures Deluxe", "game_detection": [ @@ -94815,7 +88872,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Risk of Rain", "game_detection": [ @@ -94835,7 +88891,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mighty No. 9", "game_detection": [ @@ -94850,7 +88905,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A Plague Tale: Innocence", "game_detection": [ @@ -94865,7 +88919,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sonic the Hedgehog 4: Episode 1", "game_detection": [ @@ -94880,7 +88933,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bullet Run", "game_detection": [ @@ -94902,7 +88954,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battlestar Galactica", "game_detection": [ @@ -94914,7 +88965,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sunrider Academy", "game_detection": [ @@ -94929,7 +88979,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Diablo", "game_detection": [ @@ -94941,7 +88990,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Wars: Empire at War", "game_detection": [ @@ -94955,7 +89003,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Prince of Persia: The Sands of Time", "game_detection": [ @@ -94976,7 +89023,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "So Blonde", "game_detection": [ @@ -94988,7 +89034,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sniper: Ghost Warrior", "game_detection": [ @@ -95008,7 +89053,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Red Stone", "game_detection": [ @@ -95031,7 +89075,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MotoGP 08", "game_detection": [ @@ -95046,7 +89089,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Bard's Tale IV", "game_detection": [ @@ -95057,7 +89099,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jigoku Kisetsukan: Sense of the Seasons", "game_detection": [ @@ -95072,7 +89113,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Foreign Legion: Buckets of Blood", "game_detection": [ @@ -95087,7 +89127,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Secret Neighbor", "game_detection": [ @@ -95098,7 +89137,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Thief: Deadly Shadows", "game_detection": [ @@ -95127,7 +89165,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alien Breed: Impact", "game_detection": [ @@ -95142,7 +89179,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pet Luv Spa & Resort Tycoon", "game_detection": [ @@ -95155,7 +89191,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Lords", "game_detection": [ @@ -95170,7 +89205,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Angry Birds 2", "game_detection": [ @@ -95181,7 +89215,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Delver", "game_detection": [ @@ -95196,7 +89229,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Line of Defense", "game_detection": [ @@ -95211,7 +89243,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hack 'n' Slash", "game_detection": [ @@ -95231,7 +89262,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "F1 2017", "game_detection": [ @@ -95246,7 +89276,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Getting Over It with Bennett Foddy", "game_detection": [ @@ -95261,7 +89290,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Silent Hunter II", "game_detection": [ @@ -95274,7 +89302,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dwarfs!?", "game_detection": [ @@ -95289,7 +89316,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LEGO Universe", "game_detection": [ @@ -95318,7 +89344,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cuisine Royale", "game_detection": [ @@ -95332,7 +89357,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Human Resource Machine", "game_detection": [ @@ -95347,7 +89371,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Melty Blood: Act Cadenza", "game_detection": [ @@ -95359,7 +89382,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "School Tycoon", "game_detection": [ @@ -95376,7 +89398,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "City of the Shroud", "game_detection": [ @@ -95390,7 +89411,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Titanfall", "game_detection": [ @@ -95402,7 +89422,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Black Rose", "game_detection": [ @@ -95417,7 +89436,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hexcells Plus", "game_detection": [ @@ -95432,7 +89450,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Reject Demon: Toko Chapter 0 - Prelude", "game_detection": [ @@ -95447,7 +89464,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "English Country Tune", "game_detection": [ @@ -95467,7 +89483,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tron Evolution", "game_detection": [ @@ -95480,7 +89495,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Caribbean!", "game_detection": [ @@ -95495,7 +89509,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Godswar Online", "game_detection": [ @@ -95508,7 +89521,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Smashball", "game_detection": [ @@ -95523,7 +89535,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ProtoGalaxy", "game_detection": [ @@ -95538,7 +89549,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gun Monkeys", "game_detection": [ @@ -95553,7 +89563,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Commander in Chief: Geo-Political Simulator 2009", "game_detection": [ @@ -95565,7 +89574,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lethal League Blaze", "game_detection": [ @@ -95576,7 +89584,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pix the Cat", "game_detection": [ @@ -95591,7 +89598,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "History Channel: Battle for the Pacific", "game_detection": [ @@ -95603,7 +89609,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "House of 1000 Doors: Family Secrets", "game_detection": [ @@ -95624,7 +89629,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Conception II: Children of the Seven Stars", "game_detection": [ @@ -95639,7 +89643,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Black Mirror", "game_detection": [ @@ -95654,7 +89657,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Caromble!", "game_detection": [ @@ -95669,7 +89671,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Steel Storm: Burning Retribution", "game_detection": [ @@ -95689,7 +89690,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Legacy of Kain: Defiance", "game_detection": [ @@ -95709,7 +89709,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "First Battalion", "game_detection": [ @@ -95721,7 +89720,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tom Clancy's H.A.W.X. 2", "game_detection": [ @@ -95743,7 +89741,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Violett", "game_detection": [ @@ -95758,7 +89755,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stronghold Legends", "game_detection": [ @@ -95778,7 +89774,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Speedball 2: Tournament", "game_detection": [ @@ -95793,7 +89788,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Frozen Cortex", "game_detection": [ @@ -95809,7 +89803,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blazing Angels: Squadrons of WWII", "game_detection": [ @@ -95823,7 +89816,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Governor of Poker 2: Premium Edition", "game_detection": [ @@ -95838,7 +89830,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Max Payne 2: The Fall of Max Payne", "game_detection": [ @@ -95859,7 +89850,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alpha Protocol", "game_detection": [ @@ -95880,7 +89870,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Call of Cthulu", "game_detection": [ @@ -95891,7 +89880,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tiny Barbarian", "game_detection": [ @@ -95911,7 +89899,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "My Vet Practice: In the Country", "game_detection": [ @@ -95926,7 +89913,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Universe Sandbox", "game_detection": [ @@ -95946,7 +89932,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Terrorhedron", "game_detection": [ @@ -95961,7 +89946,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Twenty Twelve", "game_detection": [ @@ -95973,7 +89957,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Salt and Sanctuary", "game_detection": [ @@ -95988,7 +89971,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Märchen Forest: Mylne and the Forest Gift", "game_detection": [ @@ -96002,7 +89984,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Syndicate", "game_detection": [ @@ -96019,7 +90000,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Adam's Venture Episode 3: Revelations", "game_detection": [ @@ -96034,7 +90014,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Prey", "game_detection": [ @@ -96056,7 +90035,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bionic Commando", "game_detection": [ @@ -96076,7 +90054,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battlefield: Bad Company 2", "game_detection": [ @@ -96097,7 +90074,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "WARRIORS ALL-STARS", "game_detection": [ @@ -96112,7 +90088,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims 3", "game_detection": [ @@ -96134,7 +90109,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gravitron 2", "game_detection": [ @@ -96149,7 +90123,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ARK: Survival Of The Fittest", "game_detection": [ @@ -96164,7 +90137,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Puyo Puyo Tetris", "game_detection": [ @@ -96178,7 +90150,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Age of Empires II: Definitive Edition", "game_detection": [ @@ -96189,7 +90160,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cabela's Big Game Hunter 2006", "game_detection": [ @@ -96201,7 +90171,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Astro Lords: Oort Cloud", "game_detection": [ @@ -96216,7 +90185,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Exoplanet: First Contact", "game_detection": [ @@ -96231,7 +90199,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pirate101", "game_detection": [ @@ -96244,7 +90211,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alpha Prime", "game_detection": [ @@ -96264,7 +90230,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Book of Unwritten Tales: The Critter Chronicles", "game_detection": [ @@ -96279,7 +90244,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "KumaWar: The War on Terror", "game_detection": [ @@ -96291,7 +90255,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gunheart", "game_detection": [ @@ -96305,7 +90268,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Few", "game_detection": [ @@ -96320,7 +90282,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sprint Cars: Road to Knoxville", "game_detection": [ @@ -96340,7 +90301,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Defiance", "game_detection": [ @@ -96383,7 +90343,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The UnderGarden", "game_detection": [ @@ -96398,7 +90357,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Child of Light", "game_detection": [ @@ -96413,7 +90371,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blood II: The Chosen", "game_detection": [ @@ -96434,7 +90391,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dive to the Titanic", "game_detection": [ @@ -96449,7 +90405,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Runaway: A Road Adventure", "game_detection": [ @@ -96464,7 +90419,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Empires: Dawn of the Modern World", "game_detection": [ @@ -96476,7 +90430,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cards and Castles", "game_detection": [ @@ -96491,7 +90444,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Space Hack", "game_detection": [ @@ -96506,7 +90458,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Evil Pumpkin: The Lost Halloween", "game_detection": [ @@ -96521,7 +90472,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Slayaway Camp", "game_detection": [ @@ -96536,7 +90486,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Project Aftermath", "game_detection": [ @@ -96551,7 +90500,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Still Life", "game_detection": [ @@ -96571,7 +90519,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NotGTAV", "game_detection": [ @@ -96586,7 +90533,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Boid", "game_detection": [ @@ -96601,7 +90547,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "EverQuest 2", "game_detection": [ @@ -96662,7 +90607,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Haunted", "game_detection": [ @@ -96674,7 +90618,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2009 Demo", "game_detection": [ @@ -96686,7 +90629,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pagan Online", "game_detection": [ @@ -96697,7 +90639,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nova Blitz", "game_detection": [ @@ -96712,7 +90653,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "D4", "game_detection": [ @@ -96727,7 +90667,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Galactic Civilizations", "game_detection": [ @@ -96748,7 +90687,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Concrete Jungle", "game_detection": [ @@ -96763,7 +90701,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Red Dead Redemption 2", "game_detection": [ @@ -96774,7 +90711,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Trek Armada", "game_detection": [ @@ -96786,7 +90722,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GearCity", "game_detection": [ @@ -96801,7 +90736,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fantasy Earth Zero", "game_detection": [ @@ -96814,7 +90748,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Poker Night at the Inventory", "game_detection": [ @@ -96835,7 +90768,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bad Mojo Redux", "game_detection": [ @@ -96850,7 +90782,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Trials Evolution: Gold Edition", "game_detection": [ @@ -96865,7 +90796,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NBA 2K17", "game_detection": [ @@ -96880,7 +90810,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Season of 12 Colors", "game_detection": [ @@ -96895,7 +90824,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Replica", "game_detection": [ @@ -96910,7 +90838,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "True Crime: Streets of LA", "game_detection": [ @@ -96922,7 +90849,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Guacamelee!", "game_detection": [ @@ -96942,7 +90868,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Danganronpa V3: Killing Harmony", "game_detection": [ @@ -96957,7 +90882,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "F.E.A.R. Perseus Mandate", "game_detection": [ @@ -96977,7 +90901,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Al Emmo and the Lost Dutchman's Mine", "game_detection": [ @@ -96992,7 +90915,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Life is Strange 2", "game_detection": [ @@ -97003,7 +90925,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fists of FU", "game_detection": [ @@ -97019,7 +90940,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SimCity 4 Deluxe", "game_detection": [ @@ -97040,7 +90960,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Joint Task Force", "game_detection": [ @@ -97052,7 +90971,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ray Gigant", "game_detection": [ @@ -97067,7 +90985,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rivals of Aether", "game_detection": [ @@ -97082,7 +90999,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Project Hospital", "game_detection": [ @@ -97093,7 +91009,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Steel Ocean", "game_detection": [ @@ -97108,7 +91023,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Imperator", "game_detection": [ @@ -97119,7 +91033,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Owlboy", "game_detection": [ @@ -97134,7 +91047,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fairy Tale About Father Frost, Ivan and Nastya", "game_detection": [ @@ -97149,7 +91061,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SteamWorld Heist", "game_detection": [ @@ -97164,7 +91075,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jack Keane", "game_detection": [ @@ -97178,7 +91088,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Frozen Synapse Prime", "game_detection": [ @@ -97193,7 +91102,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "bob's game", "game_detection": [ @@ -97208,7 +91116,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sun at Night", "game_detection": [ @@ -97220,7 +91127,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Quiplash", "game_detection": [ @@ -97235,7 +91141,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Divinity II: Ego Draconis", "game_detection": [ @@ -97256,7 +91161,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wonderland Online", "game_detection": [ @@ -97269,7 +91173,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Prison Break: The Conspiracy", "game_detection": [ @@ -97281,7 +91184,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Twitch Sings", "game_detection": [ @@ -97300,7 +91202,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Neverending Nightmares", "game_detection": [ @@ -97315,7 +91216,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gloria Victis", "game_detection": [ @@ -97330,7 +91230,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Damnation", "game_detection": [ @@ -97351,7 +91250,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Secret of the Magic Crystals", "game_detection": [ @@ -97366,7 +91264,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tribes: Vengeance", "game_detection": [ @@ -97385,7 +91282,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Strong Bad's Cool Game for Attractive People Episode 4: Dangeresque 3 The Criminal Projective", "game_detection": [ @@ -97407,7 +91303,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Swordsman", "game_detection": [ @@ -97429,7 +91324,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Final Fantasy XV", "game_detection": [ @@ -97443,7 +91337,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NBA 2K11", "game_detection": [ @@ -97463,7 +91356,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Elven Legacy: Magic", "game_detection": [ @@ -97478,7 +91370,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Three Dead Zed", "game_detection": [ @@ -97498,7 +91389,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mortimer Beckett and the Secrets of Spooky Manor", "game_detection": [ @@ -97511,7 +91401,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Feeding Frenzy Deluxe", "game_detection": [ @@ -97525,7 +91414,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Threadspace: Hyperbol", "game_detection": [ @@ -97540,7 +91428,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sudden Strike 2", "game_detection": [ @@ -97553,7 +91440,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Project Zomboid", "game_detection": [ @@ -97564,7 +91450,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spud's Quest", "game_detection": [ @@ -97577,7 +91462,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "prog.1", "game_detection": [ @@ -97592,7 +91476,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heavy Metal Machines", "game_detection": [ @@ -97607,7 +91490,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Universal Combat CE", "game_detection": [ @@ -97622,7 +91504,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "La Tale", "game_detection": [ @@ -97645,7 +91526,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mega Man Legacy Collection", "game_detection": [ @@ -97660,7 +91540,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Video blogger Story", "game_detection": [ @@ -97675,7 +91554,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "All Zombies Must Die!: Scorepocalypse", "game_detection": [ @@ -97690,7 +91568,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rome: Total War - Alexander", "game_detection": [ @@ -97710,7 +91587,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mayan Death Robots", "game_detection": [ @@ -97725,7 +91601,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Swords & Soldiers", "game_detection": [ @@ -97746,7 +91621,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Observation", "game_detection": [ @@ -97757,7 +91631,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Cursed Crusade", "game_detection": [ @@ -97772,7 +91645,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MorphShift Wars", "game_detection": [ @@ -97787,7 +91659,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "TOME", "game_detection": [ @@ -97802,7 +91673,6 @@ ] }, { - "force_display_capture": false, "region": "BR", "title": "Assault Fire", "game_detection": [ @@ -97816,7 +91686,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hidden & Dangerous", "game_detection": [ @@ -97829,7 +91698,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shrek Forever After", "game_detection": [ @@ -97841,7 +91709,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Reaper - Tale of a Pale Swordsman", "game_detection": [ @@ -97856,7 +91723,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mindustry", "game_detection": [ @@ -97867,7 +91733,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Angry Video Game Nerd II: ASSimilation", "game_detection": [ @@ -97882,7 +91747,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Disciples II: Rise of the Elves", "game_detection": [ @@ -97902,7 +91766,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shards of War", "game_detection": [ @@ -97915,7 +91778,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "X-Blades", "game_detection": [ @@ -97928,7 +91790,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ultimate Epic Battle Simulator", "game_detection": [ @@ -97942,7 +91803,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "M.E.R.C.", "game_detection": [ @@ -97956,7 +91816,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zero Escape: The Nonary Games", "game_detection": [ @@ -97971,7 +91830,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Inner World", "game_detection": [ @@ -97992,7 +91850,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Splitgate: Arena Warfare", "game_detection": [ @@ -98007,7 +91864,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nimble Quest", "game_detection": [ @@ -98022,7 +91878,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fist of Jesus", "game_detection": [ @@ -98037,7 +91892,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Estranged: Act I", "game_detection": [ @@ -98052,7 +91906,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Oh...Sir! The Insult Simulator", "game_detection": [ @@ -98067,7 +91920,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Of Guards And Thieves", "game_detection": [ @@ -98082,7 +91934,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rexaura", "game_detection": [ @@ -98097,7 +91948,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zoo Tycoon 2", "game_detection": [ @@ -98109,7 +91959,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Price of Freedom", "game_detection": [ @@ -98125,7 +91974,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Plain Sight", "game_detection": [ @@ -98140,7 +91988,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Krautscape", "game_detection": [ @@ -98155,7 +92002,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Majesty Gold Edition", "game_detection": [ @@ -98170,7 +92016,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Haunted House", "game_detection": [ @@ -98185,7 +92030,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Why So Evil", "game_detection": [ @@ -98200,7 +92044,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "CastleStorm", "game_detection": [ @@ -98215,7 +92058,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LEGO Indiana Jones 2: The Adventure Continues", "game_detection": [ @@ -98235,7 +92077,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Batman: Arkham Asylum", "game_detection": [ @@ -98257,7 +92098,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sanctum 2", "game_detection": [ @@ -98272,7 +92112,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Final Fantasy VIII", "game_detection": [ @@ -98292,7 +92131,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alien Shooter", "game_detection": [ @@ -98307,7 +92145,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Catan: Creator's Edition", "game_detection": [ @@ -98322,7 +92159,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RIP 3 - The Last Hero", "game_detection": [ @@ -98337,7 +92173,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deadpool", "game_detection": [ @@ -98352,7 +92187,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Red Crucible: Firestorm", "game_detection": [ @@ -98367,7 +92201,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tales of Monkey Island 4: The Trial and Execution of Guybrush Threepwood", "game_detection": [ @@ -98387,7 +92220,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kingdom", "game_detection": [ @@ -98402,7 +92234,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Enemy Front", "game_detection": [ @@ -98417,7 +92248,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "WRC 5", "game_detection": [ @@ -98432,7 +92262,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Armed and Dangerous", "game_detection": [ @@ -98454,7 +92283,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vanguard Princess", "game_detection": [ @@ -98469,7 +92297,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Devil May Cry 5", "game_detection": [ @@ -98480,7 +92307,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Silent Hill 2", "game_detection": [ @@ -98492,7 +92318,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Don't Move", "game_detection": [ @@ -98504,7 +92329,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Operation 7", "game_detection": [ @@ -98521,7 +92345,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Niko: Through The Dream", "game_detection": [ @@ -98536,7 +92359,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spider-Man: Web of Shadows", "game_detection": [ @@ -98550,7 +92372,6 @@ ] }, { - "force_display_capture": false, "region": "RU", "title": "Jade Dynasty", "game_detection": [ @@ -98566,7 +92387,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battlefield Vietnam", "game_detection": [ @@ -98579,7 +92399,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rigonauts", "game_detection": [ @@ -98594,7 +92413,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "My Tribe", "game_detection": [ @@ -98609,7 +92427,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Magic The Gathering: Duels of the Planeswalkers 2013", "game_detection": [ @@ -98624,7 +92441,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Poxnora", "game_detection": [ @@ -98639,7 +92455,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Operation Flashpoint: Resistance", "game_detection": [ @@ -98651,7 +92466,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "CO-OP: Decrypted", "game_detection": [ @@ -98666,7 +92480,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ArcaniA: Fall of Setarrif", "game_detection": [ @@ -98681,7 +92494,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fruit Ninja VR", "game_detection": [ @@ -98697,7 +92509,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deadstep", "game_detection": [ @@ -98711,7 +92522,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "Meng San Guo", "game_detection": [ @@ -98725,7 +92535,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Harvest: Massive Encounter", "game_detection": [ @@ -98740,7 +92549,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Perfect Dark Source", "game_detection": [ @@ -98757,7 +92565,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Naught Reawakening", "game_detection": [ @@ -98772,7 +92579,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sir, You Are Being Hunted", "game_detection": [ @@ -98799,7 +92605,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RIP", "game_detection": [ @@ -98814,7 +92619,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Masters of the World: Geo-Political Simulator 3", "game_detection": [ @@ -98829,7 +92633,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Katana ZERO", "game_detection": [ @@ -98840,7 +92643,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Just Cause 3", "game_detection": [ @@ -98855,7 +92657,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chariot", "game_detection": [ @@ -98870,7 +92671,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Seduce Me: the Otome", "game_detection": [ @@ -98885,7 +92685,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Defenders of the Last Colony", "game_detection": [ @@ -98897,7 +92696,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "They Bleed Pixels", "game_detection": [ @@ -98911,7 +92709,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Impossible Creatures", "game_detection": [ @@ -98923,7 +92720,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Carom 3D", "game_detection": [ @@ -98935,7 +92731,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Project AURA", "game_detection": [ @@ -98950,7 +92745,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Angel Code: A Linda Hyde Mystery", "game_detection": [ @@ -98967,7 +92761,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "World in Conflict: Soviet Assault", "game_detection": [ @@ -98983,7 +92776,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Legends of Eisenwald", "game_detection": [ @@ -98998,7 +92790,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "\"Beware Planet Earth!\"", "game_detection": [ @@ -99013,7 +92804,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Goodbye Deponia", "game_detection": [ @@ -99033,7 +92823,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Digimon Masters", "game_detection": [ @@ -99065,7 +92854,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Savant: Ascent", "game_detection": [ @@ -99086,7 +92874,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Way of the Samurai 4", "game_detection": [ @@ -99101,7 +92888,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "3SwitcheD", "game_detection": [ @@ -99116,7 +92902,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Five Nights at Freddy's 3", "game_detection": [ @@ -99131,7 +92916,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MotoGP 13", "game_detection": [ @@ -99146,7 +92930,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sigils of Elohim", "game_detection": [ @@ -99161,7 +92944,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dawn of Discovery", "game_detection": [ @@ -99181,7 +92963,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LEGO DC Super-Villains", "game_detection": [ @@ -99192,7 +92973,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DC Universe Online", "game_detection": [ @@ -99220,7 +93000,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fable III", "game_detection": [ @@ -99240,7 +93019,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Command & Conquer: Red Alert 3 Uprising", "game_detection": [ @@ -99260,7 +93038,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Snow Horse", "game_detection": [ @@ -99275,7 +93052,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sudden Strike 4", "game_detection": [ @@ -99286,7 +93062,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hot Dish", "game_detection": [ @@ -99301,7 +93076,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heli-Heroes", "game_detection": [ @@ -99316,7 +93090,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heavy Fire: Afghanistan", "game_detection": [ @@ -99337,7 +93110,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Portal Stories: Mel", "game_detection": [ @@ -99352,7 +93124,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shantae Half-Genie Hero", "game_detection": [ @@ -99374,7 +93145,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Arcane Saga Online", "game_detection": [ @@ -99395,7 +93165,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kraven Manor", "game_detection": [ @@ -99410,7 +93179,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Space Siege", "game_detection": [ @@ -99430,7 +93198,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Forgotten Myths", "game_detection": [ @@ -99445,7 +93212,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NASCAR Racing Season 2003", "game_detection": [ @@ -99457,7 +93223,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NHL 08", "game_detection": [ @@ -99474,7 +93239,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Perfect Ace 2: The Championships", "game_detection": [ @@ -99486,7 +93250,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gnomoria", "game_detection": [ @@ -99511,7 +93274,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Create", "game_detection": [ @@ -99524,7 +93286,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Witcher Adventure Game", "game_detection": [ @@ -99539,7 +93300,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Black Lake", "game_detection": [ @@ -99559,7 +93319,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sherlock Holmes: The Awakened", "game_detection": [ @@ -99574,7 +93333,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pole Position 2012", "game_detection": [ @@ -99589,7 +93347,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dimensity", "game_detection": [ @@ -99604,7 +93361,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vertical Drop Heroes HD", "game_detection": [ @@ -99625,7 +93381,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark Raid", "game_detection": [ @@ -99640,7 +93395,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NEKOPARA Vol. 2", "game_detection": [ @@ -99655,7 +93409,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battle Worlds: Kronos", "game_detection": [ @@ -99670,7 +93423,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Fish Fillets 2", "game_detection": [ @@ -99685,7 +93437,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dreamfall Chapters", "game_detection": [ @@ -99700,7 +93451,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chocolatier: Decadence by Design", "game_detection": [ @@ -99715,7 +93465,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hitman: Codename 47", "game_detection": [ @@ -99736,7 +93485,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Indiana Jones and the Last Crusade", "game_detection": [ @@ -99751,7 +93499,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Homefront", "game_detection": [ @@ -99766,7 +93513,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Amanda Rose: The Game of Time", "game_detection": [ @@ -99779,7 +93525,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Adventure Time: The Secret of the Nameless Kingdom", "game_detection": [ @@ -99794,7 +93539,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FOTONICA", "game_detection": [ @@ -99806,7 +93550,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bridge Project", "game_detection": [ @@ -99821,7 +93564,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Dawn of War: Winter Assault", "game_detection": [ @@ -99852,7 +93594,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MXGP Compact", "game_detection": [ @@ -99867,7 +93608,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RPG Maker VX Ace Lite", "game_detection": [ @@ -99887,7 +93627,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Koihime Enbu RyoRaiRai", "game_detection": [ @@ -99901,7 +93640,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sad Story of Emmeline Burns", "game_detection": [ @@ -99916,7 +93654,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Might & Magic Showdown", "game_detection": [ @@ -99930,7 +93667,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blackwake", "game_detection": [ @@ -99945,7 +93681,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Storm United", "game_detection": [ @@ -99960,7 +93695,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chronicles of Mystery: Secret of the Lost Kingdom", "game_detection": [ @@ -99972,7 +93706,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Railroad Pioneer", "game_detection": [ @@ -99987,7 +93720,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dragons and Titans", "game_detection": [ @@ -100002,7 +93734,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Epic Cards Battle", "game_detection": [ @@ -100017,7 +93748,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Escape", "game_detection": [ @@ -100032,7 +93762,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "StarForge", "game_detection": [ @@ -100047,7 +93776,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dementium II", "game_detection": [ @@ -100062,7 +93790,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "HighStreet 5", "game_detection": [ @@ -100075,7 +93802,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro Cycling Manager 2013", "game_detection": [ @@ -100090,7 +93816,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Sanctum TD", "game_detection": [ @@ -100105,7 +93830,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lucius", "game_detection": [ @@ -100120,7 +93844,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sins of a Solar Empire: Diplomacy", "game_detection": [ @@ -100132,7 +93855,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Amazing Spider-Man 2", "game_detection": [ @@ -100147,7 +93869,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tales of Fantasy", "game_detection": [ @@ -100160,7 +93881,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ski Region Simulator", "game_detection": [ @@ -100175,7 +93895,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tales of Zestiria", "game_detection": [ @@ -100190,7 +93909,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Costume Quest", "game_detection": [ @@ -100223,7 +93941,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Snark Busters: High Society", "game_detection": [ @@ -100236,7 +93953,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bombing Bastards", "game_detection": [ @@ -100251,7 +93967,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hyperdimension Neptunia Re;Birth 2: Sisters Generation", "game_detection": [ @@ -100266,7 +93981,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Starlite Astronaut Academy: G-Ball", "game_detection": [ @@ -100281,7 +93995,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hyperdimension Neptunia Re;Birth1", "game_detection": [ @@ -100296,7 +94009,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MotorM4X Offroad Extreme", "game_detection": [ @@ -100311,7 +94023,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dethroned!", "game_detection": [ @@ -100326,7 +94037,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Age of Decadence", "game_detection": [ @@ -100341,7 +94051,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Twisted Lands: Insomniac", "game_detection": [ @@ -100354,7 +94063,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warlock 2: the Exiled", "game_detection": [ @@ -100369,7 +94077,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Miner Wars Arena", "game_detection": [ @@ -100388,7 +94095,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Total War: WARHAMMER II", "game_detection": [ @@ -100403,7 +94109,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Famaze", "game_detection": [ @@ -100418,7 +94123,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pool Nation VR", "game_detection": [ @@ -100434,7 +94138,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ortus Regni", "game_detection": [ @@ -100449,7 +94152,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "7 Wonders: Magical Mystery Tour", "game_detection": [ @@ -100464,7 +94166,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crawl", "game_detection": [ @@ -100476,7 +94177,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Project Highrise", "game_detection": [ @@ -100491,7 +94191,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Relic Hunters Zero", "game_detection": [ @@ -100506,7 +94205,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Final Station", "game_detection": [ @@ -100521,7 +94219,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mini Motor Racing EVO", "game_detection": [ @@ -100536,7 +94233,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shattered Skies", "game_detection": [ @@ -100551,7 +94247,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tiny Brains", "game_detection": [ @@ -100566,7 +94261,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Aim Lab", "game_detection": [ @@ -100577,7 +94271,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sakura Clicker", "game_detection": [ @@ -100593,7 +94286,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Killing Floor 2", "game_detection": [ @@ -100608,7 +94300,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Daylight", "game_detection": [ @@ -100623,7 +94314,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Skyborn", "game_detection": [ @@ -100638,7 +94328,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Time of Dragons", "game_detection": [ @@ -100653,7 +94342,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Games of Glory", "game_detection": [ @@ -100668,7 +94356,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Cat Lady Demo", "game_detection": [ @@ -100680,7 +94367,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sonic Adventure DX: Director's Cut", "game_detection": [ @@ -100695,7 +94381,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Raptor: Call of the Shadows (2010)", "game_detection": [ @@ -100709,7 +94394,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "10000000", "game_detection": [ @@ -100729,7 +94413,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "World Basketball Manager 2010", "game_detection": [ @@ -100744,7 +94427,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Supreme Destiny", "game_detection": [ @@ -100758,7 +94440,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "F.E.A.R.: Extraction Point", "game_detection": [ @@ -100783,7 +94464,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "iBomber Defense Pacific", "game_detection": [ @@ -100798,7 +94478,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Arslan: The Warriors of Legend", "game_detection": [ @@ -100814,7 +94493,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Dark Eye: Chains of Satinav", "game_detection": [ @@ -100834,7 +94512,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Brink", "game_detection": [ @@ -100849,7 +94526,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Modular Combat", "game_detection": [ @@ -100864,7 +94540,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ASTRONEER", "game_detection": [ @@ -100887,7 +94562,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GoD Factory: Wingmen", "game_detection": [ @@ -100902,7 +94576,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ludwig", "game_detection": [ @@ -100917,7 +94590,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Caesar IV", "game_detection": [ @@ -100929,7 +94601,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Graviteam Tactics: Operation Star", "game_detection": [ @@ -100944,7 +94615,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "PITCH-HIT", "game_detection": [ @@ -100960,7 +94630,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Worms Ultimate Mayhem", "game_detection": [ @@ -100975,7 +94644,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SickBrick", "game_detection": [ @@ -100987,7 +94655,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Oddworld: Abe’s Oddysee - New ‘n’ Tasty", "game_detection": [ @@ -101002,7 +94669,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hellbound", "game_detection": [ @@ -101013,7 +94679,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Irrational Exuberance: Prologue", "game_detection": [ @@ -101029,7 +94694,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Last Chaos", "game_detection": [ @@ -101049,7 +94713,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dragon Rage", "game_detection": [ @@ -101064,7 +94727,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Borderlands 3", "game_detection": [ @@ -101083,7 +94745,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "F-22 Lightning 3", "game_detection": [ @@ -101098,7 +94759,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Maia", "game_detection": [ @@ -101113,7 +94773,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Project Gorgon", "game_detection": [ @@ -101125,7 +94784,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Munich Bus Simulator", "game_detection": [ @@ -101140,7 +94798,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Ball", "game_detection": [ @@ -101155,7 +94812,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sin", "game_detection": [ @@ -101186,7 +94842,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "H1Z1", "game_detection": [ @@ -101208,7 +94863,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Worms", "game_detection": [ @@ -101223,7 +94877,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Biozone", "game_detection": [ @@ -101238,7 +94891,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hospital Tycoon", "game_detection": [ @@ -101251,7 +94903,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sherlock Holmes vs. Jack the Ripper", "game_detection": [ @@ -101266,7 +94917,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Agatha Christie : Murder on the Orient Express", "game_detection": [ @@ -101281,7 +94931,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RUSH", "game_detection": [ @@ -101296,7 +94945,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Guns of Icarus", "game_detection": [ @@ -101311,7 +94959,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ReCore", "game_detection": [ @@ -101329,7 +94976,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Gate", "game_detection": [ @@ -101344,7 +94990,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Let’s Sing", "game_detection": [ @@ -101359,7 +95004,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "3 Stars of Destiny", "game_detection": [ @@ -101374,7 +95018,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Perils of Man", "game_detection": [ @@ -101389,7 +95032,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Baseball Mogul 2007", "game_detection": [ @@ -101406,7 +95048,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fallen Legion+", "game_detection": [ @@ -101420,7 +95061,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shaun White Snowboarding", "game_detection": [ @@ -101441,7 +95081,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kings of Kung Fu", "game_detection": [ @@ -101456,7 +95095,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Empyrion: Galactic Survival", "game_detection": [ @@ -101475,7 +95113,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Saints Row: The Third", "game_detection": [ @@ -101490,7 +95127,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Death to Spies: Moment of Truth", "game_detection": [ @@ -101510,7 +95146,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "R.B.I. Baseball 15", "game_detection": [ @@ -101525,7 +95160,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dragon's Dogma: Dark Arisen", "game_detection": [ @@ -101540,7 +95174,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Need for Speed: Carbon", "game_detection": [ @@ -101558,7 +95191,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LEGO Harry Potter: Years 5-7", "game_detection": [ @@ -101578,7 +95210,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Invisible, Inc.", "game_detection": [ @@ -101593,7 +95224,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vintage VR", "game_detection": [ @@ -101609,7 +95239,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tap Tap Infinity", "game_detection": [ @@ -101624,7 +95253,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Solstice: Reborn", "game_detection": [ @@ -101639,7 +95267,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Snark Busters: All Revved Up!", "game_detection": [ @@ -101652,7 +95279,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blacklight: Tango Down", "game_detection": [ @@ -101667,7 +95293,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Timberman", "game_detection": [ @@ -101682,7 +95307,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "March of the Living", "game_detection": [ @@ -101697,7 +95321,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Red Solstice", "game_detection": [ @@ -101712,7 +95335,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Trickster Season 2", "game_detection": [ @@ -101732,7 +95354,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Phantasy Star Online: Blue Burst", "game_detection": [ @@ -101753,7 +95374,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Homefront: The Revolution", "game_detection": [ @@ -101768,7 +95388,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Space Hulk: Tactics", "game_detection": [ @@ -101779,7 +95398,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "UFO: Aftershock", "game_detection": [ @@ -101799,7 +95417,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A-Train 8", "game_detection": [ @@ -101814,7 +95431,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Town of Salem", "game_detection": [ @@ -101830,7 +95446,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Realms of Arkania: Blade of Destiny", "game_detection": [ @@ -101845,7 +95460,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sword of the Stars: Ultimate Collection", "game_detection": [ @@ -101860,7 +95474,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Beat Saber", "game_detection": [ @@ -101875,7 +95488,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "HELL YEAH! Wrath of the Dead Rabbit", "game_detection": [ @@ -101890,7 +95502,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Prototype", "game_detection": [ @@ -101910,7 +95521,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sam & Max: The Devil's Playhouse: They Stole Max's Brain!", "game_detection": [ @@ -101925,7 +95535,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "All Aspect Warfare", "game_detection": [ @@ -101940,7 +95549,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chaos Domain", "game_detection": [ @@ -101955,7 +95563,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Radiator 2", "game_detection": [ @@ -101970,7 +95577,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Swashbucklers: Blue vs. Grey", "game_detection": [ @@ -101982,7 +95588,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alien: Isolation", "game_detection": [ @@ -101997,7 +95602,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sonic Riders", "game_detection": [ @@ -102010,7 +95614,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warcraft II: Tides of Darkness", "game_detection": [ @@ -102023,7 +95626,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Build-a-Lot", "game_detection": [ @@ -102038,7 +95640,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Galactic Civilizations II: Ultimate Edition", "game_detection": [ @@ -102059,7 +95660,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Timespinner", "game_detection": [ @@ -102070,7 +95670,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "I Am Alive", "game_detection": [ @@ -102085,7 +95684,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Out of the Park Baseball 13", "game_detection": [ @@ -102097,7 +95695,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spintires: MudRunner", "game_detection": [ @@ -102108,7 +95705,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Splatters", "game_detection": [ @@ -102128,7 +95724,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeon Siege 3", "game_detection": [ @@ -102143,7 +95738,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Caesar IV Demo", "game_detection": [ @@ -102156,7 +95750,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tobe's Vertical Adventure", "game_detection": [ @@ -102171,7 +95764,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Curling 2012", "game_detection": [ @@ -102184,7 +95776,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Serious Sam 2 Demo", "game_detection": [ @@ -102199,7 +95790,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fistful of Frags", "game_detection": [ @@ -102224,7 +95814,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Let's Ride! Silver Buckle Stables", "game_detection": [ @@ -102236,7 +95825,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "140", "game_detection": [ @@ -102256,7 +95844,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mafia II", "game_detection": [ @@ -102271,7 +95858,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dirty Bomb", "game_detection": [ @@ -102286,7 +95872,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pure Hold'em", "game_detection": [ @@ -102301,7 +95886,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eldritch", "game_detection": [ @@ -102322,7 +95906,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lovers in a Dangerous Spacetime", "game_detection": [ @@ -102337,7 +95920,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mean Streets", "game_detection": [ @@ -102352,7 +95934,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FIFA Soccer 11", "game_detection": [ @@ -102365,7 +95946,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "No Man's Sky", "game_detection": [ @@ -102385,7 +95965,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NECROPOLIS", "game_detection": [ @@ -102400,7 +95979,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Secret of Pineview Forest", "game_detection": [ @@ -102415,7 +95993,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "the static speaks my name", "game_detection": [ @@ -102430,7 +96007,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gal*Gun: Double Peace", "game_detection": [ @@ -102445,7 +96021,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Orbital Gear", "game_detection": [ @@ -102460,7 +96035,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Amazing Wagon Adventure", "game_detection": [ @@ -102475,7 +96049,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DIVEKICK", "game_detection": [ @@ -102490,7 +96063,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nancy Drew: The Deadly Device", "game_detection": [ @@ -102505,7 +96077,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gunhound EX", "game_detection": [ @@ -102520,7 +96091,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Magic: The Gathering - Tactics", "game_detection": [ @@ -102542,7 +96112,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tomb Raider: The Last Revelation", "game_detection": [ @@ -102557,7 +96126,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rhythm Zone", "game_detection": [ @@ -102572,7 +96140,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Strike Suit Zero", "game_detection": [ @@ -102592,7 +96159,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mari0", "game_detection": [ @@ -102604,7 +96170,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Killer Hornet: Resurrection", "game_detection": [ @@ -102619,7 +96184,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Trimmer Tycoon", "game_detection": [ @@ -102634,7 +96198,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Guardians of Middle-Earth", "game_detection": [ @@ -102649,7 +96212,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sakura Magical Girls", "game_detection": [ @@ -102664,7 +96226,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Laserlife", "game_detection": [ @@ -102679,7 +96240,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spectra", "game_detection": [ @@ -102694,7 +96254,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bust-N-Rush", "game_detection": [ @@ -102706,7 +96265,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Under the Ocean", "game_detection": [ @@ -102721,7 +96279,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mitos.is: The Game", "game_detection": [ @@ -102736,7 +96293,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fallen Earth", "game_detection": [ @@ -102757,7 +96313,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Royal Envoy 2", "game_detection": [ @@ -102770,7 +96325,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vangers", "game_detection": [ @@ -102785,7 +96339,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bleed", "game_detection": [ @@ -102800,7 +96353,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer: Vermintide 2", "game_detection": [ @@ -102829,7 +96381,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bowling at the Lake", "game_detection": [ @@ -102845,7 +96396,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Darksiders III", "game_detection": [ @@ -102856,7 +96406,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ArmA: Combat Operations", "game_detection": [ @@ -102868,7 +96417,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rapture Rejects", "game_detection": [ @@ -102879,7 +96427,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Men of Valor Demo", "game_detection": [ @@ -102893,7 +96440,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Totally Accurate Battlegrounds", "game_detection": [ @@ -102907,7 +96453,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Musaic Box", "game_detection": [ @@ -102922,7 +96467,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Steel Division 2", "game_detection": [ @@ -102933,7 +96477,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Magical Drop V", "game_detection": [ @@ -102948,7 +96491,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "East India Company: Battle of Trafalgar", "game_detection": [ @@ -102963,7 +96505,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "James Bond 007: Quantum of Solace", "game_detection": [ @@ -102984,7 +96525,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Escape Dead Island", "game_detection": [ @@ -102999,7 +96539,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Unmechanical", "game_detection": [ @@ -103021,7 +96560,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Truffle Saga", "game_detection": [ @@ -103036,7 +96574,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Broken Sword: The Shadow of the Templars - The Director's Cut", "game_detection": [ @@ -103058,7 +96595,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Flock!", "game_detection": [ @@ -103073,7 +96609,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stalin vs. Martians", "game_detection": [ @@ -103088,7 +96623,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Voices from the Sea", "game_detection": [ @@ -103103,7 +96637,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Reservoir Dogs", "game_detection": [ @@ -103115,7 +96648,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "Sword 2", "game_detection": [ @@ -103128,7 +96660,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeons of Dredmor", "game_detection": [ @@ -103148,7 +96679,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Urban Empire", "game_detection": [ @@ -103162,7 +96692,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Project: Snowblind", "game_detection": [ @@ -103199,7 +96728,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Q-World", "game_detection": [ @@ -103212,7 +96740,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sword of the Stars II: Lords of Winter", "game_detection": [ @@ -103227,7 +96754,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mystery P.I.: Stolen in San Francisco", "game_detection": [ @@ -103239,7 +96765,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BasketDudes", "game_detection": [ @@ -103252,7 +96777,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shattered Horizon", "game_detection": [ @@ -103267,7 +96791,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cubot", "game_detection": [ @@ -103282,7 +96805,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Street Fighter 30th Anniversary Collection", "game_detection": [ @@ -103296,7 +96818,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Q.U.B.E. 2", "game_detection": [ @@ -103307,7 +96828,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "One Finger Death Punch", "game_detection": [ @@ -103322,7 +96842,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Renaissance Heroes", "game_detection": [ @@ -103343,7 +96862,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Prison Tycoon", "game_detection": [ @@ -103356,7 +96874,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Harvest", "game_detection": [ @@ -103371,7 +96888,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Notruf 112 Emergency Call 112", "game_detection": [ @@ -103382,7 +96898,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DayZ", "game_detection": [ @@ -103397,7 +96912,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cuisine Royale", "game_detection": [ @@ -103412,7 +96926,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zeit²", "game_detection": [ @@ -103427,7 +96940,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "World of Tanks", "game_detection": [ @@ -103442,7 +96954,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Command & Conquer 3: Kane's Wrath", "game_detection": [ @@ -103463,7 +96974,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Quest Run", "game_detection": [ @@ -103478,7 +96988,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sky Force Anniversary", "game_detection": [ @@ -103493,7 +97002,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Champions of Regnum", "game_detection": [ @@ -103514,7 +97022,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tom Clancy's Ghost Recon: Advanced Warfighter", "game_detection": [ @@ -103533,7 +97040,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Five Nights at Freddy's: Sister Location", "game_detection": [ @@ -103548,7 +97054,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Arma II: Reinforcements", "game_detection": [ @@ -103561,7 +97066,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tom Clancy's Rainbow Six 3: Raven Shield", "game_detection": [ @@ -103575,7 +97079,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Drifter", "game_detection": [ @@ -103590,7 +97093,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Worms Reloaded", "game_detection": [ @@ -103610,7 +97112,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bunch of Heroes", "game_detection": [ @@ -103625,7 +97126,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fractal: Make Blooms Not War", "game_detection": [ @@ -103645,7 +97145,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Grand Theft Auto 2", "game_detection": [ @@ -103670,7 +97169,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "This War of Mine", "game_detection": [ @@ -103690,7 +97188,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Final Fantasy XIV Online: A Realm Reborn", "game_detection": [ @@ -103712,7 +97209,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Styx: Shards of Darkness", "game_detection": [ @@ -103727,7 +97223,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sideway: New York", "game_detection": [ @@ -103742,7 +97237,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Seal Online", "game_detection": [ @@ -103756,7 +97250,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wen Dao", "game_detection": [ @@ -103770,7 +97263,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark Souls Remastered", "game_detection": [ @@ -103784,7 +97276,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rush for Berlin: Gold Edition", "game_detection": [ @@ -103799,7 +97290,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A Mother's Inferno", "game_detection": [ @@ -103811,7 +97301,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wakfu", "game_detection": [ @@ -103845,7 +97334,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spellbreak", "game_detection": [ @@ -103857,7 +97345,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lucent Heart", "game_detection": [ @@ -103879,7 +97366,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sword of the Stars: The Pit", "game_detection": [ @@ -103894,7 +97380,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "CAPSULE", "game_detection": [ @@ -103916,7 +97401,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "F1 2016", "game_detection": [ @@ -103931,7 +97415,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hitman 2: Silent Assassin", "game_detection": [ @@ -103946,7 +97429,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Metal Slug Defense", "game_detection": [ @@ -103961,7 +97443,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Risen", "game_detection": [ @@ -103981,7 +97462,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "7,62 Hard Life", "game_detection": [ @@ -103996,7 +97476,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DoDonPachi Resurrection", "game_detection": [ @@ -104011,7 +97490,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A Game of Thrones: Genesis", "game_detection": [ @@ -104026,7 +97504,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Doc Clock: The Toasted Sandwich of Time", "game_detection": [ @@ -104041,7 +97518,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deathtrap", "game_detection": [ @@ -104056,7 +97532,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nimbus", "game_detection": [ @@ -104071,7 +97546,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zack Zero", "game_detection": [ @@ -104086,7 +97560,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shattered Suns", "game_detection": [ @@ -104099,7 +97572,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "La-Mulana 2", "game_detection": [ @@ -104113,7 +97585,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Galaxy Online", "game_detection": [ @@ -104126,7 +97597,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mortal Kombat Arcade Kollection", "game_detection": [ @@ -104141,7 +97611,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Viking: Battle for Asgard", "game_detection": [ @@ -104156,7 +97625,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hexcells", "game_detection": [ @@ -104171,7 +97639,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Crate Box", "game_detection": [ @@ -104185,7 +97652,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "StarCraft II", "game_detection": [ @@ -104205,7 +97671,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Iron Grip: Warlord", "game_detection": [ @@ -104222,7 +97687,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mystery Chronicle: One Way Heroics", "game_detection": [ @@ -104237,7 +97701,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alliance of Valiant Arms", "game_detection": [ @@ -104268,7 +97731,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GreedFall", "game_detection": [ @@ -104279,7 +97741,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Baseball Mogul 2010", "game_detection": [ @@ -104291,7 +97752,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Miscreated", "game_detection": [ @@ -104306,7 +97766,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wanderlust Adventures", "game_detection": [ @@ -104322,7 +97781,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "PARTICLE MACE", "game_detection": [ @@ -104337,7 +97795,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lead & Gold: Gangs of the Wild West", "game_detection": [ @@ -104352,7 +97809,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Day One: Garry's Incident", "game_detection": [ @@ -104367,7 +97823,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Factory Town", "game_detection": [ @@ -104378,7 +97833,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "I'm not a Monster", "game_detection": [ @@ -104389,7 +97843,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Silent Hunter 5 - Battle of the Atlantic", "game_detection": [ @@ -104409,7 +97862,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Poker Superstars II", "game_detection": [ @@ -104424,7 +97876,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Infernal", "game_detection": [ @@ -104439,7 +97890,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Final Slam 2", "game_detection": [ @@ -104454,7 +97904,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Wars: Republic Commando Demo", "game_detection": [ @@ -104471,7 +97920,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rising Thunder", "game_detection": [ @@ -104485,7 +97933,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Particulars", "game_detection": [ @@ -104505,7 +97952,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pool Nation", "game_detection": [ @@ -104520,7 +97966,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Forge Quest", "game_detection": [ @@ -104535,7 +97980,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Plastic Playground", "game_detection": [ @@ -104550,7 +97994,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Songs2See Game", "game_detection": [ @@ -104565,7 +98008,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gears Pop!", "game_detection": [ @@ -104580,7 +98022,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Might and Magic: Heroes VII – Trial by Fire", "game_detection": [ @@ -104595,7 +98036,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shadows Awakening", "game_detection": [ @@ -104606,7 +98046,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "F.E.A.R. 2: Project Origin Demo", "game_detection": [ @@ -104626,7 +98065,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "HolyBeast Online", "game_detection": [ @@ -104638,7 +98076,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fiesta", "game_detection": [ @@ -104672,7 +98109,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "G-Senjou no Maou", "game_detection": [ @@ -104687,7 +98123,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Thrillville: Off the Rails", "game_detection": [ @@ -104707,7 +98142,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "G-Force", "game_detection": [ @@ -104719,7 +98153,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Cat and the Coup", "game_detection": [ @@ -104734,7 +98167,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "StarMade", "game_detection": [ @@ -104749,7 +98181,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zhu Xian 3", "game_detection": [ @@ -104764,7 +98195,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Xpand Rally", "game_detection": [ @@ -104784,7 +98214,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "99 Spirits", "game_detection": [ @@ -104799,7 +98228,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chernobyl Underground", "game_detection": [ @@ -104811,7 +98239,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Void", "game_detection": [ @@ -104826,7 +98253,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "IL-2 Sturmovik: Cliffs of Dover", "game_detection": [ @@ -104841,7 +98267,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deer Hunter: The 2005 Season", "game_detection": [ @@ -104853,7 +98278,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "OpenTTD", "game_detection": [ @@ -104865,7 +98289,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hellgate: London", "game_detection": [ @@ -104876,7 +98299,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Metin2", "game_detection": [ @@ -104909,7 +98331,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mushroom 11", "game_detection": [ @@ -104924,7 +98345,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Iggle Pop Deluxe", "game_detection": [ @@ -104945,7 +98365,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bound by Flame", "game_detection": [ @@ -104960,7 +98379,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "London 2012: The Official Video Game Of The Olympic Games", "game_detection": [ @@ -104975,7 +98393,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rex Rocket", "game_detection": [ @@ -104990,7 +98407,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dream Chronicles", "game_detection": [ @@ -105005,7 +98421,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Papers, Please", "game_detection": [ @@ -105025,7 +98440,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Muffin Knight", "game_detection": [ @@ -105040,7 +98454,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Planetside", "game_detection": [ @@ -105085,7 +98498,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "Call of Duty Online", "game_detection": [ @@ -105099,7 +98511,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ryse: Son of Rome", "game_detection": [ @@ -105114,7 +98525,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Startopia", "game_detection": [ @@ -105134,7 +98544,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SimCity", "game_detection": [ @@ -105147,7 +98556,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "8BitMMO", "game_detection": [ @@ -105162,7 +98570,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mahjongg Investigations: Under Suspicion", "game_detection": [ @@ -105177,7 +98584,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cognition: An Erica Reed Thriller", "game_detection": [ @@ -105192,7 +98598,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Metronomicon", "game_detection": [ @@ -105208,7 +98613,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Servo", "game_detection": [ @@ -105223,7 +98627,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Might & Magic X: Legacy", "game_detection": [ @@ -105247,7 +98650,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warfare", "game_detection": [ @@ -105262,7 +98664,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Suffering", "game_detection": [ @@ -105274,7 +98675,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sonic Heroes", "game_detection": [ @@ -105288,7 +98688,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ironclads: American Civil War", "game_detection": [ @@ -105303,7 +98702,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Company of Heroes Online BETA", "game_detection": [ @@ -105317,7 +98715,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Volume Roads", "game_detection": [ @@ -105329,7 +98726,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Magic Duels: Origins", "game_detection": [ @@ -105344,7 +98740,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cypress Inheritance: The Beginning", "game_detection": [ @@ -105359,7 +98754,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Monday Night Combat", "game_detection": [ @@ -105374,7 +98768,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bayonetta", "game_detection": [ @@ -105389,7 +98782,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Thing", "game_detection": [ @@ -105401,7 +98793,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark Void Zero", "game_detection": [ @@ -105416,7 +98807,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Luxor Amun Rising", "game_detection": [ @@ -105431,7 +98821,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ride 'em Low", "game_detection": [ @@ -105446,7 +98835,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Blackwell Unbound", "game_detection": [ @@ -105466,7 +98854,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "House Flipper", "game_detection": [ @@ -105484,7 +98871,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Firewatch", "game_detection": [ @@ -105499,7 +98885,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kingdoms Rise", "game_detection": [ @@ -105514,7 +98899,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Phantom Doctrine", "game_detection": [ @@ -105528,7 +98912,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mata Hari", "game_detection": [ @@ -105543,7 +98926,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bloodstained: Curse of the Moon", "game_detection": [ @@ -105557,7 +98939,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Puzzle Kingdoms", "game_detection": [ @@ -105572,7 +98953,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Total War Battles: SHOGUN", "game_detection": [ @@ -105586,7 +98966,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GRID Demo", "game_detection": [ @@ -105598,7 +98977,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hearts", "game_detection": [ @@ -105629,7 +99007,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Hot", "game_detection": [ @@ -105655,7 +99032,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Abbey of Crime Extensum", "game_detection": [ @@ -105670,7 +99046,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Farming Simulator 15", "game_detection": [ @@ -105685,7 +99060,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Yu-Gi-Oh! Online Duel Accelerator", "game_detection": [ @@ -105697,7 +99071,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Avoid Sensory Overload", "game_detection": [ @@ -105712,7 +99085,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "Mu Online", "game_detection": [ @@ -105728,7 +99100,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "War Rock", "game_detection": [ @@ -105768,7 +99139,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "4x4 Dream Race", "game_detection": [ @@ -105783,7 +99153,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Escape Goat 2", "game_detection": [ @@ -105803,7 +99172,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Challenge", "game_detection": [ @@ -105818,7 +99186,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "World of Warplanes", "game_detection": [ @@ -105831,7 +99198,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Arsenal of Democracy", "game_detection": [ @@ -105846,7 +99212,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tibia", "game_detection": [ @@ -105858,7 +99223,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "PLAYERUNKNOWN'S BATTLEGROUNDS", "game_detection": [ @@ -105906,7 +99270,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Myth War II", "game_detection": [ @@ -105920,7 +99283,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MadOut", "game_detection": [ @@ -105935,7 +99297,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Barbarian Brawl", "game_detection": [ @@ -105950,7 +99311,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ultimate Custom Night", "game_detection": [ @@ -105964,7 +99324,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ace Combat: Assault Horizon - Enhanced Edition", "game_detection": [ @@ -105979,7 +99338,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BERSERK and the Band of the Hawk", "game_detection": [ @@ -105994,7 +99352,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battleborn", "game_detection": [ @@ -106009,7 +99366,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Point Perfect", "game_detection": [ @@ -106024,7 +99380,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stellar Impact", "game_detection": [ @@ -106046,7 +99401,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FIFA Online BETA", "game_detection": [ @@ -106059,7 +99413,6 @@ ] }, { - "force_display_capture": false, "region": "BR", "title": "Perfect World", "game_detection": [ @@ -106073,7 +99426,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Company of Heroes: Opposing Fronts", "game_detection": [ @@ -106095,7 +99447,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Viktor", "game_detection": [ @@ -106110,7 +99461,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Besiege", "game_detection": [ @@ -106130,7 +99480,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Organic Panic", "game_detection": [ @@ -106145,7 +99494,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lucid", "game_detection": [ @@ -106160,7 +99508,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead Rising", "game_detection": [ @@ -106175,7 +99522,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Space Rubbish", "game_detection": [ @@ -106187,7 +99533,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "X-COM: Terror from the Deep", "game_detection": [ @@ -106202,7 +99547,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Metal Drift", "game_detection": [ @@ -106217,7 +99561,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Space Trader: Merchant Marine", "game_detection": [ @@ -106232,7 +99575,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Delta Force: Xtreme", "game_detection": [ @@ -106252,7 +99594,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hell", "game_detection": [ @@ -106267,7 +99608,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Talos Principle", "game_detection": [ @@ -106282,7 +99622,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Life Is Strange: Before the Storm", "game_detection": [ @@ -106297,7 +99636,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RollerCoaster Tycoon 3: Wild!", "game_detection": [ @@ -106309,7 +99647,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Legends of Callasia", "game_detection": [ @@ -106324,7 +99661,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "World Basketball Tycoon", "game_detection": [ @@ -106339,7 +99675,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Danmaku Unlimited 2", "game_detection": [ @@ -106359,7 +99694,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battlefleet Gothic: Armada", "game_detection": [ @@ -106374,7 +99708,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Red Baron Arcade", "game_detection": [ @@ -106386,7 +99719,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "UFO: Afterlight", "game_detection": [ @@ -106406,7 +99738,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Chronicles of Riddick: Assault on Dark Athena", "game_detection": [ @@ -106427,7 +99758,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mad Riders", "game_detection": [ @@ -106442,7 +99772,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chronicle: RuneScape Legends", "game_detection": [ @@ -106457,7 +99786,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Two Point Hospital", "game_detection": [ @@ -106471,7 +99799,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Monster Hunter: World", "game_detection": [ @@ -106485,7 +99812,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sniper Elite: Nazi Zombie Army", "game_detection": [ @@ -106500,7 +99826,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Age of Empires II HD", "game_detection": [ @@ -106515,7 +99840,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "One Thousand Lies", "game_detection": [ @@ -106530,7 +99854,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fusion", "game_detection": [ @@ -106542,7 +99865,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wild Season", "game_detection": [ @@ -106557,7 +99879,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Wars: Starfighter", "game_detection": [ @@ -106578,7 +99899,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hand of Fate", "game_detection": [ @@ -106598,7 +99918,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeon Rushers", "game_detection": [ @@ -106613,7 +99932,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Delicious! Pretty Girls Mahjong Solitaire", "game_detection": [ @@ -106628,7 +99946,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Devilian", "game_detection": [ @@ -106667,7 +99984,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Prey", "game_detection": [ @@ -106682,7 +99998,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Containment: The Zombie Puzzler", "game_detection": [ @@ -106697,7 +100012,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kromaia", "game_detection": [ @@ -106712,7 +100026,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Woolfe: The Red Hood Diaries", "game_detection": [ @@ -106727,7 +100040,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Boson X", "game_detection": [ @@ -106743,7 +100055,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Overlord: Fellowship of Evil", "game_detection": [ @@ -106758,7 +100069,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "South Park: The Stick of Truth", "game_detection": [ @@ -106773,7 +100083,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Disgaea 5", "game_detection": [ @@ -106784,7 +100093,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Overgrowth", "game_detection": [ @@ -106804,7 +100112,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Party Hard", "game_detection": [ @@ -106819,7 +100126,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hidden Expedition: Titanic", "game_detection": [ @@ -106834,7 +100140,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Primal Fears", "game_detection": [ @@ -106849,7 +100154,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Xenonauts", "game_detection": [ @@ -106879,7 +100183,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "King of Kings III", "game_detection": [ @@ -106892,7 +100195,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mo Siang Online", "game_detection": [ @@ -106913,7 +100215,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Professor Fizzwizzle and the Molten Mystery", "game_detection": [ @@ -106928,7 +100229,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Playboy: The Mansion", "game_detection": [ @@ -106945,7 +100245,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sacred Citadel", "game_detection": [ @@ -106960,7 +100259,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "3D Ultra Minigolf Adventures", "game_detection": [ @@ -106975,7 +100273,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Freelancer", "game_detection": [ @@ -106987,7 +100284,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Last Remnant Demo", "game_detection": [ @@ -107002,7 +100298,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Divinity: Original Sin - Enhanced Edition", "game_detection": [ @@ -107017,7 +100312,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro Rugby Manager 2015", "game_detection": [ @@ -107032,7 +100326,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Afterfall Reconquest", "game_detection": [ @@ -107047,7 +100340,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "StarBreak", "game_detection": [ @@ -107062,7 +100354,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Puzzle Quest: Challenge of the Warlords", "game_detection": [ @@ -107082,7 +100373,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "Elsword", "game_detection": [ @@ -107096,7 +100386,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "AirRivals", "game_detection": [ @@ -107110,7 +100399,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Secret Files 3", "game_detection": [ @@ -107125,7 +100413,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Driv3r", "game_detection": [ @@ -107137,7 +100424,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ni no Kuni II: Revenant Kingdom", "game_detection": [ @@ -107151,7 +100437,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Etherium", "game_detection": [ @@ -107166,7 +100451,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wreckfest", "game_detection": [ @@ -107180,7 +100464,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "klocki", "game_detection": [ @@ -107195,7 +100478,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crazy Machines 2", "game_detection": [ @@ -107223,7 +100505,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Turok 2: Seeds of Evil", "game_detection": [ @@ -107250,7 +100531,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battlefield 1942: Secret Weapons of WWII", "game_detection": [ @@ -107264,7 +100544,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fantasy Wars", "game_detection": [ @@ -107276,7 +100555,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Iron Storm", "game_detection": [ @@ -107297,7 +100575,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Europa Universalis: Crown of the North", "game_detection": [ @@ -107309,7 +100586,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blood Bowl", "game_detection": [ @@ -107321,7 +100597,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Tower", "game_detection": [ @@ -107341,7 +100616,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zuma's Revenge!", "game_detection": [ @@ -107362,7 +100636,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark Age of Camelot", "game_detection": [ @@ -107376,7 +100649,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ion Assault", "game_detection": [ @@ -107391,7 +100663,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Combat Arms", "game_detection": [ @@ -107425,7 +100696,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chaos Theory", "game_detection": [ @@ -107440,7 +100710,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ride'em Low", "game_detection": [ @@ -107452,7 +100721,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Snark Busters: Welcome to the Club", "game_detection": [ @@ -107465,7 +100733,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Retro/Grade", "game_detection": [ @@ -107485,7 +100752,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fantasy Tennis 2", "game_detection": [ @@ -107498,7 +100764,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Half-Life 2: Deathmatch", "game_detection": [ @@ -107514,7 +100779,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Savage: The Battle for Newerth", "game_detection": [ @@ -107527,7 +100791,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GunZ: The Duel", "game_detection": [ @@ -107541,7 +100804,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ys II Chronicles+", "game_detection": [ @@ -107556,7 +100818,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Splice", "game_detection": [ @@ -107576,7 +100837,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "TUG", "game_detection": [ @@ -107591,7 +100851,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ceiron Wars", "game_detection": [ @@ -107603,7 +100862,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cultist Simulator", "game_detection": [ @@ -107617,7 +100875,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eschalon: Book III", "game_detection": [ @@ -107632,7 +100889,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pirates of the Caribbean: At World's End", "game_detection": [ @@ -107644,7 +100900,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Catan Online World", "game_detection": [ @@ -107663,7 +100918,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bot Colony", "game_detection": [ @@ -107678,7 +100932,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Solar 2", "game_detection": [ @@ -107697,7 +100950,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gear Up", "game_detection": [ @@ -107712,7 +100964,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Captain Morgane and the Golden Turtle", "game_detection": [ @@ -107724,7 +100975,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Depth", "game_detection": [ @@ -107739,7 +100989,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jurassic Park: The Game", "game_detection": [ @@ -107754,7 +101003,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Godus", "game_detection": [ @@ -107769,7 +101017,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead State", "game_detection": [ @@ -107784,7 +101031,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Layers of Fear", "game_detection": [ @@ -107803,7 +101049,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Resident Evil 6", "game_detection": [ @@ -107818,7 +101063,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "B.U.T.T.O.N", "game_detection": [ @@ -107833,7 +101077,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rig 'n' Roll", "game_detection": [ @@ -107848,7 +101091,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alpine Ski Racing 2007", "game_detection": [ @@ -107860,7 +101102,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Disciples: Reincarnation", "game_detection": [ @@ -107875,7 +101116,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bit.Trip Presents... Runner2: Future Legend of Rhythm Alien", "game_detection": [ @@ -107895,7 +101135,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "America's Army 3", "game_detection": [ @@ -107916,7 +101155,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Aces of the Galaxy", "game_detection": [ @@ -107931,7 +101169,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Syberia II", "game_detection": [ @@ -107957,7 +101194,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Close Combat: Gateway to Caen", "game_detection": [ @@ -107972,7 +101208,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Samorost 2", "game_detection": [ @@ -107992,7 +101227,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Magicite", "game_detection": [ @@ -108007,7 +101241,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Supreme Commander", "game_detection": [ @@ -108028,7 +101261,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kane & Lynch: Dead Men", "game_detection": [ @@ -108048,7 +101280,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Around the World in 80 Days", "game_detection": [ @@ -108060,7 +101291,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Medieval: Total War", "game_detection": [ @@ -108077,7 +101307,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SOL: Exodus", "game_detection": [ @@ -108097,7 +101326,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Resident Evil 2", "game_detection": [ @@ -108109,7 +101337,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Romero's Aftermath", "game_detection": [ @@ -108124,7 +101351,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Team Indie", "game_detection": [ @@ -108139,7 +101365,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "CrimeCraft", "game_detection": [ @@ -108169,7 +101394,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shen Wu", "game_detection": [ @@ -108183,7 +101407,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "Tree of Savior", "game_detection": [ @@ -108196,7 +101419,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Copa Petrobras de Marcas", "game_detection": [ @@ -108211,7 +101433,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "StarDrive 2", "game_detection": [ @@ -108226,7 +101447,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Season of Mystery : The Cherry Blossom Murders", "game_detection": [ @@ -108241,7 +101461,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BattleForge", "game_detection": [ @@ -108262,7 +101481,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heroes of Scene", "game_detection": [ @@ -108277,7 +101495,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LEGO Pirates of the Caribbean", "game_detection": [ @@ -108297,7 +101514,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heretic: Shadow of the Serpent Riders", "game_detection": [ @@ -108312,7 +101528,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2017", "game_detection": [ @@ -108327,7 +101542,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nightshift Legacy: The Jaguar's Eye", "game_detection": [ @@ -108342,7 +101556,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Freecell", "game_detection": [ @@ -108373,7 +101586,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Freddi Fish 3: The Case of the Stolen Conch Shell", "game_detection": [ @@ -108388,7 +101600,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lost Planet 2", "game_detection": [ @@ -108416,7 +101627,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pajama Sam: You Are What You Eat From Your Head to Your Feet", "game_detection": [ @@ -108431,7 +101641,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mission Against Terror", "game_detection": [ @@ -108444,7 +101653,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pixel Puzzles Ultimate", "game_detection": [ @@ -108459,7 +101667,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeon Runners", "game_detection": [ @@ -108471,7 +101678,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hard Reset Redux", "game_detection": [ @@ -108486,7 +101692,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Project Powder", "game_detection": [ @@ -108501,7 +101706,6 @@ ] }, { - "force_display_capture": false, "region": "DE", "title": "Forsaken World", "game_detection": [ @@ -108515,7 +101719,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Mashed: Drive to Survive", "game_detection": [ @@ -108528,7 +101731,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Titan Souls", "game_detection": [ @@ -108548,7 +101750,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Arena of Heroes", "game_detection": [ @@ -108562,7 +101763,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pacific Storm", "game_detection": [ @@ -108575,7 +101775,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ragnarok Online", "game_detection": [ @@ -108596,7 +101795,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Quest for Infamy", "game_detection": [ @@ -108616,7 +101814,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Real Warfare 1242", "game_detection": [ @@ -108631,7 +101828,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Don Bradman Cricket 14", "game_detection": [ @@ -108646,7 +101842,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Land of the Dead: Road to Fiddler's Green", "game_detection": [ @@ -108659,7 +101854,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vampire Saga: Welcome to Hell Lock", "game_detection": [ @@ -108672,7 +101866,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Demigod", "game_detection": [ @@ -108693,7 +101886,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Headlander", "game_detection": [ @@ -108708,7 +101900,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Major League Baseball 2K12", "game_detection": [ @@ -108723,7 +101914,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mystery Case Files: Escape from Ravenhearst", "game_detection": [ @@ -108736,7 +101926,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Yard Sale Hidden Treasures: Sunnyville", "game_detection": [ @@ -108751,7 +101940,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Muse Dash", "game_detection": [ @@ -108762,7 +101950,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Dawn of War II - Retribution", "game_detection": [ @@ -108777,7 +101964,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Magicka: Wizard Wars", "game_detection": [ @@ -108792,7 +101978,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Escape the Game", "game_detection": [ @@ -108808,7 +101993,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Choplifter HD", "game_detection": [ @@ -108823,7 +102007,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Tenth Line", "game_detection": [ @@ -108838,7 +102021,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Need For Speed: Underground", "game_detection": [ @@ -108855,7 +102037,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mahjong Roadshow", "game_detection": [ @@ -108870,7 +102051,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Escape from Paradise 2", "game_detection": [ @@ -108885,7 +102065,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Harold", "game_detection": [ @@ -108900,7 +102079,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeons - The Dark Lord", "game_detection": [ @@ -108915,7 +102093,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Talisman: Digital Edition", "game_detection": [ @@ -108930,7 +102107,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RPG MO", "game_detection": [ @@ -108945,7 +102121,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Enter the Matrix", "game_detection": [ @@ -108957,7 +102132,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Primordia", "game_detection": [ @@ -108972,7 +102146,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Richard & Alice Demo", "game_detection": [ @@ -108984,7 +102157,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Anodyne", "game_detection": [ @@ -109004,7 +102176,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Soldier Front", "game_detection": [ @@ -109027,7 +102198,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Archeblade", "game_detection": [ @@ -109042,7 +102212,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Always Sometimes Monsters", "game_detection": [ @@ -109057,7 +102226,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NeXus - One Core", "game_detection": [ @@ -109072,7 +102240,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shadow of the Tomb Raider", "game_detection": [ @@ -109086,7 +102253,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Immortal Unchained", "game_detection": [ @@ -109100,7 +102266,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alter Ego", "game_detection": [ @@ -109121,7 +102286,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mr. Robot", "game_detection": [ @@ -109136,7 +102300,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nuclear Dawn: Modern Combat Rising", "game_detection": [ @@ -109151,7 +102314,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mystery P.I.: The Lottery Ticket", "game_detection": [ @@ -109173,7 +102335,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Drakensang: The River of Time", "game_detection": [ @@ -109193,7 +102354,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fury", "game_detection": [ @@ -109206,7 +102366,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hoyle Puzzle & Board Games", "game_detection": [ @@ -109218,7 +102377,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The House", "game_detection": [ @@ -109233,7 +102391,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Trackmania United", "game_detection": [ @@ -109253,7 +102410,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Agarest: Generations of War Zero", "game_detection": [ @@ -109268,7 +102424,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims 2: Teen Style Stuff", "game_detection": [ @@ -109281,7 +102436,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Squirt's Adventure", "game_detection": [ @@ -109296,7 +102450,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "eSports Legend", "game_detection": [ @@ -109307,7 +102460,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vikings: Wolves of Midgard", "game_detection": [ @@ -109322,7 +102474,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hidden in Plain Sight", "game_detection": [ @@ -109337,7 +102488,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NCAA Championship Run 2006", "game_detection": [ @@ -109350,7 +102500,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fallout 76", "game_detection": [ @@ -109361,7 +102510,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hawken", "game_detection": [ @@ -109384,7 +102532,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gang Beasts", "game_detection": [ @@ -109399,7 +102546,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Perpetuum", "game_detection": [ @@ -109419,7 +102565,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rymdkapsel", "game_detection": [ @@ -109439,7 +102584,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nightbanes", "game_detection": [ @@ -109454,7 +102598,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deus Ex: Human Revolution - The Missing Link", "game_detection": [ @@ -109469,7 +102612,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nosgoth", "game_detection": [ @@ -109484,7 +102626,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims 3: Generations", "game_detection": [ @@ -109498,7 +102639,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sherlock Holmes: The Devil's Daughter", "game_detection": [ @@ -109513,7 +102653,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NingPo MahJong Deluxe", "game_detection": [ @@ -109527,7 +102666,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Age of Empires II: The Age of Kings", "game_detection": [ @@ -109539,7 +102677,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Iesabel", "game_detection": [ @@ -109554,7 +102691,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lilly Looking Through", "game_detection": [ @@ -109574,7 +102710,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mystery Case Files: Dire Grove", "game_detection": [ @@ -109587,7 +102722,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Ruler", "game_detection": [ @@ -109607,7 +102741,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Giana Sisters: Dream Runners", "game_detection": [ @@ -109622,7 +102755,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battlefleet Gothic: Armada 2", "game_detection": [ @@ -109633,7 +102765,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Godfather", "game_detection": [ @@ -109653,7 +102784,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Game of Life", "game_detection": [ @@ -109668,7 +102798,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Actua Soccer 3", "game_detection": [ @@ -109683,7 +102812,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Batman: Arkham Asylum Demo", "game_detection": [ @@ -109697,7 +102825,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "HTR+ Slot Car Simulation", "game_detection": [ @@ -109712,7 +102839,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Infinite Crisis", "game_detection": [ @@ -109767,7 +102893,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Assassin's Creed Odyssey", "game_detection": [ @@ -109790,7 +102915,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Duke Nukem 3D", "game_detection": [ @@ -109804,7 +102928,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "City of Villains", "game_detection": [ @@ -109827,7 +102950,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Technomancer", "game_detection": [ @@ -109842,7 +102964,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Thanatos", "game_detection": [ @@ -109857,7 +102978,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wolfenstein: Enemy Territory", "game_detection": [ @@ -109869,7 +102989,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kohan: Immortal Sovereigns", "game_detection": [ @@ -109889,7 +103008,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tulpa", "game_detection": [ @@ -109904,7 +103022,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Call of Duty: United Offensive Demo", "game_detection": [ @@ -109917,7 +103034,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Total War Saga: Thrones of Britannia", "game_detection": [ @@ -109931,7 +103047,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kitten Squad", "game_detection": [ @@ -109946,7 +103061,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blood of the Werewolf", "game_detection": [ @@ -109961,7 +103075,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Incredible Adventures of Van Helsing: Final Cut", "game_detection": [ @@ -109976,7 +103089,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chicken Invaders 4", "game_detection": [ @@ -109991,7 +103103,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Scania Truck Driving Simulator", "game_detection": [ @@ -110006,7 +103117,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Messenger", "game_detection": [ @@ -110020,7 +103130,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pajama Sam 4: Life Is Rough When You Lose Your Stuff!", "game_detection": [ @@ -110035,7 +103144,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dizzel", "game_detection": [ @@ -110056,7 +103164,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Incoming", "game_detection": [ @@ -110071,7 +103178,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cossacks II: Napoleonic Wars", "game_detection": [ @@ -110092,7 +103198,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Color Guardians", "game_detection": [ @@ -110107,7 +103212,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "House of the Dying Sun", "game_detection": [ @@ -110123,7 +103227,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tom Clancy's Ghost Recon: Future Soldier", "game_detection": [ @@ -110145,7 +103248,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "No More Room in Hell", "game_detection": [ @@ -110160,7 +103262,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Frostpunk", "game_detection": [ @@ -110174,7 +103275,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Operation Abyss: New Tokyo Legacy", "game_detection": [ @@ -110189,7 +103289,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Exodus from the Earth", "game_detection": [ @@ -110223,7 +103322,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nexuiz", "game_detection": [ @@ -110238,7 +103336,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hotel Dash: Suite Success", "game_detection": [ @@ -110253,7 +103350,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Goliath", "game_detection": [ @@ -110268,7 +103364,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Castle Story", "game_detection": [ @@ -110283,7 +103378,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Diehard Dungeon", "game_detection": [ @@ -110298,7 +103392,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Metro: Last Light", "game_detection": [ @@ -110313,7 +103406,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Garfield Kart", "game_detection": [ @@ -110334,7 +103426,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shadow Warrior 2", "game_detection": [ @@ -110349,7 +103440,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Volvo: The Game", "game_detection": [ @@ -110361,7 +103451,6 @@ ] }, { - "force_display_capture": false, "region": "JP", "title": "DRAMAtical Murder", "game_detection": [ @@ -110373,7 +103462,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Guild 2", "game_detection": [ @@ -110399,7 +103487,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims 2: Nightlife", "game_detection": [ @@ -110411,7 +103498,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Guns, Gore and Cannoli 2", "game_detection": [ @@ -110425,7 +103511,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Mean Greens: Plastic Warfare", "game_detection": [ @@ -110440,7 +103525,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dynomite Deluxe", "game_detection": [ @@ -110461,7 +103545,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Scoregasm", "game_detection": [ @@ -110481,7 +103564,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Brothers In Arms: Earned in Blood", "game_detection": [ @@ -110494,7 +103576,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pillars of Eternity", "game_detection": [ @@ -110514,7 +103595,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ankh", "game_detection": [ @@ -110526,7 +103606,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blight of the Immortals", "game_detection": [ @@ -110541,7 +103620,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lost World Zero", "game_detection": [ @@ -110556,7 +103634,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro Cycling Manager 2018", "game_detection": [ @@ -110567,7 +103644,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Dawn of War – Soulstorm Demo", "game_detection": [ @@ -110579,7 +103655,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crypt of the NecroDancer", "game_detection": [ @@ -110594,7 +103669,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Guardians of Atlas", "game_detection": [ @@ -110608,7 +103682,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Realm of the Titans", "game_detection": [ @@ -110623,7 +103696,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pure", "game_detection": [ @@ -110643,7 +103715,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crash Time II", "game_detection": [ @@ -110658,7 +103729,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Secret Of Hildegards", "game_detection": [ @@ -110673,7 +103743,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cosmic Osmo", "game_detection": [ @@ -110688,7 +103757,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Metal Dead", "game_detection": [ @@ -110710,7 +103778,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Next Day: Survival", "game_detection": [ @@ -110725,7 +103792,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mortal Online", "game_detection": [ @@ -110746,7 +103812,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Saboteur", "game_detection": [ @@ -110759,7 +103824,6 @@ ] }, { - "force_display_capture": false, "region": "ES", "title": "CrossFire", "game_detection": [ @@ -110774,7 +103838,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Money Tree", "game_detection": [ @@ -110789,7 +103852,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Abbey", "game_detection": [ @@ -110810,7 +103872,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Call to Arms", "game_detection": [ @@ -110825,7 +103886,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Da Vinci Code", "game_detection": [ @@ -110838,7 +103898,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Farm Frenzy 3: American Pie", "game_detection": [ @@ -110853,7 +103912,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Infestation: Survivor Stories", "game_detection": [ @@ -110874,7 +103932,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Descent", "game_detection": [ @@ -110894,7 +103951,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Starbound", "game_detection": [ @@ -110909,7 +103965,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Craft of Gods", "game_detection": [ @@ -110922,7 +103977,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Body VR", "game_detection": [ @@ -110938,7 +103992,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "WarBirds Dogfights", "game_detection": [ @@ -110951,7 +104004,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nova-111", "game_detection": [ @@ -110966,7 +104018,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Calibre 10 Racing Series", "game_detection": [ @@ -110981,7 +104032,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Project Temporality", "game_detection": [ @@ -111001,7 +104051,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Half-Life: Counter-Strike", "game_detection": [ @@ -111028,7 +104077,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Babel Rising", "game_detection": [ @@ -111043,7 +104091,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mummy Maze Deluxe", "game_detection": [ @@ -111057,7 +104104,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Supreme Ruler: Cold War", "game_detection": [ @@ -111072,7 +104118,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Emergency 2012", "game_detection": [ @@ -111087,7 +104132,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Olympia Rising", "game_detection": [ @@ -111102,7 +104146,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "WRC Powerslide", "game_detection": [ @@ -111117,7 +104160,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Saints Row 2", "game_detection": [ @@ -111132,7 +104174,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blameless", "game_detection": [ @@ -111147,7 +104188,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LEGO Minifigures: The Online Game", "game_detection": [ @@ -111169,7 +104209,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Safari Photo Africa: Wild Earth", "game_detection": [ @@ -111181,7 +104220,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tantra Online", "game_detection": [ @@ -111194,7 +104232,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Finding Teddy", "game_detection": [ @@ -111214,7 +104251,6 @@ ] }, { - "force_display_capture": false, "region": "EU", "title": "Lineage II", "game_detection": [ @@ -111228,7 +104264,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Fourth Wall", "game_detection": [ @@ -111240,7 +104275,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "EVE Valkyrie", "game_detection": [ @@ -111256,7 +104290,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tales of Vesperia: Definitive Edition", "game_detection": [ @@ -111268,7 +104301,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Angle Of Attack", "game_detection": [ @@ -111283,7 +104315,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zezenia Online", "game_detection": [ @@ -111298,7 +104329,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "2Moons", "game_detection": [ @@ -111332,7 +104362,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Overruled!", "game_detection": [ @@ -111347,7 +104376,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Just Cause 2", "game_detection": [ @@ -111362,7 +104390,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tales From The Dragon Mountain: The Strix", "game_detection": [ @@ -111377,7 +104404,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Worm.is: The Game", "game_detection": [ @@ -111392,7 +104418,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Elder Scrolls Legends", "game_detection": [ @@ -111413,7 +104438,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crush Crush", "game_detection": [ @@ -111428,7 +104452,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RACE 07: The WTCC Game", "game_detection": [ @@ -111449,7 +104472,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Outcry", "game_detection": [ @@ -111461,7 +104483,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Space Rangers HD: A War Apart", "game_detection": [ @@ -111476,7 +104497,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fritz 8: Deluxe", "game_detection": [ @@ -111489,7 +104509,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Monstrum", "game_detection": [ @@ -111509,7 +104528,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "R.U.S.E. Beta", "game_detection": [ @@ -111524,7 +104542,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cabela's Big Game Hunter: Trophy Bucks", "game_detection": [ @@ -111539,7 +104556,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Flashing Lights", "game_detection": [ @@ -111550,7 +104566,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Banner Saga 2", "game_detection": [ @@ -111565,7 +104580,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Raven's Cry", "game_detection": [ @@ -111580,7 +104594,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sid Meier's Civilization IV: Colonization", "game_detection": [ @@ -111600,7 +104613,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Darksiders II Deathinitive Edition", "game_detection": [ @@ -111615,7 +104627,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pogostuck", "game_detection": [ @@ -111626,7 +104637,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heroes of Hammerwatch", "game_detection": [ @@ -111640,7 +104650,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shattered Planet", "game_detection": [ @@ -111655,7 +104664,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "World of Goo", "game_detection": [ @@ -111680,7 +104688,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dogfight 1942", "game_detection": [ @@ -111695,7 +104702,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Absolute Poker", "game_detection": [ @@ -111707,7 +104713,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "KAMI", "game_detection": [ @@ -111722,7 +104727,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Metro Exodus", "game_detection": [ @@ -111737,7 +104741,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Colin McRae Rally", "game_detection": [ @@ -111752,7 +104755,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Avencast: Rise of the Mage", "game_detection": [ @@ -111764,7 +104766,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Wars: The Force Unleashed II", "game_detection": [ @@ -111784,7 +104785,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Urja", "game_detection": [ @@ -111799,7 +104799,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kentucky Route Zero", "game_detection": [ @@ -111819,7 +104818,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Freedom Force vs. The Third Reich", "game_detection": [ @@ -111839,7 +104837,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Total War: THREE KINGDOMS", "game_detection": [ @@ -111850,7 +104847,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "For The King", "game_detection": [ @@ -111864,7 +104860,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Half-Life 2: Substance", "game_detection": [ @@ -111880,7 +104875,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Incredible Hulk", "game_detection": [ @@ -111893,7 +104887,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Delve Deeper", "game_detection": [ @@ -111913,7 +104906,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "X5", "game_detection": [ @@ -111929,7 +104921,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dogz 4", "game_detection": [ @@ -111946,7 +104937,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Marvel Puzzle Quest: Dark Reign", "game_detection": [ @@ -111961,7 +104951,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Forza Horizon 4", "game_detection": [ @@ -111976,7 +104965,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BlazBlue Cross Tag Battle", "game_detection": [ @@ -111990,7 +104978,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tribes: Vengeance Demo", "game_detection": [ @@ -112004,7 +104991,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Incredible Adventures of Van Helsing", "game_detection": [ @@ -112033,7 +105019,6 @@ ] }, { - "force_display_capture": false, "region": "RU", "title": "APB Reloaded", "game_detection": [ @@ -112047,7 +105032,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shadowrun: Hong Kong", "game_detection": [ @@ -112072,7 +105056,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Solus Project", "game_detection": [ @@ -112087,7 +105070,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Home Sheep Home 2", "game_detection": [ @@ -112102,7 +105084,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ironclads: Schleswig War 1864", "game_detection": [ @@ -112117,7 +105098,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Sonata", "game_detection": [ @@ -112129,7 +105109,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Need for Speed: Shift", "game_detection": [ @@ -112149,7 +105128,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Paraworld", "game_detection": [ @@ -112163,7 +105141,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zoo Tycoon 2: African Adventure", "game_detection": [ @@ -112176,7 +105153,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Unreal Tournament 2004 Demo", "game_detection": [ @@ -112189,7 +105165,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Final Exam", "game_detection": [ @@ -112204,7 +105179,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "World in Conflict Demo", "game_detection": [ @@ -112217,7 +105191,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rise of Prussia Gold", "game_detection": [ @@ -112232,7 +105205,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Icons Combat Arena", "game_detection": [ @@ -112246,7 +105218,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Batman: Arkham Asylum GOTY", "game_detection": [ @@ -112267,7 +105238,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "0RBITALIS", "game_detection": [ @@ -112282,7 +105252,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "PixelJunk Shooter Ultimate", "game_detection": [ @@ -112297,7 +105266,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jones On Fire", "game_detection": [ @@ -112309,7 +105277,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zup! 2", "game_detection": [ @@ -112324,7 +105291,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Borderlands GOTY", "game_detection": [ @@ -112335,7 +105301,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Misadventures of P.B. Winterbottom", "game_detection": [ @@ -112350,7 +105315,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Skydome", "game_detection": [ @@ -112364,7 +105328,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Corum Online", "game_detection": [ @@ -112378,7 +105341,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FIFA Soccer 2003", "game_detection": [ @@ -112390,7 +105352,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead Bits", "game_detection": [ @@ -112405,7 +105366,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ionball 2: Ionstorm", "game_detection": [ @@ -112420,7 +105380,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Journey of a Roach", "game_detection": [ @@ -112440,7 +105399,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Robin Hood: The Legend Of Sherwood", "game_detection": [ @@ -112455,7 +105413,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Slavistan", "game_detection": [ @@ -112470,7 +105427,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Madden NFL 06", "game_detection": [ @@ -112483,7 +105439,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Movies: Stunts & Effects", "game_detection": [ @@ -112495,7 +105450,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BattleStick", "game_detection": [ @@ -112510,7 +105464,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Legend of Numbers", "game_detection": [ @@ -112525,7 +105478,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chuck's Challenge 3D", "game_detection": [ @@ -112540,7 +105492,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rollers of the Realm", "game_detection": [ @@ -112555,7 +105506,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "Metin", "game_detection": [ @@ -112569,7 +105519,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Outland", "game_detection": [ @@ -112584,7 +105533,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chaos on Deponia", "game_detection": [ @@ -112604,7 +105552,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LIMBO", "game_detection": [ @@ -112624,7 +105571,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Turbo Sliders", "game_detection": [ @@ -112636,7 +105582,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead by Daylight", "game_detection": [ @@ -112652,7 +105597,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Command & Conquer: Red Alert", "game_detection": [ @@ -112670,7 +105614,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Making History: The Calm and the Storm", "game_detection": [ @@ -112683,7 +105626,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Woodcutter Simulator 2013", "game_detection": [ @@ -112698,7 +105640,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dynasty Warriors 4 Hyper", "game_detection": [ @@ -112711,7 +105652,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pickers", "game_detection": [ @@ -112726,7 +105666,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spirits of Xanadu", "game_detection": [ @@ -112738,7 +105677,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Whispered World", "game_detection": [ @@ -112759,7 +105697,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kill.Switch", "game_detection": [ @@ -112773,7 +105710,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Just Survive", "game_detection": [ @@ -112788,7 +105724,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SAMURAI WARRIORS: Spirit of Sanada", "game_detection": [ @@ -112803,7 +105738,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Journey Home", "game_detection": [ @@ -112819,7 +105753,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fractured Space", "game_detection": [ @@ -112834,7 +105767,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Skyscraper Simulator", "game_detection": [ @@ -112849,7 +105781,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Doctor Who: The Eternity Clock", "game_detection": [ @@ -112864,7 +105795,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mad Games Tycoon", "game_detection": [ @@ -112879,7 +105809,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Intrusion 2", "game_detection": [ @@ -112899,7 +105828,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tales Runner", "game_detection": [ @@ -112933,7 +105861,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sandbox Evolution", "game_detection": [ @@ -112948,7 +105875,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Triblaster", "game_detection": [ @@ -112963,7 +105889,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "My Lands: Black Gem Hunting", "game_detection": [ @@ -112978,7 +105903,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Haegemonia: The Solon Heritage", "game_detection": [ @@ -112993,7 +105917,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Droplitz", "game_detection": [ @@ -113008,7 +105931,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Astonia III", "game_detection": [ @@ -113021,7 +105943,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NBA Live 07", "game_detection": [ @@ -113033,7 +105954,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nancy Drew: The Captive Curse", "game_detection": [ @@ -113048,7 +105968,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Patrician III", "game_detection": [ @@ -113063,7 +105982,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zombie Pirates", "game_detection": [ @@ -113078,7 +105996,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Strong Bad's Cool Game for Attractive People - Episode 2: Strong Badia the Free", "game_detection": [ @@ -113101,7 +106018,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Minimum", "game_detection": [ @@ -113116,7 +106032,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Exanima", "game_detection": [ @@ -113131,7 +106046,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Metal Slug 3", "game_detection": [ @@ -113146,7 +106060,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rooms: The Main Building", "game_detection": [ @@ -113161,7 +106074,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Oxygen Not Included", "game_detection": [ @@ -113176,7 +106088,6 @@ ] }, { - "force_display_capture": false, "region": "UK", "title": "Deponia", "game_detection": [ @@ -113188,7 +106099,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Men of War: Vietnam", "game_detection": [ @@ -113203,7 +106113,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Geneforge 4: Rebellion", "game_detection": [ @@ -113218,7 +106127,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Charnel House Trilogy", "game_detection": [ @@ -113233,7 +106141,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Puzzle Bots", "game_detection": [ @@ -113248,7 +106155,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Neverwinter Nights: Enhanced Edition", "game_detection": [ @@ -113262,7 +106168,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Haunt the House: Terrortown", "game_detection": [ @@ -113282,7 +106187,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Brawlhalla", "game_detection": [ @@ -113297,7 +106201,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Neverwinter Nights 2 Platinum Edition", "game_detection": [ @@ -113312,7 +106215,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Guy vs The Wicked and Nefarious Land", "game_detection": [ @@ -113324,7 +106226,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "D&D Lords of Waterdeep", "game_detection": [ @@ -113339,7 +106240,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Angry Birds Rio", "game_detection": [ @@ -113351,7 +106251,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Thang Online", "game_detection": [ @@ -113365,7 +106264,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Empire in the Sky", "game_detection": [ @@ -113377,7 +106275,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Escape from Paradise", "game_detection": [ @@ -113392,7 +106289,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "World of Guns: Gun Disassembly", "game_detection": [ @@ -113407,7 +106303,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zeno Clash", "game_detection": [ @@ -113422,7 +106317,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fable Fortune", "game_detection": [ @@ -113437,7 +106331,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Darksiders 2", "game_detection": [ @@ -113452,7 +106345,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Death and the Fly", "game_detection": [ @@ -113467,7 +106359,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cheeky Chooks", "game_detection": [ @@ -113478,7 +106369,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blade Kitten", "game_detection": [ @@ -113493,7 +106383,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Who's Your Daddy", "game_detection": [ @@ -113508,7 +106397,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cardinal Quest", "game_detection": [ @@ -113520,7 +106408,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Baseball Mogul 2011", "game_detection": [ @@ -113532,7 +106419,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Superfrog HD", "game_detection": [ @@ -113547,7 +106433,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Desktop Dungeons", "game_detection": [ @@ -113568,7 +106453,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Out of Ammo", "game_detection": [ @@ -113584,7 +106468,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kane & Lynch Dead Men Demo", "game_detection": [ @@ -113597,7 +106480,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Wolves", "game_detection": [ @@ -113612,7 +106494,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heroes of Might and Magic Online", "game_detection": [ @@ -113625,7 +106506,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ley Lines", "game_detection": [ @@ -113640,7 +106520,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shattered Haven", "game_detection": [ @@ -113655,7 +106534,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Big Money Deluxe", "game_detection": [ @@ -113676,7 +106554,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fireburst", "game_detection": [ @@ -113690,7 +106567,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deathwave", "game_detection": [ @@ -113706,7 +106582,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Leisure Suit Larry - Wet Dreams Don't Dry", "game_detection": [ @@ -113717,7 +106592,6 @@ ] }, { - "force_display_capture": false, "region": "CN", "title": "Echo Of Soul", "game_detection": [ @@ -113731,7 +106605,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Four Kings Casino and Slots", "game_detection": [ @@ -113746,7 +106619,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "How to Survive 2", "game_detection": [ @@ -113761,7 +106633,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lost Planet: Extreme Condition", "game_detection": [ @@ -113782,7 +106653,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Realms of Arkania: Star Trail", "game_detection": [ @@ -113797,7 +106667,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Baldur's Gate: Enhanced Edition", "game_detection": [ @@ -113818,7 +106687,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Golf With Friends", "game_detection": [ @@ -113833,7 +106701,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer 40,000 Dawn of War: Soulstorm", "game_detection": [ @@ -113853,7 +106720,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BMW M3 Challenge", "game_detection": [ @@ -113865,7 +106731,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Red Faction: Guerrilla", "game_detection": [ @@ -113886,7 +106751,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dogz 2", "game_detection": [ @@ -113898,7 +106762,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Devilry", "game_detection": [ @@ -113913,7 +106776,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Trials 2: Second Edition Demo", "game_detection": [ @@ -113928,7 +106790,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark Shadows - Army of Evil", "game_detection": [ @@ -113943,7 +106804,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lili: Child of Geos", "game_detection": [ @@ -113958,7 +106818,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Trials Rising", "game_detection": [ @@ -113970,7 +106829,6 @@ ] }, { - "force_display_capture": false, "region": "RU", "title": "Blade & Soul", "game_detection": [ @@ -113983,7 +106841,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Katamari Damacy REROLL", "game_detection": [ @@ -113994,7 +106851,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rock Paper Scissors Champion", "game_detection": [ @@ -114009,7 +106865,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "JollyGrim", "game_detection": [ @@ -114022,7 +106877,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shenmue", "game_detection": [ @@ -114036,7 +106890,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Slap City", "game_detection": [ @@ -114050,7 +106903,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Conquer Online", "game_detection": [ @@ -114081,7 +106933,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ring of Elysium", "game_detection": [ @@ -114096,7 +106947,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A Fistful of Gun", "game_detection": [ @@ -114111,7 +106961,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sonic the Hedgehog 4: Episode 2", "game_detection": [ @@ -114126,7 +106975,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pyramid Raid", "game_detection": [ @@ -114141,7 +106989,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Farm Frenzy 2", "game_detection": [ @@ -114156,7 +107003,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Railroad Tycoon II", "game_detection": [ @@ -114174,7 +107020,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Invisible Apartment", "game_detection": [ @@ -114189,7 +107034,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pangya", "game_detection": [ @@ -114209,7 +107053,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Section 8", "game_detection": [ @@ -114230,7 +107073,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Brazen", "game_detection": [ @@ -114250,7 +107092,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Planetbase", "game_detection": [ @@ -114265,7 +107106,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sims 2: Bon Voyage", "game_detection": [ @@ -114277,7 +107117,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Boring Man: Online Tactical Stickman Combat", "game_detection": [ @@ -114292,7 +107131,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "State of Mind", "game_detection": [ @@ -114306,7 +107144,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Battle for Wesnoth", "game_detection": [ @@ -114319,7 +107156,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crowntakers", "game_detection": [ @@ -114334,7 +107170,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Culling 2", "game_detection": [ @@ -114348,7 +107183,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Soulcaster II", "game_detection": [ @@ -114360,7 +107194,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Twisted Worlds", "game_detection": [ @@ -114375,7 +107208,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Litil Divil", "game_detection": [ @@ -114390,7 +107222,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nick", "game_detection": [ @@ -114406,7 +107237,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Time Force Ultra", "game_detection": [ @@ -114427,7 +107257,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro Cycling Manager 2015", "game_detection": [ @@ -114442,7 +107271,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Face of Mankind", "game_detection": [ @@ -114464,7 +107292,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zoo Tycoon 2: Extinct Animals", "game_detection": [ @@ -114477,7 +107304,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nine Parchments", "game_detection": [ @@ -114492,7 +107318,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "KEL Reaper of Entropy", "game_detection": [ @@ -114507,7 +107332,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ridge Racer Unbounded", "game_detection": [ @@ -114522,7 +107346,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shadow Blade: Reload", "game_detection": [ @@ -114537,7 +107360,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shatter", "game_detection": [ @@ -114552,7 +107374,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DMC: Devil May Cry", "game_detection": [ @@ -114567,7 +107388,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tropico 4 Demo", "game_detection": [ @@ -114582,7 +107402,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Desperados: Wanted Dead or Alive", "game_detection": [ @@ -114603,7 +107422,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "7.62 High Calibre", "game_detection": [ @@ -114618,7 +107436,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bloody Good Time", "game_detection": [ @@ -114633,7 +107450,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tunnel Rats", "game_detection": [ @@ -114648,7 +107464,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Emberwind", "game_detection": [ @@ -114660,7 +107475,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "State of Decay: Year One Survival Edition", "game_detection": [ @@ -114675,7 +107489,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Metal Gear Solid V: Ground Zeroes", "game_detection": [ @@ -114690,7 +107503,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eligium", "game_detection": [ @@ -114703,7 +107515,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jagged Alliance: Rage!", "game_detection": [ @@ -114714,7 +107525,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Resident Evil 3: Nemesis", "game_detection": [ @@ -114726,7 +107536,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Final Fantasy Type-0 HD", "game_detection": [ @@ -114741,7 +107550,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RHEM 3", "game_detection": [ @@ -114754,7 +107562,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Armikrog", "game_detection": [ @@ -114769,7 +107576,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Arcadia", "game_detection": [ @@ -114784,7 +107590,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "9Dragons", "game_detection": [ @@ -114796,7 +107601,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Aliens: Colonial Marines", "game_detection": [ @@ -114811,7 +107615,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "100% Orange Juice", "game_detection": [ @@ -114831,7 +107634,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Uprising44: The Silent Shadows", "game_detection": [ @@ -114846,7 +107648,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Leisure Suit Larry in the Land of the Lounge Lizards: Reloaded", "game_detection": [ @@ -114861,7 +107662,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battle Mages", "game_detection": [ @@ -114876,7 +107676,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RC Cars", "game_detection": [ @@ -114891,7 +107690,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warparty", "game_detection": [ @@ -114902,7 +107700,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Children of Orc", "game_detection": [ @@ -114917,7 +107714,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Police Stories", "game_detection": [ @@ -114928,7 +107724,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Aliens vs. Predator Classic 2000", "game_detection": [ @@ -114943,7 +107738,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "UBOAT", "game_detection": [ @@ -114958,7 +107752,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tiny Thief", "game_detection": [ @@ -114973,7 +107766,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Three Kingdoms Brawler", "game_detection": [ @@ -114986,7 +107778,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Legend of Grimrock", "game_detection": [ @@ -115018,7 +107809,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jagged Alliance Flashback", "game_detection": [ @@ -115033,7 +107823,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Halo: Spartan Assault", "game_detection": [ @@ -115048,7 +107837,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Planet Zoo", "game_detection": [ @@ -115059,7 +107847,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Starscape", "game_detection": [ @@ -115074,7 +107861,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Knightmare Tower", "game_detection": [ @@ -115089,7 +107875,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mission Runway", "game_detection": [ @@ -115104,7 +107889,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "0 A.D.", "game_detection": [ @@ -115116,7 +107900,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Arclight Cascade", "game_detection": [ @@ -115131,7 +107914,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Soccer Manager 2015", "game_detection": [ @@ -115146,7 +107928,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dishonored 2", "game_detection": [ @@ -115165,7 +107946,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Take On Helicopters", "game_detection": [ @@ -115180,7 +107960,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mystery Cruise", "game_detection": [ @@ -115193,7 +107972,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Superbrothers: Sword & Sworcery EP", "game_detection": [ @@ -115208,7 +107986,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wallace & Gromit's Grand Adventures: Episode 4: The Bogey Man", "game_detection": [ @@ -115223,7 +108000,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GIGA WRECKER", "game_detection": [ @@ -115238,7 +108014,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Speed Brawl", "game_detection": [ @@ -115249,7 +108024,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rocket Arena", "game_detection": [ @@ -115260,7 +108034,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bulb Boy", "game_detection": [ @@ -115275,7 +108048,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Daikatana", "game_detection": [ @@ -115290,7 +108062,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Age of Barbarian Extended Cut", "game_detection": [ @@ -115305,7 +108076,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Empress Of The Deep 2: Song Of The Blue Whale", "game_detection": [ @@ -115320,7 +108090,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pyre", "game_detection": [ @@ -115335,7 +108104,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Princess Remedy in a World of Hurt", "game_detection": [ @@ -115350,7 +108118,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BEEP", "game_detection": [ @@ -115364,7 +108131,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Magic Barrage", "game_detection": [ @@ -115379,7 +108145,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Frozen Free Fall: Snowball Fight", "game_detection": [ @@ -115394,7 +108159,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Towers of the Apocalypse", "game_detection": [ @@ -115406,7 +108170,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fairyland Online", "game_detection": [ @@ -115419,7 +108182,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Drift City", "game_detection": [ @@ -115433,7 +108195,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeons: The Eye of Draconus", "game_detection": [ @@ -115448,7 +108209,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battle of Empires: 1914-1918", "game_detection": [ @@ -115463,7 +108223,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spore Galactic Adventures", "game_detection": [ @@ -115484,7 +108243,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead Island: Riptide", "game_detection": [ @@ -115499,7 +108257,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heldric: The legend of the shoemaker", "game_detection": [ @@ -115514,7 +108271,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hyperdevotion Noire Goddess Black Heart", "game_detection": [ @@ -115528,7 +108284,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MameUI", "game_detection": [ @@ -115547,7 +108302,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ArmA III", "game_detection": [ @@ -115562,7 +108316,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Toki Tori 2+", "game_detection": [ @@ -115582,7 +108335,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "How To Make Your Grandpa Happy", "game_detection": [ @@ -115597,7 +108349,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cobalt", "game_detection": [ @@ -115618,7 +108369,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wizorb", "game_detection": [ @@ -115643,7 +108393,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Half-Life 2: Episode Two", "game_detection": [ @@ -115660,7 +108409,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Schrödinger’s Cat And The Raiders Of The Lost Quark", "game_detection": [ @@ -115675,7 +108423,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Doomed'n Damned", "game_detection": [ @@ -115687,7 +108434,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Friday The 13th: The Game", "game_detection": [ @@ -115702,7 +108448,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "PAC-MAN Museum", "game_detection": [ @@ -115717,7 +108462,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "America's Army: Proving Grounds", "game_detection": [ @@ -115732,7 +108476,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Deathwatch", "game_detection": [ @@ -115747,7 +108490,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zaccaria Pinball", "game_detection": [ @@ -115762,7 +108504,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Post Mortem", "game_detection": [ @@ -115777,7 +108518,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vampyr", "game_detection": [ @@ -115791,7 +108531,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Swords & Souls: Neverseen", "game_detection": [ @@ -115802,7 +108541,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Solitaire", "game_detection": [ @@ -115833,7 +108571,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Robot Rescue Revolution", "game_detection": [ @@ -115848,7 +108585,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Moonlighter", "game_detection": [ @@ -115866,7 +108602,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Helmet Heroes", "game_detection": [ @@ -115882,7 +108617,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Far Cry 2", "game_detection": [ @@ -115903,7 +108637,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Children of Liberty", "game_detection": [ @@ -115918,7 +108651,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Virtua Tennis 2009", "game_detection": [ @@ -115938,7 +108670,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ampu-Tea", "game_detection": [ @@ -115958,7 +108689,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GTR 2", "game_detection": [ @@ -115978,7 +108708,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The House of the Dead 2", "game_detection": [ @@ -115990,7 +108719,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Secret Files: Sam Peters", "game_detection": [ @@ -116005,7 +108733,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LEGO Marvel Super Heroes", "game_detection": [ @@ -116020,7 +108747,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Croixleur", "game_detection": [ @@ -116032,7 +108758,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tryst", "game_detection": [ @@ -116047,7 +108772,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Return To Mysterious Island", "game_detection": [ @@ -116067,7 +108791,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Strike.is: The Game", "game_detection": [ @@ -116083,7 +108806,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Wars Battlefront", "game_detection": [ @@ -116095,7 +108817,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nowhere", "game_detection": [ @@ -116109,7 +108830,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Peggle Nights", "game_detection": [ @@ -116130,7 +108850,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LEGO Indiana Jones: The Original Adventures", "game_detection": [ @@ -116150,7 +108869,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NBA 2K Playgrounds 2", "game_detection": [ @@ -116161,7 +108879,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Insurgency: Sandstorm", "game_detection": [ @@ -116175,7 +108892,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Marc Ecko's Getting Up: Contents Under Pressure", "game_detection": [ @@ -116195,7 +108911,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alien Shooter 2: Conscription", "game_detection": [ @@ -116210,7 +108925,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wilson Chronicles", "game_detection": [ @@ -116225,7 +108939,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "OneShot", "game_detection": [ @@ -116241,7 +108954,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "King's Quest", "game_detection": [ @@ -116256,7 +108968,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jade Empire", "game_detection": [ @@ -116268,7 +108979,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Esports Life Tycoon", "game_detection": [ @@ -116279,7 +108989,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro Evolution Soccer 2009", "game_detection": [ @@ -116297,7 +109006,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Autonomous", "game_detection": [ @@ -116317,7 +109025,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zone 4: Fight District", "game_detection": [ @@ -116341,7 +109048,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "War Thunder", "game_detection": [ @@ -116376,7 +109082,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "X3 Reunion", "game_detection": [ @@ -116396,7 +109101,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Need for Speed", "game_detection": [ @@ -116408,7 +109112,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Doctor Who: The Adventure Games", "game_detection": [ @@ -116423,7 +109126,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RWBY: Grimm Eclipse", "game_detection": [ @@ -116438,7 +109140,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Tomorrow War", "game_detection": [ @@ -116453,7 +109154,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "White Haven Mysteries", "game_detection": [ @@ -116468,7 +109168,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Citadels", "game_detection": [ @@ -116483,7 +109182,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wargroove", "game_detection": [ @@ -116494,7 +109192,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "6180 the moon", "game_detection": [ @@ -116506,7 +109203,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "I Can't Escape: Darkness", "game_detection": [ @@ -116521,7 +109217,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Outward", "game_detection": [ @@ -116536,7 +109231,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SpellForce 3", "game_detection": [ @@ -116551,7 +109245,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gothic II Gold Edition", "game_detection": [ @@ -116566,7 +109259,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tom Clancy's Rainbow Six: Lockdown", "game_detection": [ @@ -116578,7 +109270,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stronghold", "game_detection": [ @@ -116598,7 +109289,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Trials Fusion", "game_detection": [ @@ -116620,7 +109310,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Galaxy Control: 3D Strategy", "game_detection": [ @@ -116635,7 +109324,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tidalis", "game_detection": [ @@ -116650,7 +109338,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "FINAL FANTASY X/X-2 HD Remaster", "game_detection": [ @@ -116665,7 +109352,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Speedball 2 HD", "game_detection": [ @@ -116680,7 +109366,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Football Manager 2015", "game_detection": [ @@ -116695,7 +109380,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bloody Walls", "game_detection": [ @@ -116711,7 +109395,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pajama Sam: No Need to Hide When It's Dark Outside", "game_detection": [ @@ -116726,7 +109409,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "VR Ping Pong", "game_detection": [ @@ -116742,7 +109424,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Wars Jedi Knight: Mysteries of the Sith", "game_detection": [ @@ -116762,7 +109443,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hero Siege", "game_detection": [ @@ -116784,7 +109464,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Call of Duty: Modern Warfare 2", "game_detection": [ @@ -116807,7 +109486,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eleusis", "game_detection": [ @@ -116822,7 +109500,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Second Chance Heroes", "game_detection": [ @@ -116837,7 +109514,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Wars: Galactic Battlegrounds", "game_detection": [ @@ -116851,7 +109527,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dream Pinball 3D", "game_detection": [ @@ -116863,7 +109538,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Major League Baseball 2K9", "game_detection": [ @@ -116880,7 +109554,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Freshman Year", "game_detection": [ @@ -116895,7 +109568,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "H-Hour: World's Elite", "game_detection": [ @@ -116910,7 +109582,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pandemonium!", "game_detection": [ @@ -116925,7 +109596,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dungeon Siege II: Broken World", "game_detection": [ @@ -116937,7 +109607,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Aztaka", "game_detection": [ @@ -116949,7 +109618,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kane & Lynch 2: Dog Days", "game_detection": [ @@ -116964,7 +109632,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LEGO Marvel's Avengers", "game_detection": [ @@ -116979,7 +109646,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Wars: Empire at War Demo", "game_detection": [ @@ -116994,7 +109660,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shooting Star 2", "game_detection": [ @@ -117006,7 +109671,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mystic Saga", "game_detection": [ @@ -117021,7 +109685,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blade Wars", "game_detection": [ @@ -117035,7 +109698,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Soldier Of Fortune II: Double Helix", "game_detection": [ @@ -117054,7 +109716,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Escapists 2", "game_detection": [ @@ -117069,7 +109730,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heroes of Might and Magic V Demo", "game_detection": [ @@ -117084,7 +109744,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stock Car Extreme", "game_detection": [ @@ -117099,7 +109758,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Neon Beats", "game_detection": [ @@ -117114,7 +109772,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GridRunner Revolution", "game_detection": [ @@ -117129,7 +109786,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Car Mechanic Simulator 2018", "game_detection": [ @@ -117144,7 +109800,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Senran Kagura Estival Versus", "game_detection": [ @@ -117159,7 +109814,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Prime World", "game_detection": [ @@ -117188,7 +109842,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Block Story", "game_detection": [ @@ -117203,7 +109856,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Air Conflicts: Secret Wars", "game_detection": [ @@ -117223,7 +109875,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "18 Wheels of Steel: Across America", "game_detection": [ @@ -117238,7 +109889,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Onikira: Demon Killer", "game_detection": [ @@ -117253,7 +109903,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Escape from Paradise City", "game_detection": [ @@ -117265,7 +109914,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Call of Duty: Black Ops", "game_detection": [ @@ -117292,7 +109940,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nidhogg 2", "game_detection": [ @@ -117307,7 +109954,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Artemis: Spaceship Bridge Simulator", "game_detection": [ @@ -117322,7 +109968,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Beholder", "game_detection": [ @@ -117337,7 +109982,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kivi's Underworld", "game_detection": [ @@ -117349,7 +109993,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DGU", "game_detection": [ @@ -117364,7 +110007,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Darkest of Days", "game_detection": [ @@ -117379,7 +110021,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Midtown Madness 2", "game_detection": [ @@ -117391,7 +110032,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Legionwood 2: Rise of the Eternal's Realm", "game_detection": [ @@ -117406,7 +110046,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Journey Down: Chapter One", "game_detection": [ @@ -117426,7 +110065,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Football Director", "game_detection": [ @@ -117440,7 +110078,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battleswarm: Field of Honor", "game_detection": [ @@ -117453,7 +110090,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "PlanetSide 2", "game_detection": [ @@ -117475,7 +110111,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Alan Wake", "game_detection": [ @@ -117505,7 +110140,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "SnowBound Online", "game_detection": [ @@ -117519,7 +110153,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Carmageddon 3: TDR 2000", "game_detection": [ @@ -117531,7 +110164,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "City Life", "game_detection": [ @@ -117561,7 +110193,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Far Cry Demo", "game_detection": [ @@ -117573,7 +110204,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Riven: The Sequel to Myst", "game_detection": [ @@ -117593,7 +110223,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Trine 2", "game_detection": [ @@ -117614,7 +110243,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Saw: The Videogame", "game_detection": [ @@ -117629,7 +110257,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Freedom Force", "game_detection": [ @@ -117649,7 +110276,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hand of Fate 2", "game_detection": [ @@ -117663,7 +110289,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deadly Secrets: Art Of Murder", "game_detection": [ @@ -117675,7 +110300,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kaiju Panic", "game_detection": [ @@ -117690,7 +110314,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Total War: Attila", "game_detection": [ @@ -117705,7 +110328,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sunset Overdrive", "game_detection": [ @@ -117720,7 +110342,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warcraft III: Reign of Chaos", "game_detection": [ @@ -117741,7 +110362,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Iron Brigade", "game_detection": [ @@ -117756,7 +110376,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Steno Arcade", "game_detection": [ @@ -117771,7 +110390,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Beyond Divinity", "game_detection": [ @@ -117791,7 +110409,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Atulos Online", "game_detection": [ @@ -117806,7 +110423,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mayhem Intergalactic", "game_detection": [ @@ -117827,7 +110443,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Babo Violent 2", "game_detection": [ @@ -117839,7 +110454,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Knights of Pen & Paper +1 Edition", "game_detection": [ @@ -117859,7 +110473,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tropico 2: Pirate Cove", "game_detection": [ @@ -117880,7 +110493,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Assassin's Creed III Remastered", "game_detection": [ @@ -117891,7 +110503,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wanderlust: Rebirth", "game_detection": [ @@ -117912,7 +110523,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sakura Spirit", "game_detection": [ @@ -117927,7 +110537,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "TASTEE: Lethal Tactics", "game_detection": [ @@ -117942,7 +110551,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Override", "game_detection": [ @@ -117953,7 +110561,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Penumbra: Requiem", "game_detection": [ @@ -117974,7 +110581,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Swat 4: The Stetchkov Syndicate", "game_detection": [ @@ -117987,7 +110593,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Earth 2150", "game_detection": [ @@ -118002,7 +110607,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pajama Sam 2: Thunder and Lightning Aren't So Frightening", "game_detection": [ @@ -118017,7 +110621,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "7 Wonders of the Ancient World", "game_detection": [ @@ -118038,7 +110641,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fireworks Desert Blast", "game_detection": [ @@ -118054,7 +110656,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Blades of Time", "game_detection": [ @@ -118069,7 +110670,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "World Soccer Winning Eleven 7 International", "game_detection": [ @@ -118081,7 +110681,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Xotic", "game_detection": [ @@ -118096,7 +110695,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Black Desert", "game_detection": [ @@ -118117,7 +110715,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sam & Max Episode 105: Reality 2.0", "game_detection": [ @@ -118137,7 +110734,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "RF Online", "game_detection": [ @@ -118150,7 +110746,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Spec Ops: The Line", "game_detection": [ @@ -118165,7 +110760,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "League Of Guessing", "game_detection": [ @@ -118180,7 +110774,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shadows on the Vatican - Act I: Greed", "game_detection": [ @@ -118195,7 +110788,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "2XL Supercross", "game_detection": [ @@ -118210,7 +110802,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warlords IV", "game_detection": [ @@ -118222,7 +110813,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "WE ARE DOOMED", "game_detection": [ @@ -118234,7 +110824,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fitness Dash", "game_detection": [ @@ -118249,7 +110838,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NBA 2K18", "game_detection": [ @@ -118264,7 +110852,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Priston Tale 2: The Second Enigma", "game_detection": [ @@ -118278,7 +110865,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Crookz: The Big Heist", "game_detection": [ @@ -118293,7 +110879,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BloodRayne", "game_detection": [ @@ -118313,7 +110898,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DragonSky Online", "game_detection": [ @@ -118326,7 +110910,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hook", "game_detection": [ @@ -118341,7 +110924,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tom Clancy's Ghost Recon", "game_detection": [ @@ -118361,7 +110943,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Meltdown", "game_detection": [ @@ -118376,7 +110957,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bendy and the Ink Machine", "game_detection": [ @@ -118387,7 +110967,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Command & Conquer: Tiberian Sun", "game_detection": [ @@ -118399,7 +110978,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Meridian: Squad 22", "game_detection": [ @@ -118414,7 +110992,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Guilty Gear Xrd -SIGN-", "game_detection": [ @@ -118429,7 +111006,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Faery: Legends of Avalon", "game_detection": [ @@ -118444,7 +111020,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Magrunner: Dark Pulse", "game_detection": [ @@ -118471,7 +111046,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eternal Winter", "game_detection": [ @@ -118486,7 +111060,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Last Express", "game_detection": [ @@ -118501,7 +111074,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark Fall: The Journal", "game_detection": [ @@ -118516,7 +111088,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark Souls II", "game_detection": [ @@ -118531,7 +111102,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ballad of Solar", "game_detection": [ @@ -118546,7 +111116,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Sandbox", "game_detection": [ @@ -118561,7 +111130,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Dig", "game_detection": [ @@ -118576,7 +111144,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Unreal Tournament", "game_detection": [ @@ -118602,7 +111169,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Eufloria", "game_detection": [ @@ -118622,7 +111188,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Street Gears", "game_detection": [ @@ -118636,7 +111201,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Big Match Striker", "game_detection": [ @@ -118650,7 +111214,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Desperados 2: Cooper's Revenge", "game_detection": [ @@ -118665,7 +111228,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Haunted Memories", "game_detection": [ @@ -118680,7 +111242,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Wrath of Athena", "game_detection": [ @@ -118695,7 +111256,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rusty Hearts", "game_detection": [ @@ -118722,7 +111282,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hector: Badge of Carnage - Episode 1", "game_detection": [ @@ -118742,7 +111301,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Overcooked", "game_detection": [ @@ -118757,7 +111315,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "PAYDAY 2", "game_detection": [ @@ -118779,7 +111336,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Trek D-A-C", "game_detection": [ @@ -118794,7 +111350,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Gods and Idols", "game_detection": [ @@ -118809,7 +111364,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Black Mirror", "game_detection": [ @@ -118823,7 +111377,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kuros", "game_detection": [ @@ -118838,7 +111391,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Contract J.A.C.K.", "game_detection": [ @@ -118852,7 +111404,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Steredenn", "game_detection": [ @@ -118867,7 +111418,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Novus Inceptio", "game_detection": [ @@ -118882,7 +111432,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Warhammer 40,000: Dark Nexus Arena", "game_detection": [ @@ -118897,7 +111446,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Call of Cthulhu: Dark Corners Of The Earth", "game_detection": [ @@ -118918,7 +111466,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "James Bond 007: Blood Stone", "game_detection": [ @@ -118939,7 +111486,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Troy Online", "game_detection": [ @@ -118952,7 +111498,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Blackout Club", "game_detection": [ @@ -118963,7 +111508,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Carrier Command: Gaea Mission", "game_detection": [ @@ -118978,7 +111522,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bad North", "game_detection": [ @@ -118989,7 +111532,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pro-Pinball: Timeshock", "game_detection": [ @@ -119001,7 +111543,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Star Wars: Force Unleashed Sith Edition", "game_detection": [ @@ -119022,7 +111563,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Adventure Time: Pirates of the Enchiridion", "game_detection": [ @@ -119036,7 +111576,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Transformers: Fall of Cybertron", "game_detection": [ @@ -119051,7 +111590,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MX Vs. ATV: Reflex", "game_detection": [ @@ -119066,7 +111604,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Prison Architect", "game_detection": [ @@ -119090,7 +111627,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GRID 2", "game_detection": [ @@ -119105,7 +111641,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Super Meat Boy", "game_detection": [ @@ -119126,7 +111661,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Epsilon", "game_detection": [ @@ -119141,7 +111675,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sonic Adventure 2", "game_detection": [ @@ -119156,7 +111689,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zeus' Battlegrounds", "game_detection": [ @@ -119167,7 +111699,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hero Zero", "game_detection": [ @@ -119182,7 +111713,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Primordia Demo", "game_detection": [ @@ -119194,7 +111724,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ultimate Tic-Tac-Toe", "game_detection": [ @@ -119209,7 +111738,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Disciples III: Renaissance", "game_detection": [ @@ -119229,7 +111757,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Luxor: Amun Rising HD", "game_detection": [ @@ -119244,7 +111771,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Resident Evil 5", "game_detection": [ @@ -119265,7 +111791,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shadowrun: Dragonfall", "game_detection": [ @@ -119285,7 +111810,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Thief 2: The Metal Age", "game_detection": [ @@ -119305,7 +111829,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Steamworld Dig 2", "game_detection": [ @@ -119324,7 +111847,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Half-Life 2: Episode One", "game_detection": [ @@ -119341,7 +111863,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Victory Command", "game_detection": [ @@ -119363,7 +111884,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Diesel Brothers: Truck Building Simulator", "game_detection": [ @@ -119378,7 +111898,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cosmic Sugar VR", "game_detection": [ @@ -119394,7 +111913,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Capcom Beat 'Em Up Bundle", "game_detection": [ @@ -119405,7 +111923,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stealth Bastard Deluxe", "game_detection": [ @@ -119425,7 +111942,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Two Worlds Epic Edition", "game_detection": [ @@ -119440,7 +111956,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sunrider: First Arrival", "game_detection": [ @@ -119455,7 +111970,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Slender", "game_detection": [ @@ -119467,7 +111981,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cities: Skylines", "game_detection": [ @@ -119490,7 +112003,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Petz Horsez 2", "game_detection": [ @@ -119505,7 +112017,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Treasures Of Montezuma 3", "game_detection": [ @@ -119518,7 +112029,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Foundation", "game_detection": [ @@ -119529,7 +112039,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Call of Duty 4: Modern Warfare", "game_detection": [ @@ -119564,7 +112073,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "XBlaze Lost: Memories", "game_detection": [ @@ -119579,7 +112087,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Onigiri", "game_detection": [ @@ -119591,7 +112098,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "We Happy Few", "game_detection": [ @@ -119606,7 +112112,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sega Rally Revo", "game_detection": [ @@ -119636,7 +112141,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead or Alive 6", "game_detection": [ @@ -119659,7 +112163,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battle Group", "game_detection": [ @@ -119671,7 +112174,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Off-Peak", "game_detection": [ @@ -119686,7 +112188,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Commandos: Behind Enemy Lines", "game_detection": [ @@ -119714,7 +112215,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Secret Files 2", "game_detection": [ @@ -119729,7 +112229,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Far Cry New Dawn", "game_detection": [ @@ -119740,7 +112239,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "1 Moment of Time: Silentville", "game_detection": [ @@ -119752,7 +112250,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Grand Theft Auto: Episodes From Liberty City", "game_detection": [ @@ -119773,7 +112270,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bears Can't Drift!?", "game_detection": [ @@ -119788,7 +112284,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Unreal Tournament 2004", "game_detection": [ @@ -119810,7 +112305,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ride! Carnival Tycoon", "game_detection": [ @@ -119825,7 +112319,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "A Tale in the Desert", "game_detection": [ @@ -119837,7 +112330,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Viva Pinata", "game_detection": [ @@ -119850,7 +112342,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Takedown: Red Sabre", "game_detection": [ @@ -119865,7 +112356,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Heroes of the Pacific", "game_detection": [ @@ -119878,7 +112368,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fast & Furious Showdown", "game_detection": [ @@ -119893,7 +112382,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rising Eagle", "game_detection": [ @@ -119905,7 +112393,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Manhunt", "game_detection": [ @@ -119926,7 +112413,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Flockers", "game_detection": [ @@ -119942,7 +112428,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Bellows: VR", "game_detection": [ @@ -119958,7 +112443,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Amazing Spider-Man", "game_detection": [ @@ -119973,7 +112457,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stranger of Sword City", "game_detection": [ @@ -119988,7 +112471,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Knights of Pen and Paper 2", "game_detection": [ @@ -120003,7 +112485,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Naruto Shippuden: Ultimate Ninja Storm 4", "game_detection": [ @@ -120018,7 +112499,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stellaris", "game_detection": [ @@ -120041,7 +112521,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cold War", "game_detection": [ @@ -120056,7 +112535,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Awesome Adventures of Captain Spirit", "game_detection": [ @@ -120070,7 +112548,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Risen 2: Dark Waters", "game_detection": [ @@ -120084,7 +112561,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Turf Battles", "game_detection": [ @@ -120098,7 +112574,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lost Castle", "game_detection": [ @@ -120113,7 +112588,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Post Apocalyptic Mayhem", "game_detection": [ @@ -120128,7 +112602,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Panzer Elite Action: Fields of Glory", "game_detection": [ @@ -120151,7 +112624,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Men of War Beta", "game_detection": [ @@ -120163,7 +112635,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Club", "game_detection": [ @@ -120186,7 +112657,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Digital Paint: Paintball 2", "game_detection": [ @@ -120198,7 +112668,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "X3: Albion Prelude", "game_detection": [ @@ -120213,7 +112682,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Adventures of Sherlock Holmes: The Silver Earring", "game_detection": [ @@ -120228,7 +112696,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Satisfactory", "game_detection": [ @@ -120239,7 +112706,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "1503 A.D.: The New World", "game_detection": [ @@ -120251,7 +112717,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Fifth Day", "game_detection": [ @@ -120266,7 +112731,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battlepillars", "game_detection": [ @@ -120281,7 +112745,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Trackmania 2 Stadium", "game_detection": [ @@ -120296,7 +112759,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Quanero VR", "game_detection": [ @@ -120312,7 +112774,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vector", "game_detection": [ @@ -120327,7 +112788,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Maker's Eden", "game_detection": [ @@ -120342,7 +112802,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Broken Age", "game_detection": [ @@ -120362,7 +112821,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Men of Valor", "game_detection": [ @@ -120375,7 +112833,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Settlers Online", "game_detection": [ @@ -120390,7 +112847,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Frontline Tactics", "game_detection": [ @@ -120405,7 +112861,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kohan: Ahriman's Gift", "game_detection": [ @@ -120425,7 +112880,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NEKOPALIVE", "game_detection": [ @@ -120440,7 +112894,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Droid Assault", "game_detection": [ @@ -120460,7 +112913,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "ArcheAge", "game_detection": [ @@ -120475,7 +112927,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The MISSING: J.J. Macfield and the Island of Memories", "game_detection": [ @@ -120486,7 +112937,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ShellShock: Nam '67", "game_detection": [ @@ -120499,7 +112949,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "BloodRayne 2", "game_detection": [ @@ -120519,7 +112968,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "ArmA: Queen's Gambit", "game_detection": [ @@ -120532,7 +112980,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Half-Life 2: Capture the Flag", "game_detection": [ @@ -120548,7 +112995,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Golden Rush", "game_detection": [ @@ -120563,7 +113009,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Train Simulator 2016", "game_detection": [ @@ -120578,7 +113023,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Ziggurat", "game_detection": [ @@ -120593,7 +113037,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Attack on Titan", "game_detection": [ @@ -120608,7 +113051,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Final Fantasy VII", "game_detection": [ @@ -120634,7 +113076,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "UnderRail", "game_detection": [ @@ -120649,7 +113090,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Medieval Defenders", "game_detection": [ @@ -120664,7 +113104,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Half-Life: Opposing Force", "game_detection": [ @@ -120689,7 +113128,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Monsters Ate My Birthday Cake", "game_detection": [ @@ -120704,7 +113142,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fallout: New Vegas", "game_detection": [ @@ -120719,7 +113156,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Inside My Radio", "game_detection": [ @@ -120734,7 +113170,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battlefield Play4Free", "game_detection": [ @@ -120746,7 +113181,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Noita", "game_detection": [ @@ -120757,7 +113191,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "One Ship Two Ship Redshift Blueshift", "game_detection": [ @@ -120772,7 +113205,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Witcher: Enhanced Edition", "game_detection": [ @@ -120793,7 +113225,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Realms of the Haunting", "game_detection": [ @@ -120808,7 +113239,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Next Life", "game_detection": [ @@ -120821,7 +113251,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Relive", "game_detection": [ @@ -120836,7 +113265,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Solarix", "game_detection": [ @@ -120851,7 +113279,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rover Rescue", "game_detection": [ @@ -120866,7 +113293,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Skyward Collapse", "game_detection": [ @@ -120881,7 +113307,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Kinetic Void", "game_detection": [ @@ -120896,7 +113321,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "iBomber Attack", "game_detection": [ @@ -120911,7 +113335,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Myst IV: Revelation", "game_detection": [ @@ -120924,7 +113347,6 @@ ] }, { - "force_display_capture": false, "region": "KR", "title": "Sudden Attack", "game_detection": [ @@ -120937,7 +113359,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DOOM", "game_detection": [ @@ -120952,7 +113373,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead Island Retro Revenge", "game_detection": [ @@ -120967,7 +113387,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "VRChat", "game_detection": [ @@ -120981,7 +113400,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "WazHack", "game_detection": [ @@ -120996,7 +113414,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Massive Assault Network 2", "game_detection": [ @@ -121011,7 +113428,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Capsule Force", "game_detection": [ @@ -121026,7 +113442,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Time Clickers", "game_detection": [ @@ -121041,7 +113456,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Brawlout", "game_detection": [ @@ -121055,7 +113469,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Luxuria Superbia", "game_detection": [ @@ -121075,7 +113488,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Parking Dash", "game_detection": [ @@ -121090,7 +113502,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Legend of Mir", "game_detection": [ @@ -121103,7 +113514,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "18 Wheels of Steel: American Long Haul", "game_detection": [ @@ -121125,7 +113535,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Intake", "game_detection": [ @@ -121145,7 +113554,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DiRT Rally", "game_detection": [ @@ -121160,7 +113568,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Cladun X2", "game_detection": [ @@ -121175,7 +113582,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Subterrain", "game_detection": [ @@ -121190,7 +113596,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark Age of Camelot: Catacombs", "game_detection": [ @@ -121203,7 +113608,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Great Big War Game", "game_detection": [ @@ -121217,7 +113621,6 @@ ] }, { - "force_display_capture": false, "region": "RU", "title": "ArcheAge", "game_detection": [ @@ -121235,7 +113638,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Metal Reaper Online", "game_detection": [ @@ -121250,7 +113652,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Midnight Outlaw: Six Hours to Sun Up", "game_detection": [ @@ -121265,7 +113666,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "I am Bread", "game_detection": [ @@ -121280,7 +113680,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Street Fighter IV", "game_detection": [ @@ -121301,7 +113700,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "fault milestone two", "game_detection": [ @@ -121316,7 +113714,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Nancy Drew: Danger by Design", "game_detection": [ @@ -121331,7 +113728,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Fate Extella", "game_detection": [ @@ -121346,7 +113742,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jewel Quest III", "game_detection": [ @@ -121361,7 +113756,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sunless Sea", "game_detection": [ @@ -121376,7 +113770,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Plants vs Zombies: Garden Warfare 2", "game_detection": [ @@ -121388,7 +113781,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vanguard: Saga of Heroes", "game_detection": [ @@ -121445,7 +113837,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Where Angels Cry", "game_detection": [ @@ -121460,7 +113851,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Lock On: Modern Air Combat", "game_detection": [ @@ -121472,7 +113862,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Simpsons: Hit & Run", "game_detection": [ @@ -121484,7 +113873,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Coniclysm", "game_detection": [ @@ -121499,7 +113887,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Home Improvisation", "game_detection": [ @@ -121515,7 +113902,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Democracy 2", "game_detection": [ @@ -121530,7 +113916,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Monster Madness: Battle for Suburbia", "game_detection": [ @@ -121543,7 +113928,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jesus Christ RPG Trilogy", "game_detection": [ @@ -121558,7 +113942,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "LocoCycle", "game_detection": [ @@ -121573,7 +113956,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jet Set Radio", "game_detection": [ @@ -121588,7 +113970,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dead Island Riptide Definitive Edition", "game_detection": [ @@ -121603,7 +113984,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Accel World VS. Sword Art Online", "game_detection": [ @@ -121618,7 +113998,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Squad", "game_detection": [ @@ -121637,7 +114016,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Mishap: An Accidental Haunting", "game_detection": [ @@ -121652,7 +114030,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shadows: Heretic Kingdoms", "game_detection": [ @@ -121667,7 +114044,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Stepmania CVS", "game_detection": [ @@ -121679,7 +114055,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Deep Rock Galactic", "game_detection": [ @@ -121693,7 +114068,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Umbrella Corps", "game_detection": [ @@ -121708,7 +114082,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark Fall: Lost Souls", "game_detection": [ @@ -121723,7 +114096,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Valiant Hearts: The Great War", "game_detection": [ @@ -121738,7 +114110,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Shogo: Mobile Armor Division", "game_detection": [ @@ -121751,7 +114122,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Battle Chess: Game of Kings", "game_detection": [ @@ -121766,7 +114136,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Vampire: The Masquerade Bloodlines", "game_detection": [ @@ -121786,7 +114155,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dying Light Bad Blood", "game_detection": [ @@ -121800,7 +114168,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Rayman Legends", "game_detection": [ @@ -121815,7 +114182,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Tabletop Simulator", "game_detection": [ @@ -121830,7 +114196,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "StarCraft: Brood War", "game_detection": [ @@ -121844,7 +114209,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Batman Arkham Origins: Blackgate Deluxe Edition", "game_detection": [ @@ -121859,7 +114223,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Dark", "game_detection": [ @@ -121874,7 +114237,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Marvel Ultimate Alliance", "game_detection": [ @@ -121888,7 +114250,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Code of Honor: The French Foreign Legion", "game_detection": [ @@ -121901,7 +114262,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Little Witch Academia: Chamber of Time", "game_detection": [ @@ -121915,7 +114275,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GunBound: Season 3", "game_detection": [ @@ -121945,7 +114304,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Pure Pool", "game_detection": [ @@ -121961,7 +114319,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Micro Machines V4", "game_detection": [ @@ -121974,7 +114331,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Drone Zero Gravity", "game_detection": [ @@ -121989,7 +114345,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Walking Dead", "game_detection": [ @@ -122009,7 +114364,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NVIDIA VR Funhouse", "game_detection": [ @@ -122024,7 +114378,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MotoGP 14", "game_detection": [ @@ -122039,7 +114392,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Freddy Fazbear's Pizzeria Simulator", "game_detection": [ @@ -122054,7 +114406,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Jade Dynasty", "game_detection": [ @@ -122073,7 +114424,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "The Witcher 3: Wild Hunt", "game_detection": [ @@ -122093,7 +114443,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "WWE 2K18", "game_detection": [ @@ -122108,7 +114457,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Peggle World of Warcraft Edition", "game_detection": [ @@ -122120,7 +114468,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "QPang", "game_detection": [ @@ -122133,7 +114480,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "DCS: A-10C Warthog", "game_detection": [ @@ -122147,7 +114493,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Sam & Max: The Devil's Playhouse - Beyond the Alley of the Dolls", "game_detection": [ @@ -122162,7 +114507,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zup! 3", "game_detection": [ @@ -122177,7 +114521,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Chronology", "game_detection": [ @@ -122192,7 +114535,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Worlds Adrift", "game_detection": [ @@ -122203,7 +114545,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Bulletstorm", "game_detection": [ @@ -122224,7 +114565,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Painkiller: Overdose", "game_detection": [ @@ -122245,7 +114585,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Zompiercer", "game_detection": [ @@ -122259,7 +114598,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "VALORANT", "game_detection": [ @@ -122272,7 +114610,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "MO:Astray", "game_detection": [ @@ -122286,7 +114623,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "NEOVERSE", "game_detection": [ @@ -122300,7 +114636,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Hyper Jam", "game_detection": [ @@ -122314,7 +114649,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Maneater", "game_detection": [ @@ -122325,7 +114659,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Honey Select 2", "game_detection": [ @@ -122336,7 +114669,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "GUILTY GEAR -STRIVE-", "game_detection": [ @@ -122351,7 +114683,6 @@ ] }, { - "force_display_capture": false, "region": null, "title": "Borderlands Pre-Sequel", "game_detection": [